1. //Written in the D programming language
  2. /**
  3.  * License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
  4.  *
  5.  * Authors: Dmitry Olshansky
  6.  *
  7.  */
  8. //Automatically generated from Unicode Character Database files
  9. import uni;
  10.  
  11.  
  12. struct SimpleCaseEntry
  13. {
  14.     uint ch;
  15.     ubyte n, bucket;// n - number in bucket
  16.     @property ubyte size() const
  17.     {
  18.         return bucket & 0x3F;
  19.     }
  20.     @property auto isLower() const
  21.     {
  22.         return bucket & 0x40;
  23.     }
  24.     @property auto isUpper() const
  25.     {
  26.         return bucket & 0x80;
  27.     }
  28.     this(uint dch, ubyte num, ubyte size, bool lower, bool upper)
  29.     {
  30.         ch = dch;
  31.         n = num;
  32.         bucket = size;
  33.         if(lower)
  34.             bucket |= 0x40;
  35.         if(upper)
  36.             bucket |= 0x80;
  37.        
  38.     }
  39. }
  40.  
  41. struct FullCaseEntry
  42. {
  43.     union
  44.     {
  45.         dchar ch;
  46.         dstring seq;
  47.     }
  48.     ubyte n, size;// n number in batch, size - size of batch
  49.     ubyte entry_len;// ==1 read ch, >1 - seq
  50.  
  51.     @property auto value()const
  52.     {
  53.         return entry_len == 1 ? (&ch)[0..1] : cast(dstring)seq;
  54.     }
  55.  
  56.     this(dstring value, ubyte num, ubyte batch_size)
  57.     {
  58.         assert(value.length < 255);
  59.         entry_len = cast(ubyte)value.length;
  60.         if(value.length == 1)
  61.             ch = value[0];
  62.         else{
  63.             seq = value;
  64.         }
  65.         n = num;
  66.         size = batch_size;
  67.     }
  68. }
  69. immutable simpleCaseTable = [
  70.     SimpleCaseEntry(0x10b7, 0, 2, false, true),
  71.     SimpleCaseEntry(0x2d17, 1, 2, true, false),
  72.     SimpleCaseEntry(0x1e64, 0, 2, false, true),
  73.     SimpleCaseEntry(0x1e65, 1, 2, true, false),
  74.     SimpleCaseEntry(0x1fe9, 0, 2, false, true),
  75.     SimpleCaseEntry(0x1fe1, 1, 2, true, false),
  76.     SimpleCaseEntry(0x216e, 0, 2, false, true),
  77.     SimpleCaseEntry(0x217e, 1, 2, true, false),
  78.     SimpleCaseEntry(0x2c11, 0, 2, false, true),
  79.     SimpleCaseEntry(0x2c41, 1, 2, true, false),
  80.     SimpleCaseEntry(0xa726, 0, 2, false, true),
  81.     SimpleCaseEntry(0xa727, 1, 2, true, false),
  82.     SimpleCaseEntry(0x0186, 0, 2, false, true),
  83.     SimpleCaseEntry(0x0254, 1, 2, true, false),
  84.     SimpleCaseEntry(0x0490, 0, 2, false, true),
  85.     SimpleCaseEntry(0x0491, 1, 2, true, false),
  86.     SimpleCaseEntry(0x10b8, 0, 2, false, true),
  87.     SimpleCaseEntry(0x2d18, 1, 2, true, false),
  88.     SimpleCaseEntry(0x1fea, 0, 2, false, true),
  89.     SimpleCaseEntry(0x1f7a, 1, 2, true, false),
  90.     SimpleCaseEntry(0x216f, 0, 2, false, true),
  91.     SimpleCaseEntry(0x217f, 1, 2, true, false),
  92.     SimpleCaseEntry(0x2c12, 0, 2, false, true),
  93.     SimpleCaseEntry(0x2c42, 1, 2, true, false),
  94.     SimpleCaseEntry(0x0187, 0, 2, false, true),
  95.     SimpleCaseEntry(0x0188, 1, 2, true, false),
  96.     SimpleCaseEntry(0x10b9, 0, 2, false, true),
  97.     SimpleCaseEntry(0x2d19, 1, 2, true, false),
  98.     SimpleCaseEntry(0x1e66, 0, 2, false, true),
  99.     SimpleCaseEntry(0x1e67, 1, 2, true, false),
  100.     SimpleCaseEntry(0x1feb, 0, 2, false, true),
  101.     SimpleCaseEntry(0x1f7b, 1, 2, true, false),
  102.     SimpleCaseEntry(0x2c13, 0, 2, false, true),
  103.     SimpleCaseEntry(0x2c43, 1, 2, true, false),
  104.     SimpleCaseEntry(0xa728, 0, 2, false, true),
  105.     SimpleCaseEntry(0xa729, 1, 2, true, false),
  106.     SimpleCaseEntry(0x0492, 0, 2, false, true),
  107.     SimpleCaseEntry(0x0493, 1, 2, true, false),
  108.     SimpleCaseEntry(0x10ba, 0, 2, false, true),
  109.     SimpleCaseEntry(0x2d1a, 1, 2, true, false),
  110.     SimpleCaseEntry(0x1fec, 0, 2, false, true),
  111.     SimpleCaseEntry(0x1fe5, 1, 2, true, false),
  112.     SimpleCaseEntry(0x2c14, 0, 2, false, true),
  113.     SimpleCaseEntry(0x2c44, 1, 2, true, false),
  114.     SimpleCaseEntry(0x0189, 0, 2, false, true),
  115.     SimpleCaseEntry(0x0256, 1, 2, true, false),
  116.     SimpleCaseEntry(0x10bb, 0, 2, false, true),
  117.     SimpleCaseEntry(0x2d1b, 1, 2, true, false),
  118.     SimpleCaseEntry(0x1e68, 0, 2, false, true),
  119.     SimpleCaseEntry(0x1e69, 1, 2, true, false),
  120.     SimpleCaseEntry(0x2c15, 0, 2, false, true),
  121.     SimpleCaseEntry(0x2c45, 1, 2, true, false),
  122.     SimpleCaseEntry(0xa72a, 0, 2, false, true),
  123.     SimpleCaseEntry(0xa72b, 1, 2, true, false),
  124.     SimpleCaseEntry(0x018a, 0, 2, false, true),
  125.     SimpleCaseEntry(0x0257, 1, 2, true, false),
  126.     SimpleCaseEntry(0x0494, 0, 2, false, true),
  127.     SimpleCaseEntry(0x0495, 1, 2, true, false),
  128.     SimpleCaseEntry(0x10bc, 0, 2, false, true),
  129.     SimpleCaseEntry(0x2d1c, 1, 2, true, false),
  130.     SimpleCaseEntry(0x2c16, 0, 2, false, true),
  131.     SimpleCaseEntry(0x2c46, 1, 2, true, false),
  132.     SimpleCaseEntry(0x018b, 0, 2, false, true),
  133.     SimpleCaseEntry(0x018c, 1, 2, true, false),
  134.     SimpleCaseEntry(0x10bd, 0, 2, false, true),
  135.     SimpleCaseEntry(0x2d1d, 1, 2, true, false),
  136.     SimpleCaseEntry(0x1e6a, 0, 2, false, true),
  137.     SimpleCaseEntry(0x1e6b, 1, 2, true, false),
  138.     SimpleCaseEntry(0x2c17, 0, 2, false, true),
  139.     SimpleCaseEntry(0x2c47, 1, 2, true, false),
  140.     SimpleCaseEntry(0xa72c, 0, 2, false, true),
  141.     SimpleCaseEntry(0xa72d, 1, 2, true, false),
  142.     SimpleCaseEntry(0x0496, 0, 2, false, true),
  143.     SimpleCaseEntry(0x0497, 1, 2, true, false),
  144.     SimpleCaseEntry(0x10be, 0, 2, false, true),
  145.     SimpleCaseEntry(0x2d1e, 1, 2, true, false),
  146.     SimpleCaseEntry(0x2c18, 0, 2, false, true),
  147.     SimpleCaseEntry(0x2c48, 1, 2, true, false),
  148.     SimpleCaseEntry(0x10bf, 0, 2, false, true),
  149.     SimpleCaseEntry(0x2d1f, 1, 2, true, false),
  150.     SimpleCaseEntry(0x1e6c, 0, 2, false, true),
  151.     SimpleCaseEntry(0x1e6d, 1, 2, true, false),
  152.     SimpleCaseEntry(0x2c19, 0, 2, false, true),
  153.     SimpleCaseEntry(0x2c49, 1, 2, true, false),
  154.     SimpleCaseEntry(0xa72e, 0, 2, false, true),
  155.     SimpleCaseEntry(0xa72f, 1, 2, true, false),
  156.     SimpleCaseEntry(0x018e, 0, 2, false, true),
  157.     SimpleCaseEntry(0x01dd, 1, 2, true, false),
  158.     SimpleCaseEntry(0x0498, 0, 2, false, true),
  159.     SimpleCaseEntry(0x0499, 1, 2, true, false),
  160.     SimpleCaseEntry(0x10c0, 0, 2, false, true),
  161.     SimpleCaseEntry(0x2d20, 1, 2, true, false),
  162.     SimpleCaseEntry(0x2c1a, 0, 2, false, true),
  163.     SimpleCaseEntry(0x2c4a, 1, 2, true, false),
  164.     SimpleCaseEntry(0x018f, 0, 2, false, true),
  165.     SimpleCaseEntry(0x0259, 1, 2, true, false),
  166.     SimpleCaseEntry(0x10c1, 0, 2, false, true),
  167.     SimpleCaseEntry(0x2d21, 1, 2, true, false),
  168.     SimpleCaseEntry(0x1e6e, 0, 2, false, true),
  169.     SimpleCaseEntry(0x1e6f, 1, 2, true, false),
  170.     SimpleCaseEntry(0x2c1b, 0, 2, false, true),
  171.     SimpleCaseEntry(0x2c4b, 1, 2, true, false),
  172.     SimpleCaseEntry(0x0190, 0, 2, false, true),
  173.     SimpleCaseEntry(0x025b, 1, 2, true, false),
  174.     SimpleCaseEntry(0x049a, 0, 2, false, true),
  175.     SimpleCaseEntry(0x049b, 1, 2, true, false),
  176.     SimpleCaseEntry(0x10c2, 0, 2, false, true),
  177.     SimpleCaseEntry(0x2d22, 1, 2, true, false),
  178.     SimpleCaseEntry(0x2c1c, 0, 2, false, true),
  179.     SimpleCaseEntry(0x2c4c, 1, 2, true, false),
  180.     SimpleCaseEntry(0x0191, 0, 2, false, true),
  181.     SimpleCaseEntry(0x0192, 1, 2, true, false),
  182.     SimpleCaseEntry(0x10c3, 0, 2, false, true),
  183.     SimpleCaseEntry(0x2d23, 1, 2, true, false),
  184.     SimpleCaseEntry(0x1e70, 0, 2, false, true),
  185.     SimpleCaseEntry(0x1e71, 1, 2, true, false),
  186.     SimpleCaseEntry(0x2c1d, 0, 2, false, true),
  187.     SimpleCaseEntry(0x2c4d, 1, 2, true, false),
  188.     SimpleCaseEntry(0xa732, 0, 2, false, true),
  189.     SimpleCaseEntry(0xa733, 1, 2, true, false),
  190.     SimpleCaseEntry(0x049c, 0, 2, false, true),
  191.     SimpleCaseEntry(0x049d, 1, 2, true, false),
  192.     SimpleCaseEntry(0x10c4, 0, 2, false, true),
  193.     SimpleCaseEntry(0x2d24, 1, 2, true, false),
  194.     SimpleCaseEntry(0x2c1e, 0, 2, false, true),
  195.     SimpleCaseEntry(0x2c4e, 1, 2, true, false),
  196.     SimpleCaseEntry(0x0193, 0, 2, false, true),
  197.     SimpleCaseEntry(0x0260, 1, 2, true, false),
  198.     SimpleCaseEntry(0x10c5, 0, 2, false, true),
  199.     SimpleCaseEntry(0x2d25, 1, 2, true, false),
  200.     SimpleCaseEntry(0x1e72, 0, 2, false, true),
  201.     SimpleCaseEntry(0x1e73, 1, 2, true, false),
  202.     SimpleCaseEntry(0x2c1f, 0, 2, false, true),
  203.     SimpleCaseEntry(0x2c4f, 1, 2, true, false),
  204.     SimpleCaseEntry(0xa734, 0, 2, false, true),
  205.     SimpleCaseEntry(0xa735, 1, 2, true, false),
  206.     SimpleCaseEntry(0x0194, 0, 2, false, true),
  207.     SimpleCaseEntry(0x0263, 1, 2, true, false),
  208.     SimpleCaseEntry(0x049e, 0, 2, false, true),
  209.     SimpleCaseEntry(0x049f, 1, 2, true, false),
  210.     SimpleCaseEntry(0x1ff8, 0, 2, false, true),
  211.     SimpleCaseEntry(0x1f78, 1, 2, true, false),
  212.     SimpleCaseEntry(0x2c20, 0, 2, false, true),
  213.     SimpleCaseEntry(0x2c50, 1, 2, true, false),
  214.     SimpleCaseEntry(0x10c7, 0, 2, false, true),
  215.     SimpleCaseEntry(0x2d27, 1, 2, true, false),
  216.     SimpleCaseEntry(0x1e74, 0, 2, false, true),
  217.     SimpleCaseEntry(0x1e75, 1, 2, true, false),
  218.     SimpleCaseEntry(0x1ff9, 0, 2, false, true),
  219.     SimpleCaseEntry(0x1f79, 1, 2, true, false),
  220.     SimpleCaseEntry(0x2c21, 0, 2, false, true),
  221.     SimpleCaseEntry(0x2c51, 1, 2, true, false),
  222.     SimpleCaseEntry(0xa736, 0, 2, false, true),
  223.     SimpleCaseEntry(0xa737, 1, 2, true, false),
  224.     SimpleCaseEntry(0x0196, 0, 2, false, true),
  225.     SimpleCaseEntry(0x0269, 1, 2, true, false),
  226.     SimpleCaseEntry(0x04a0, 0, 2, false, true),
  227.     SimpleCaseEntry(0x04a1, 1, 2, true, false),
  228.     SimpleCaseEntry(0x1ffa, 0, 2, false, true),
  229.     SimpleCaseEntry(0x1f7c, 1, 2, true, false),
  230.     SimpleCaseEntry(0x2c22, 0, 2, false, true),
  231.     SimpleCaseEntry(0x2c52, 1, 2, true, false),
  232.     SimpleCaseEntry(0x0197, 0, 2, false, true),
  233.     SimpleCaseEntry(0x0268, 1, 2, true, false),
  234.     SimpleCaseEntry(0x1e76, 0, 2, false, true),
  235.     SimpleCaseEntry(0x1e77, 1, 2, true, false),
  236.     SimpleCaseEntry(0x1ffb, 0, 2, false, true),
  237.     SimpleCaseEntry(0x1f7d, 1, 2, true, false),
  238.     SimpleCaseEntry(0x2c23, 0, 2, false, true),
  239.     SimpleCaseEntry(0x2c53, 1, 2, true, false),
  240.     SimpleCaseEntry(0xa738, 0, 2, false, true),
  241.     SimpleCaseEntry(0xa739, 1, 2, true, false),
  242.     SimpleCaseEntry(0x0198, 0, 2, false, true),
  243.     SimpleCaseEntry(0x0199, 1, 2, true, false),
  244.     SimpleCaseEntry(0x04a2, 0, 2, false, true),
  245.     SimpleCaseEntry(0x04a3, 1, 2, true, false),
  246.     SimpleCaseEntry(0x1ffc, 0, 2, false, false),
  247.     SimpleCaseEntry(0x1ff3, 1, 2, true, false),
  248.     SimpleCaseEntry(0x2c24, 0, 2, false, true),
  249.     SimpleCaseEntry(0x2c54, 1, 2, true, false),
  250.     SimpleCaseEntry(0x1e78, 0, 2, false, true),
  251.     SimpleCaseEntry(0x1e79, 1, 2, true, false),
  252.     SimpleCaseEntry(0x2c25, 0, 2, false, true),
  253.     SimpleCaseEntry(0x2c55, 1, 2, true, false),
  254.     SimpleCaseEntry(0xa73a, 0, 2, false, true),
  255.     SimpleCaseEntry(0xa73b, 1, 2, true, false),
  256.     SimpleCaseEntry(0x04a4, 0, 2, false, true),
  257.     SimpleCaseEntry(0x04a5, 1, 2, true, false),
  258.     SimpleCaseEntry(0x2183, 0, 2, false, true),
  259.     SimpleCaseEntry(0x2184, 1, 2, true, false),
  260.     SimpleCaseEntry(0x2c26, 0, 2, false, true),
  261.     SimpleCaseEntry(0x2c56, 1, 2, true, false),
  262.     SimpleCaseEntry(0x10cd, 0, 2, false, true),
  263.     SimpleCaseEntry(0x2d2d, 1, 2, true, false),
  264.     SimpleCaseEntry(0x1e7a, 0, 2, false, true),
  265.     SimpleCaseEntry(0x1e7b, 1, 2, true, false),
  266.     SimpleCaseEntry(0x2c27, 0, 2, false, true),
  267.     SimpleCaseEntry(0x2c57, 1, 2, true, false),
  268.     SimpleCaseEntry(0xa73c, 0, 2, false, true),
  269.     SimpleCaseEntry(0xa73d, 1, 2, true, false),
  270.     SimpleCaseEntry(0x019c, 0, 2, false, true),
  271.     SimpleCaseEntry(0x026f, 1, 2, true, false),
  272.     SimpleCaseEntry(0x04a6, 0, 2, false, true),
  273.     SimpleCaseEntry(0x04a7, 1, 2, true, false),
  274.     SimpleCaseEntry(0x2c28, 0, 2, false, true),
  275.     SimpleCaseEntry(0x2c58, 1, 2, true, false),
  276.     SimpleCaseEntry(0x019d, 0, 2, false, true),
  277.     SimpleCaseEntry(0x0272, 1, 2, true, false),
  278.     SimpleCaseEntry(0x1e7c, 0, 2, false, true),
  279.     SimpleCaseEntry(0x1e7d, 1, 2, true, false),
  280.     SimpleCaseEntry(0x2c29, 0, 2, false, true),
  281.     SimpleCaseEntry(0x2c59, 1, 2, true, false),
  282.     SimpleCaseEntry(0xa73e, 0, 2, false, true),
  283.     SimpleCaseEntry(0xa73f, 1, 2, true, false),
  284.     SimpleCaseEntry(0x04a8, 0, 2, false, true),
  285.     SimpleCaseEntry(0x04a9, 1, 2, true, false),
  286.     SimpleCaseEntry(0x2c2a, 0, 2, false, true),
  287.     SimpleCaseEntry(0x2c5a, 1, 2, true, false),
  288.     SimpleCaseEntry(0x019f, 0, 2, false, true),
  289.     SimpleCaseEntry(0x0275, 1, 2, true, false),
  290.     SimpleCaseEntry(0x1e7e, 0, 2, false, true),
  291.     SimpleCaseEntry(0x1e7f, 1, 2, true, false),
  292.     SimpleCaseEntry(0x2c2b, 0, 2, false, true),
  293.     SimpleCaseEntry(0x2c5b, 1, 2, true, false),
  294.     SimpleCaseEntry(0xa740, 0, 2, false, true),
  295.     SimpleCaseEntry(0xa741, 1, 2, true, false),
  296.     SimpleCaseEntry(0x01a0, 0, 2, false, true),
  297.     SimpleCaseEntry(0x01a1, 1, 2, true, false),
  298.     SimpleCaseEntry(0x04aa, 0, 2, false, true),
  299.     SimpleCaseEntry(0x04ab, 1, 2, true, false),
  300.     SimpleCaseEntry(0x2c2c, 0, 2, false, true),
  301.     SimpleCaseEntry(0x2c5c, 1, 2, true, false),
  302.     SimpleCaseEntry(0x1e80, 0, 2, false, true),
  303.     SimpleCaseEntry(0x1e81, 1, 2, true, false),
  304.     SimpleCaseEntry(0x2c2d, 0, 2, false, true),
  305.     SimpleCaseEntry(0x2c5d, 1, 2, true, false),
  306.     SimpleCaseEntry(0xa742, 0, 2, false, true),
  307.     SimpleCaseEntry(0xa743, 1, 2, true, false),
  308.     SimpleCaseEntry(0x01a2, 0, 2, false, true),
  309.     SimpleCaseEntry(0x01a3, 1, 2, true, false),
  310.     SimpleCaseEntry(0x04ac, 0, 2, false, true),
  311.     SimpleCaseEntry(0x04ad, 1, 2, true, false),
  312.     SimpleCaseEntry(0x2c2e, 0, 2, false, true),
  313.     SimpleCaseEntry(0x2c5e, 1, 2, true, false),
  314.     SimpleCaseEntry(0x1e82, 0, 2, false, true),
  315.     SimpleCaseEntry(0x1e83, 1, 2, true, false),
  316.     SimpleCaseEntry(0xa744, 0, 2, false, true),
  317.     SimpleCaseEntry(0xa745, 1, 2, true, false),
  318.     SimpleCaseEntry(0x01a4, 0, 2, false, true),
  319.     SimpleCaseEntry(0x01a5, 1, 2, true, false),
  320.     SimpleCaseEntry(0x04ae, 0, 2, false, true),
  321.     SimpleCaseEntry(0x04af, 1, 2, true, false),
  322.     SimpleCaseEntry(0x1e84, 0, 2, false, true),
  323.     SimpleCaseEntry(0x1e85, 1, 2, true, false),
  324.     SimpleCaseEntry(0xa746, 0, 2, false, true),
  325.     SimpleCaseEntry(0xa747, 1, 2, true, false),
  326.     SimpleCaseEntry(0x01a6, 0, 2, false, true),
  327.     SimpleCaseEntry(0x0280, 1, 2, true, false),
  328.     SimpleCaseEntry(0x04b0, 0, 2, false, true),
  329.     SimpleCaseEntry(0x04b1, 1, 2, true, false),
  330.     SimpleCaseEntry(0x01a7, 0, 2, false, true),
  331.     SimpleCaseEntry(0x01a8, 1, 2, true, false),
  332.     SimpleCaseEntry(0x1e86, 0, 2, false, true),
  333.     SimpleCaseEntry(0x1e87, 1, 2, true, false),
  334.     SimpleCaseEntry(0xa748, 0, 2, false, true),
  335.     SimpleCaseEntry(0xa749, 1, 2, true, false),
  336.     SimpleCaseEntry(0x04b2, 0, 2, false, true),
  337.     SimpleCaseEntry(0x04b3, 1, 2, true, false),
  338.     SimpleCaseEntry(0x01a9, 0, 2, false, true),
  339.     SimpleCaseEntry(0x0283, 1, 2, true, false),
  340.     SimpleCaseEntry(0x1e88, 0, 2, false, true),
  341.     SimpleCaseEntry(0x1e89, 1, 2, true, false),
  342.     SimpleCaseEntry(0xa74a, 0, 2, false, true),
  343.     SimpleCaseEntry(0xa74b, 1, 2, true, false),
  344.     SimpleCaseEntry(0x04b4, 0, 2, false, true),
  345.     SimpleCaseEntry(0x04b5, 1, 2, true, false),
  346.     SimpleCaseEntry(0x1e8a, 0, 2, false, true),
  347.     SimpleCaseEntry(0x1e8b, 1, 2, true, false),
  348.     SimpleCaseEntry(0xa74c, 0, 2, false, true),
  349.     SimpleCaseEntry(0xa74d, 1, 2, true, false),
  350.     SimpleCaseEntry(0x01ac, 0, 2, false, true),
  351.     SimpleCaseEntry(0x01ad, 1, 2, true, false),
  352.     SimpleCaseEntry(0x04b6, 0, 2, false, true),
  353.     SimpleCaseEntry(0x04b7, 1, 2, true, false),
  354.     SimpleCaseEntry(0x1e8c, 0, 2, false, true),
  355.     SimpleCaseEntry(0x1e8d, 1, 2, true, false),
  356.     SimpleCaseEntry(0xa74e, 0, 2, false, true),
  357.     SimpleCaseEntry(0xa74f, 1, 2, true, false),
  358.     SimpleCaseEntry(0x01ae, 0, 2, false, true),
  359.     SimpleCaseEntry(0x0288, 1, 2, true, false),
  360.     SimpleCaseEntry(0x04b8, 0, 2, false, true),
  361.     SimpleCaseEntry(0x04b9, 1, 2, true, false),
  362.     SimpleCaseEntry(0x10400, 0, 2, false, true),
  363.     SimpleCaseEntry(0x10428, 1, 2, true, false),
  364.     SimpleCaseEntry(0x01af, 0, 2, false, true),
  365.     SimpleCaseEntry(0x01b0, 1, 2, true, false),
  366.     SimpleCaseEntry(0x1e8e, 0, 2, false, true),
  367.     SimpleCaseEntry(0x1e8f, 1, 2, true, false),
  368.     SimpleCaseEntry(0xa750, 0, 2, false, true),
  369.     SimpleCaseEntry(0xa751, 1, 2, true, false),
  370.     SimpleCaseEntry(0x10401, 0, 2, false, true),
  371.     SimpleCaseEntry(0x10429, 1, 2, true, false),
  372.     SimpleCaseEntry(0x04ba, 0, 2, false, true),
  373.     SimpleCaseEntry(0x04bb, 1, 2, true, false),
  374.     SimpleCaseEntry(0x10402, 0, 2, false, true),
  375.     SimpleCaseEntry(0x1042a, 1, 2, true, false),
  376.     SimpleCaseEntry(0x01b1, 0, 2, false, true),
  377.     SimpleCaseEntry(0x028a, 1, 2, true, false),
  378.     SimpleCaseEntry(0x1e90, 0, 2, false, true),
  379.     SimpleCaseEntry(0x1e91, 1, 2, true, false),
  380.     SimpleCaseEntry(0xa752, 0, 2, false, true),
  381.     SimpleCaseEntry(0xa753, 1, 2, true, false),
  382.     SimpleCaseEntry(0x10403, 0, 2, false, true),
  383.     SimpleCaseEntry(0x1042b, 1, 2, true, false),
  384.     SimpleCaseEntry(0x01b2, 0, 2, false, true),
  385.     SimpleCaseEntry(0x028b, 1, 2, true, false),
  386.     SimpleCaseEntry(0x04bc, 0, 2, false, true),
  387.     SimpleCaseEntry(0x04bd, 1, 2, true, false),
  388.     SimpleCaseEntry(0x10404, 0, 2, false, true),
  389.     SimpleCaseEntry(0x1042c, 1, 2, true, false),
  390.     SimpleCaseEntry(0x01b3, 0, 2, false, true),
  391.     SimpleCaseEntry(0x01b4, 1, 2, true, false),
  392.     SimpleCaseEntry(0x1e92, 0, 2, false, true),
  393.     SimpleCaseEntry(0x1e93, 1, 2, true, false),
  394.     SimpleCaseEntry(0xa754, 0, 2, false, true),
  395.     SimpleCaseEntry(0xa755, 1, 2, true, false),
  396.     SimpleCaseEntry(0x10405, 0, 2, false, true),
  397.     SimpleCaseEntry(0x1042d, 1, 2, true, false),
  398.     SimpleCaseEntry(0x04be, 0, 2, false, true),
  399.     SimpleCaseEntry(0x04bf, 1, 2, true, false),
  400.     SimpleCaseEntry(0x10406, 0, 2, false, true),
  401.     SimpleCaseEntry(0x1042e, 1, 2, true, false),
  402.     SimpleCaseEntry(0x01b5, 0, 2, false, true),
  403.     SimpleCaseEntry(0x01b6, 1, 2, true, false),
  404.     SimpleCaseEntry(0x1e94, 0, 2, false, true),
  405.     SimpleCaseEntry(0x1e95, 1, 2, true, false),
  406.     SimpleCaseEntry(0xa756, 0, 2, false, true),
  407.     SimpleCaseEntry(0xa757, 1, 2, true, false),
  408.     SimpleCaseEntry(0x10407, 0, 2, false, true),
  409.     SimpleCaseEntry(0x1042f, 1, 2, true, false),
  410.     SimpleCaseEntry(0x04c0, 0, 2, false, true),
  411.     SimpleCaseEntry(0x04cf, 1, 2, true, false),
  412.     SimpleCaseEntry(0x10408, 0, 2, false, true),
  413.     SimpleCaseEntry(0x10430, 1, 2, true, false),
  414.     SimpleCaseEntry(0x01b7, 0, 2, false, true),
  415.     SimpleCaseEntry(0x0292, 1, 2, true, false),
  416.     SimpleCaseEntry(0x04c1, 0, 2, false, true),
  417.     SimpleCaseEntry(0x04c2, 1, 2, true, false),
  418.     SimpleCaseEntry(0xa758, 0, 2, false, true),
  419.     SimpleCaseEntry(0xa759, 1, 2, true, false),
  420.     SimpleCaseEntry(0x10409, 0, 2, false, true),
  421.     SimpleCaseEntry(0x10431, 1, 2, true, false),
  422.     SimpleCaseEntry(0x01b8, 0, 2, false, true),
  423.     SimpleCaseEntry(0x01b9, 1, 2, true, false),
  424.     SimpleCaseEntry(0x1040a, 0, 2, false, true),
  425.     SimpleCaseEntry(0x10432, 1, 2, true, false),
  426.     SimpleCaseEntry(0x04c3, 0, 2, false, true),
  427.     SimpleCaseEntry(0x04c4, 1, 2, true, false),
  428.     SimpleCaseEntry(0xa75a, 0, 2, false, true),
  429.     SimpleCaseEntry(0xa75b, 1, 2, true, false),
  430.     SimpleCaseEntry(0x1040b, 0, 2, false, true),
  431.     SimpleCaseEntry(0x10433, 1, 2, true, false),
  432.     SimpleCaseEntry(0x1040c, 0, 2, false, true),
  433.     SimpleCaseEntry(0x10434, 1, 2, true, false),
  434.     SimpleCaseEntry(0x04c5, 0, 2, false, true),
  435.     SimpleCaseEntry(0x04c6, 1, 2, true, false),
  436.     SimpleCaseEntry(0xa75c, 0, 2, false, true),
  437.     SimpleCaseEntry(0xa75d, 1, 2, true, false),
  438.     SimpleCaseEntry(0x1040d, 0, 2, false, true),
  439.     SimpleCaseEntry(0x10435, 1, 2, true, false),
  440.     SimpleCaseEntry(0x01bc, 0, 2, false, true),
  441.     SimpleCaseEntry(0x01bd, 1, 2, true, false),
  442.     SimpleCaseEntry(0x1e9b, 0, 3, true, false),
  443.     SimpleCaseEntry(0x1e61, 1, 3, true, false),
  444.     SimpleCaseEntry(0x1e60, 2, 3, false, true),
  445.     SimpleCaseEntry(0x1040e, 0, 2, false, true),
  446.     SimpleCaseEntry(0x10436, 1, 2, true, false),
  447.     SimpleCaseEntry(0x04c7, 0, 2, false, true),
  448.     SimpleCaseEntry(0x04c8, 1, 2, true, false),
  449.     SimpleCaseEntry(0xa75e, 0, 2, false, true),
  450.     SimpleCaseEntry(0xa75f, 1, 2, true, false),
  451.     SimpleCaseEntry(0x1040f, 0, 2, false, true),
  452.     SimpleCaseEntry(0x10437, 1, 2, true, false),
  453.     SimpleCaseEntry(0x10410, 0, 2, false, true),
  454.     SimpleCaseEntry(0x10438, 1, 2, true, false),
  455.     SimpleCaseEntry(0x04c9, 0, 2, false, true),
  456.     SimpleCaseEntry(0x04ca, 1, 2, true, false),
  457.     SimpleCaseEntry(0x1e9e, 0, 2, false, true),
  458.     SimpleCaseEntry(0x00df, 1, 2, true, false),
  459.     SimpleCaseEntry(0xa760, 0, 2, false, true),
  460.     SimpleCaseEntry(0xa761, 1, 2, true, false),
  461.     SimpleCaseEntry(0x10411, 0, 2, false, true),
  462.     SimpleCaseEntry(0x10439, 1, 2, true, false),
  463.     SimpleCaseEntry(0x0345, 0, 4, true, false),
  464.     SimpleCaseEntry(0x03b9, 1, 4, true, false),
  465.     SimpleCaseEntry(0x0399, 2, 4, false, true),
  466.     SimpleCaseEntry(0x1fbe, 3, 4, true, false),
  467.     SimpleCaseEntry(0x10412, 0, 2, false, true),
  468.     SimpleCaseEntry(0x1043a, 1, 2, true, false),
  469.     SimpleCaseEntry(0x04cb, 0, 2, false, true),
  470.     SimpleCaseEntry(0x04cc, 1, 2, true, false),
  471.     SimpleCaseEntry(0x1ea0, 0, 2, false, true),
  472.     SimpleCaseEntry(0x1ea1, 1, 2, true, false),
  473.     SimpleCaseEntry(0xa762, 0, 2, false, true),
  474.     SimpleCaseEntry(0xa763, 1, 2, true, false),
  475.     SimpleCaseEntry(0x10413, 0, 2, false, true),
  476.     SimpleCaseEntry(0x1043b, 1, 2, true, false),
  477.     SimpleCaseEntry(0x10414, 0, 2, false, true),
  478.     SimpleCaseEntry(0x1043c, 1, 2, true, false),
  479.     SimpleCaseEntry(0x04cd, 0, 2, false, true),
  480.     SimpleCaseEntry(0x04ce, 1, 2, true, false),
  481.     SimpleCaseEntry(0x1ea2, 0, 2, false, true),
  482.     SimpleCaseEntry(0x1ea3, 1, 2, true, false),
  483.     SimpleCaseEntry(0x24b6, 0, 2, false, true),
  484.     SimpleCaseEntry(0x24d0, 1, 2, true, false),
  485.     SimpleCaseEntry(0xa764, 0, 2, false, true),
  486.     SimpleCaseEntry(0xa765, 1, 2, true, false),
  487.     SimpleCaseEntry(0x10415, 0, 2, false, true),
  488.     SimpleCaseEntry(0x1043d, 1, 2, true, false),
  489.     SimpleCaseEntry(0x01c4, 0, 3, false, true),
  490.     SimpleCaseEntry(0x01c6, 1, 3, true, false),
  491.     SimpleCaseEntry(0x01c5, 2, 3, false, false),
  492.     SimpleCaseEntry(0x24b7, 0, 2, false, true),
  493.     SimpleCaseEntry(0x24d1, 1, 2, true, false),
  494.     SimpleCaseEntry(0x10416, 0, 2, false, true),
  495.     SimpleCaseEntry(0x1043e, 1, 2, true, false),
  496.     SimpleCaseEntry(0x01c5, 0, 3, false, false),
  497.     SimpleCaseEntry(0x01c6, 1, 3, true, false),
  498.     SimpleCaseEntry(0x01c4, 2, 3, false, true),
  499.     SimpleCaseEntry(0x1ea4, 0, 2, false, true),
  500.     SimpleCaseEntry(0x1ea5, 1, 2, true, false),
  501.     SimpleCaseEntry(0x24b8, 0, 2, false, true),
  502.     SimpleCaseEntry(0x24d2, 1, 2, true, false),
  503.     SimpleCaseEntry(0xa766, 0, 2, false, true),
  504.     SimpleCaseEntry(0xa767, 1, 2, true, false),
  505.     SimpleCaseEntry(0x10417, 0, 2, false, true),
  506.     SimpleCaseEntry(0x1043f, 1, 2, true, false),
  507.     SimpleCaseEntry(0x0041, 0, 2, false, true),
  508.     SimpleCaseEntry(0x0061, 1, 2, true, false),
  509.     SimpleCaseEntry(0x04d0, 0, 2, false, true),
  510.     SimpleCaseEntry(0x04d1, 1, 2, true, false),
  511.     SimpleCaseEntry(0x24b9, 0, 2, false, true),
  512.     SimpleCaseEntry(0x24d3, 1, 2, true, false),
  513.     SimpleCaseEntry(0x10418, 0, 2, false, true),
  514.     SimpleCaseEntry(0x10440, 1, 2, true, false),
  515.     SimpleCaseEntry(0x0042, 0, 2, false, true),
  516.     SimpleCaseEntry(0x0062, 1, 2, true, false),
  517.     SimpleCaseEntry(0x01c7, 0, 3, false, true),
  518.     SimpleCaseEntry(0x01c9, 1, 3, true, false),
  519.     SimpleCaseEntry(0x01c8, 2, 3, false, false),
  520.     SimpleCaseEntry(0x1ea6, 0, 2, false, true),
  521.     SimpleCaseEntry(0x1ea7, 1, 2, true, false),
  522.     SimpleCaseEntry(0x24ba, 0, 2, false, true),
  523.     SimpleCaseEntry(0x24d4, 1, 2, true, false),
  524.     SimpleCaseEntry(0xa768, 0, 2, false, true),
  525.     SimpleCaseEntry(0xa769, 1, 2, true, false),
  526.     SimpleCaseEntry(0x10419, 0, 2, false, true),
  527.     SimpleCaseEntry(0x10441, 1, 2, true, false),
  528.     SimpleCaseEntry(0x0043, 0, 2, false, true),
  529.     SimpleCaseEntry(0x0063, 1, 2, true, false),
  530.     SimpleCaseEntry(0x01c8, 0, 3, false, false),
  531.     SimpleCaseEntry(0x01c9, 1, 3, true, false),
  532.     SimpleCaseEntry(0x01c7, 2, 3, false, true),
  533.     SimpleCaseEntry(0x04d2, 0, 2, false, true),
  534.     SimpleCaseEntry(0x04d3, 1, 2, true, false),
  535.     SimpleCaseEntry(0x24bb, 0, 2, false, true),
  536.     SimpleCaseEntry(0x24d5, 1, 2, true, false),
  537.     SimpleCaseEntry(0x1041a, 0, 2, false, true),
  538.     SimpleCaseEntry(0x10442, 1, 2, true, false),
  539.     SimpleCaseEntry(0x0044, 0, 2, false, true),
  540.     SimpleCaseEntry(0x0064, 1, 2, true, false),
  541.     SimpleCaseEntry(0x1ea8, 0, 2, false, true),
  542.     SimpleCaseEntry(0x1ea9, 1, 2, true, false),
  543.     SimpleCaseEntry(0x24bc, 0, 2, false, true),
  544.     SimpleCaseEntry(0x24d6, 1, 2, true, false),
  545.     SimpleCaseEntry(0xa76a, 0, 2, false, true),
  546.     SimpleCaseEntry(0xa76b, 1, 2, true, false),
  547.     SimpleCaseEntry(0x1041b, 0, 2, false, true),
  548.     SimpleCaseEntry(0x10443, 1, 2, true, false),
  549.     SimpleCaseEntry(0x0045, 0, 2, false, true),
  550.     SimpleCaseEntry(0x0065, 1, 2, true, false),
  551.     SimpleCaseEntry(0x01ca, 0, 3, false, true),
  552.     SimpleCaseEntry(0x01cc, 1, 3, true, false),
  553.     SimpleCaseEntry(0x01cb, 2, 3, false, false),
  554.     SimpleCaseEntry(0x04d4, 0, 2, false, true),
  555.     SimpleCaseEntry(0x04d5, 1, 2, true, false),
  556.     SimpleCaseEntry(0x24bd, 0, 2, false, true),
  557.     SimpleCaseEntry(0x24d7, 1, 2, true, false),
  558.     SimpleCaseEntry(0x1041c, 0, 2, false, true),
  559.     SimpleCaseEntry(0x10444, 1, 2, true, false),
  560.     SimpleCaseEntry(0x0046, 0, 2, false, true),
  561.     SimpleCaseEntry(0x0066, 1, 2, true, false),
  562.     SimpleCaseEntry(0x01cb, 0, 3, false, false),
  563.     SimpleCaseEntry(0x01cc, 1, 3, true, false),
  564.     SimpleCaseEntry(0x01ca, 2, 3, false, true),
  565.     SimpleCaseEntry(0x1eaa, 0, 2, false, true),
  566.     SimpleCaseEntry(0x1eab, 1, 2, true, false),
  567.     SimpleCaseEntry(0x24be, 0, 2, false, true),
  568.     SimpleCaseEntry(0x24d8, 1, 2, true, false),
  569.     SimpleCaseEntry(0xa76c, 0, 2, false, true),
  570.     SimpleCaseEntry(0xa76d, 1, 2, true, false),
  571.     SimpleCaseEntry(0x1041d, 0, 2, false, true),
  572.     SimpleCaseEntry(0x10445, 1, 2, true, false),
  573.     SimpleCaseEntry(0x0047, 0, 2, false, true),
  574.     SimpleCaseEntry(0x0067, 1, 2, true, false),
  575.     SimpleCaseEntry(0x04d6, 0, 2, false, true),
  576.     SimpleCaseEntry(0x04d7, 1, 2, true, false),
  577.     SimpleCaseEntry(0x24bf, 0, 2, false, true),
  578.     SimpleCaseEntry(0x24d9, 1, 2, true, false),
  579.     SimpleCaseEntry(0x1041e, 0, 2, false, true),
  580.     SimpleCaseEntry(0x10446, 1, 2, true, false),
  581.     SimpleCaseEntry(0x0048, 0, 2, false, true),
  582.     SimpleCaseEntry(0x0068, 1, 2, true, false),
  583.     SimpleCaseEntry(0x01cd, 0, 2, false, true),
  584.     SimpleCaseEntry(0x01ce, 1, 2, true, false),
  585.     SimpleCaseEntry(0x1eac, 0, 2, false, true),
  586.     SimpleCaseEntry(0x1ead, 1, 2, true, false),
  587.     SimpleCaseEntry(0x24c0, 0, 2, false, true),
  588.     SimpleCaseEntry(0x24da, 1, 2, true, false),
  589.     SimpleCaseEntry(0xa76e, 0, 2, false, true),
  590.     SimpleCaseEntry(0xa76f, 1, 2, true, false),
  591.     SimpleCaseEntry(0x1041f, 0, 2, false, true),
  592.     SimpleCaseEntry(0x10447, 1, 2, true, false),
  593.     SimpleCaseEntry(0x0049, 0, 2, false, true),
  594.     SimpleCaseEntry(0x0069, 1, 2, true, false),
  595.     SimpleCaseEntry(0x04d8, 0, 2, false, true),
  596.     SimpleCaseEntry(0x04d9, 1, 2, true, false),
  597.     SimpleCaseEntry(0x24c1, 0, 2, false, true),
  598.     SimpleCaseEntry(0x24db, 1, 2, true, false),
  599.     SimpleCaseEntry(0x10420, 0, 2, false, true),
  600.     SimpleCaseEntry(0x10448, 1, 2, true, false),
  601.     SimpleCaseEntry(0x004a, 0, 2, false, true),
  602.     SimpleCaseEntry(0x006a, 1, 2, true, false),
  603.     SimpleCaseEntry(0x01cf, 0, 2, false, true),
  604.     SimpleCaseEntry(0x01d0, 1, 2, true, false),
  605.     SimpleCaseEntry(0x1eae, 0, 2, false, true),
  606.     SimpleCaseEntry(0x1eaf, 1, 2, true, false),
  607.     SimpleCaseEntry(0x24c2, 0, 2, false, true),
  608.     SimpleCaseEntry(0x24dc, 1, 2, true, false),
  609.     SimpleCaseEntry(0x10421, 0, 2, false, true),
  610.     SimpleCaseEntry(0x10449, 1, 2, true, false),
  611.     SimpleCaseEntry(0x004b, 0, 3, false, true),
  612.     SimpleCaseEntry(0x006b, 1, 3, true, false),
  613.     SimpleCaseEntry(0x212a, 2, 3, false, true),
  614.     SimpleCaseEntry(0x04da, 0, 2, false, true),
  615.     SimpleCaseEntry(0x04db, 1, 2, true, false),
  616.     SimpleCaseEntry(0x24c3, 0, 2, false, true),
  617.     SimpleCaseEntry(0x24dd, 1, 2, true, false),
  618.     SimpleCaseEntry(0x10422, 0, 2, false, true),
  619.     SimpleCaseEntry(0x1044a, 1, 2, true, false),
  620.     SimpleCaseEntry(0x004c, 0, 2, false, true),
  621.     SimpleCaseEntry(0x006c, 1, 2, true, false),
  622.     SimpleCaseEntry(0x01d1, 0, 2, false, true),
  623.     SimpleCaseEntry(0x01d2, 1, 2, true, false),
  624.     SimpleCaseEntry(0x1eb0, 0, 2, false, true),
  625.     SimpleCaseEntry(0x1eb1, 1, 2, true, false),
  626.     SimpleCaseEntry(0x24c4, 0, 2, false, true),
  627.     SimpleCaseEntry(0x24de, 1, 2, true, false),
  628.     SimpleCaseEntry(0x10423, 0, 2, false, true),
  629.     SimpleCaseEntry(0x1044b, 1, 2, true, false),
  630.     SimpleCaseEntry(0x004d, 0, 2, false, true),
  631.     SimpleCaseEntry(0x006d, 1, 2, true, false),
  632.     SimpleCaseEntry(0x04dc, 0, 2, false, true),
  633.     SimpleCaseEntry(0x04dd, 1, 2, true, false),
  634.     SimpleCaseEntry(0x24c5, 0, 2, false, true),
  635.     SimpleCaseEntry(0x24df, 1, 2, true, false),
  636.     SimpleCaseEntry(0x10424, 0, 2, false, true),
  637.     SimpleCaseEntry(0x1044c, 1, 2, true, false),
  638.     SimpleCaseEntry(0x004e, 0, 2, false, true),
  639.     SimpleCaseEntry(0x006e, 1, 2, true, false),
  640.     SimpleCaseEntry(0x01d3, 0, 2, false, true),
  641.     SimpleCaseEntry(0x01d4, 1, 2, true, false),
  642.     SimpleCaseEntry(0x1eb2, 0, 2, false, true),
  643.     SimpleCaseEntry(0x1eb3, 1, 2, true, false),
  644.     SimpleCaseEntry(0x24c6, 0, 2, false, true),
  645.     SimpleCaseEntry(0x24e0, 1, 2, true, false),
  646.     SimpleCaseEntry(0x10425, 0, 2, false, true),
  647.     SimpleCaseEntry(0x1044d, 1, 2, true, false),
  648.     SimpleCaseEntry(0x004f, 0, 2, false, true),
  649.     SimpleCaseEntry(0x006f, 1, 2, true, false),
  650.     SimpleCaseEntry(0x04de, 0, 2, false, true),
  651.     SimpleCaseEntry(0x04df, 1, 2, true, false),
  652.     SimpleCaseEntry(0x24c7, 0, 2, false, true),
  653.     SimpleCaseEntry(0x24e1, 1, 2, true, false),
  654.     SimpleCaseEntry(0x2c60, 0, 2, false, true),
  655.     SimpleCaseEntry(0x2c61, 1, 2, true, false),
  656.     SimpleCaseEntry(0x10426, 0, 2, false, true),
  657.     SimpleCaseEntry(0x1044e, 1, 2, true, false),
  658.     SimpleCaseEntry(0x0050, 0, 2, false, true),
  659.     SimpleCaseEntry(0x0070, 1, 2, true, false),
  660.     SimpleCaseEntry(0x01d5, 0, 2, false, true),
  661.     SimpleCaseEntry(0x01d6, 1, 2, true, false),
  662.     SimpleCaseEntry(0x1eb4, 0, 2, false, true),
  663.     SimpleCaseEntry(0x1eb5, 1, 2, true, false),
  664.     SimpleCaseEntry(0x24c8, 0, 2, false, true),
  665.     SimpleCaseEntry(0x24e2, 1, 2, true, false),
  666.     SimpleCaseEntry(0x10427, 0, 2, false, true),
  667.     SimpleCaseEntry(0x1044f, 1, 2, true, false),
  668.     SimpleCaseEntry(0x0051, 0, 2, false, true),
  669.     SimpleCaseEntry(0x0071, 1, 2, true, false),
  670.     SimpleCaseEntry(0x04e0, 0, 2, false, true),
  671.     SimpleCaseEntry(0x04e1, 1, 2, true, false),
  672.     SimpleCaseEntry(0x24c9, 0, 2, false, true),
  673.     SimpleCaseEntry(0x24e3, 1, 2, true, false),
  674.     SimpleCaseEntry(0x2c62, 0, 2, false, true),
  675.     SimpleCaseEntry(0x026b, 1, 2, true, false),
  676.     SimpleCaseEntry(0x0052, 0, 2, false, true),
  677.     SimpleCaseEntry(0x0072, 1, 2, true, false),
  678.     SimpleCaseEntry(0x01d7, 0, 2, false, true),
  679.     SimpleCaseEntry(0x01d8, 1, 2, true, false),
  680.     SimpleCaseEntry(0x1eb6, 0, 2, false, true),
  681.     SimpleCaseEntry(0x1eb7, 1, 2, true, false),
  682.     SimpleCaseEntry(0x24ca, 0, 2, false, true),
  683.     SimpleCaseEntry(0x24e4, 1, 2, true, false),
  684.     SimpleCaseEntry(0x2c63, 0, 2, false, true),
  685.     SimpleCaseEntry(0x1d7d, 1, 2, true, false),
  686.     SimpleCaseEntry(0x0053, 0, 3, false, true),
  687.     SimpleCaseEntry(0x0073, 1, 3, true, false),
  688.     SimpleCaseEntry(0x017f, 2, 3, true, false),
  689.     SimpleCaseEntry(0x04e2, 0, 2, false, true),
  690.     SimpleCaseEntry(0x04e3, 1, 2, true, false),
  691.     SimpleCaseEntry(0x24cb, 0, 2, false, true),
  692.     SimpleCaseEntry(0x24e5, 1, 2, true, false),
  693.     SimpleCaseEntry(0x2c64, 0, 2, false, true),
  694.     SimpleCaseEntry(0x027d, 1, 2, true, false),
  695.     SimpleCaseEntry(0xa779, 0, 2, false, true),
  696.     SimpleCaseEntry(0xa77a, 1, 2, true, false),
  697.     SimpleCaseEntry(0x0054, 0, 2, false, true),
  698.     SimpleCaseEntry(0x0074, 1, 2, true, false),
  699.     SimpleCaseEntry(0x01d9, 0, 2, false, true),
  700.     SimpleCaseEntry(0x01da, 1, 2, true, false),
  701.     SimpleCaseEntry(0x1eb8, 0, 2, false, true),
  702.     SimpleCaseEntry(0x1eb9, 1, 2, true, false),
  703.     SimpleCaseEntry(0x24cc, 0, 2, false, true),
  704.     SimpleCaseEntry(0x24e6, 1, 2, true, false),
  705.     SimpleCaseEntry(0x0055, 0, 2, false, true),
  706.     SimpleCaseEntry(0x0075, 1, 2, true, false),
  707.     SimpleCaseEntry(0x04e4, 0, 2, false, true),
  708.     SimpleCaseEntry(0x04e5, 1, 2, true, false),
  709.     SimpleCaseEntry(0x24cd, 0, 2, false, true),
  710.     SimpleCaseEntry(0x24e7, 1, 2, true, false),
  711.     SimpleCaseEntry(0xa77b, 0, 2, false, true),
  712.     SimpleCaseEntry(0xa77c, 1, 2, true, false),
  713.     SimpleCaseEntry(0x0056, 0, 2, false, true),
  714.     SimpleCaseEntry(0x0076, 1, 2, true, false),
  715.     SimpleCaseEntry(0x01db, 0, 2, false, true),
  716.     SimpleCaseEntry(0x01dc, 1, 2, true, false),
  717.     SimpleCaseEntry(0x1eba, 0, 2, false, true),
  718.     SimpleCaseEntry(0x1ebb, 1, 2, true, false),
  719.     SimpleCaseEntry(0x24ce, 0, 2, false, true),
  720.     SimpleCaseEntry(0x24e8, 1, 2, true, false),
  721.     SimpleCaseEntry(0x2c67, 0, 2, false, true),
  722.     SimpleCaseEntry(0x2c68, 1, 2, true, false),
  723.     SimpleCaseEntry(0x0057, 0, 2, false, true),
  724.     SimpleCaseEntry(0x0077, 1, 2, true, false),
  725.     SimpleCaseEntry(0x04e6, 0, 2, false, true),
  726.     SimpleCaseEntry(0x04e7, 1, 2, true, false),
  727.     SimpleCaseEntry(0x24cf, 0, 2, false, true),
  728.     SimpleCaseEntry(0x24e9, 1, 2, true, false),
  729.     SimpleCaseEntry(0xa77d, 0, 2, false, true),
  730.     SimpleCaseEntry(0x1d79, 1, 2, true, false),
  731.     SimpleCaseEntry(0x0058, 0, 2, false, true),
  732.     SimpleCaseEntry(0x0078, 1, 2, true, false),
  733.     SimpleCaseEntry(0x1ebc, 0, 2, false, true),
  734.     SimpleCaseEntry(0x1ebd, 1, 2, true, false),
  735.     SimpleCaseEntry(0x2c69, 0, 2, false, true),
  736.     SimpleCaseEntry(0x2c6a, 1, 2, true, false),
  737.     SimpleCaseEntry(0xa77e, 0, 2, false, true),
  738.     SimpleCaseEntry(0xa77f, 1, 2, true, false),
  739.     SimpleCaseEntry(0x0059, 0, 2, false, true),
  740.     SimpleCaseEntry(0x0079, 1, 2, true, false),
  741.     SimpleCaseEntry(0x01de, 0, 2, false, true),
  742.     SimpleCaseEntry(0x01df, 1, 2, true, false),
  743.     SimpleCaseEntry(0x04e8, 0, 2, false, true),
  744.     SimpleCaseEntry(0x04e9, 1, 2, true, false),
  745.     SimpleCaseEntry(0x005a, 0, 2, false, true),
  746.     SimpleCaseEntry(0x007a, 1, 2, true, false),
  747.     SimpleCaseEntry(0x1ebe, 0, 2, false, true),
  748.     SimpleCaseEntry(0x1ebf, 1, 2, true, false),
  749.     SimpleCaseEntry(0x2c6b, 0, 2, false, true),
  750.     SimpleCaseEntry(0x2c6c, 1, 2, true, false),
  751.     SimpleCaseEntry(0xa780, 0, 2, false, true),
  752.     SimpleCaseEntry(0xa781, 1, 2, true, false),
  753.     SimpleCaseEntry(0x01e0, 0, 2, false, true),
  754.     SimpleCaseEntry(0x01e1, 1, 2, true, false),
  755.     SimpleCaseEntry(0x04ea, 0, 2, false, true),
  756.     SimpleCaseEntry(0x04eb, 1, 2, true, false),
  757.     SimpleCaseEntry(0x1ec0, 0, 2, false, true),
  758.     SimpleCaseEntry(0x1ec1, 1, 2, true, false),
  759.     SimpleCaseEntry(0x2c6d, 0, 2, false, true),
  760.     SimpleCaseEntry(0x0251, 1, 2, true, false),
  761.     SimpleCaseEntry(0xa782, 0, 2, false, true),
  762.     SimpleCaseEntry(0xa783, 1, 2, true, false),
  763.     SimpleCaseEntry(0x01e2, 0, 2, false, true),
  764.     SimpleCaseEntry(0x01e3, 1, 2, true, false),
  765.     SimpleCaseEntry(0x04ec, 0, 2, false, true),
  766.     SimpleCaseEntry(0x04ed, 1, 2, true, false),
  767.     SimpleCaseEntry(0x2c6e, 0, 2, false, true),
  768.     SimpleCaseEntry(0x0271, 1, 2, true, false),
  769.     SimpleCaseEntry(0x1ec2, 0, 2, false, true),
  770.     SimpleCaseEntry(0x1ec3, 1, 2, true, false),
  771.     SimpleCaseEntry(0x2c6f, 0, 2, false, true),
  772.     SimpleCaseEntry(0x0250, 1, 2, true, false),
  773.     SimpleCaseEntry(0xa784, 0, 2, false, true),
  774.     SimpleCaseEntry(0xa785, 1, 2, true, false),
  775.     SimpleCaseEntry(0x01e4, 0, 2, false, true),
  776.     SimpleCaseEntry(0x01e5, 1, 2, true, false),
  777.     SimpleCaseEntry(0x04ee, 0, 2, false, true),
  778.     SimpleCaseEntry(0x04ef, 1, 2, true, false),
  779.     SimpleCaseEntry(0x2c70, 0, 2, false, true),
  780.     SimpleCaseEntry(0x0252, 1, 2, true, false),
  781.     SimpleCaseEntry(0x1ec4, 0, 2, false, true),
  782.     SimpleCaseEntry(0x1ec5, 1, 2, true, false),
  783.     SimpleCaseEntry(0xa786, 0, 2, false, true),
  784.     SimpleCaseEntry(0xa787, 1, 2, true, false),
  785.     SimpleCaseEntry(0x01e6, 0, 2, false, true),
  786.     SimpleCaseEntry(0x01e7, 1, 2, true, false),
  787.     SimpleCaseEntry(0x04f0, 0, 2, false, true),
  788.     SimpleCaseEntry(0x04f1, 1, 2, true, false),
  789.     SimpleCaseEntry(0x2c72, 0, 2, false, true),
  790.     SimpleCaseEntry(0x2c73, 1, 2, true, false),
  791.     SimpleCaseEntry(0x1ec6, 0, 2, false, true),
  792.     SimpleCaseEntry(0x1ec7, 1, 2, true, false),
  793.     SimpleCaseEntry(0x01e8, 0, 2, false, true),
  794.     SimpleCaseEntry(0x01e9, 1, 2, true, false),
  795.     SimpleCaseEntry(0x04f2, 0, 2, false, true),
  796.     SimpleCaseEntry(0x04f3, 1, 2, true, false),
  797.     SimpleCaseEntry(0x1ec8, 0, 2, false, true),
  798.     SimpleCaseEntry(0x1ec9, 1, 2, true, false),
  799.     SimpleCaseEntry(0x2c75, 0, 2, false, true),
  800.     SimpleCaseEntry(0x2c76, 1, 2, true, false),
  801.     SimpleCaseEntry(0x01ea, 0, 2, false, true),
  802.     SimpleCaseEntry(0x01eb, 1, 2, true, false),
  803.     SimpleCaseEntry(0x04f4, 0, 2, false, true),
  804.     SimpleCaseEntry(0x04f5, 1, 2, true, false),
  805.     SimpleCaseEntry(0xa78b, 0, 2, false, true),
  806.     SimpleCaseEntry(0xa78c, 1, 2, true, false),
  807.     SimpleCaseEntry(0x0370, 0, 2, false, true),
  808.     SimpleCaseEntry(0x0371, 1, 2, true, false),
  809.     SimpleCaseEntry(0x1eca, 0, 2, false, true),
  810.     SimpleCaseEntry(0x1ecb, 1, 2, true, false),
  811.     SimpleCaseEntry(0x01ec, 0, 2, false, true),
  812.     SimpleCaseEntry(0x01ed, 1, 2, true, false),
  813.     SimpleCaseEntry(0x04f6, 0, 2, false, true),
  814.     SimpleCaseEntry(0x04f7, 1, 2, true, false),
  815.     SimpleCaseEntry(0xa78d, 0, 2, false, true),
  816.     SimpleCaseEntry(0x0265, 1, 2, true, false),
  817.     SimpleCaseEntry(0x0372, 0, 2, false, true),
  818.     SimpleCaseEntry(0x0373, 1, 2, true, false),
  819.     SimpleCaseEntry(0x1ecc, 0, 2, false, true),
  820.     SimpleCaseEntry(0x1ecd, 1, 2, true, false),
  821.     SimpleCaseEntry(0x01ee, 0, 2, false, true),
  822.     SimpleCaseEntry(0x01ef, 1, 2, true, false),
  823.     SimpleCaseEntry(0x04f8, 0, 2, false, true),
  824.     SimpleCaseEntry(0x04f9, 1, 2, true, false),
  825.     SimpleCaseEntry(0x1ece, 0, 2, false, true),
  826.     SimpleCaseEntry(0x1ecf, 1, 2, true, false),
  827.     SimpleCaseEntry(0xa790, 0, 2, false, true),
  828.     SimpleCaseEntry(0xa791, 1, 2, true, false),
  829.     SimpleCaseEntry(0x04fa, 0, 2, false, true),
  830.     SimpleCaseEntry(0x04fb, 1, 2, true, false),
  831.     SimpleCaseEntry(0x01f1, 0, 3, false, true),
  832.     SimpleCaseEntry(0x01f3, 1, 3, true, false),
  833.     SimpleCaseEntry(0x01f2, 2, 3, false, false),
  834.     SimpleCaseEntry(0x0376, 0, 2, false, true),
  835.     SimpleCaseEntry(0x0377, 1, 2, true, false),
  836.     SimpleCaseEntry(0x1ed0, 0, 2, false, true),
  837.     SimpleCaseEntry(0x1ed1, 1, 2, true, false),
  838.     SimpleCaseEntry(0xa792, 0, 2, false, true),
  839.     SimpleCaseEntry(0xa793, 1, 2, true, false),
  840.     SimpleCaseEntry(0x01f2, 0, 3, false, false),
  841.     SimpleCaseEntry(0x01f3, 1, 3, true, false),
  842.     SimpleCaseEntry(0x01f1, 2, 3, false, true),
  843.     SimpleCaseEntry(0x04fc, 0, 2, false, true),
  844.     SimpleCaseEntry(0x04fd, 1, 2, true, false),
  845.     SimpleCaseEntry(0x2c7e, 0, 2, false, true),
  846.     SimpleCaseEntry(0x023f, 1, 2, true, false),
  847.     SimpleCaseEntry(0x1ed2, 0, 2, false, true),
  848.     SimpleCaseEntry(0x1ed3, 1, 2, true, false),
  849.     SimpleCaseEntry(0x2c7f, 0, 2, false, true),
  850.     SimpleCaseEntry(0x0240, 1, 2, true, false),
  851.     SimpleCaseEntry(0x01f4, 0, 2, false, true),
  852.     SimpleCaseEntry(0x01f5, 1, 2, true, false),
  853.     SimpleCaseEntry(0x04fe, 0, 2, false, true),
  854.     SimpleCaseEntry(0x04ff, 1, 2, true, false),
  855.     SimpleCaseEntry(0x2c80, 0, 2, false, true),
  856.     SimpleCaseEntry(0x2c81, 1, 2, true, false),
  857.     SimpleCaseEntry(0x1ed4, 0, 2, false, true),
  858.     SimpleCaseEntry(0x1ed5, 1, 2, true, false),
  859.     SimpleCaseEntry(0x01f6, 0, 2, false, true),
  860.     SimpleCaseEntry(0x0195, 1, 2, true, false),
  861.     SimpleCaseEntry(0x0500, 0, 2, false, true),
  862.     SimpleCaseEntry(0x0501, 1, 2, true, false),
  863.     SimpleCaseEntry(0x2c82, 0, 2, false, true),
  864.     SimpleCaseEntry(0x2c83, 1, 2, true, false),
  865.     SimpleCaseEntry(0x01f7, 0, 2, false, true),
  866.     SimpleCaseEntry(0x01bf, 1, 2, true, false),
  867.     SimpleCaseEntry(0x1ed6, 0, 2, false, true),
  868.     SimpleCaseEntry(0x1ed7, 1, 2, true, false),
  869.     SimpleCaseEntry(0x01f8, 0, 2, false, true),
  870.     SimpleCaseEntry(0x01f9, 1, 2, true, false),
  871.     SimpleCaseEntry(0x0502, 0, 2, false, true),
  872.     SimpleCaseEntry(0x0503, 1, 2, true, false),
  873.     SimpleCaseEntry(0x2c84, 0, 2, false, true),
  874.     SimpleCaseEntry(0x2c85, 1, 2, true, false),
  875.     SimpleCaseEntry(0x1ed8, 0, 2, false, true),
  876.     SimpleCaseEntry(0x1ed9, 1, 2, true, false),
  877.     SimpleCaseEntry(0x01fa, 0, 2, false, true),
  878.     SimpleCaseEntry(0x01fb, 1, 2, true, false),
  879.     SimpleCaseEntry(0x0504, 0, 2, false, true),
  880.     SimpleCaseEntry(0x0505, 1, 2, true, false),
  881.     SimpleCaseEntry(0x2c86, 0, 2, false, true),
  882.     SimpleCaseEntry(0x2c87, 1, 2, true, false),
  883.     SimpleCaseEntry(0x1eda, 0, 2, false, true),
  884.     SimpleCaseEntry(0x1edb, 1, 2, true, false),
  885.     SimpleCaseEntry(0x01fc, 0, 2, false, true),
  886.     SimpleCaseEntry(0x01fd, 1, 2, true, false),
  887.     SimpleCaseEntry(0x0506, 0, 2, false, true),
  888.     SimpleCaseEntry(0x0507, 1, 2, true, false),
  889.     SimpleCaseEntry(0x2c88, 0, 2, false, true),
  890.     SimpleCaseEntry(0x2c89, 1, 2, true, false),
  891.     SimpleCaseEntry(0x1edc, 0, 2, false, true),
  892.     SimpleCaseEntry(0x1edd, 1, 2, true, false),
  893.     SimpleCaseEntry(0x01fe, 0, 2, false, true),
  894.     SimpleCaseEntry(0x01ff, 1, 2, true, false),
  895.     SimpleCaseEntry(0x0508, 0, 2, false, true),
  896.     SimpleCaseEntry(0x0509, 1, 2, true, false),
  897.     SimpleCaseEntry(0x2c8a, 0, 2, false, true),
  898.     SimpleCaseEntry(0x2c8b, 1, 2, true, false),
  899.     SimpleCaseEntry(0x1ede, 0, 2, false, true),
  900.     SimpleCaseEntry(0x1edf, 1, 2, true, false),
  901.     SimpleCaseEntry(0xa7a0, 0, 2, false, true),
  902.     SimpleCaseEntry(0xa7a1, 1, 2, true, false),
  903.     SimpleCaseEntry(0x0200, 0, 2, false, true),
  904.     SimpleCaseEntry(0x0201, 1, 2, true, false),
  905.     SimpleCaseEntry(0x050a, 0, 2, false, true),
  906.     SimpleCaseEntry(0x050b, 1, 2, true, false),
  907.     SimpleCaseEntry(0x2c8c, 0, 2, false, true),
  908.     SimpleCaseEntry(0x2c8d, 1, 2, true, false),
  909.     SimpleCaseEntry(0x0386, 0, 2, false, true),
  910.     SimpleCaseEntry(0x03ac, 1, 2, true, false),
  911.     SimpleCaseEntry(0x1ee0, 0, 2, false, true),
  912.     SimpleCaseEntry(0x1ee1, 1, 2, true, false),
  913.     SimpleCaseEntry(0xa7a2, 0, 2, false, true),
  914.     SimpleCaseEntry(0xa7a3, 1, 2, true, false),
  915.     SimpleCaseEntry(0x0202, 0, 2, false, true),
  916.     SimpleCaseEntry(0x0203, 1, 2, true, false),
  917.     SimpleCaseEntry(0x050c, 0, 2, false, true),
  918.     SimpleCaseEntry(0x050d, 1, 2, true, false),
  919.     SimpleCaseEntry(0x2c8e, 0, 2, false, true),
  920.     SimpleCaseEntry(0x2c8f, 1, 2, true, false),
  921.     SimpleCaseEntry(0x0388, 0, 2, false, true),
  922.     SimpleCaseEntry(0x03ad, 1, 2, true, false),
  923.     SimpleCaseEntry(0x1ee2, 0, 2, false, true),
  924.     SimpleCaseEntry(0x1ee3, 1, 2, true, false),
  925.     SimpleCaseEntry(0xa7a4, 0, 2, false, true),
  926.     SimpleCaseEntry(0xa7a5, 1, 2, true, false),
  927.     SimpleCaseEntry(0x0204, 0, 2, false, true),
  928.     SimpleCaseEntry(0x0205, 1, 2, true, false),
  929.     SimpleCaseEntry(0x0389, 0, 2, false, true),
  930.     SimpleCaseEntry(0x03ae, 1, 2, true, false),
  931.     SimpleCaseEntry(0x050e, 0, 2, false, true),
  932.     SimpleCaseEntry(0x050f, 1, 2, true, false),
  933.     SimpleCaseEntry(0x2c90, 0, 2, false, true),
  934.     SimpleCaseEntry(0x2c91, 1, 2, true, false),
  935.     SimpleCaseEntry(0x038a, 0, 2, false, true),
  936.     SimpleCaseEntry(0x03af, 1, 2, true, false),
  937.     SimpleCaseEntry(0x1ee4, 0, 2, false, true),
  938.     SimpleCaseEntry(0x1ee5, 1, 2, true, false),
  939.     SimpleCaseEntry(0xa7a6, 0, 2, false, true),
  940.     SimpleCaseEntry(0xa7a7, 1, 2, true, false),
  941.     SimpleCaseEntry(0x0206, 0, 2, false, true),
  942.     SimpleCaseEntry(0x0207, 1, 2, true, false),
  943.     SimpleCaseEntry(0x0510, 0, 2, false, true),
  944.     SimpleCaseEntry(0x0511, 1, 2, true, false),
  945.     SimpleCaseEntry(0x2c92, 0, 2, false, true),
  946.     SimpleCaseEntry(0x2c93, 1, 2, true, false),
  947.     SimpleCaseEntry(0x038c, 0, 2, false, true),
  948.     SimpleCaseEntry(0x03cc, 1, 2, true, false),
  949.     SimpleCaseEntry(0x1ee6, 0, 2, false, true),
  950.     SimpleCaseEntry(0x1ee7, 1, 2, true, false),
  951.     SimpleCaseEntry(0xa7a8, 0, 2, false, true),
  952.     SimpleCaseEntry(0xa7a9, 1, 2, true, false),
  953.     SimpleCaseEntry(0x0208, 0, 2, false, true),
  954.     SimpleCaseEntry(0x0209, 1, 2, true, false),
  955.     SimpleCaseEntry(0x0512, 0, 2, false, true),
  956.     SimpleCaseEntry(0x0513, 1, 2, true, false),
  957.     SimpleCaseEntry(0x2c94, 0, 2, false, true),
  958.     SimpleCaseEntry(0x2c95, 1, 2, true, false),
  959.     SimpleCaseEntry(0x038e, 0, 2, false, true),
  960.     SimpleCaseEntry(0x03cd, 1, 2, true, false),
  961.     SimpleCaseEntry(0x1ee8, 0, 2, false, true),
  962.     SimpleCaseEntry(0x1ee9, 1, 2, true, false),
  963.     SimpleCaseEntry(0xa7aa, 0, 2, false, true),
  964.     SimpleCaseEntry(0x0266, 1, 2, true, false),
  965.     SimpleCaseEntry(0x020a, 0, 2, false, true),
  966.     SimpleCaseEntry(0x020b, 1, 2, true, false),
  967.     SimpleCaseEntry(0x038f, 0, 2, false, true),
  968.     SimpleCaseEntry(0x03ce, 1, 2, true, false),
  969.     SimpleCaseEntry(0x0514, 0, 2, false, true),
  970.     SimpleCaseEntry(0x0515, 1, 2, true, false),
  971.     SimpleCaseEntry(0x2c96, 0, 2, false, true),
  972.     SimpleCaseEntry(0x2c97, 1, 2, true, false),
  973.     SimpleCaseEntry(0x1eea, 0, 2, false, true),
  974.     SimpleCaseEntry(0x1eeb, 1, 2, true, false),
  975.     SimpleCaseEntry(0x020c, 0, 2, false, true),
  976.     SimpleCaseEntry(0x020d, 1, 2, true, false),
  977.     SimpleCaseEntry(0x0391, 0, 2, false, true),
  978.     SimpleCaseEntry(0x03b1, 1, 2, true, false),
  979.     SimpleCaseEntry(0x0516, 0, 2, false, true),
  980.     SimpleCaseEntry(0x0517, 1, 2, true, false),
  981.     SimpleCaseEntry(0x2c98, 0, 2, false, true),
  982.     SimpleCaseEntry(0x2c99, 1, 2, true, false),
  983.     SimpleCaseEntry(0x0392, 0, 3, false, true),
  984.     SimpleCaseEntry(0x03b2, 1, 3, true, false),
  985.     SimpleCaseEntry(0x03d0, 2, 3, true, false),
  986.     SimpleCaseEntry(0x1eec, 0, 2, false, true),
  987.     SimpleCaseEntry(0x1eed, 1, 2, true, false),
  988.     SimpleCaseEntry(0x020e, 0, 2, false, true),
  989.     SimpleCaseEntry(0x020f, 1, 2, true, false),
  990.     SimpleCaseEntry(0x0393, 0, 2, false, true),
  991.     SimpleCaseEntry(0x03b3, 1, 2, true, false),
  992.     SimpleCaseEntry(0x0518, 0, 2, false, true),
  993.     SimpleCaseEntry(0x0519, 1, 2, true, false),
  994.     SimpleCaseEntry(0x2c9a, 0, 2, false, true),
  995.     SimpleCaseEntry(0x2c9b, 1, 2, true, false),
  996.     SimpleCaseEntry(0x0394, 0, 2, false, true),
  997.     SimpleCaseEntry(0x03b4, 1, 2, true, false),
  998.     SimpleCaseEntry(0x1eee, 0, 2, false, true),
  999.     SimpleCaseEntry(0x1eef, 1, 2, true, false),
  1000.     SimpleCaseEntry(0x0210, 0, 2, false, true),
  1001.     SimpleCaseEntry(0x0211, 1, 2, true, false),
  1002.     SimpleCaseEntry(0x0395, 0, 3, false, true),
  1003.     SimpleCaseEntry(0x03b5, 1, 3, true, false),
  1004.     SimpleCaseEntry(0x03f5, 2, 3, true, false),
  1005.     SimpleCaseEntry(0x051a, 0, 2, false, true),
  1006.     SimpleCaseEntry(0x051b, 1, 2, true, false),
  1007.     SimpleCaseEntry(0x2c9c, 0, 2, false, true),
  1008.     SimpleCaseEntry(0x2c9d, 1, 2, true, false),
  1009.     SimpleCaseEntry(0x0396, 0, 2, false, true),
  1010.     SimpleCaseEntry(0x03b6, 1, 2, true, false),
  1011.     SimpleCaseEntry(0x1ef0, 0, 2, false, true),
  1012.     SimpleCaseEntry(0x1ef1, 1, 2, true, false),
  1013.     SimpleCaseEntry(0x0212, 0, 2, false, true),
  1014.     SimpleCaseEntry(0x0213, 1, 2, true, false),
  1015.     SimpleCaseEntry(0x0397, 0, 2, false, true),
  1016.     SimpleCaseEntry(0x03b7, 1, 2, true, false),
  1017.     SimpleCaseEntry(0x051c, 0, 2, false, true),
  1018.     SimpleCaseEntry(0x051d, 1, 2, true, false),
  1019.     SimpleCaseEntry(0x2c9e, 0, 2, false, true),
  1020.     SimpleCaseEntry(0x2c9f, 1, 2, true, false),
  1021.     SimpleCaseEntry(0x0398, 0, 4, false, true),
  1022.     SimpleCaseEntry(0x03b8, 1, 4, true, false),
  1023.     SimpleCaseEntry(0x03d1, 2, 4, true, false),
  1024.     SimpleCaseEntry(0x03f4, 3, 4, false, true),
  1025.     SimpleCaseEntry(0x1ef2, 0, 2, false, true),
  1026.     SimpleCaseEntry(0x1ef3, 1, 2, true, false),
  1027.     SimpleCaseEntry(0x0214, 0, 2, false, true),
  1028.     SimpleCaseEntry(0x0215, 1, 2, true, false),
  1029.     SimpleCaseEntry(0x0399, 0, 4, false, true),
  1030.     SimpleCaseEntry(0x03b9, 1, 4, true, false),
  1031.     SimpleCaseEntry(0x0345, 2, 4, true, false),
  1032.     SimpleCaseEntry(0x1fbe, 3, 4, true, false),
  1033.     SimpleCaseEntry(0x051e, 0, 2, false, true),
  1034.     SimpleCaseEntry(0x051f, 1, 2, true, false),
  1035.     SimpleCaseEntry(0x2ca0, 0, 2, false, true),
  1036.     SimpleCaseEntry(0x2ca1, 1, 2, true, false),
  1037.     SimpleCaseEntry(0x039a, 0, 3, false, true),
  1038.     SimpleCaseEntry(0x03ba, 1, 3, true, false),
  1039.     SimpleCaseEntry(0x03f0, 2, 3, true, false),
  1040.     SimpleCaseEntry(0x1ef4, 0, 2, false, true),
  1041.     SimpleCaseEntry(0x1ef5, 1, 2, true, false),
  1042.     SimpleCaseEntry(0x0216, 0, 2, false, true),
  1043.     SimpleCaseEntry(0x0217, 1, 2, true, false),
  1044.     SimpleCaseEntry(0x039b, 0, 2, false, true),
  1045.     SimpleCaseEntry(0x03bb, 1, 2, true, false),
  1046.     SimpleCaseEntry(0x0520, 0, 2, false, true),
  1047.     SimpleCaseEntry(0x0521, 1, 2, true, false),
  1048.     SimpleCaseEntry(0x2ca2, 0, 2, false, true),
  1049.     SimpleCaseEntry(0x2ca3, 1, 2, true, false),
  1050.     SimpleCaseEntry(0x039c, 0, 3, false, true),
  1051.     SimpleCaseEntry(0x03bc, 1, 3, true, false),
  1052.     SimpleCaseEntry(0x00b5, 2, 3, true, false),
  1053.     SimpleCaseEntry(0x1ef6, 0, 2, false, true),
  1054.     SimpleCaseEntry(0x1ef7, 1, 2, true, false),
  1055.     SimpleCaseEntry(0x0218, 0, 2, false, true),
  1056.     SimpleCaseEntry(0x0219, 1, 2, true, false),
  1057.     SimpleCaseEntry(0x039d, 0, 2, false, true),
  1058.     SimpleCaseEntry(0x03bd, 1, 2, true, false),
  1059.     SimpleCaseEntry(0x0522, 0, 2, false, true),
  1060.     SimpleCaseEntry(0x0523, 1, 2, true, false),
  1061.     SimpleCaseEntry(0x2ca4, 0, 2, false, true),
  1062.     SimpleCaseEntry(0x2ca5, 1, 2, true, false),
  1063.     SimpleCaseEntry(0x039e, 0, 2, false, true),
  1064.     SimpleCaseEntry(0x03be, 1, 2, true, false),
  1065.     SimpleCaseEntry(0x1ef8, 0, 2, false, true),
  1066.     SimpleCaseEntry(0x1ef9, 1, 2, true, false),
  1067.     SimpleCaseEntry(0x021a, 0, 2, false, true),
  1068.     SimpleCaseEntry(0x021b, 1, 2, true, false),
  1069.     SimpleCaseEntry(0x039f, 0, 2, false, true),
  1070.     SimpleCaseEntry(0x03bf, 1, 2, true, false),
  1071.     SimpleCaseEntry(0x0524, 0, 2, false, true),
  1072.     SimpleCaseEntry(0x0525, 1, 2, true, false),
  1073.     SimpleCaseEntry(0x2ca6, 0, 2, false, true),
  1074.     SimpleCaseEntry(0x2ca7, 1, 2, true, false),
  1075.     SimpleCaseEntry(0x03a0, 0, 3, false, true),
  1076.     SimpleCaseEntry(0x03c0, 1, 3, true, false),
  1077.     SimpleCaseEntry(0x03d6, 2, 3, true, false),
  1078.     SimpleCaseEntry(0x1efa, 0, 2, false, true),
  1079.     SimpleCaseEntry(0x1efb, 1, 2, true, false),
  1080.     SimpleCaseEntry(0x021c, 0, 2, false, true),
  1081.     SimpleCaseEntry(0x021d, 1, 2, true, false),
  1082.     SimpleCaseEntry(0x03a1, 0, 3, false, true),
  1083.     SimpleCaseEntry(0x03c1, 1, 3, true, false),
  1084.     SimpleCaseEntry(0x03f1, 2, 3, true, false),
  1085.     SimpleCaseEntry(0x0526, 0, 2, false, true),
  1086.     SimpleCaseEntry(0x0527, 1, 2, true, false),
  1087.     SimpleCaseEntry(0x2ca8, 0, 2, false, true),
  1088.     SimpleCaseEntry(0x2ca9, 1, 2, true, false),
  1089.     SimpleCaseEntry(0x1efc, 0, 2, false, true),
  1090.     SimpleCaseEntry(0x1efd, 1, 2, true, false),
  1091.     SimpleCaseEntry(0x021e, 0, 2, false, true),
  1092.     SimpleCaseEntry(0x021f, 1, 2, true, false),
  1093.     SimpleCaseEntry(0x03a3, 0, 3, false, true),
  1094.     SimpleCaseEntry(0x03c3, 1, 3, true, false),
  1095.     SimpleCaseEntry(0x03c2, 2, 3, true, false),
  1096.     SimpleCaseEntry(0x2caa, 0, 2, false, true),
  1097.     SimpleCaseEntry(0x2cab, 1, 2, true, false),
  1098.     SimpleCaseEntry(0x03a4, 0, 2, false, true),
  1099.     SimpleCaseEntry(0x03c4, 1, 2, true, false),
  1100.     SimpleCaseEntry(0x1efe, 0, 2, false, true),
  1101.     SimpleCaseEntry(0x1eff, 1, 2, true, false),
  1102.     SimpleCaseEntry(0x0220, 0, 2, false, true),
  1103.     SimpleCaseEntry(0x019e, 1, 2, true, false),
  1104.     SimpleCaseEntry(0x03a5, 0, 2, false, true),
  1105.     SimpleCaseEntry(0x03c5, 1, 2, true, false),
  1106.     SimpleCaseEntry(0x2cac, 0, 2, false, true),
  1107.     SimpleCaseEntry(0x2cad, 1, 2, true, false),
  1108.     SimpleCaseEntry(0x03a6, 0, 3, false, true),
  1109.     SimpleCaseEntry(0x03c6, 1, 3, true, false),
  1110.     SimpleCaseEntry(0x03d5, 2, 3, true, false),
  1111.     SimpleCaseEntry(0x0222, 0, 2, false, true),
  1112.     SimpleCaseEntry(0x0223, 1, 2, true, false),
  1113.     SimpleCaseEntry(0x03a7, 0, 2, false, true),
  1114.     SimpleCaseEntry(0x03c7, 1, 2, true, false),
  1115.     SimpleCaseEntry(0x2cae, 0, 2, false, true),
  1116.     SimpleCaseEntry(0x2caf, 1, 2, true, false),
  1117.     SimpleCaseEntry(0x03a8, 0, 2, false, true),
  1118.     SimpleCaseEntry(0x03c8, 1, 2, true, false),
  1119.     SimpleCaseEntry(0x0224, 0, 2, false, true),
  1120.     SimpleCaseEntry(0x0225, 1, 2, true, false),
  1121.     SimpleCaseEntry(0x03a9, 0, 3, false, true),
  1122.     SimpleCaseEntry(0x03c9, 1, 3, true, false),
  1123.     SimpleCaseEntry(0x2126, 2, 3, false, true),
  1124.     SimpleCaseEntry(0x2cb0, 0, 2, false, true),
  1125.     SimpleCaseEntry(0x2cb1, 1, 2, true, false),
  1126.     SimpleCaseEntry(0xa640, 0, 2, false, true),
  1127.     SimpleCaseEntry(0xa641, 1, 2, true, false),
  1128.     SimpleCaseEntry(0x03aa, 0, 2, false, true),
  1129.     SimpleCaseEntry(0x03ca, 1, 2, true, false),
  1130.     SimpleCaseEntry(0x0226, 0, 2, false, true),
  1131.     SimpleCaseEntry(0x0227, 1, 2, true, false),
  1132.     SimpleCaseEntry(0x03ab, 0, 2, false, true),
  1133.     SimpleCaseEntry(0x03cb, 1, 2, true, false),
  1134.     SimpleCaseEntry(0x2cb2, 0, 2, false, true),
  1135.     SimpleCaseEntry(0x2cb3, 1, 2, true, false),
  1136.     SimpleCaseEntry(0xa642, 0, 2, false, true),
  1137.     SimpleCaseEntry(0xa643, 1, 2, true, false),
  1138.     SimpleCaseEntry(0x0531, 0, 2, false, true),
  1139.     SimpleCaseEntry(0x0561, 1, 2, true, false),
  1140.     SimpleCaseEntry(0x0228, 0, 2, false, true),
  1141.     SimpleCaseEntry(0x0229, 1, 2, true, false),
  1142.     SimpleCaseEntry(0x0532, 0, 2, false, true),
  1143.     SimpleCaseEntry(0x0562, 1, 2, true, false),
  1144.     SimpleCaseEntry(0x2cb4, 0, 2, false, true),
  1145.     SimpleCaseEntry(0x2cb5, 1, 2, true, false),
  1146.     SimpleCaseEntry(0xa644, 0, 2, false, true),
  1147.     SimpleCaseEntry(0xa645, 1, 2, true, false),
  1148.     SimpleCaseEntry(0x0533, 0, 2, false, true),
  1149.     SimpleCaseEntry(0x0563, 1, 2, true, false),
  1150.     SimpleCaseEntry(0x1f08, 0, 2, false, true),
  1151.     SimpleCaseEntry(0x1f00, 1, 2, true, false),
  1152.     SimpleCaseEntry(0x022a, 0, 2, false, true),
  1153.     SimpleCaseEntry(0x022b, 1, 2, true, false),
  1154.     SimpleCaseEntry(0x0534, 0, 2, false, true),
  1155.     SimpleCaseEntry(0x0564, 1, 2, true, false),
  1156.     SimpleCaseEntry(0x1f09, 0, 2, false, true),
  1157.     SimpleCaseEntry(0x1f01, 1, 2, true, false),
  1158.     SimpleCaseEntry(0x2cb6, 0, 2, false, true),
  1159.     SimpleCaseEntry(0x2cb7, 1, 2, true, false),
  1160.     SimpleCaseEntry(0xa646, 0, 2, false, true),
  1161.     SimpleCaseEntry(0xa647, 1, 2, true, false),
  1162.     SimpleCaseEntry(0x0535, 0, 2, false, true),
  1163.     SimpleCaseEntry(0x0565, 1, 2, true, false),
  1164.     SimpleCaseEntry(0x1f0a, 0, 2, false, true),
  1165.     SimpleCaseEntry(0x1f02, 1, 2, true, false),
  1166.     SimpleCaseEntry(0x022c, 0, 2, false, true),
  1167.     SimpleCaseEntry(0x022d, 1, 2, true, false),
  1168.     SimpleCaseEntry(0x0536, 0, 2, false, true),
  1169.     SimpleCaseEntry(0x0566, 1, 2, true, false),
  1170.     SimpleCaseEntry(0x1f0b, 0, 2, false, true),
  1171.     SimpleCaseEntry(0x1f03, 1, 2, true, false),
  1172.     SimpleCaseEntry(0x2cb8, 0, 2, false, true),
  1173.     SimpleCaseEntry(0x2cb9, 1, 2, true, false),
  1174.     SimpleCaseEntry(0xa648, 0, 2, false, true),
  1175.     SimpleCaseEntry(0xa649, 1, 2, true, false),
  1176.     SimpleCaseEntry(0x0537, 0, 2, false, true),
  1177.     SimpleCaseEntry(0x0567, 1, 2, true, false),
  1178.     SimpleCaseEntry(0x1f0c, 0, 2, false, true),
  1179.     SimpleCaseEntry(0x1f04, 1, 2, true, false),
  1180.     SimpleCaseEntry(0x022e, 0, 2, false, true),
  1181.     SimpleCaseEntry(0x022f, 1, 2, true, false),
  1182.     SimpleCaseEntry(0x0538, 0, 2, false, true),
  1183.     SimpleCaseEntry(0x0568, 1, 2, true, false),
  1184.     SimpleCaseEntry(0x1f0d, 0, 2, false, true),
  1185.     SimpleCaseEntry(0x1f05, 1, 2, true, false),
  1186.     SimpleCaseEntry(0x2cba, 0, 2, false, true),
  1187.     SimpleCaseEntry(0x2cbb, 1, 2, true, false),
  1188.     SimpleCaseEntry(0xa64a, 0, 2, false, true),
  1189.     SimpleCaseEntry(0xa64b, 1, 2, true, false),
  1190.     SimpleCaseEntry(0x0539, 0, 2, false, true),
  1191.     SimpleCaseEntry(0x0569, 1, 2, true, false),
  1192.     SimpleCaseEntry(0x1f0e, 0, 2, false, true),
  1193.     SimpleCaseEntry(0x1f06, 1, 2, true, false),
  1194.     SimpleCaseEntry(0x0230, 0, 2, false, true),
  1195.     SimpleCaseEntry(0x0231, 1, 2, true, false),
  1196.     SimpleCaseEntry(0x053a, 0, 2, false, true),
  1197.     SimpleCaseEntry(0x056a, 1, 2, true, false),
  1198.     SimpleCaseEntry(0x1f0f, 0, 2, false, true),
  1199.     SimpleCaseEntry(0x1f07, 1, 2, true, false),
  1200.     SimpleCaseEntry(0x2cbc, 0, 2, false, true),
  1201.     SimpleCaseEntry(0x2cbd, 1, 2, true, false),
  1202.     SimpleCaseEntry(0xa64c, 0, 2, false, true),
  1203.     SimpleCaseEntry(0xa64d, 1, 2, true, false),
  1204.     SimpleCaseEntry(0x053b, 0, 2, false, true),
  1205.     SimpleCaseEntry(0x056b, 1, 2, true, false),
  1206.     SimpleCaseEntry(0x0232, 0, 2, false, true),
  1207.     SimpleCaseEntry(0x0233, 1, 2, true, false),
  1208.     SimpleCaseEntry(0x053c, 0, 2, false, true),
  1209.     SimpleCaseEntry(0x056c, 1, 2, true, false),
  1210.     SimpleCaseEntry(0x2cbe, 0, 2, false, true),
  1211.     SimpleCaseEntry(0x2cbf, 1, 2, true, false),
  1212.     SimpleCaseEntry(0xa64e, 0, 2, false, true),
  1213.     SimpleCaseEntry(0xa64f, 1, 2, true, false),
  1214.     SimpleCaseEntry(0x053d, 0, 2, false, true),
  1215.     SimpleCaseEntry(0x056d, 1, 2, true, false),
  1216.     SimpleCaseEntry(0x053e, 0, 2, false, true),
  1217.     SimpleCaseEntry(0x056e, 1, 2, true, false),
  1218.     SimpleCaseEntry(0x2cc0, 0, 2, false, true),
  1219.     SimpleCaseEntry(0x2cc1, 1, 2, true, false),
  1220.     SimpleCaseEntry(0xa650, 0, 2, false, true),
  1221.     SimpleCaseEntry(0xa651, 1, 2, true, false),
  1222.     SimpleCaseEntry(0x053f, 0, 2, false, true),
  1223.     SimpleCaseEntry(0x056f, 1, 2, true, false),
  1224.     SimpleCaseEntry(0x0540, 0, 2, false, true),
  1225.     SimpleCaseEntry(0x0570, 1, 2, true, false),
  1226.     SimpleCaseEntry(0x2cc2, 0, 2, false, true),
  1227.     SimpleCaseEntry(0x2cc3, 1, 2, true, false),
  1228.     SimpleCaseEntry(0xa652, 0, 2, false, true),
  1229.     SimpleCaseEntry(0xa653, 1, 2, true, false),
  1230.     SimpleCaseEntry(0x0541, 0, 2, false, true),
  1231.     SimpleCaseEntry(0x0571, 1, 2, true, false),
  1232.     SimpleCaseEntry(0x0542, 0, 2, false, true),
  1233.     SimpleCaseEntry(0x0572, 1, 2, true, false),
  1234.     SimpleCaseEntry(0x2cc4, 0, 2, false, true),
  1235.     SimpleCaseEntry(0x2cc5, 1, 2, true, false),
  1236.     SimpleCaseEntry(0xa654, 0, 2, false, true),
  1237.     SimpleCaseEntry(0xa655, 1, 2, true, false),
  1238.     SimpleCaseEntry(0x0543, 0, 2, false, true),
  1239.     SimpleCaseEntry(0x0573, 1, 2, true, false),
  1240.     SimpleCaseEntry(0x1f18, 0, 2, false, true),
  1241.     SimpleCaseEntry(0x1f10, 1, 2, true, false),
  1242.     SimpleCaseEntry(0x00b5, 0, 3, true, false),
  1243.     SimpleCaseEntry(0x03bc, 1, 3, true, false),
  1244.     SimpleCaseEntry(0x039c, 2, 3, false, true),
  1245.     SimpleCaseEntry(0x023a, 0, 2, false, true),
  1246.     SimpleCaseEntry(0x2c65, 1, 2, true, false),
  1247.     SimpleCaseEntry(0x0544, 0, 2, false, true),
  1248.     SimpleCaseEntry(0x0574, 1, 2, true, false),
  1249.     SimpleCaseEntry(0x1f19, 0, 2, false, true),
  1250.     SimpleCaseEntry(0x1f11, 1, 2, true, false),
  1251.     SimpleCaseEntry(0x2cc6, 0, 2, false, true),
  1252.     SimpleCaseEntry(0x2cc7, 1, 2, true, false),
  1253.     SimpleCaseEntry(0xa656, 0, 2, false, true),
  1254.     SimpleCaseEntry(0xa657, 1, 2, true, false),
  1255.     SimpleCaseEntry(0x023b, 0, 2, false, true),
  1256.     SimpleCaseEntry(0x023c, 1, 2, true, false),
  1257.     SimpleCaseEntry(0x0545, 0, 2, false, true),
  1258.     SimpleCaseEntry(0x0575, 1, 2, true, false),
  1259.     SimpleCaseEntry(0x1f1a, 0, 2, false, true),
  1260.     SimpleCaseEntry(0x1f12, 1, 2, true, false),
  1261.     SimpleCaseEntry(0x0546, 0, 2, false, true),
  1262.     SimpleCaseEntry(0x0576, 1, 2, true, false),
  1263.     SimpleCaseEntry(0x1f1b, 0, 2, false, true),
  1264.     SimpleCaseEntry(0x1f13, 1, 2, true, false),
  1265.     SimpleCaseEntry(0x2cc8, 0, 2, false, true),
  1266.     SimpleCaseEntry(0x2cc9, 1, 2, true, false),
  1267.     SimpleCaseEntry(0xa658, 0, 2, false, true),
  1268.     SimpleCaseEntry(0xa659, 1, 2, true, false),
  1269.     SimpleCaseEntry(0x023d, 0, 2, false, true),
  1270.     SimpleCaseEntry(0x019a, 1, 2, true, false),
  1271.     SimpleCaseEntry(0x03c2, 0, 3, true, false),
  1272.     SimpleCaseEntry(0x03c3, 1, 3, true, false),
  1273.     SimpleCaseEntry(0x03a3, 2, 3, false, true),
  1274.     SimpleCaseEntry(0x0547, 0, 2, false, true),
  1275.     SimpleCaseEntry(0x0577, 1, 2, true, false),
  1276.     SimpleCaseEntry(0x1f1c, 0, 2, false, true),
  1277.     SimpleCaseEntry(0x1f14, 1, 2, true, false),
  1278.     SimpleCaseEntry(0x023e, 0, 2, false, true),
  1279.     SimpleCaseEntry(0x2c66, 1, 2, true, false),
  1280.     SimpleCaseEntry(0x0548, 0, 2, false, true),
  1281.     SimpleCaseEntry(0x0578, 1, 2, true, false),
  1282.     SimpleCaseEntry(0x1f1d, 0, 2, false, true),
  1283.     SimpleCaseEntry(0x1f15, 1, 2, true, false),
  1284.     SimpleCaseEntry(0x2cca, 0, 2, false, true),
  1285.     SimpleCaseEntry(0x2ccb, 1, 2, true, false),
  1286.     SimpleCaseEntry(0xa65a, 0, 2, false, true),
  1287.     SimpleCaseEntry(0xa65b, 1, 2, true, false),
  1288.     SimpleCaseEntry(0x0549, 0, 2, false, true),
  1289.     SimpleCaseEntry(0x0579, 1, 2, true, false),
  1290.     SimpleCaseEntry(0x054a, 0, 2, false, true),
  1291.     SimpleCaseEntry(0x057a, 1, 2, true, false),
  1292.     SimpleCaseEntry(0x2ccc, 0, 2, false, true),
  1293.     SimpleCaseEntry(0x2ccd, 1, 2, true, false),
  1294.     SimpleCaseEntry(0xa65c, 0, 2, false, true),
  1295.     SimpleCaseEntry(0xa65d, 1, 2, true, false),
  1296.     SimpleCaseEntry(0x0241, 0, 2, false, true),
  1297.     SimpleCaseEntry(0x0242, 1, 2, true, false),
  1298.     SimpleCaseEntry(0x054b, 0, 2, false, true),
  1299.     SimpleCaseEntry(0x057b, 1, 2, true, false),
  1300.     SimpleCaseEntry(0x054c, 0, 2, false, true),
  1301.     SimpleCaseEntry(0x057c, 1, 2, true, false),
  1302.     SimpleCaseEntry(0x2cce, 0, 2, false, true),
  1303.     SimpleCaseEntry(0x2ccf, 1, 2, true, false),
  1304.     SimpleCaseEntry(0xa65e, 0, 2, false, true),
  1305.     SimpleCaseEntry(0xa65f, 1, 2, true, false),
  1306.     SimpleCaseEntry(0x0243, 0, 2, false, true),
  1307.     SimpleCaseEntry(0x0180, 1, 2, true, false),
  1308.     SimpleCaseEntry(0x054d, 0, 2, false, true),
  1309.     SimpleCaseEntry(0x057d, 1, 2, true, false),
  1310.     SimpleCaseEntry(0x0244, 0, 2, false, true),
  1311.     SimpleCaseEntry(0x0289, 1, 2, true, false),
  1312.     SimpleCaseEntry(0x054e, 0, 2, false, true),
  1313.     SimpleCaseEntry(0x057e, 1, 2, true, false),
  1314.     SimpleCaseEntry(0x2cd0, 0, 2, false, true),
  1315.     SimpleCaseEntry(0x2cd1, 1, 2, true, false),
  1316.     SimpleCaseEntry(0xa660, 0, 2, false, true),
  1317.     SimpleCaseEntry(0xa661, 1, 2, true, false),
  1318.     SimpleCaseEntry(0x00c0, 0, 2, false, true),
  1319.     SimpleCaseEntry(0x00e0, 1, 2, true, false),
  1320.     SimpleCaseEntry(0x0245, 0, 2, false, true),
  1321.     SimpleCaseEntry(0x028c, 1, 2, true, false),
  1322.     SimpleCaseEntry(0x054f, 0, 2, false, true),
  1323.     SimpleCaseEntry(0x057f, 1, 2, true, false),
  1324.     SimpleCaseEntry(0x00c1, 0, 2, false, true),
  1325.     SimpleCaseEntry(0x00e1, 1, 2, true, false),
  1326.     SimpleCaseEntry(0x0246, 0, 2, false, true),
  1327.     SimpleCaseEntry(0x0247, 1, 2, true, false),
  1328.     SimpleCaseEntry(0x0550, 0, 2, false, true),
  1329.     SimpleCaseEntry(0x0580, 1, 2, true, false),
  1330.     SimpleCaseEntry(0x2cd2, 0, 2, false, true),
  1331.     SimpleCaseEntry(0x2cd3, 1, 2, true, false),
  1332.     SimpleCaseEntry(0xa662, 0, 2, false, true),
  1333.     SimpleCaseEntry(0xa663, 1, 2, true, false),
  1334.     SimpleCaseEntry(0x00c2, 0, 2, false, true),
  1335.     SimpleCaseEntry(0x00e2, 1, 2, true, false),
  1336.     SimpleCaseEntry(0x0551, 0, 2, false, true),
  1337.     SimpleCaseEntry(0x0581, 1, 2, true, false),
  1338.     SimpleCaseEntry(0x00c3, 0, 2, false, true),
  1339.     SimpleCaseEntry(0x00e3, 1, 2, true, false),
  1340.     SimpleCaseEntry(0x0248, 0, 2, false, true),
  1341.     SimpleCaseEntry(0x0249, 1, 2, true, false),
  1342.     SimpleCaseEntry(0x0552, 0, 2, false, true),
  1343.     SimpleCaseEntry(0x0582, 1, 2, true, false),
  1344.     SimpleCaseEntry(0x2cd4, 0, 2, false, true),
  1345.     SimpleCaseEntry(0x2cd5, 1, 2, true, false),
  1346.     SimpleCaseEntry(0xa664, 0, 2, false, true),
  1347.     SimpleCaseEntry(0xa665, 1, 2, true, false),
  1348.     SimpleCaseEntry(0x00c4, 0, 2, false, true),
  1349.     SimpleCaseEntry(0x00e4, 1, 2, true, false),
  1350.     SimpleCaseEntry(0x0553, 0, 2, false, true),
  1351.     SimpleCaseEntry(0x0583, 1, 2, true, false),
  1352.     SimpleCaseEntry(0x1f28, 0, 2, false, true),
  1353.     SimpleCaseEntry(0x1f20, 1, 2, true, false),
  1354.     SimpleCaseEntry(0x00c5, 0, 3, false, true),
  1355.     SimpleCaseEntry(0x00e5, 1, 3, true, false),
  1356.     SimpleCaseEntry(0x212b, 2, 3, false, true),
  1357.     SimpleCaseEntry(0x024a, 0, 2, false, true),
  1358.     SimpleCaseEntry(0x024b, 1, 2, true, false),
  1359.     SimpleCaseEntry(0x03cf, 0, 2, false, true),
  1360.     SimpleCaseEntry(0x03d7, 1, 2, true, false),
  1361.     SimpleCaseEntry(0x0554, 0, 2, false, true),
  1362.     SimpleCaseEntry(0x0584, 1, 2, true, false),
  1363.     SimpleCaseEntry(0x1f29, 0, 2, false, true),
  1364.     SimpleCaseEntry(0x1f21, 1, 2, true, false),
  1365.     SimpleCaseEntry(0x2cd6, 0, 2, false, true),
  1366.     SimpleCaseEntry(0x2cd7, 1, 2, true, false),
  1367.     SimpleCaseEntry(0xa666, 0, 2, false, true),
  1368.     SimpleCaseEntry(0xa667, 1, 2, true, false),
  1369.     SimpleCaseEntry(0x00c6, 0, 2, false, true),
  1370.     SimpleCaseEntry(0x00e6, 1, 2, true, false),
  1371.     SimpleCaseEntry(0x03d0, 0, 3, true, false),
  1372.     SimpleCaseEntry(0x03b2, 1, 3, true, false),
  1373.     SimpleCaseEntry(0x0392, 2, 3, false, true),
  1374.     SimpleCaseEntry(0x0555, 0, 2, false, true),
  1375.     SimpleCaseEntry(0x0585, 1, 2, true, false),
  1376.     SimpleCaseEntry(0x1f2a, 0, 2, false, true),
  1377.     SimpleCaseEntry(0x1f22, 1, 2, true, false),
  1378.     SimpleCaseEntry(0x00c7, 0, 2, false, true),
  1379.     SimpleCaseEntry(0x00e7, 1, 2, true, false),
  1380.     SimpleCaseEntry(0x024c, 0, 2, false, true),
  1381.     SimpleCaseEntry(0x024d, 1, 2, true, false),
  1382.     SimpleCaseEntry(0x03d1, 0, 4, true, false),
  1383.     SimpleCaseEntry(0x03b8, 1, 4, true, false),
  1384.     SimpleCaseEntry(0x0398, 2, 4, false, true),
  1385.     SimpleCaseEntry(0x03f4, 3, 4, false, true),
  1386.     SimpleCaseEntry(0x0556, 0, 2, false, true),
  1387.     SimpleCaseEntry(0x0586, 1, 2, true, false),
  1388.     SimpleCaseEntry(0x1f2b, 0, 2, false, true),
  1389.     SimpleCaseEntry(0x1f23, 1, 2, true, false),
  1390.     SimpleCaseEntry(0x2cd8, 0, 2, false, true),
  1391.     SimpleCaseEntry(0x2cd9, 1, 2, true, false),
  1392.     SimpleCaseEntry(0xa668, 0, 2, false, true),
  1393.     SimpleCaseEntry(0xa669, 1, 2, true, false),
  1394.     SimpleCaseEntry(0x00c8, 0, 2, false, true),
  1395.     SimpleCaseEntry(0x00e8, 1, 2, true, false),
  1396.     SimpleCaseEntry(0x1f2c, 0, 2, false, true),
  1397.     SimpleCaseEntry(0x1f24, 1, 2, true, false),
  1398.     SimpleCaseEntry(0x00c9, 0, 2, false, true),
  1399.     SimpleCaseEntry(0x00e9, 1, 2, true, false),
  1400.     SimpleCaseEntry(0x024e, 0, 2, false, true),
  1401.     SimpleCaseEntry(0x024f, 1, 2, true, false),
  1402.     SimpleCaseEntry(0x1f2d, 0, 2, false, true),
  1403.     SimpleCaseEntry(0x1f25, 1, 2, true, false),
  1404.     SimpleCaseEntry(0x2cda, 0, 2, false, true),
  1405.     SimpleCaseEntry(0x2cdb, 1, 2, true, false),
  1406.     SimpleCaseEntry(0xa66a, 0, 2, false, true),
  1407.     SimpleCaseEntry(0xa66b, 1, 2, true, false),
  1408.     SimpleCaseEntry(0x00ca, 0, 2, false, true),
  1409.     SimpleCaseEntry(0x00ea, 1, 2, true, false),
  1410.     SimpleCaseEntry(0x1f2e, 0, 2, false, true),
  1411.     SimpleCaseEntry(0x1f26, 1, 2, true, false),
  1412.     SimpleCaseEntry(0x00cb, 0, 2, false, true),
  1413.     SimpleCaseEntry(0x00eb, 1, 2, true, false),
  1414.     SimpleCaseEntry(0x03d5, 0, 3, true, false),
  1415.     SimpleCaseEntry(0x03c6, 1, 3, true, false),
  1416.     SimpleCaseEntry(0x03a6, 2, 3, false, true),
  1417.     SimpleCaseEntry(0x1f2f, 0, 2, false, true),
  1418.     SimpleCaseEntry(0x1f27, 1, 2, true, false),
  1419.     SimpleCaseEntry(0x2cdc, 0, 2, false, true),
  1420.     SimpleCaseEntry(0x2cdd, 1, 2, true, false),
  1421.     SimpleCaseEntry(0xa66c, 0, 2, false, true),
  1422.     SimpleCaseEntry(0xa66d, 1, 2, true, false),
  1423.     SimpleCaseEntry(0x00cc, 0, 2, false, true),
  1424.     SimpleCaseEntry(0x00ec, 1, 2, true, false),
  1425.     SimpleCaseEntry(0x03d6, 0, 3, true, false),
  1426.     SimpleCaseEntry(0x03c0, 1, 3, true, false),
  1427.     SimpleCaseEntry(0x03a0, 2, 3, false, true),
  1428.     SimpleCaseEntry(0x00cd, 0, 2, false, true),
  1429.     SimpleCaseEntry(0x00ed, 1, 2, true, false),
  1430.     SimpleCaseEntry(0x2cde, 0, 2, false, true),
  1431.     SimpleCaseEntry(0x2cdf, 1, 2, true, false),
  1432.     SimpleCaseEntry(0x00ce, 0, 2, false, true),
  1433.     SimpleCaseEntry(0x00ee, 1, 2, true, false),
  1434.     SimpleCaseEntry(0x03d8, 0, 2, false, true),
  1435.     SimpleCaseEntry(0x03d9, 1, 2, true, false),
  1436.     SimpleCaseEntry(0x00cf, 0, 2, false, true),
  1437.     SimpleCaseEntry(0x00ef, 1, 2, true, false),
  1438.     SimpleCaseEntry(0x2ce0, 0, 2, false, true),
  1439.     SimpleCaseEntry(0x2ce1, 1, 2, true, false),
  1440.     SimpleCaseEntry(0x00d0, 0, 2, false, true),
  1441.     SimpleCaseEntry(0x00f0, 1, 2, true, false),
  1442.     SimpleCaseEntry(0x03da, 0, 2, false, true),
  1443.     SimpleCaseEntry(0x03db, 1, 2, true, false),
  1444.     SimpleCaseEntry(0x00d1, 0, 2, false, true),
  1445.     SimpleCaseEntry(0x00f1, 1, 2, true, false),
  1446.     SimpleCaseEntry(0x2ce2, 0, 2, false, true),
  1447.     SimpleCaseEntry(0x2ce3, 1, 2, true, false),
  1448.     SimpleCaseEntry(0x00d2, 0, 2, false, true),
  1449.     SimpleCaseEntry(0x00f2, 1, 2, true, false),
  1450.     SimpleCaseEntry(0x03dc, 0, 2, false, true),
  1451.     SimpleCaseEntry(0x03dd, 1, 2, true, false),
  1452.     SimpleCaseEntry(0x00d3, 0, 2, false, true),
  1453.     SimpleCaseEntry(0x00f3, 1, 2, true, false),
  1454.     SimpleCaseEntry(0x00d4, 0, 2, false, true),
  1455.     SimpleCaseEntry(0x00f4, 1, 2, true, false),
  1456.     SimpleCaseEntry(0x03de, 0, 2, false, true),
  1457.     SimpleCaseEntry(0x03df, 1, 2, true, false),
  1458.     SimpleCaseEntry(0x1f38, 0, 2, false, true),
  1459.     SimpleCaseEntry(0x1f30, 1, 2, true, false),
  1460.     SimpleCaseEntry(0x00d5, 0, 2, false, true),
  1461.     SimpleCaseEntry(0x00f5, 1, 2, true, false),
  1462.     SimpleCaseEntry(0x1f39, 0, 2, false, true),
  1463.     SimpleCaseEntry(0x1f31, 1, 2, true, false),
  1464.     SimpleCaseEntry(0x00d6, 0, 2, false, true),
  1465.     SimpleCaseEntry(0x00f6, 1, 2, true, false),
  1466.     SimpleCaseEntry(0x03e0, 0, 2, false, true),
  1467.     SimpleCaseEntry(0x03e1, 1, 2, true, false),
  1468.     SimpleCaseEntry(0x1f3a, 0, 2, false, true),
  1469.     SimpleCaseEntry(0x1f32, 1, 2, true, false),
  1470.     SimpleCaseEntry(0x1f3b, 0, 2, false, true),
  1471.     SimpleCaseEntry(0x1f33, 1, 2, true, false),
  1472.     SimpleCaseEntry(0x00d8, 0, 2, false, true),
  1473.     SimpleCaseEntry(0x00f8, 1, 2, true, false),
  1474.     SimpleCaseEntry(0x03e2, 0, 2, false, true),
  1475.     SimpleCaseEntry(0x03e3, 1, 2, true, false),
  1476.     SimpleCaseEntry(0x1f3c, 0, 2, false, true),
  1477.     SimpleCaseEntry(0x1f34, 1, 2, true, false),
  1478.     SimpleCaseEntry(0x00d9, 0, 2, false, true),
  1479.     SimpleCaseEntry(0x00f9, 1, 2, true, false),
  1480.     SimpleCaseEntry(0x1f3d, 0, 2, false, true),
  1481.     SimpleCaseEntry(0x1f35, 1, 2, true, false),
  1482.     SimpleCaseEntry(0x00da, 0, 2, false, true),
  1483.     SimpleCaseEntry(0x00fa, 1, 2, true, false),
  1484.     SimpleCaseEntry(0x03e4, 0, 2, false, true),
  1485.     SimpleCaseEntry(0x03e5, 1, 2, true, false),
  1486.     SimpleCaseEntry(0x1f3e, 0, 2, false, true),
  1487.     SimpleCaseEntry(0x1f36, 1, 2, true, false),
  1488.     SimpleCaseEntry(0x2ceb, 0, 2, false, true),
  1489.     SimpleCaseEntry(0x2cec, 1, 2, true, false),
  1490.     SimpleCaseEntry(0x00db, 0, 2, false, true),
  1491.     SimpleCaseEntry(0x00fb, 1, 2, true, false),
  1492.     SimpleCaseEntry(0x1f3f, 0, 2, false, true),
  1493.     SimpleCaseEntry(0x1f37, 1, 2, true, false),
  1494.     SimpleCaseEntry(0x00dc, 0, 2, false, true),
  1495.     SimpleCaseEntry(0x00fc, 1, 2, true, false),
  1496.     SimpleCaseEntry(0x03e6, 0, 2, false, true),
  1497.     SimpleCaseEntry(0x03e7, 1, 2, true, false),
  1498.     SimpleCaseEntry(0x2ced, 0, 2, false, true),
  1499.     SimpleCaseEntry(0x2cee, 1, 2, true, false),
  1500.     SimpleCaseEntry(0x00dd, 0, 2, false, true),
  1501.     SimpleCaseEntry(0x00fd, 1, 2, true, false),
  1502.     SimpleCaseEntry(0x00de, 0, 2, false, true),
  1503.     SimpleCaseEntry(0x00fe, 1, 2, true, false),
  1504.     SimpleCaseEntry(0x03e8, 0, 2, false, true),
  1505.     SimpleCaseEntry(0x03e9, 1, 2, true, false),
  1506.     SimpleCaseEntry(0xa680, 0, 2, false, true),
  1507.     SimpleCaseEntry(0xa681, 1, 2, true, false),
  1508.     SimpleCaseEntry(0x03ea, 0, 2, false, true),
  1509.     SimpleCaseEntry(0x03eb, 1, 2, true, false),
  1510.     SimpleCaseEntry(0x2cf2, 0, 2, false, true),
  1511.     SimpleCaseEntry(0x2cf3, 1, 2, true, false),
  1512.     SimpleCaseEntry(0xa682, 0, 2, false, true),
  1513.     SimpleCaseEntry(0xa683, 1, 2, true, false),
  1514.     SimpleCaseEntry(0x03ec, 0, 2, false, true),
  1515.     SimpleCaseEntry(0x03ed, 1, 2, true, false),
  1516.     SimpleCaseEntry(0xa684, 0, 2, false, true),
  1517.     SimpleCaseEntry(0xa685, 1, 2, true, false),
  1518.     SimpleCaseEntry(0x03ee, 0, 2, false, true),
  1519.     SimpleCaseEntry(0x03ef, 1, 2, true, false),
  1520.     SimpleCaseEntry(0x1f48, 0, 2, false, true),
  1521.     SimpleCaseEntry(0x1f40, 1, 2, true, false),
  1522.     SimpleCaseEntry(0x1f49, 0, 2, false, true),
  1523.     SimpleCaseEntry(0x1f41, 1, 2, true, false),
  1524.     SimpleCaseEntry(0xa686, 0, 2, false, true),
  1525.     SimpleCaseEntry(0xa687, 1, 2, true, false),
  1526.     SimpleCaseEntry(0x03f0, 0, 3, true, false),
  1527.     SimpleCaseEntry(0x03ba, 1, 3, true, false),
  1528.     SimpleCaseEntry(0x039a, 2, 3, false, true),
  1529.     SimpleCaseEntry(0x1f4a, 0, 2, false, true),
  1530.     SimpleCaseEntry(0x1f42, 1, 2, true, false),
  1531.     SimpleCaseEntry(0x03f1, 0, 3, true, false),
  1532.     SimpleCaseEntry(0x03c1, 1, 3, true, false),
  1533.     SimpleCaseEntry(0x03a1, 2, 3, false, true),
  1534.     SimpleCaseEntry(0x1f4b, 0, 2, false, true),
  1535.     SimpleCaseEntry(0x1f43, 1, 2, true, false),
  1536.     SimpleCaseEntry(0xa688, 0, 2, false, true),
  1537.     SimpleCaseEntry(0xa689, 1, 2, true, false),
  1538.     SimpleCaseEntry(0x1f4c, 0, 2, false, true),
  1539.     SimpleCaseEntry(0x1f44, 1, 2, true, false),
  1540.     SimpleCaseEntry(0x1f4d, 0, 2, false, true),
  1541.     SimpleCaseEntry(0x1f45, 1, 2, true, false),
  1542.     SimpleCaseEntry(0xa68a, 0, 2, false, true),
  1543.     SimpleCaseEntry(0xa68b, 1, 2, true, false),
  1544.     SimpleCaseEntry(0x03f4, 0, 4, false, true),
  1545.     SimpleCaseEntry(0x03b8, 1, 4, true, false),
  1546.     SimpleCaseEntry(0x0398, 2, 4, false, true),
  1547.     SimpleCaseEntry(0x03d1, 3, 4, true, false),
  1548.     SimpleCaseEntry(0x03f5, 0, 3, true, false),
  1549.     SimpleCaseEntry(0x03b5, 1, 3, true, false),
  1550.     SimpleCaseEntry(0x0395, 2, 3, false, true),
  1551.     SimpleCaseEntry(0xa68c, 0, 2, false, true),
  1552.     SimpleCaseEntry(0xa68d, 1, 2, true, false),
  1553.     SimpleCaseEntry(0x03f7, 0, 2, false, true),
  1554.     SimpleCaseEntry(0x03f8, 1, 2, true, false),
  1555.     SimpleCaseEntry(0xa68e, 0, 2, false, true),
  1556.     SimpleCaseEntry(0xa68f, 1, 2, true, false),
  1557.     SimpleCaseEntry(0x03f9, 0, 2, false, true),
  1558.     SimpleCaseEntry(0x03f2, 1, 2, true, false),
  1559.     SimpleCaseEntry(0xa690, 0, 2, false, true),
  1560.     SimpleCaseEntry(0xa691, 1, 2, true, false),
  1561.     SimpleCaseEntry(0x03fa, 0, 2, false, true),
  1562.     SimpleCaseEntry(0x03fb, 1, 2, true, false),
  1563.     SimpleCaseEntry(0xa692, 0, 2, false, true),
  1564.     SimpleCaseEntry(0xa693, 1, 2, true, false),
  1565.     SimpleCaseEntry(0x03fd, 0, 2, false, true),
  1566.     SimpleCaseEntry(0x037b, 1, 2, true, false),
  1567.     SimpleCaseEntry(0xa694, 0, 2, false, true),
  1568.     SimpleCaseEntry(0xa695, 1, 2, true, false),
  1569.     SimpleCaseEntry(0x03fe, 0, 2, false, true),
  1570.     SimpleCaseEntry(0x037c, 1, 2, true, false),
  1571.     SimpleCaseEntry(0x03ff, 0, 2, false, true),
  1572.     SimpleCaseEntry(0x037d, 1, 2, true, false),
  1573.     SimpleCaseEntry(0x1f59, 0, 2, false, true),
  1574.     SimpleCaseEntry(0x1f51, 1, 2, true, false),
  1575.     SimpleCaseEntry(0xa696, 0, 2, false, true),
  1576.     SimpleCaseEntry(0xa697, 1, 2, true, false),
  1577.     SimpleCaseEntry(0x0400, 0, 2, false, true),
  1578.     SimpleCaseEntry(0x0450, 1, 2, true, false),
  1579.     SimpleCaseEntry(0x0401, 0, 2, false, true),
  1580.     SimpleCaseEntry(0x0451, 1, 2, true, false),
  1581.     SimpleCaseEntry(0x1f5b, 0, 2, false, true),
  1582.     SimpleCaseEntry(0x1f53, 1, 2, true, false),
  1583.     SimpleCaseEntry(0x0402, 0, 2, false, true),
  1584.     SimpleCaseEntry(0x0452, 1, 2, true, false),
  1585.     SimpleCaseEntry(0x0403, 0, 2, false, true),
  1586.     SimpleCaseEntry(0x0453, 1, 2, true, false),
  1587.     SimpleCaseEntry(0x1f5d, 0, 2, false, true),
  1588.     SimpleCaseEntry(0x1f55, 1, 2, true, false),
  1589.     SimpleCaseEntry(0x0404, 0, 2, false, true),
  1590.     SimpleCaseEntry(0x0454, 1, 2, true, false),
  1591.     SimpleCaseEntry(0x0405, 0, 2, false, true),
  1592.     SimpleCaseEntry(0x0455, 1, 2, true, false),
  1593.     SimpleCaseEntry(0x1f5f, 0, 2, false, true),
  1594.     SimpleCaseEntry(0x1f57, 1, 2, true, false),
  1595.     SimpleCaseEntry(0x0406, 0, 2, false, true),
  1596.     SimpleCaseEntry(0x0456, 1, 2, true, false),
  1597.     SimpleCaseEntry(0x0407, 0, 2, false, true),
  1598.     SimpleCaseEntry(0x0457, 1, 2, true, false),
  1599.     SimpleCaseEntry(0x0408, 0, 2, false, true),
  1600.     SimpleCaseEntry(0x0458, 1, 2, true, false),
  1601.     SimpleCaseEntry(0x0409, 0, 2, false, true),
  1602.     SimpleCaseEntry(0x0459, 1, 2, true, false),
  1603.     SimpleCaseEntry(0x0100, 0, 2, false, true),
  1604.     SimpleCaseEntry(0x0101, 1, 2, true, false),
  1605.     SimpleCaseEntry(0x040a, 0, 2, false, true),
  1606.     SimpleCaseEntry(0x045a, 1, 2, true, false),
  1607.     SimpleCaseEntry(0x040b, 0, 2, false, true),
  1608.     SimpleCaseEntry(0x045b, 1, 2, true, false),
  1609.     SimpleCaseEntry(0x0102, 0, 2, false, true),
  1610.     SimpleCaseEntry(0x0103, 1, 2, true, false),
  1611.     SimpleCaseEntry(0x040c, 0, 2, false, true),
  1612.     SimpleCaseEntry(0x045c, 1, 2, true, false),
  1613.     SimpleCaseEntry(0x040d, 0, 2, false, true),
  1614.     SimpleCaseEntry(0x045d, 1, 2, true, false),
  1615.     SimpleCaseEntry(0x0104, 0, 2, false, true),
  1616.     SimpleCaseEntry(0x0105, 1, 2, true, false),
  1617.     SimpleCaseEntry(0x040e, 0, 2, false, true),
  1618.     SimpleCaseEntry(0x045e, 1, 2, true, false),
  1619.     SimpleCaseEntry(0x1f68, 0, 2, false, true),
  1620.     SimpleCaseEntry(0x1f60, 1, 2, true, false),
  1621.     SimpleCaseEntry(0x040f, 0, 2, false, true),
  1622.     SimpleCaseEntry(0x045f, 1, 2, true, false),
  1623.     SimpleCaseEntry(0x1f69, 0, 2, false, true),
  1624.     SimpleCaseEntry(0x1f61, 1, 2, true, false),
  1625.     SimpleCaseEntry(0x0106, 0, 2, false, true),
  1626.     SimpleCaseEntry(0x0107, 1, 2, true, false),
  1627.     SimpleCaseEntry(0x0410, 0, 2, false, true),
  1628.     SimpleCaseEntry(0x0430, 1, 2, true, false),
  1629.     SimpleCaseEntry(0x1f6a, 0, 2, false, true),
  1630.     SimpleCaseEntry(0x1f62, 1, 2, true, false),
  1631.     SimpleCaseEntry(0x0411, 0, 2, false, true),
  1632.     SimpleCaseEntry(0x0431, 1, 2, true, false),
  1633.     SimpleCaseEntry(0x1f6b, 0, 2, false, true),
  1634.     SimpleCaseEntry(0x1f63, 1, 2, true, false),
  1635.     SimpleCaseEntry(0x0108, 0, 2, false, true),
  1636.     SimpleCaseEntry(0x0109, 1, 2, true, false),
  1637.     SimpleCaseEntry(0x0412, 0, 2, false, true),
  1638.     SimpleCaseEntry(0x0432, 1, 2, true, false),
  1639.     SimpleCaseEntry(0x1f6c, 0, 2, false, true),
  1640.     SimpleCaseEntry(0x1f64, 1, 2, true, false),
  1641.     SimpleCaseEntry(0x0413, 0, 2, false, true),
  1642.     SimpleCaseEntry(0x0433, 1, 2, true, false),
  1643.     SimpleCaseEntry(0x1f6d, 0, 2, false, true),
  1644.     SimpleCaseEntry(0x1f65, 1, 2, true, false),
  1645.     SimpleCaseEntry(0x010a, 0, 2, false, true),
  1646.     SimpleCaseEntry(0x010b, 1, 2, true, false),
  1647.     SimpleCaseEntry(0x0414, 0, 2, false, true),
  1648.     SimpleCaseEntry(0x0434, 1, 2, true, false),
  1649.     SimpleCaseEntry(0x1f6e, 0, 2, false, true),
  1650.     SimpleCaseEntry(0x1f66, 1, 2, true, false),
  1651.     SimpleCaseEntry(0x0415, 0, 2, false, true),
  1652.     SimpleCaseEntry(0x0435, 1, 2, true, false),
  1653.     SimpleCaseEntry(0x1f6f, 0, 2, false, true),
  1654.     SimpleCaseEntry(0x1f67, 1, 2, true, false),
  1655.     SimpleCaseEntry(0x010c, 0, 2, false, true),
  1656.     SimpleCaseEntry(0x010d, 1, 2, true, false),
  1657.     SimpleCaseEntry(0x0416, 0, 2, false, true),
  1658.     SimpleCaseEntry(0x0436, 1, 2, true, false),
  1659.     SimpleCaseEntry(0x0417, 0, 2, false, true),
  1660.     SimpleCaseEntry(0x0437, 1, 2, true, false),
  1661.     SimpleCaseEntry(0x010e, 0, 2, false, true),
  1662.     SimpleCaseEntry(0x010f, 1, 2, true, false),
  1663.     SimpleCaseEntry(0x0418, 0, 2, false, true),
  1664.     SimpleCaseEntry(0x0438, 1, 2, true, false),
  1665.     SimpleCaseEntry(0x0419, 0, 2, false, true),
  1666.     SimpleCaseEntry(0x0439, 1, 2, true, false),
  1667.     SimpleCaseEntry(0x0110, 0, 2, false, true),
  1668.     SimpleCaseEntry(0x0111, 1, 2, true, false),
  1669.     SimpleCaseEntry(0x041a, 0, 2, false, true),
  1670.     SimpleCaseEntry(0x043a, 1, 2, true, false),
  1671.     SimpleCaseEntry(0x041b, 0, 2, false, true),
  1672.     SimpleCaseEntry(0x043b, 1, 2, true, false),
  1673.     SimpleCaseEntry(0x0112, 0, 2, false, true),
  1674.     SimpleCaseEntry(0x0113, 1, 2, true, false),
  1675.     SimpleCaseEntry(0x041c, 0, 2, false, true),
  1676.     SimpleCaseEntry(0x043c, 1, 2, true, false),
  1677.     SimpleCaseEntry(0x041d, 0, 2, false, true),
  1678.     SimpleCaseEntry(0x043d, 1, 2, true, false),
  1679.     SimpleCaseEntry(0x0114, 0, 2, false, true),
  1680.     SimpleCaseEntry(0x0115, 1, 2, true, false),
  1681.     SimpleCaseEntry(0x041e, 0, 2, false, true),
  1682.     SimpleCaseEntry(0x043e, 1, 2, true, false),
  1683.     SimpleCaseEntry(0x041f, 0, 2, false, true),
  1684.     SimpleCaseEntry(0x043f, 1, 2, true, false),
  1685.     SimpleCaseEntry(0x0116, 0, 2, false, true),
  1686.     SimpleCaseEntry(0x0117, 1, 2, true, false),
  1687.     SimpleCaseEntry(0x0420, 0, 2, false, true),
  1688.     SimpleCaseEntry(0x0440, 1, 2, true, false),
  1689.     SimpleCaseEntry(0x0421, 0, 2, false, true),
  1690.     SimpleCaseEntry(0x0441, 1, 2, true, false),
  1691.     SimpleCaseEntry(0x0118, 0, 2, false, true),
  1692.     SimpleCaseEntry(0x0119, 1, 2, true, false),
  1693.     SimpleCaseEntry(0x0422, 0, 2, false, true),
  1694.     SimpleCaseEntry(0x0442, 1, 2, true, false),
  1695.     SimpleCaseEntry(0x0423, 0, 2, false, true),
  1696.     SimpleCaseEntry(0x0443, 1, 2, true, false),
  1697.     SimpleCaseEntry(0x011a, 0, 2, false, true),
  1698.     SimpleCaseEntry(0x011b, 1, 2, true, false),
  1699.     SimpleCaseEntry(0x0424, 0, 2, false, true),
  1700.     SimpleCaseEntry(0x0444, 1, 2, true, false),
  1701.     SimpleCaseEntry(0x0425, 0, 2, false, true),
  1702.     SimpleCaseEntry(0x0445, 1, 2, true, false),
  1703.     SimpleCaseEntry(0x011c, 0, 2, false, true),
  1704.     SimpleCaseEntry(0x011d, 1, 2, true, false),
  1705.     SimpleCaseEntry(0x0426, 0, 2, false, true),
  1706.     SimpleCaseEntry(0x0446, 1, 2, true, false),
  1707.     SimpleCaseEntry(0x0427, 0, 2, false, true),
  1708.     SimpleCaseEntry(0x0447, 1, 2, true, false),
  1709.     SimpleCaseEntry(0x011e, 0, 2, false, true),
  1710.     SimpleCaseEntry(0x011f, 1, 2, true, false),
  1711.     SimpleCaseEntry(0x0428, 0, 2, false, true),
  1712.     SimpleCaseEntry(0x0448, 1, 2, true, false),
  1713.     SimpleCaseEntry(0x0429, 0, 2, false, true),
  1714.     SimpleCaseEntry(0x0449, 1, 2, true, false),
  1715.     SimpleCaseEntry(0x0120, 0, 2, false, true),
  1716.     SimpleCaseEntry(0x0121, 1, 2, true, false),
  1717.     SimpleCaseEntry(0x042a, 0, 2, false, true),
  1718.     SimpleCaseEntry(0x044a, 1, 2, true, false),
  1719.     SimpleCaseEntry(0x042b, 0, 2, false, true),
  1720.     SimpleCaseEntry(0x044b, 1, 2, true, false),
  1721.     SimpleCaseEntry(0x1e00, 0, 2, false, true),
  1722.     SimpleCaseEntry(0x1e01, 1, 2, true, false),
  1723.     SimpleCaseEntry(0x0122, 0, 2, false, true),
  1724.     SimpleCaseEntry(0x0123, 1, 2, true, false),
  1725.     SimpleCaseEntry(0x042c, 0, 2, false, true),
  1726.     SimpleCaseEntry(0x044c, 1, 2, true, false),
  1727.     SimpleCaseEntry(0x042d, 0, 2, false, true),
  1728.     SimpleCaseEntry(0x044d, 1, 2, true, false),
  1729.     SimpleCaseEntry(0x1e02, 0, 2, false, true),
  1730.     SimpleCaseEntry(0x1e03, 1, 2, true, false),
  1731.     SimpleCaseEntry(0x0124, 0, 2, false, true),
  1732.     SimpleCaseEntry(0x0125, 1, 2, true, false),
  1733.     SimpleCaseEntry(0x042e, 0, 2, false, true),
  1734.     SimpleCaseEntry(0x044e, 1, 2, true, false),
  1735.     SimpleCaseEntry(0x1f88, 0, 2, false, false),
  1736.     SimpleCaseEntry(0x1f80, 1, 2, true, false),
  1737.     SimpleCaseEntry(0x042f, 0, 2, false, true),
  1738.     SimpleCaseEntry(0x044f, 1, 2, true, false),
  1739.     SimpleCaseEntry(0x1e04, 0, 2, false, true),
  1740.     SimpleCaseEntry(0x1e05, 1, 2, true, false),
  1741.     SimpleCaseEntry(0x1f89, 0, 2, false, false),
  1742.     SimpleCaseEntry(0x1f81, 1, 2, true, false),
  1743.     SimpleCaseEntry(0x0126, 0, 2, false, true),
  1744.     SimpleCaseEntry(0x0127, 1, 2, true, false),
  1745.     SimpleCaseEntry(0x1f8a, 0, 2, false, false),
  1746.     SimpleCaseEntry(0x1f82, 1, 2, true, false),
  1747.     SimpleCaseEntry(0x1e06, 0, 2, false, true),
  1748.     SimpleCaseEntry(0x1e07, 1, 2, true, false),
  1749.     SimpleCaseEntry(0x1f8b, 0, 2, false, false),
  1750.     SimpleCaseEntry(0x1f83, 1, 2, true, false),
  1751.     SimpleCaseEntry(0x0128, 0, 2, false, true),
  1752.     SimpleCaseEntry(0x0129, 1, 2, true, false),
  1753.     SimpleCaseEntry(0x1f8c, 0, 2, false, false),
  1754.     SimpleCaseEntry(0x1f84, 1, 2, true, false),
  1755.     SimpleCaseEntry(0x1e08, 0, 2, false, true),
  1756.     SimpleCaseEntry(0x1e09, 1, 2, true, false),
  1757.     SimpleCaseEntry(0x1f8d, 0, 2, false, false),
  1758.     SimpleCaseEntry(0x1f85, 1, 2, true, false),
  1759.     SimpleCaseEntry(0x012a, 0, 2, false, true),
  1760.     SimpleCaseEntry(0x012b, 1, 2, true, false),
  1761.     SimpleCaseEntry(0x1f8e, 0, 2, false, false),
  1762.     SimpleCaseEntry(0x1f86, 1, 2, true, false),
  1763.     SimpleCaseEntry(0x1e0a, 0, 2, false, true),
  1764.     SimpleCaseEntry(0x1e0b, 1, 2, true, false),
  1765.     SimpleCaseEntry(0x1f8f, 0, 2, false, false),
  1766.     SimpleCaseEntry(0x1f87, 1, 2, true, false),
  1767.     SimpleCaseEntry(0x012c, 0, 2, false, true),
  1768.     SimpleCaseEntry(0x012d, 1, 2, true, false),
  1769.     SimpleCaseEntry(0x1e0c, 0, 2, false, true),
  1770.     SimpleCaseEntry(0x1e0d, 1, 2, true, false),
  1771.     SimpleCaseEntry(0x012e, 0, 2, false, true),
  1772.     SimpleCaseEntry(0x012f, 1, 2, true, false),
  1773.     SimpleCaseEntry(0x1e0e, 0, 2, false, true),
  1774.     SimpleCaseEntry(0x1e0f, 1, 2, true, false),
  1775.     SimpleCaseEntry(0x1e10, 0, 2, false, true),
  1776.     SimpleCaseEntry(0x1e11, 1, 2, true, false),
  1777.     SimpleCaseEntry(0x0132, 0, 2, false, true),
  1778.     SimpleCaseEntry(0x0133, 1, 2, true, false),
  1779.     SimpleCaseEntry(0x1e12, 0, 2, false, true),
  1780.     SimpleCaseEntry(0x1e13, 1, 2, true, false),
  1781.     SimpleCaseEntry(0x0134, 0, 2, false, true),
  1782.     SimpleCaseEntry(0x0135, 1, 2, true, false),
  1783.     SimpleCaseEntry(0x1f98, 0, 2, false, false),
  1784.     SimpleCaseEntry(0x1f90, 1, 2, true, false),
  1785.     SimpleCaseEntry(0x1e14, 0, 2, false, true),
  1786.     SimpleCaseEntry(0x1e15, 1, 2, true, false),
  1787.     SimpleCaseEntry(0x1f99, 0, 2, false, false),
  1788.     SimpleCaseEntry(0x1f91, 1, 2, true, false),
  1789.     SimpleCaseEntry(0x0136, 0, 2, false, true),
  1790.     SimpleCaseEntry(0x0137, 1, 2, true, false),
  1791.     SimpleCaseEntry(0x1f9a, 0, 2, false, false),
  1792.     SimpleCaseEntry(0x1f92, 1, 2, true, false),
  1793.     SimpleCaseEntry(0x1e16, 0, 2, false, true),
  1794.     SimpleCaseEntry(0x1e17, 1, 2, true, false),
  1795.     SimpleCaseEntry(0x1f9b, 0, 2, false, false),
  1796.     SimpleCaseEntry(0x1f93, 1, 2, true, false),
  1797.     SimpleCaseEntry(0x1f9c, 0, 2, false, false),
  1798.     SimpleCaseEntry(0x1f94, 1, 2, true, false),
  1799.     SimpleCaseEntry(0x0139, 0, 2, false, true),
  1800.     SimpleCaseEntry(0x013a, 1, 2, true, false),
  1801.     SimpleCaseEntry(0x1e18, 0, 2, false, true),
  1802.     SimpleCaseEntry(0x1e19, 1, 2, true, false),
  1803.     SimpleCaseEntry(0x1f9d, 0, 2, false, false),
  1804.     SimpleCaseEntry(0x1f95, 1, 2, true, false),
  1805.     SimpleCaseEntry(0x1f9e, 0, 2, false, false),
  1806.     SimpleCaseEntry(0x1f96, 1, 2, true, false),
  1807.     SimpleCaseEntry(0x013b, 0, 2, false, true),
  1808.     SimpleCaseEntry(0x013c, 1, 2, true, false),
  1809.     SimpleCaseEntry(0x1e1a, 0, 2, false, true),
  1810.     SimpleCaseEntry(0x1e1b, 1, 2, true, false),
  1811.     SimpleCaseEntry(0x1f9f, 0, 2, false, false),
  1812.     SimpleCaseEntry(0x1f97, 1, 2, true, false),
  1813.     SimpleCaseEntry(0x013d, 0, 2, false, true),
  1814.     SimpleCaseEntry(0x013e, 1, 2, true, false),
  1815.     SimpleCaseEntry(0x1e1c, 0, 2, false, true),
  1816.     SimpleCaseEntry(0x1e1d, 1, 2, true, false),
  1817.     SimpleCaseEntry(0x2126, 0, 3, false, true),
  1818.     SimpleCaseEntry(0x03c9, 1, 3, true, false),
  1819.     SimpleCaseEntry(0x03a9, 2, 3, false, true),
  1820.     SimpleCaseEntry(0x013f, 0, 2, false, true),
  1821.     SimpleCaseEntry(0x0140, 1, 2, true, false),
  1822.     SimpleCaseEntry(0x1e1e, 0, 2, false, true),
  1823.     SimpleCaseEntry(0x1e1f, 1, 2, true, false),
  1824.     SimpleCaseEntry(0x0141, 0, 2, false, true),
  1825.     SimpleCaseEntry(0x0142, 1, 2, true, false),
  1826.     SimpleCaseEntry(0x1e20, 0, 2, false, true),
  1827.     SimpleCaseEntry(0x1e21, 1, 2, true, false),
  1828.     SimpleCaseEntry(0x212a, 0, 3, false, true),
  1829.     SimpleCaseEntry(0x006b, 1, 3, true, false),
  1830.     SimpleCaseEntry(0x004b, 2, 3, false, true),
  1831.     SimpleCaseEntry(0x212b, 0, 3, false, true),
  1832.     SimpleCaseEntry(0x00e5, 1, 3, true, false),
  1833.     SimpleCaseEntry(0x00c5, 2, 3, false, true),
  1834.     SimpleCaseEntry(0x0143, 0, 2, false, true),
  1835.     SimpleCaseEntry(0x0144, 1, 2, true, false),
  1836.     SimpleCaseEntry(0x1e22, 0, 2, false, true),
  1837.     SimpleCaseEntry(0x1e23, 1, 2, true, false),
  1838.     SimpleCaseEntry(0x1fa8, 0, 2, false, false),
  1839.     SimpleCaseEntry(0x1fa0, 1, 2, true, false),
  1840.     SimpleCaseEntry(0x0145, 0, 2, false, true),
  1841.     SimpleCaseEntry(0x0146, 1, 2, true, false),
  1842.     SimpleCaseEntry(0x1e24, 0, 2, false, true),
  1843.     SimpleCaseEntry(0x1e25, 1, 2, true, false),
  1844.     SimpleCaseEntry(0x1fa9, 0, 2, false, false),
  1845.     SimpleCaseEntry(0x1fa1, 1, 2, true, false),
  1846.     SimpleCaseEntry(0x1faa, 0, 2, false, false),
  1847.     SimpleCaseEntry(0x1fa2, 1, 2, true, false),
  1848.     SimpleCaseEntry(0x0147, 0, 2, false, true),
  1849.     SimpleCaseEntry(0x0148, 1, 2, true, false),
  1850.     SimpleCaseEntry(0x1e26, 0, 2, false, true),
  1851.     SimpleCaseEntry(0x1e27, 1, 2, true, false),
  1852.     SimpleCaseEntry(0x1fab, 0, 2, false, false),
  1853.     SimpleCaseEntry(0x1fa3, 1, 2, true, false),
  1854.     SimpleCaseEntry(0x1fac, 0, 2, false, false),
  1855.     SimpleCaseEntry(0x1fa4, 1, 2, true, false),
  1856.     SimpleCaseEntry(0x1e28, 0, 2, false, true),
  1857.     SimpleCaseEntry(0x1e29, 1, 2, true, false),
  1858.     SimpleCaseEntry(0x1fad, 0, 2, false, false),
  1859.     SimpleCaseEntry(0x1fa5, 1, 2, true, false),
  1860.     SimpleCaseEntry(0x2132, 0, 2, false, true),
  1861.     SimpleCaseEntry(0x214e, 1, 2, true, false),
  1862.     SimpleCaseEntry(0x014a, 0, 2, false, true),
  1863.     SimpleCaseEntry(0x014b, 1, 2, true, false),
  1864.     SimpleCaseEntry(0x1fae, 0, 2, false, false),
  1865.     SimpleCaseEntry(0x1fa6, 1, 2, true, false),
  1866.     SimpleCaseEntry(0x1e2a, 0, 2, false, true),
  1867.     SimpleCaseEntry(0x1e2b, 1, 2, true, false),
  1868.     SimpleCaseEntry(0x1faf, 0, 2, false, false),
  1869.     SimpleCaseEntry(0x1fa7, 1, 2, true, false),
  1870.     SimpleCaseEntry(0x014c, 0, 2, false, true),
  1871.     SimpleCaseEntry(0x014d, 1, 2, true, false),
  1872.     SimpleCaseEntry(0x1e2c, 0, 2, false, true),
  1873.     SimpleCaseEntry(0x1e2d, 1, 2, true, false),
  1874.     SimpleCaseEntry(0x014e, 0, 2, false, true),
  1875.     SimpleCaseEntry(0x014f, 1, 2, true, false),
  1876.     SimpleCaseEntry(0x1e2e, 0, 2, false, true),
  1877.     SimpleCaseEntry(0x1e2f, 1, 2, true, false),
  1878.     SimpleCaseEntry(0x0150, 0, 2, false, true),
  1879.     SimpleCaseEntry(0x0151, 1, 2, true, false),
  1880.     SimpleCaseEntry(0x1e30, 0, 2, false, true),
  1881.     SimpleCaseEntry(0x1e31, 1, 2, true, false),
  1882.     SimpleCaseEntry(0x0152, 0, 2, false, true),
  1883.     SimpleCaseEntry(0x0153, 1, 2, true, false),
  1884.     SimpleCaseEntry(0x1e32, 0, 2, false, true),
  1885.     SimpleCaseEntry(0x1e33, 1, 2, true, false),
  1886.     SimpleCaseEntry(0x0154, 0, 2, false, true),
  1887.     SimpleCaseEntry(0x0155, 1, 2, true, false),
  1888.     SimpleCaseEntry(0x1fb8, 0, 2, false, true),
  1889.     SimpleCaseEntry(0x1fb0, 1, 2, true, false),
  1890.     SimpleCaseEntry(0x1e34, 0, 2, false, true),
  1891.     SimpleCaseEntry(0x1e35, 1, 2, true, false),
  1892.     SimpleCaseEntry(0x1fb9, 0, 2, false, true),
  1893.     SimpleCaseEntry(0x1fb1, 1, 2, true, false),
  1894.     SimpleCaseEntry(0x0156, 0, 2, false, true),
  1895.     SimpleCaseEntry(0x0157, 1, 2, true, false),
  1896.     SimpleCaseEntry(0x0460, 0, 2, false, true),
  1897.     SimpleCaseEntry(0x0461, 1, 2, true, false),
  1898.     SimpleCaseEntry(0x1fba, 0, 2, false, true),
  1899.     SimpleCaseEntry(0x1f70, 1, 2, true, false),
  1900.     SimpleCaseEntry(0x1e36, 0, 2, false, true),
  1901.     SimpleCaseEntry(0x1e37, 1, 2, true, false),
  1902.     SimpleCaseEntry(0x1fbb, 0, 2, false, true),
  1903.     SimpleCaseEntry(0x1f71, 1, 2, true, false),
  1904.     SimpleCaseEntry(0x0158, 0, 2, false, true),
  1905.     SimpleCaseEntry(0x0159, 1, 2, true, false),
  1906.     SimpleCaseEntry(0x0462, 0, 2, false, true),
  1907.     SimpleCaseEntry(0x0463, 1, 2, true, false),
  1908.     SimpleCaseEntry(0x1fbc, 0, 2, false, false),
  1909.     SimpleCaseEntry(0x1fb3, 1, 2, true, false),
  1910.     SimpleCaseEntry(0x1e38, 0, 2, false, true),
  1911.     SimpleCaseEntry(0x1e39, 1, 2, true, false),
  1912.     SimpleCaseEntry(0x015a, 0, 2, false, true),
  1913.     SimpleCaseEntry(0x015b, 1, 2, true, false),
  1914.     SimpleCaseEntry(0x0464, 0, 2, false, true),
  1915.     SimpleCaseEntry(0x0465, 1, 2, true, false),
  1916.     SimpleCaseEntry(0x1fbe, 0, 4, true, false),
  1917.     SimpleCaseEntry(0x03b9, 1, 4, true, false),
  1918.     SimpleCaseEntry(0x0345, 2, 4, true, false),
  1919.     SimpleCaseEntry(0x0399, 3, 4, false, true),
  1920.     SimpleCaseEntry(0x1e3a, 0, 2, false, true),
  1921.     SimpleCaseEntry(0x1e3b, 1, 2, true, false),
  1922.     SimpleCaseEntry(0x015c, 0, 2, false, true),
  1923.     SimpleCaseEntry(0x015d, 1, 2, true, false),
  1924.     SimpleCaseEntry(0x0466, 0, 2, false, true),
  1925.     SimpleCaseEntry(0x0467, 1, 2, true, false),
  1926.     SimpleCaseEntry(0x1e3c, 0, 2, false, true),
  1927.     SimpleCaseEntry(0x1e3d, 1, 2, true, false),
  1928.     SimpleCaseEntry(0x015e, 0, 2, false, true),
  1929.     SimpleCaseEntry(0x015f, 1, 2, true, false),
  1930.     SimpleCaseEntry(0x0468, 0, 2, false, true),
  1931.     SimpleCaseEntry(0x0469, 1, 2, true, false),
  1932.     SimpleCaseEntry(0xff21, 0, 2, false, true),
  1933.     SimpleCaseEntry(0xff41, 1, 2, true, false),
  1934.     SimpleCaseEntry(0x1e3e, 0, 2, false, true),
  1935.     SimpleCaseEntry(0x1e3f, 1, 2, true, false),
  1936.     SimpleCaseEntry(0xff22, 0, 2, false, true),
  1937.     SimpleCaseEntry(0xff42, 1, 2, true, false),
  1938.     SimpleCaseEntry(0x0160, 0, 2, false, true),
  1939.     SimpleCaseEntry(0x0161, 1, 2, true, false),
  1940.     SimpleCaseEntry(0x046a, 0, 2, false, true),
  1941.     SimpleCaseEntry(0x046b, 1, 2, true, false),
  1942.     SimpleCaseEntry(0xff23, 0, 2, false, true),
  1943.     SimpleCaseEntry(0xff43, 1, 2, true, false),
  1944.     SimpleCaseEntry(0x1e40, 0, 2, false, true),
  1945.     SimpleCaseEntry(0x1e41, 1, 2, true, false),
  1946.     SimpleCaseEntry(0xff24, 0, 2, false, true),
  1947.     SimpleCaseEntry(0xff44, 1, 2, true, false),
  1948.     SimpleCaseEntry(0x0162, 0, 2, false, true),
  1949.     SimpleCaseEntry(0x0163, 1, 2, true, false),
  1950.     SimpleCaseEntry(0x046c, 0, 2, false, true),
  1951.     SimpleCaseEntry(0x046d, 1, 2, true, false),
  1952.     SimpleCaseEntry(0xff25, 0, 2, false, true),
  1953.     SimpleCaseEntry(0xff45, 1, 2, true, false),
  1954.     SimpleCaseEntry(0x1e42, 0, 2, false, true),
  1955.     SimpleCaseEntry(0x1e43, 1, 2, true, false),
  1956.     SimpleCaseEntry(0xff26, 0, 2, false, true),
  1957.     SimpleCaseEntry(0xff46, 1, 2, true, false),
  1958.     SimpleCaseEntry(0x0164, 0, 2, false, true),
  1959.     SimpleCaseEntry(0x0165, 1, 2, true, false),
  1960.     SimpleCaseEntry(0x046e, 0, 2, false, true),
  1961.     SimpleCaseEntry(0x046f, 1, 2, true, false),
  1962.     SimpleCaseEntry(0x1fc8, 0, 2, false, true),
  1963.     SimpleCaseEntry(0x1f72, 1, 2, true, false),
  1964.     SimpleCaseEntry(0xff27, 0, 2, false, true),
  1965.     SimpleCaseEntry(0xff47, 1, 2, true, false),
  1966.     SimpleCaseEntry(0x1e44, 0, 2, false, true),
  1967.     SimpleCaseEntry(0x1e45, 1, 2, true, false),
  1968.     SimpleCaseEntry(0x1fc9, 0, 2, false, true),
  1969.     SimpleCaseEntry(0x1f73, 1, 2, true, false),
  1970.     SimpleCaseEntry(0xff28, 0, 2, false, true),
  1971.     SimpleCaseEntry(0xff48, 1, 2, true, false),
  1972.     SimpleCaseEntry(0x0166, 0, 2, false, true),
  1973.     SimpleCaseEntry(0x0167, 1, 2, true, false),
  1974.     SimpleCaseEntry(0x0470, 0, 2, false, true),
  1975.     SimpleCaseEntry(0x0471, 1, 2, true, false),
  1976.     SimpleCaseEntry(0x1fca, 0, 2, false, true),
  1977.     SimpleCaseEntry(0x1f74, 1, 2, true, false),
  1978.     SimpleCaseEntry(0xff29, 0, 2, false, true),
  1979.     SimpleCaseEntry(0xff49, 1, 2, true, false),
  1980.     SimpleCaseEntry(0x1e46, 0, 2, false, true),
  1981.     SimpleCaseEntry(0x1e47, 1, 2, true, false),
  1982.     SimpleCaseEntry(0x1fcb, 0, 2, false, true),
  1983.     SimpleCaseEntry(0x1f75, 1, 2, true, false),
  1984.     SimpleCaseEntry(0xff2a, 0, 2, false, true),
  1985.     SimpleCaseEntry(0xff4a, 1, 2, true, false),
  1986.     SimpleCaseEntry(0x0168, 0, 2, false, true),
  1987.     SimpleCaseEntry(0x0169, 1, 2, true, false),
  1988.     SimpleCaseEntry(0x0472, 0, 2, false, true),
  1989.     SimpleCaseEntry(0x0473, 1, 2, true, false),
  1990.     SimpleCaseEntry(0x1fcc, 0, 2, false, false),
  1991.     SimpleCaseEntry(0x1fc3, 1, 2, true, false),
  1992.     SimpleCaseEntry(0xff2b, 0, 2, false, true),
  1993.     SimpleCaseEntry(0xff4b, 1, 2, true, false),
  1994.     SimpleCaseEntry(0x1e48, 0, 2, false, true),
  1995.     SimpleCaseEntry(0x1e49, 1, 2, true, false),
  1996.     SimpleCaseEntry(0xff2c, 0, 2, false, true),
  1997.     SimpleCaseEntry(0xff4c, 1, 2, true, false),
  1998.     SimpleCaseEntry(0x016a, 0, 2, false, true),
  1999.     SimpleCaseEntry(0x016b, 1, 2, true, false),
  2000.     SimpleCaseEntry(0x0474, 0, 2, false, true),
  2001.     SimpleCaseEntry(0x0475, 1, 2, true, false),
  2002.     SimpleCaseEntry(0xff2d, 0, 2, false, true),
  2003.     SimpleCaseEntry(0xff4d, 1, 2, true, false),
  2004.     SimpleCaseEntry(0x1e4a, 0, 2, false, true),
  2005.     SimpleCaseEntry(0x1e4b, 1, 2, true, false),
  2006.     SimpleCaseEntry(0xff2e, 0, 2, false, true),
  2007.     SimpleCaseEntry(0xff4e, 1, 2, true, false),
  2008.     SimpleCaseEntry(0x016c, 0, 2, false, true),
  2009.     SimpleCaseEntry(0x016d, 1, 2, true, false),
  2010.     SimpleCaseEntry(0x0476, 0, 2, false, true),
  2011.     SimpleCaseEntry(0x0477, 1, 2, true, false),
  2012.     SimpleCaseEntry(0xff2f, 0, 2, false, true),
  2013.     SimpleCaseEntry(0xff4f, 1, 2, true, false),
  2014.     SimpleCaseEntry(0x1e4c, 0, 2, false, true),
  2015.     SimpleCaseEntry(0x1e4d, 1, 2, true, false),
  2016.     SimpleCaseEntry(0xff30, 0, 2, false, true),
  2017.     SimpleCaseEntry(0xff50, 1, 2, true, false),
  2018.     SimpleCaseEntry(0x016e, 0, 2, false, true),
  2019.     SimpleCaseEntry(0x016f, 1, 2, true, false),
  2020.     SimpleCaseEntry(0x0478, 0, 2, false, true),
  2021.     SimpleCaseEntry(0x0479, 1, 2, true, false),
  2022.     SimpleCaseEntry(0x10a0, 0, 2, false, true),
  2023.     SimpleCaseEntry(0x2d00, 1, 2, true, false),
  2024.     SimpleCaseEntry(0xff31, 0, 2, false, true),
  2025.     SimpleCaseEntry(0xff51, 1, 2, true, false),
  2026.     SimpleCaseEntry(0x10a1, 0, 2, false, true),
  2027.     SimpleCaseEntry(0x2d01, 1, 2, true, false),
  2028.     SimpleCaseEntry(0x1e4e, 0, 2, false, true),
  2029.     SimpleCaseEntry(0x1e4f, 1, 2, true, false),
  2030.     SimpleCaseEntry(0xff32, 0, 2, false, true),
  2031.     SimpleCaseEntry(0xff52, 1, 2, true, false),
  2032.     SimpleCaseEntry(0x0170, 0, 2, false, true),
  2033.     SimpleCaseEntry(0x0171, 1, 2, true, false),
  2034.     SimpleCaseEntry(0x047a, 0, 2, false, true),
  2035.     SimpleCaseEntry(0x047b, 1, 2, true, false),
  2036.     SimpleCaseEntry(0x10a2, 0, 2, false, true),
  2037.     SimpleCaseEntry(0x2d02, 1, 2, true, false),
  2038.     SimpleCaseEntry(0xff33, 0, 2, false, true),
  2039.     SimpleCaseEntry(0xff53, 1, 2, true, false),
  2040.     SimpleCaseEntry(0x10a3, 0, 2, false, true),
  2041.     SimpleCaseEntry(0x2d03, 1, 2, true, false),
  2042.     SimpleCaseEntry(0x1e50, 0, 2, false, true),
  2043.     SimpleCaseEntry(0x1e51, 1, 2, true, false),
  2044.     SimpleCaseEntry(0xff34, 0, 2, false, true),
  2045.     SimpleCaseEntry(0xff54, 1, 2, true, false),
  2046.     SimpleCaseEntry(0x0172, 0, 2, false, true),
  2047.     SimpleCaseEntry(0x0173, 1, 2, true, false),
  2048.     SimpleCaseEntry(0x047c, 0, 2, false, true),
  2049.     SimpleCaseEntry(0x047d, 1, 2, true, false),
  2050.     SimpleCaseEntry(0x10a4, 0, 2, false, true),
  2051.     SimpleCaseEntry(0x2d04, 1, 2, true, false),
  2052.     SimpleCaseEntry(0xff35, 0, 2, false, true),
  2053.     SimpleCaseEntry(0xff55, 1, 2, true, false),
  2054.     SimpleCaseEntry(0x10a5, 0, 2, false, true),
  2055.     SimpleCaseEntry(0x2d05, 1, 2, true, false),
  2056.     SimpleCaseEntry(0x1e52, 0, 2, false, true),
  2057.     SimpleCaseEntry(0x1e53, 1, 2, true, false),
  2058.     SimpleCaseEntry(0xff36, 0, 2, false, true),
  2059.     SimpleCaseEntry(0xff56, 1, 2, true, false),
  2060.     SimpleCaseEntry(0x0174, 0, 2, false, true),
  2061.     SimpleCaseEntry(0x0175, 1, 2, true, false),
  2062.     SimpleCaseEntry(0x047e, 0, 2, false, true),
  2063.     SimpleCaseEntry(0x047f, 1, 2, true, false),
  2064.     SimpleCaseEntry(0x10a6, 0, 2, false, true),
  2065.     SimpleCaseEntry(0x2d06, 1, 2, true, false),
  2066.     SimpleCaseEntry(0x1fd8, 0, 2, false, true),
  2067.     SimpleCaseEntry(0x1fd0, 1, 2, true, false),
  2068.     SimpleCaseEntry(0x2c00, 0, 2, false, true),
  2069.     SimpleCaseEntry(0x2c30, 1, 2, true, false),
  2070.     SimpleCaseEntry(0xff37, 0, 2, false, true),
  2071.     SimpleCaseEntry(0xff57, 1, 2, true, false),
  2072.     SimpleCaseEntry(0x10a7, 0, 2, false, true),
  2073.     SimpleCaseEntry(0x2d07, 1, 2, true, false),
  2074.     SimpleCaseEntry(0x1e54, 0, 2, false, true),
  2075.     SimpleCaseEntry(0x1e55, 1, 2, true, false),
  2076.     SimpleCaseEntry(0x1fd9, 0, 2, false, true),
  2077.     SimpleCaseEntry(0x1fd1, 1, 2, true, false),
  2078.     SimpleCaseEntry(0x2c01, 0, 2, false, true),
  2079.     SimpleCaseEntry(0x2c31, 1, 2, true, false),
  2080.     SimpleCaseEntry(0xff38, 0, 2, false, true),
  2081.     SimpleCaseEntry(0xff58, 1, 2, true, false),
  2082.     SimpleCaseEntry(0x0176, 0, 2, false, true),
  2083.     SimpleCaseEntry(0x0177, 1, 2, true, false),
  2084.     SimpleCaseEntry(0x0480, 0, 2, false, true),
  2085.     SimpleCaseEntry(0x0481, 1, 2, true, false),
  2086.     SimpleCaseEntry(0x10a8, 0, 2, false, true),
  2087.     SimpleCaseEntry(0x2d08, 1, 2, true, false),
  2088.     SimpleCaseEntry(0x1fda, 0, 2, false, true),
  2089.     SimpleCaseEntry(0x1f76, 1, 2, true, false),
  2090.     SimpleCaseEntry(0x2c02, 0, 2, false, true),
  2091.     SimpleCaseEntry(0x2c32, 1, 2, true, false),
  2092.     SimpleCaseEntry(0xff39, 0, 2, false, true),
  2093.     SimpleCaseEntry(0xff59, 1, 2, true, false),
  2094.     SimpleCaseEntry(0x10a9, 0, 2, false, true),
  2095.     SimpleCaseEntry(0x2d09, 1, 2, true, false),
  2096.     SimpleCaseEntry(0x1e56, 0, 2, false, true),
  2097.     SimpleCaseEntry(0x1e57, 1, 2, true, false),
  2098.     SimpleCaseEntry(0x1fdb, 0, 2, false, true),
  2099.     SimpleCaseEntry(0x1f77, 1, 2, true, false),
  2100.     SimpleCaseEntry(0x2160, 0, 2, false, true),
  2101.     SimpleCaseEntry(0x2170, 1, 2, true, false),
  2102.     SimpleCaseEntry(0x2c03, 0, 2, false, true),
  2103.     SimpleCaseEntry(0x2c33, 1, 2, true, false),
  2104.     SimpleCaseEntry(0xff3a, 0, 2, false, true),
  2105.     SimpleCaseEntry(0xff5a, 1, 2, true, false),
  2106.     SimpleCaseEntry(0x0178, 0, 2, false, true),
  2107.     SimpleCaseEntry(0x00ff, 1, 2, true, false),
  2108.     SimpleCaseEntry(0x10aa, 0, 2, false, true),
  2109.     SimpleCaseEntry(0x2d0a, 1, 2, true, false),
  2110.     SimpleCaseEntry(0x2161, 0, 2, false, true),
  2111.     SimpleCaseEntry(0x2171, 1, 2, true, false),
  2112.     SimpleCaseEntry(0x2c04, 0, 2, false, true),
  2113.     SimpleCaseEntry(0x2c34, 1, 2, true, false),
  2114.     SimpleCaseEntry(0x0179, 0, 2, false, true),
  2115.     SimpleCaseEntry(0x017a, 1, 2, true, false),
  2116.     SimpleCaseEntry(0x10ab, 0, 2, false, true),
  2117.     SimpleCaseEntry(0x2d0b, 1, 2, true, false),
  2118.     SimpleCaseEntry(0x1e58, 0, 2, false, true),
  2119.     SimpleCaseEntry(0x1e59, 1, 2, true, false),
  2120.     SimpleCaseEntry(0x2162, 0, 2, false, true),
  2121.     SimpleCaseEntry(0x2172, 1, 2, true, false),
  2122.     SimpleCaseEntry(0x2c05, 0, 2, false, true),
  2123.     SimpleCaseEntry(0x2c35, 1, 2, true, false),
  2124.     SimpleCaseEntry(0x10ac, 0, 2, false, true),
  2125.     SimpleCaseEntry(0x2d0c, 1, 2, true, false),
  2126.     SimpleCaseEntry(0x2163, 0, 2, false, true),
  2127.     SimpleCaseEntry(0x2173, 1, 2, true, false),
  2128.     SimpleCaseEntry(0x2c06, 0, 2, false, true),
  2129.     SimpleCaseEntry(0x2c36, 1, 2, true, false),
  2130.     SimpleCaseEntry(0x017b, 0, 2, false, true),
  2131.     SimpleCaseEntry(0x017c, 1, 2, true, false),
  2132.     SimpleCaseEntry(0x10ad, 0, 2, false, true),
  2133.     SimpleCaseEntry(0x2d0d, 1, 2, true, false),
  2134.     SimpleCaseEntry(0x1e5a, 0, 2, false, true),
  2135.     SimpleCaseEntry(0x1e5b, 1, 2, true, false),
  2136.     SimpleCaseEntry(0x2164, 0, 2, false, true),
  2137.     SimpleCaseEntry(0x2174, 1, 2, true, false),
  2138.     SimpleCaseEntry(0x2c07, 0, 2, false, true),
  2139.     SimpleCaseEntry(0x2c37, 1, 2, true, false),
  2140.     SimpleCaseEntry(0x10ae, 0, 2, false, true),
  2141.     SimpleCaseEntry(0x2d0e, 1, 2, true, false),
  2142.     SimpleCaseEntry(0x2165, 0, 2, false, true),
  2143.     SimpleCaseEntry(0x2175, 1, 2, true, false),
  2144.     SimpleCaseEntry(0x2c08, 0, 2, false, true),
  2145.     SimpleCaseEntry(0x2c38, 1, 2, true, false),
  2146.     SimpleCaseEntry(0x017d, 0, 2, false, true),
  2147.     SimpleCaseEntry(0x017e, 1, 2, true, false),
  2148.     SimpleCaseEntry(0x10af, 0, 2, false, true),
  2149.     SimpleCaseEntry(0x2d0f, 1, 2, true, false),
  2150.     SimpleCaseEntry(0x1e5c, 0, 2, false, true),
  2151.     SimpleCaseEntry(0x1e5d, 1, 2, true, false),
  2152.     SimpleCaseEntry(0x2166, 0, 2, false, true),
  2153.     SimpleCaseEntry(0x2176, 1, 2, true, false),
  2154.     SimpleCaseEntry(0x2c09, 0, 2, false, true),
  2155.     SimpleCaseEntry(0x2c39, 1, 2, true, false),
  2156.     SimpleCaseEntry(0x10b0, 0, 2, false, true),
  2157.     SimpleCaseEntry(0x2d10, 1, 2, true, false),
  2158.     SimpleCaseEntry(0x2167, 0, 2, false, true),
  2159.     SimpleCaseEntry(0x2177, 1, 2, true, false),
  2160.     SimpleCaseEntry(0x2c0a, 0, 2, false, true),
  2161.     SimpleCaseEntry(0x2c3a, 1, 2, true, false),
  2162.     SimpleCaseEntry(0x017f, 0, 3, true, false),
  2163.     SimpleCaseEntry(0x0073, 1, 3, true, false),
  2164.     SimpleCaseEntry(0x0053, 2, 3, false, true),
  2165.     SimpleCaseEntry(0x10b1, 0, 2, false, true),
  2166.     SimpleCaseEntry(0x2d11, 1, 2, true, false),
  2167.     SimpleCaseEntry(0x1e5e, 0, 2, false, true),
  2168.     SimpleCaseEntry(0x1e5f, 1, 2, true, false),
  2169.     SimpleCaseEntry(0x2168, 0, 2, false, true),
  2170.     SimpleCaseEntry(0x2178, 1, 2, true, false),
  2171.     SimpleCaseEntry(0x2c0b, 0, 2, false, true),
  2172.     SimpleCaseEntry(0x2c3b, 1, 2, true, false),
  2173.     SimpleCaseEntry(0x048a, 0, 2, false, true),
  2174.     SimpleCaseEntry(0x048b, 1, 2, true, false),
  2175.     SimpleCaseEntry(0x10b2, 0, 2, false, true),
  2176.     SimpleCaseEntry(0x2d12, 1, 2, true, false),
  2177.     SimpleCaseEntry(0x2169, 0, 2, false, true),
  2178.     SimpleCaseEntry(0x2179, 1, 2, true, false),
  2179.     SimpleCaseEntry(0x2c0c, 0, 2, false, true),
  2180.     SimpleCaseEntry(0x2c3c, 1, 2, true, false),
  2181.     SimpleCaseEntry(0x0181, 0, 2, false, true),
  2182.     SimpleCaseEntry(0x0253, 1, 2, true, false),
  2183.     SimpleCaseEntry(0x10b3, 0, 2, false, true),
  2184.     SimpleCaseEntry(0x2d13, 1, 2, true, false),
  2185.     SimpleCaseEntry(0x1e60, 0, 3, false, true),
  2186.     SimpleCaseEntry(0x1e61, 1, 3, true, false),
  2187.     SimpleCaseEntry(0x1e9b, 2, 3, true, false),
  2188.     SimpleCaseEntry(0x216a, 0, 2, false, true),
  2189.     SimpleCaseEntry(0x217a, 1, 2, true, false),
  2190.     SimpleCaseEntry(0x2c0d, 0, 2, false, true),
  2191.     SimpleCaseEntry(0x2c3d, 1, 2, true, false),
  2192.     SimpleCaseEntry(0xa722, 0, 2, false, true),
  2193.     SimpleCaseEntry(0xa723, 1, 2, true, false),
  2194.     SimpleCaseEntry(0x0182, 0, 2, false, true),
  2195.     SimpleCaseEntry(0x0183, 1, 2, true, false),
  2196.     SimpleCaseEntry(0x048c, 0, 2, false, true),
  2197.     SimpleCaseEntry(0x048d, 1, 2, true, false),
  2198.     SimpleCaseEntry(0x10b4, 0, 2, false, true),
  2199.     SimpleCaseEntry(0x2d14, 1, 2, true, false),
  2200.     SimpleCaseEntry(0x216b, 0, 2, false, true),
  2201.     SimpleCaseEntry(0x217b, 1, 2, true, false),
  2202.     SimpleCaseEntry(0x2c0e, 0, 2, false, true),
  2203.     SimpleCaseEntry(0x2c3e, 1, 2, true, false),
  2204.     SimpleCaseEntry(0x10b5, 0, 2, false, true),
  2205.     SimpleCaseEntry(0x2d15, 1, 2, true, false),
  2206.     SimpleCaseEntry(0x1e62, 0, 2, false, true),
  2207.     SimpleCaseEntry(0x1e63, 1, 2, true, false),
  2208.     SimpleCaseEntry(0x216c, 0, 2, false, true),
  2209.     SimpleCaseEntry(0x217c, 1, 2, true, false),
  2210.     SimpleCaseEntry(0x2c0f, 0, 2, false, true),
  2211.     SimpleCaseEntry(0x2c3f, 1, 2, true, false),
  2212.     SimpleCaseEntry(0xa724, 0, 2, false, true),
  2213.     SimpleCaseEntry(0xa725, 1, 2, true, false),
  2214.     SimpleCaseEntry(0x0184, 0, 2, false, true),
  2215.     SimpleCaseEntry(0x0185, 1, 2, true, false),
  2216.     SimpleCaseEntry(0x048e, 0, 2, false, true),
  2217.     SimpleCaseEntry(0x048f, 1, 2, true, false),
  2218.     SimpleCaseEntry(0x10b6, 0, 2, false, true),
  2219.     SimpleCaseEntry(0x2d16, 1, 2, true, false),
  2220.     SimpleCaseEntry(0x1fe8, 0, 2, false, true),
  2221.     SimpleCaseEntry(0x1fe0, 1, 2, true, false),
  2222.     SimpleCaseEntry(0x216d, 0, 2, false, true),
  2223.     SimpleCaseEntry(0x217d, 1, 2, true, false),
  2224.     SimpleCaseEntry(0x2c10, 0, 2, false, true),
  2225.     SimpleCaseEntry(0x2c40, 1, 2, true, false)
  2226. ];
  2227. immutable fullCaseTable = [
  2228.     FullCaseEntry("Ⴗ", 0, 2),
  2229.     FullCaseEntry("ⴗ", 1, 2),
  2230.     FullCaseEntry("Ṥ", 0, 2),
  2231.     FullCaseEntry("ṥ", 1, 2),
  2232.     FullCaseEntry("Ῡ", 0, 2),
  2233.     FullCaseEntry("ῡ", 1, 2),
  2234.     FullCaseEntry("Ⅾ", 0, 2),
  2235.     FullCaseEntry("ⅾ", 1, 2),
  2236.     FullCaseEntry("Ⱁ", 0, 2),
  2237.     FullCaseEntry("ⱁ", 1, 2),
  2238.     FullCaseEntry("Ꜧ", 0, 2),
  2239.     FullCaseEntry("ꜧ", 1, 2),
  2240.     FullCaseEntry("Ɔ", 0, 2),
  2241.     FullCaseEntry("ɔ", 1, 2),
  2242.     FullCaseEntry("Ґ", 0, 2),
  2243.     FullCaseEntry("ґ", 1, 2),
  2244.     FullCaseEntry("Ⴘ", 0, 2),
  2245.     FullCaseEntry("ⴘ", 1, 2),
  2246.     FullCaseEntry("Ὺ", 0, 2),
  2247.     FullCaseEntry("ὺ", 1, 2),
  2248.     FullCaseEntry("Ⅿ", 0, 2),
  2249.     FullCaseEntry("ⅿ", 1, 2),
  2250.     FullCaseEntry("Ⱂ", 0, 2),
  2251.     FullCaseEntry("ⱂ", 1, 2),
  2252.     FullCaseEntry("Ƈ", 0, 2),
  2253.     FullCaseEntry("ƈ", 1, 2),
  2254.     FullCaseEntry("Ⴙ", 0, 2),
  2255.     FullCaseEntry("ⴙ", 1, 2),
  2256.     FullCaseEntry("Ṧ", 0, 2),
  2257.     FullCaseEntry("ṧ", 1, 2),
  2258.     FullCaseEntry("Ύ", 0, 2),
  2259.     FullCaseEntry("ύ", 1, 2),
  2260.     FullCaseEntry("Ⱃ", 0, 2),
  2261.     FullCaseEntry("ⱃ", 1, 2),
  2262.     FullCaseEntry("Ꜩ", 0, 2),
  2263.     FullCaseEntry("ꜩ", 1, 2),
  2264.     FullCaseEntry("Ғ", 0, 2),
  2265.     FullCaseEntry("ғ", 1, 2),
  2266.     FullCaseEntry("Ⴚ", 0, 2),
  2267.     FullCaseEntry("ⴚ", 1, 2),
  2268.     FullCaseEntry("Ῥ", 0, 2),
  2269.     FullCaseEntry("ῥ", 1, 2),
  2270.     FullCaseEntry("Ⱄ", 0, 2),
  2271.     FullCaseEntry("ⱄ", 1, 2),
  2272.     FullCaseEntry("Ɖ", 0, 2),
  2273.     FullCaseEntry("ɖ", 1, 2),
  2274.     FullCaseEntry("Ⴛ", 0, 2),
  2275.     FullCaseEntry("ⴛ", 1, 2),
  2276.     FullCaseEntry("Ṩ", 0, 2),
  2277.     FullCaseEntry("ṩ", 1, 2),
  2278.     FullCaseEntry("Ⱅ", 0, 2),
  2279.     FullCaseEntry("ⱅ", 1, 2),
  2280.     FullCaseEntry("Ꜫ", 0, 2),
  2281.     FullCaseEntry("ꜫ", 1, 2),
  2282.     FullCaseEntry("Ɗ", 0, 2),
  2283.     FullCaseEntry("ɗ", 1, 2),
  2284.     FullCaseEntry("Ҕ", 0, 2),
  2285.     FullCaseEntry("ҕ", 1, 2),
  2286.     FullCaseEntry("Ⴜ", 0, 2),
  2287.     FullCaseEntry("ⴜ", 1, 2),
  2288.     FullCaseEntry("Ⱆ", 0, 2),
  2289.     FullCaseEntry("ⱆ", 1, 2),
  2290.     FullCaseEntry("Ƌ", 0, 2),
  2291.     FullCaseEntry("ƌ", 1, 2),
  2292.     FullCaseEntry("Ⴝ", 0, 2),
  2293.     FullCaseEntry("ⴝ", 1, 2),
  2294.     FullCaseEntry("Ṫ", 0, 2),
  2295.     FullCaseEntry("ṫ", 1, 2),
  2296.     FullCaseEntry("Ⱇ", 0, 2),
  2297.     FullCaseEntry("ⱇ", 1, 2),
  2298.     FullCaseEntry("Ꜭ", 0, 2),
  2299.     FullCaseEntry("ꜭ", 1, 2),
  2300.     FullCaseEntry("Җ", 0, 2),
  2301.     FullCaseEntry("җ", 1, 2),
  2302.     FullCaseEntry("Ⴞ", 0, 2),
  2303.     FullCaseEntry("ⴞ", 1, 2),
  2304.     FullCaseEntry("Ⱈ", 0, 2),
  2305.     FullCaseEntry("ⱈ", 1, 2),
  2306.     FullCaseEntry("Ⴟ", 0, 2),
  2307.     FullCaseEntry("ⴟ", 1, 2),
  2308.     FullCaseEntry("Ṭ", 0, 2),
  2309.     FullCaseEntry("ṭ", 1, 2),
  2310.     FullCaseEntry("Ⱉ", 0, 2),
  2311.     FullCaseEntry("ⱉ", 1, 2),
  2312.     FullCaseEntry("Ꜯ", 0, 2),
  2313.     FullCaseEntry("ꜯ", 1, 2),
  2314.     FullCaseEntry("Ǝ", 0, 2),
  2315.     FullCaseEntry("ǝ", 1, 2),
  2316.     FullCaseEntry("Ҙ", 0, 2),
  2317.     FullCaseEntry("ҙ", 1, 2),
  2318.     FullCaseEntry("Ⴠ", 0, 2),
  2319.     FullCaseEntry("ⴠ", 1, 2),
  2320.     FullCaseEntry("ῲ", 0, 2),
  2321.     FullCaseEntry("ὼι", 1, 2),
  2322.     FullCaseEntry("Ⱊ", 0, 2),
  2323.     FullCaseEntry("ⱊ", 1, 2),
  2324.     FullCaseEntry("Ə", 0, 2),
  2325.     FullCaseEntry("ə", 1, 2),
  2326.     FullCaseEntry("Ⴡ", 0, 2),
  2327.     FullCaseEntry("ⴡ", 1, 2),
  2328.     FullCaseEntry("Ṯ", 0, 2),
  2329.     FullCaseEntry("ṯ", 1, 2),
  2330.     FullCaseEntry("ῳ", 0, 3),
  2331.     FullCaseEntry("ωι", 1, 3),
  2332.     FullCaseEntry("ῼ", 2, 3),
  2333.     FullCaseEntry("Ⱋ", 0, 2),
  2334.     FullCaseEntry("ⱋ", 1, 2),
  2335.     FullCaseEntry("Ɛ", 0, 2),
  2336.     FullCaseEntry("ɛ", 1, 2),
  2337.     FullCaseEntry("Қ", 0, 2),
  2338.     FullCaseEntry("қ", 1, 2),
  2339.     FullCaseEntry("Ⴢ", 0, 2),
  2340.     FullCaseEntry("ⴢ", 1, 2),
  2341.     FullCaseEntry("ῴ", 0, 2),
  2342.     FullCaseEntry("ώι", 1, 2),
  2343.     FullCaseEntry("Ⱌ", 0, 2),
  2344.     FullCaseEntry("ⱌ", 1, 2),
  2345.     FullCaseEntry("Ƒ", 0, 2),
  2346.     FullCaseEntry("ƒ", 1, 2),
  2347.     FullCaseEntry("Ⴣ", 0, 2),
  2348.     FullCaseEntry("ⴣ", 1, 2),
  2349.     FullCaseEntry("Ṱ", 0, 2),
  2350.     FullCaseEntry("ṱ", 1, 2),
  2351.     FullCaseEntry("Ⱍ", 0, 2),
  2352.     FullCaseEntry("ⱍ", 1, 2),
  2353.     FullCaseEntry("Ꜳ", 0, 2),
  2354.     FullCaseEntry("ꜳ", 1, 2),
  2355.     FullCaseEntry("Ҝ", 0, 2),
  2356.     FullCaseEntry("ҝ", 1, 2),
  2357.     FullCaseEntry("Ⴤ", 0, 2),
  2358.     FullCaseEntry("ⴤ", 1, 2),
  2359.     FullCaseEntry("ῶ", 0, 2),
  2360.     FullCaseEntry("ῶ", 1, 2),
  2361.     FullCaseEntry("Ⱎ", 0, 2),
  2362.     FullCaseEntry("ⱎ", 1, 2),
  2363.     FullCaseEntry("Ɠ", 0, 2),
  2364.     FullCaseEntry("ɠ", 1, 2),
  2365.     FullCaseEntry("Ⴥ", 0, 2),
  2366.     FullCaseEntry("ⴥ", 1, 2),
  2367.     FullCaseEntry("Ṳ", 0, 2),
  2368.     FullCaseEntry("ṳ", 1, 2),
  2369.     FullCaseEntry("ῷ", 0, 2),
  2370.     FullCaseEntry("ῶι", 1, 2),
  2371.     FullCaseEntry("Ⱏ", 0, 2),
  2372.     FullCaseEntry("ⱏ", 1, 2),
  2373.     FullCaseEntry("Ꜵ", 0, 2),
  2374.     FullCaseEntry("ꜵ", 1, 2),
  2375.     FullCaseEntry("Ɣ", 0, 2),
  2376.     FullCaseEntry("ɣ", 1, 2),
  2377.     FullCaseEntry("Ҟ", 0, 2),
  2378.     FullCaseEntry("ҟ", 1, 2),
  2379.     FullCaseEntry("Ὸ", 0, 2),
  2380.     FullCaseEntry("ὸ", 1, 2),
  2381.     FullCaseEntry("Ⱐ", 0, 2),
  2382.     FullCaseEntry("ⱐ", 1, 2),
  2383.     FullCaseEntry("Ⴧ", 0, 2),
  2384.     FullCaseEntry("ⴧ", 1, 2),
  2385.     FullCaseEntry("Ṵ", 0, 2),
  2386.     FullCaseEntry("ṵ", 1, 2),
  2387.     FullCaseEntry("Ό", 0, 2),
  2388.     FullCaseEntry("ό", 1, 2),
  2389.     FullCaseEntry("Ⱑ", 0, 2),
  2390.     FullCaseEntry("ⱑ", 1, 2),
  2391.     FullCaseEntry("Ꜷ", 0, 2),
  2392.     FullCaseEntry("ꜷ", 1, 2),
  2393.     FullCaseEntry("Ɩ", 0, 2),
  2394.     FullCaseEntry("ɩ", 1, 2),
  2395.     FullCaseEntry("Ҡ", 0, 2),
  2396.     FullCaseEntry("ҡ", 1, 2),
  2397.     FullCaseEntry("Ὼ", 0, 2),
  2398.     FullCaseEntry("ὼ", 1, 2),
  2399.     FullCaseEntry("Ⱒ", 0, 2),
  2400.     FullCaseEntry("ⱒ", 1, 2),
  2401.     FullCaseEntry("Ɨ", 0, 2),
  2402.     FullCaseEntry("ɨ", 1, 2),
  2403.     FullCaseEntry("Ṷ", 0, 2),
  2404.     FullCaseEntry("ṷ", 1, 2),
  2405.     FullCaseEntry("Ώ", 0, 2),
  2406.     FullCaseEntry("ώ", 1, 2),
  2407.     FullCaseEntry("Ⱓ", 0, 2),
  2408.     FullCaseEntry("ⱓ", 1, 2),
  2409.     FullCaseEntry("Ꜹ", 0, 2),
  2410.     FullCaseEntry("ꜹ", 1, 2),
  2411.     FullCaseEntry("Ƙ", 0, 2),
  2412.     FullCaseEntry("ƙ", 1, 2),
  2413.     FullCaseEntry("Ң", 0, 2),
  2414.     FullCaseEntry("ң", 1, 2),
  2415.     FullCaseEntry("ῼ", 0, 3),
  2416.     FullCaseEntry("ωι", 1, 3),
  2417.     FullCaseEntry("ῳ", 2, 3),
  2418.     FullCaseEntry("Ⱔ", 0, 2),
  2419.     FullCaseEntry("ⱔ", 1, 2),
  2420.     FullCaseEntry("Ṹ", 0, 2),
  2421.     FullCaseEntry("ṹ", 1, 2),
  2422.     FullCaseEntry("Ⱕ", 0, 2),
  2423.     FullCaseEntry("ⱕ", 1, 2),
  2424.     FullCaseEntry("Ꜻ", 0, 2),
  2425.     FullCaseEntry("ꜻ", 1, 2),
  2426.     FullCaseEntry("Ҥ", 0, 2),
  2427.     FullCaseEntry("ҥ", 1, 2),
  2428.     FullCaseEntry("Ↄ", 0, 2),
  2429.     FullCaseEntry("ↄ", 1, 2),
  2430.     FullCaseEntry("Ⱖ", 0, 2),
  2431.     FullCaseEntry("ⱖ", 1, 2),
  2432.     FullCaseEntry("Ⴭ", 0, 2),
  2433.     FullCaseEntry("ⴭ", 1, 2),
  2434.     FullCaseEntry("Ṻ", 0, 2),
  2435.     FullCaseEntry("ṻ", 1, 2),
  2436.     FullCaseEntry("Ⱗ", 0, 2),
  2437.     FullCaseEntry("ⱗ", 1, 2),
  2438.     FullCaseEntry("Ꜽ", 0, 2),
  2439.     FullCaseEntry("ꜽ", 1, 2),
  2440.     FullCaseEntry("Ɯ", 0, 2),
  2441.     FullCaseEntry("ɯ", 1, 2),
  2442.     FullCaseEntry("Ҧ", 0, 2),
  2443.     FullCaseEntry("ҧ", 1, 2),
  2444.     FullCaseEntry("Ⱘ", 0, 2),
  2445.     FullCaseEntry("ⱘ", 1, 2),
  2446.     FullCaseEntry("Ɲ", 0, 2),
  2447.     FullCaseEntry("ɲ", 1, 2),
  2448.     FullCaseEntry("Ṽ", 0, 2),
  2449.     FullCaseEntry("ṽ", 1, 2),
  2450.     FullCaseEntry("Ⱙ", 0, 2),
  2451.     FullCaseEntry("ⱙ", 1, 2),
  2452.     FullCaseEntry("Ꜿ", 0, 2),
  2453.     FullCaseEntry("ꜿ", 1, 2),
  2454.     FullCaseEntry("Ҩ", 0, 2),
  2455.     FullCaseEntry("ҩ", 1, 2),
  2456.     FullCaseEntry("Ⱚ", 0, 2),
  2457.     FullCaseEntry("ⱚ", 1, 2),
  2458.     FullCaseEntry("Ɵ", 0, 2),
  2459.     FullCaseEntry("ɵ", 1, 2),
  2460.     FullCaseEntry("Ṿ", 0, 2),
  2461.     FullCaseEntry("ṿ", 1, 2),
  2462.     FullCaseEntry("Ⱛ", 0, 2),
  2463.     FullCaseEntry("ⱛ", 1, 2),
  2464.     FullCaseEntry("Ꝁ", 0, 2),
  2465.     FullCaseEntry("ꝁ", 1, 2),
  2466.     FullCaseEntry("Ơ", 0, 2),
  2467.     FullCaseEntry("ơ", 1, 2),
  2468.     FullCaseEntry("Ҫ", 0, 2),
  2469.     FullCaseEntry("ҫ", 1, 2),
  2470.     FullCaseEntry("Ⱜ", 0, 2),
  2471.     FullCaseEntry("ⱜ", 1, 2),
  2472.     FullCaseEntry("Ẁ", 0, 2),
  2473.     FullCaseEntry("ẁ", 1, 2),
  2474.     FullCaseEntry("Ⱝ", 0, 2),
  2475.     FullCaseEntry("ⱝ", 1, 2),
  2476.     FullCaseEntry("Ꝃ", 0, 2),
  2477.     FullCaseEntry("ꝃ", 1, 2),
  2478.     FullCaseEntry("Ƣ", 0, 2),
  2479.     FullCaseEntry("ƣ", 1, 2),
  2480.     FullCaseEntry("Ҭ", 0, 2),
  2481.     FullCaseEntry("ҭ", 1, 2),
  2482.     FullCaseEntry("Ⱞ", 0, 2),
  2483.     FullCaseEntry("ⱞ", 1, 2),
  2484.     FullCaseEntry("Ẃ", 0, 2),
  2485.     FullCaseEntry("ẃ", 1, 2),
  2486.     FullCaseEntry("Ꝅ", 0, 2),
  2487.     FullCaseEntry("ꝅ", 1, 2),
  2488.     FullCaseEntry("Ƥ", 0, 2),
  2489.     FullCaseEntry("ƥ", 1, 2),
  2490.     FullCaseEntry("Ү", 0, 2),
  2491.     FullCaseEntry("ү", 1, 2),
  2492.     FullCaseEntry("Ẅ", 0, 2),
  2493.     FullCaseEntry("ẅ", 1, 2),
  2494.     FullCaseEntry("Ꝇ", 0, 2),
  2495.     FullCaseEntry("ꝇ", 1, 2),
  2496.     FullCaseEntry("Ʀ", 0, 2),
  2497.     FullCaseEntry("ʀ", 1, 2),
  2498.     FullCaseEntry("Ұ", 0, 2),
  2499.     FullCaseEntry("ұ", 1, 2),
  2500.     FullCaseEntry("Ƨ", 0, 2),
  2501.     FullCaseEntry("ƨ", 1, 2),
  2502.     FullCaseEntry("Ẇ", 0, 2),
  2503.     FullCaseEntry("ẇ", 1, 2),
  2504.     FullCaseEntry("Ꝉ", 0, 2),
  2505.     FullCaseEntry("ꝉ", 1, 2),
  2506.     FullCaseEntry("Ҳ", 0, 2),
  2507.     FullCaseEntry("ҳ", 1, 2),
  2508.     FullCaseEntry("Ʃ", 0, 2),
  2509.     FullCaseEntry("ʃ", 1, 2),
  2510.     FullCaseEntry("Ẉ", 0, 2),
  2511.     FullCaseEntry("ẉ", 1, 2),
  2512.     FullCaseEntry("Ꝋ", 0, 2),
  2513.     FullCaseEntry("ꝋ", 1, 2),
  2514.     FullCaseEntry("Ҵ", 0, 2),
  2515.     FullCaseEntry("ҵ", 1, 2),
  2516.     FullCaseEntry("Ẋ", 0, 2),
  2517.     FullCaseEntry("ẋ", 1, 2),
  2518.     FullCaseEntry("Ꝍ", 0, 2),
  2519.     FullCaseEntry("ꝍ", 1, 2),
  2520.     FullCaseEntry("Ƭ", 0, 2),
  2521.     FullCaseEntry("ƭ", 1, 2),
  2522.     FullCaseEntry("Ҷ", 0, 2),
  2523.     FullCaseEntry("ҷ", 1, 2),
  2524.     FullCaseEntry("Ẍ", 0, 2),
  2525.     FullCaseEntry("ẍ", 1, 2),
  2526.     FullCaseEntry("Ꝏ", 0, 2),
  2527.     FullCaseEntry("ꝏ", 1, 2),
  2528.     FullCaseEntry("Ʈ", 0, 2),
  2529.     FullCaseEntry("ʈ", 1, 2),
  2530.     FullCaseEntry("Ҹ", 0, 2),
  2531.     FullCaseEntry("ҹ", 1, 2),
  2532.     FullCaseEntry("Ѐ", 0, 2),
  2533.     FullCaseEntry("Ш", 1, 2),
  2534.     FullCaseEntry("Ư", 0, 2),
  2535.     FullCaseEntry("ư", 1, 2),
  2536.     FullCaseEntry("Ẏ", 0, 2),
  2537.     FullCaseEntry("ẏ", 1, 2),
  2538.     FullCaseEntry("Ꝑ", 0, 2),
  2539.     FullCaseEntry("ꝑ", 1, 2),
  2540.     FullCaseEntry("Ё", 0, 2),
  2541.     FullCaseEntry("Щ", 1, 2),
  2542.     FullCaseEntry("Һ", 0, 2),
  2543.     FullCaseEntry("һ", 1, 2),
  2544.     FullCaseEntry("Ђ", 0, 2),
  2545.     FullCaseEntry("Ъ", 1, 2),
  2546.     FullCaseEntry("Ʊ", 0, 2),
  2547.     FullCaseEntry("ʊ", 1, 2),
  2548.     FullCaseEntry("Ẑ", 0, 2),
  2549.     FullCaseEntry("ẑ", 1, 2),
  2550.     FullCaseEntry("Ꝓ", 0, 2),
  2551.     FullCaseEntry("ꝓ", 1, 2),
  2552.     FullCaseEntry("Ѓ", 0, 2),
  2553.     FullCaseEntry("Ы", 1, 2),
  2554.     FullCaseEntry("Ʋ", 0, 2),
  2555.     FullCaseEntry("ʋ", 1, 2),
  2556.     FullCaseEntry("Ҽ", 0, 2),
  2557.     FullCaseEntry("ҽ", 1, 2),
  2558.     FullCaseEntry("Є", 0, 2),
  2559.     FullCaseEntry("Ь", 1, 2),
  2560.     FullCaseEntry("Ƴ", 0, 2),
  2561.     FullCaseEntry("ƴ", 1, 2),
  2562.     FullCaseEntry("Ẓ", 0, 2),
  2563.     FullCaseEntry("ẓ", 1, 2),
  2564.     FullCaseEntry("Ꝕ", 0, 2),
  2565.     FullCaseEntry("ꝕ", 1, 2),
  2566.     FullCaseEntry("Ѕ", 0, 2),
  2567.     FullCaseEntry("Э", 1, 2),
  2568.     FullCaseEntry("Ҿ", 0, 2),
  2569.     FullCaseEntry("ҿ", 1, 2),
  2570.     FullCaseEntry("І", 0, 2),
  2571.     FullCaseEntry("Ю", 1, 2),
  2572.     FullCaseEntry("Ƶ", 0, 2),
  2573.     FullCaseEntry("ƶ", 1, 2),
  2574.     FullCaseEntry("Ẕ", 0, 2),
  2575.     FullCaseEntry("ẕ", 1, 2),
  2576.     FullCaseEntry("Ꝗ", 0, 2),
  2577.     FullCaseEntry("ꝗ", 1, 2),
  2578.     FullCaseEntry("Ї", 0, 2),
  2579.     FullCaseEntry("Я", 1, 2),
  2580.     FullCaseEntry("Ӏ", 0, 2),
  2581.     FullCaseEntry("ӏ", 1, 2),
  2582.     FullCaseEntry("Ј", 0, 2),
  2583.     FullCaseEntry("а", 1, 2),
  2584.     FullCaseEntry("Ʒ", 0, 2),
  2585.     FullCaseEntry("ʒ", 1, 2),
  2586.     FullCaseEntry("Ӂ", 0, 2),
  2587.     FullCaseEntry("ӂ", 1, 2),
  2588.     FullCaseEntry("ẖ", 0, 2),
  2589.     FullCaseEntry("ẖ", 1, 2),
  2590.     FullCaseEntry("Ꝙ", 0, 2),
  2591.     FullCaseEntry("ꝙ", 1, 2),
  2592.     FullCaseEntry("Љ", 0, 2),
  2593.     FullCaseEntry("б", 1, 2),
  2594.     FullCaseEntry("Ƹ", 0, 2),
  2595.     FullCaseEntry("ƹ", 1, 2),
  2596.     FullCaseEntry("ẗ", 0, 2),
  2597.     FullCaseEntry("ẗ", 1, 2),
  2598.     FullCaseEntry("Њ", 0, 2),
  2599.     FullCaseEntry("в", 1, 2),
  2600.     FullCaseEntry("Ӄ", 0, 2),
  2601.     FullCaseEntry("ӄ", 1, 2),
  2602.     FullCaseEntry("ẘ", 0, 2),
  2603.     FullCaseEntry("ẘ", 1, 2),
  2604.     FullCaseEntry("Ꝛ", 0, 2),
  2605.     FullCaseEntry("ꝛ", 1, 2),
  2606.     FullCaseEntry("Ћ", 0, 2),
  2607.     FullCaseEntry("г", 1, 2),
  2608.     FullCaseEntry("ẙ", 0, 2),
  2609.     FullCaseEntry("ẙ", 1, 2),
  2610.     FullCaseEntry("Ќ", 0, 2),
  2611.     FullCaseEntry("д", 1, 2),
  2612.     FullCaseEntry("Ӆ", 0, 2),
  2613.     FullCaseEntry("ӆ", 1, 2),
  2614.     FullCaseEntry("ẚ", 0, 2),
  2615.     FullCaseEntry("aʾ", 1, 2),
  2616.     FullCaseEntry("Ꝝ", 0, 2),
  2617.     FullCaseEntry("ꝝ", 1, 2),
  2618.     FullCaseEntry("Ѝ", 0, 2),
  2619.     FullCaseEntry("е", 1, 2),
  2620.     FullCaseEntry("Ƽ", 0, 2),
  2621.     FullCaseEntry("ƽ", 1, 2),
  2622.     FullCaseEntry("ẛ", 0, 3),
  2623.     FullCaseEntry("ṡ", 1, 3),
  2624.     FullCaseEntry("Ṡ", 2, 3),
  2625.     FullCaseEntry("Ў", 0, 2),
  2626.     FullCaseEntry("ж", 1, 2),
  2627.     FullCaseEntry("Ӈ", 0, 2),
  2628.     FullCaseEntry("ӈ", 1, 2),
  2629.     FullCaseEntry("Ꝟ", 0, 2),
  2630.     FullCaseEntry("ꝟ", 1, 2),
  2631.     FullCaseEntry("Џ", 0, 2),
  2632.     FullCaseEntry("з", 1, 2),
  2633.     FullCaseEntry("А", 0, 2),
  2634.     FullCaseEntry("и", 1, 2),
  2635.     FullCaseEntry("Ӊ", 0, 2),
  2636.     FullCaseEntry("ӊ", 1, 2),
  2637.     FullCaseEntry("ẞ", 0, 3),
  2638.     FullCaseEntry("ss", 1, 3),
  2639.     FullCaseEntry("ß", 2, 3),
  2640.     FullCaseEntry("Ꝡ", 0, 2),
  2641.     FullCaseEntry("ꝡ", 1, 2),
  2642.     FullCaseEntry("Б", 0, 2),
  2643.     FullCaseEntry("й", 1, 2),
  2644.     FullCaseEntry("ͅ", 0, 4),
  2645.     FullCaseEntry("ι", 1, 4),
  2646.     FullCaseEntry("Ι", 2, 4),
  2647.     FullCaseEntry("ι", 3, 4),
  2648.     FullCaseEntry("В", 0, 2),
  2649.     FullCaseEntry("к", 1, 2),
  2650.     FullCaseEntry("Ӌ", 0, 2),
  2651.     FullCaseEntry("ӌ", 1, 2),
  2652.     FullCaseEntry("Ạ", 0, 2),
  2653.     FullCaseEntry("ạ", 1, 2),
  2654.     FullCaseEntry("Ꝣ", 0, 2),
  2655.     FullCaseEntry("ꝣ", 1, 2),
  2656.     FullCaseEntry("Г", 0, 2),
  2657.     FullCaseEntry("л", 1, 2),
  2658.     FullCaseEntry("Д", 0, 2),
  2659.     FullCaseEntry("м", 1, 2),
  2660.     FullCaseEntry("Ӎ", 0, 2),
  2661.     FullCaseEntry("ӎ", 1, 2),
  2662.     FullCaseEntry("Ả", 0, 2),
  2663.     FullCaseEntry("ả", 1, 2),
  2664.     FullCaseEntry("Ⓐ", 0, 2),
  2665.     FullCaseEntry("ⓐ", 1, 2),
  2666.     FullCaseEntry("Ꝥ", 0, 2),
  2667.     FullCaseEntry("ꝥ", 1, 2),
  2668.     FullCaseEntry("Е", 0, 2),
  2669.     FullCaseEntry("н", 1, 2),
  2670.     FullCaseEntry("DŽ", 0, 3),
  2671.     FullCaseEntry("dž", 1, 3),
  2672.     FullCaseEntry("Dž", 2, 3),
  2673.     FullCaseEntry("Ⓑ", 0, 2),
  2674.     FullCaseEntry("ⓑ", 1, 2),
  2675.     FullCaseEntry("Ж", 0, 2),
  2676.     FullCaseEntry("о", 1, 2),
  2677.     FullCaseEntry("Dž", 0, 3),
  2678.     FullCaseEntry("dž", 1, 3),
  2679.     FullCaseEntry("DŽ", 2, 3),
  2680.     FullCaseEntry("Ấ", 0, 2),
  2681.     FullCaseEntry("ấ", 1, 2),
  2682.     FullCaseEntry("Ⓒ", 0, 2),
  2683.     FullCaseEntry("ⓒ", 1, 2),
  2684.     FullCaseEntry("Ꝧ", 0, 2),
  2685.     FullCaseEntry("ꝧ", 1, 2),
  2686.     FullCaseEntry("З", 0, 2),
  2687.     FullCaseEntry("п", 1, 2),
  2688.     FullCaseEntry("A", 0, 2),
  2689.     FullCaseEntry("a", 1, 2),
  2690.     FullCaseEntry("Ӑ", 0, 2),
  2691.     FullCaseEntry("ӑ", 1, 2),
  2692.     FullCaseEntry("Ⓓ", 0, 2),
  2693.     FullCaseEntry("ⓓ", 1, 2),
  2694.     FullCaseEntry("И", 0, 2),
  2695.     FullCaseEntry("р", 1, 2),
  2696.     FullCaseEntry("B", 0, 2),
  2697.     FullCaseEntry("b", 1, 2),
  2698.     FullCaseEntry("LJ", 0, 3),
  2699.     FullCaseEntry("lj", 1, 3),
  2700.     FullCaseEntry("Lj", 2, 3),
  2701.     FullCaseEntry("Ầ", 0, 2),
  2702.     FullCaseEntry("ầ", 1, 2),
  2703.     FullCaseEntry("Ⓔ", 0, 2),
  2704.     FullCaseEntry("ⓔ", 1, 2),
  2705.     FullCaseEntry("Ꝩ", 0, 2),
  2706.     FullCaseEntry("ꝩ", 1, 2),
  2707.     FullCaseEntry("Й", 0, 2),
  2708.     FullCaseEntry("с", 1, 2),
  2709.     FullCaseEntry("C", 0, 2),
  2710.     FullCaseEntry("c", 1, 2),
  2711.     FullCaseEntry("Lj", 0, 3),
  2712.     FullCaseEntry("lj", 1, 3),
  2713.     FullCaseEntry("LJ", 2, 3),
  2714.     FullCaseEntry("Ӓ", 0, 2),
  2715.     FullCaseEntry("ӓ", 1, 2),
  2716.     FullCaseEntry("Ⓕ", 0, 2),
  2717.     FullCaseEntry("ⓕ", 1, 2),
  2718.     FullCaseEntry("К", 0, 2),
  2719.     FullCaseEntry("т", 1, 2),
  2720.     FullCaseEntry("D", 0, 2),
  2721.     FullCaseEntry("d", 1, 2),
  2722.     FullCaseEntry("Ẩ", 0, 2),
  2723.     FullCaseEntry("ẩ", 1, 2),
  2724.     FullCaseEntry("Ⓖ", 0, 2),
  2725.     FullCaseEntry("ⓖ", 1, 2),
  2726.     FullCaseEntry("Ꝫ", 0, 2),
  2727.     FullCaseEntry("ꝫ", 1, 2),
  2728.     FullCaseEntry("Л", 0, 2),
  2729.     FullCaseEntry("у", 1, 2),
  2730.     FullCaseEntry("E", 0, 2),
  2731.     FullCaseEntry("e", 1, 2),
  2732.     FullCaseEntry("NJ", 0, 3),
  2733.     FullCaseEntry("nj", 1, 3),
  2734.     FullCaseEntry("Nj", 2, 3),
  2735.     FullCaseEntry("Ӕ", 0, 2),
  2736.     FullCaseEntry("ӕ", 1, 2),
  2737.     FullCaseEntry("Ⓗ", 0, 2),
  2738.     FullCaseEntry("ⓗ", 1, 2),
  2739.     FullCaseEntry("М", 0, 2),
  2740.     FullCaseEntry("ф", 1, 2),
  2741.     FullCaseEntry("F", 0, 2),
  2742.     FullCaseEntry("f", 1, 2),
  2743.     FullCaseEntry("Nj", 0, 3),
  2744.     FullCaseEntry("nj", 1, 3),
  2745.     FullCaseEntry("NJ", 2, 3),
  2746.     FullCaseEntry("Ẫ", 0, 2),
  2747.     FullCaseEntry("ẫ", 1, 2),
  2748.     FullCaseEntry("Ⓘ", 0, 2),
  2749.     FullCaseEntry("ⓘ", 1, 2),
  2750.     FullCaseEntry("Ꝭ", 0, 2),
  2751.     FullCaseEntry("ꝭ", 1, 2),
  2752.     FullCaseEntry("Н", 0, 2),
  2753.     FullCaseEntry("х", 1, 2),
  2754.     FullCaseEntry("G", 0, 2),
  2755.     FullCaseEntry("g", 1, 2),
  2756.     FullCaseEntry("Ӗ", 0, 2),
  2757.     FullCaseEntry("ӗ", 1, 2),
  2758.     FullCaseEntry("Ⓙ", 0, 2),
  2759.     FullCaseEntry("ⓙ", 1, 2),
  2760.     FullCaseEntry("ff", 0, 2),
  2761.     FullCaseEntry("ff", 1, 2),
  2762.     FullCaseEntry("О", 0, 2),
  2763.     FullCaseEntry("ц", 1, 2),
  2764.     FullCaseEntry("H", 0, 2),
  2765.     FullCaseEntry("h", 1, 2),
  2766.     FullCaseEntry("Ǎ", 0, 2),
  2767.     FullCaseEntry("ǎ", 1, 2),
  2768.     FullCaseEntry("Ậ", 0, 2),
  2769.     FullCaseEntry("ậ", 1, 2),
  2770.     FullCaseEntry("Ⓚ", 0, 2),
  2771.     FullCaseEntry("ⓚ", 1, 2),
  2772.     FullCaseEntry("Ꝯ", 0, 2),
  2773.     FullCaseEntry("ꝯ", 1, 2),
  2774.     FullCaseEntry("fi", 0, 2),
  2775.     FullCaseEntry("fi", 1, 2),
  2776.     FullCaseEntry("П", 0, 2),
  2777.     FullCaseEntry("ч", 1, 2),
  2778.     FullCaseEntry("I", 0, 2),
  2779.     FullCaseEntry("i", 1, 2),
  2780.     FullCaseEntry("Ә", 0, 2),
  2781.     FullCaseEntry("ә", 1, 2),
  2782.     FullCaseEntry("Ⓛ", 0, 2),
  2783.     FullCaseEntry("ⓛ", 1, 2),
  2784.     FullCaseEntry("fl", 0, 2),
  2785.     FullCaseEntry("fl", 1, 2),
  2786.     FullCaseEntry("Р", 0, 2),
  2787.     FullCaseEntry("ш", 1, 2),
  2788.     FullCaseEntry("J", 0, 2),
  2789.     FullCaseEntry("j", 1, 2),
  2790.     FullCaseEntry("Ǐ", 0, 2),
  2791.     FullCaseEntry("ǐ", 1, 2),
  2792.     FullCaseEntry("Ắ", 0, 2),
  2793.     FullCaseEntry("ắ", 1, 2),
  2794.     FullCaseEntry("Ⓜ", 0, 2),
  2795.     FullCaseEntry("ⓜ", 1, 2),
  2796.     FullCaseEntry("ffi", 0, 2),
  2797.     FullCaseEntry("ffi", 1, 2),
  2798.     FullCaseEntry("С", 0, 2),
  2799.     FullCaseEntry("щ", 1, 2),
  2800.     FullCaseEntry("K", 0, 3),
  2801.     FullCaseEntry("k", 1, 3),
  2802.     FullCaseEntry("K", 2, 3),
  2803.     FullCaseEntry("Ӛ", 0, 2),
  2804.     FullCaseEntry("ӛ", 1, 2),
  2805.     FullCaseEntry("Ⓝ", 0, 2),
  2806.     FullCaseEntry("ⓝ", 1, 2),
  2807.     FullCaseEntry("ffl", 0, 2),
  2808.     FullCaseEntry("ffl", 1, 2),
  2809.     FullCaseEntry("Т", 0, 2),
  2810.     FullCaseEntry("ъ", 1, 2),
  2811.     FullCaseEntry("L", 0, 2),
  2812.     FullCaseEntry("l", 1, 2),
  2813.     FullCaseEntry("Ǒ", 0, 2),
  2814.     FullCaseEntry("ǒ", 1, 2),
  2815.     FullCaseEntry("Ằ", 0, 2),
  2816.     FullCaseEntry("ằ", 1, 2),
  2817.     FullCaseEntry("Ⓞ", 0, 2),
  2818.     FullCaseEntry("ⓞ", 1, 2),
  2819.     FullCaseEntry("ſt", 0, 3),
  2820.     FullCaseEntry("st", 1, 3),
  2821.     FullCaseEntry("st", 2, 3),
  2822.     FullCaseEntry("У", 0, 2),
  2823.     FullCaseEntry("ы", 1, 2),
  2824.     FullCaseEntry("M", 0, 2),
  2825.     FullCaseEntry("m", 1, 2),
  2826.     FullCaseEntry("Ӝ", 0, 2),
  2827.     FullCaseEntry("ӝ", 1, 2),
  2828.     FullCaseEntry("Ⓟ", 0, 2),
  2829.     FullCaseEntry("ⓟ", 1, 2),
  2830.     FullCaseEntry("st", 0, 3),
  2831.     FullCaseEntry("st", 1, 3),
  2832.     FullCaseEntry("ſt", 2, 3),
  2833.     FullCaseEntry("Ф", 0, 2),
  2834.     FullCaseEntry("ь", 1, 2),
  2835.     FullCaseEntry("N", 0, 2),
  2836.     FullCaseEntry("n", 1, 2),
  2837.     FullCaseEntry("Ǔ", 0, 2),
  2838.     FullCaseEntry("ǔ", 1, 2),
  2839.     FullCaseEntry("Ẳ", 0, 2),
  2840.     FullCaseEntry("ẳ", 1, 2),
  2841.     FullCaseEntry("Ⓠ", 0, 2),
  2842.     FullCaseEntry("ⓠ", 1, 2),
  2843.     FullCaseEntry("Х", 0, 2),
  2844.     FullCaseEntry("э", 1, 2),
  2845.     FullCaseEntry("O", 0, 2),
  2846.     FullCaseEntry("o", 1, 2),
  2847.     FullCaseEntry("Ӟ", 0, 2),
  2848.     FullCaseEntry("ӟ", 1, 2),
  2849.     FullCaseEntry("Ⓡ", 0, 2),
  2850.     FullCaseEntry("ⓡ", 1, 2),
  2851.     FullCaseEntry("Ⱡ", 0, 2),
  2852.     FullCaseEntry("ⱡ", 1, 2),
  2853.     FullCaseEntry("Ц", 0, 2),
  2854.     FullCaseEntry("ю", 1, 2),
  2855.     FullCaseEntry("P", 0, 2),
  2856.     FullCaseEntry("p", 1, 2),
  2857.     FullCaseEntry("Ǖ", 0, 2),
  2858.     FullCaseEntry("ǖ", 1, 2),
  2859.     FullCaseEntry("Ẵ", 0, 2),
  2860.     FullCaseEntry("ẵ", 1, 2),
  2861.     FullCaseEntry("Ⓢ", 0, 2),
  2862.     FullCaseEntry("ⓢ", 1, 2),
  2863.     FullCaseEntry("Ч", 0, 2),
  2864.     FullCaseEntry("я", 1, 2),
  2865.     FullCaseEntry("Q", 0, 2),
  2866.     FullCaseEntry("q", 1, 2),
  2867.     FullCaseEntry("Ӡ", 0, 2),
  2868.     FullCaseEntry("ӡ", 1, 2),
  2869.     FullCaseEntry("Ⓣ", 0, 2),
  2870.     FullCaseEntry("ⓣ", 1, 2),
  2871.     FullCaseEntry("Ɫ", 0, 2),
  2872.     FullCaseEntry("ɫ", 1, 2),
  2873.     FullCaseEntry("R", 0, 2),
  2874.     FullCaseEntry("r", 1, 2),
  2875.     FullCaseEntry("Ǘ", 0, 2),
  2876.     FullCaseEntry("ǘ", 1, 2),
  2877.     FullCaseEntry("Ặ", 0, 2),
  2878.     FullCaseEntry("ặ", 1, 2),
  2879.     FullCaseEntry("Ⓤ", 0, 2),
  2880.     FullCaseEntry("ⓤ", 1, 2),
  2881.     FullCaseEntry("Ᵽ", 0, 2),
  2882.     FullCaseEntry("ᵽ", 1, 2),
  2883.     FullCaseEntry("S", 0, 3),
  2884.     FullCaseEntry("s", 1, 3),
  2885.     FullCaseEntry("ſ", 2, 3),
  2886.     FullCaseEntry("Ӣ", 0, 2),
  2887.     FullCaseEntry("ӣ", 1, 2),
  2888.     FullCaseEntry("Ⓥ", 0, 2),
  2889.     FullCaseEntry("ⓥ", 1, 2),
  2890.     FullCaseEntry("Ɽ", 0, 2),
  2891.     FullCaseEntry("ɽ", 1, 2),
  2892.     FullCaseEntry("Ꝺ", 0, 2),
  2893.     FullCaseEntry("ꝺ", 1, 2),
  2894.     FullCaseEntry("T", 0, 2),
  2895.     FullCaseEntry("t", 1, 2),
  2896.     FullCaseEntry("Ǚ", 0, 2),
  2897.     FullCaseEntry("ǚ", 1, 2),
  2898.     FullCaseEntry("Ẹ", 0, 2),
  2899.     FullCaseEntry("ẹ", 1, 2),
  2900.     FullCaseEntry("Ⓦ", 0, 2),
  2901.     FullCaseEntry("ⓦ", 1, 2),
  2902.     FullCaseEntry("U", 0, 2),
  2903.     FullCaseEntry("u", 1, 2),
  2904.     FullCaseEntry("Ӥ", 0, 2),
  2905.     FullCaseEntry("ӥ", 1, 2),
  2906.     FullCaseEntry("Ⓧ", 0, 2),
  2907.     FullCaseEntry("ⓧ", 1, 2),
  2908.     FullCaseEntry("Ꝼ", 0, 2),
  2909.     FullCaseEntry("ꝼ", 1, 2),
  2910.     FullCaseEntry("V", 0, 2),
  2911.     FullCaseEntry("v", 1, 2),
  2912.     FullCaseEntry("Ǜ", 0, 2),
  2913.     FullCaseEntry("ǜ", 1, 2),
  2914.     FullCaseEntry("Ẻ", 0, 2),
  2915.     FullCaseEntry("ẻ", 1, 2),
  2916.     FullCaseEntry("Ⓨ", 0, 2),
  2917.     FullCaseEntry("ⓨ", 1, 2),
  2918.     FullCaseEntry("Ⱨ", 0, 2),
  2919.     FullCaseEntry("ⱨ", 1, 2),
  2920.     FullCaseEntry("W", 0, 2),
  2921.     FullCaseEntry("w", 1, 2),
  2922.     FullCaseEntry("Ӧ", 0, 2),
  2923.     FullCaseEntry("ӧ", 1, 2),
  2924.     FullCaseEntry("Ⓩ", 0, 2),
  2925.     FullCaseEntry("ⓩ", 1, 2),
  2926.     FullCaseEntry("Ᵹ", 0, 2),
  2927.     FullCaseEntry("ᵹ", 1, 2),
  2928.     FullCaseEntry("X", 0, 2),
  2929.     FullCaseEntry("x", 1, 2),
  2930.     FullCaseEntry("Ẽ", 0, 2),
  2931.     FullCaseEntry("ẽ", 1, 2),
  2932.     FullCaseEntry("Ⱪ", 0, 2),
  2933.     FullCaseEntry("ⱪ", 1, 2),
  2934.     FullCaseEntry("Ꝿ", 0, 2),
  2935.     FullCaseEntry("ꝿ", 1, 2),
  2936.     FullCaseEntry("Y", 0, 2),
  2937.     FullCaseEntry("y", 1, 2),
  2938.     FullCaseEntry("Ǟ", 0, 2),
  2939.     FullCaseEntry("ǟ", 1, 2),
  2940.     FullCaseEntry("Ө", 0, 2),
  2941.     FullCaseEntry("ө", 1, 2),
  2942.     FullCaseEntry("Z", 0, 2),
  2943.     FullCaseEntry("z", 1, 2),
  2944.     FullCaseEntry("Ế", 0, 2),
  2945.     FullCaseEntry("ế", 1, 2),
  2946.     FullCaseEntry("Ⱬ", 0, 2),
  2947.     FullCaseEntry("ⱬ", 1, 2),
  2948.     FullCaseEntry("Ꞁ", 0, 2),
  2949.     FullCaseEntry("ꞁ", 1, 2),
  2950.     FullCaseEntry("ﬓ", 0, 2),
  2951.     FullCaseEntry("մն", 1, 2),
  2952.     FullCaseEntry("Ǡ", 0, 2),
  2953.     FullCaseEntry("ǡ", 1, 2),
  2954.     FullCaseEntry("Ӫ", 0, 2),
  2955.     FullCaseEntry("ӫ", 1, 2),
  2956.     FullCaseEntry("ﬔ", 0, 2),
  2957.     FullCaseEntry("մե", 1, 2),
  2958.     FullCaseEntry("Ề", 0, 2),
  2959.     FullCaseEntry("ề", 1, 2),
  2960.     FullCaseEntry("Ɑ", 0, 2),
  2961.     FullCaseEntry("ɑ", 1, 2),
  2962.     FullCaseEntry("Ꞃ", 0, 2),
  2963.     FullCaseEntry("ꞃ", 1, 2),
  2964.     FullCaseEntry("ﬕ", 0, 2),
  2965.     FullCaseEntry("մի", 1, 2),
  2966.     FullCaseEntry("Ǣ", 0, 2),
  2967.     FullCaseEntry("ǣ", 1, 2),
  2968.     FullCaseEntry("Ӭ", 0, 2),
  2969.     FullCaseEntry("ӭ", 1, 2),
  2970.     FullCaseEntry("Ɱ", 0, 2),
  2971.     FullCaseEntry("ɱ", 1, 2),
  2972.     FullCaseEntry("ﬖ", 0, 2),
  2973.     FullCaseEntry("վն", 1, 2),
  2974.     FullCaseEntry("Ể", 0, 2),
  2975.     FullCaseEntry("ể", 1, 2),
  2976.     FullCaseEntry("Ɐ", 0, 2),
  2977.     FullCaseEntry("ɐ", 1, 2),
  2978.     FullCaseEntry("Ꞅ", 0, 2),
  2979.     FullCaseEntry("ꞅ", 1, 2),
  2980.     FullCaseEntry("ﬗ", 0, 2),
  2981.     FullCaseEntry("մխ", 1, 2),
  2982.     FullCaseEntry("Ǥ", 0, 2),
  2983.     FullCaseEntry("ǥ", 1, 2),
  2984.     FullCaseEntry("Ӯ", 0, 2),
  2985.     FullCaseEntry("ӯ", 1, 2),
  2986.     FullCaseEntry("Ɒ", 0, 2),
  2987.     FullCaseEntry("ɒ", 1, 2),
  2988.     FullCaseEntry("Ễ", 0, 2),
  2989.     FullCaseEntry("ễ", 1, 2),
  2990.     FullCaseEntry("Ꞇ", 0, 2),
  2991.     FullCaseEntry("ꞇ", 1, 2),
  2992.     FullCaseEntry("Ǧ", 0, 2),
  2993.     FullCaseEntry("ǧ", 1, 2),
  2994.     FullCaseEntry("Ӱ", 0, 2),
  2995.     FullCaseEntry("ӱ", 1, 2),
  2996.     FullCaseEntry("Ⱳ", 0, 2),
  2997.     FullCaseEntry("ⱳ", 1, 2),
  2998.     FullCaseEntry("Ệ", 0, 2),
  2999.     FullCaseEntry("ệ", 1, 2),
  3000.     FullCaseEntry("Ǩ", 0, 2),
  3001.     FullCaseEntry("ǩ", 1, 2),
  3002.     FullCaseEntry("Ӳ", 0, 2),
  3003.     FullCaseEntry("ӳ", 1, 2),
  3004.     FullCaseEntry("Ỉ", 0, 2),
  3005.     FullCaseEntry("ỉ", 1, 2),
  3006.     FullCaseEntry("Ⱶ", 0, 2),
  3007.     FullCaseEntry("ⱶ", 1, 2),
  3008.     FullCaseEntry("Ǫ", 0, 2),
  3009.     FullCaseEntry("ǫ", 1, 2),
  3010.     FullCaseEntry("Ӵ", 0, 2),
  3011.     FullCaseEntry("ӵ", 1, 2),
  3012.     FullCaseEntry("Ꞌ", 0, 2),
  3013.     FullCaseEntry("ꞌ", 1, 2),
  3014.     FullCaseEntry("Ͱ", 0, 2),
  3015.     FullCaseEntry("ͱ", 1, 2),
  3016.     FullCaseEntry("Ị", 0, 2),
  3017.     FullCaseEntry("ị", 1, 2),
  3018.     FullCaseEntry("Ǭ", 0, 2),
  3019.     FullCaseEntry("ǭ", 1, 2),
  3020.     FullCaseEntry("Ӷ", 0, 2),
  3021.     FullCaseEntry("ӷ", 1, 2),
  3022.     FullCaseEntry("Ɥ", 0, 2),
  3023.     FullCaseEntry("ɥ", 1, 2),
  3024.     FullCaseEntry("Ͳ", 0, 2),
  3025.     FullCaseEntry("ͳ", 1, 2),
  3026.     FullCaseEntry("Ọ", 0, 2),
  3027.     FullCaseEntry("ọ", 1, 2),
  3028.     FullCaseEntry("Ǯ", 0, 2),
  3029.     FullCaseEntry("ǯ", 1, 2),
  3030.     FullCaseEntry("Ӹ", 0, 2),
  3031.     FullCaseEntry("ӹ", 1, 2),
  3032.     FullCaseEntry("Ỏ", 0, 2),
  3033.     FullCaseEntry("ỏ", 1, 2),
  3034.     FullCaseEntry("Ꞑ", 0, 2),
  3035.     FullCaseEntry("ꞑ", 1, 2),
  3036.     FullCaseEntry("ǰ", 0, 2),
  3037.     FullCaseEntry("ǰ", 1, 2),
  3038.     FullCaseEntry("Ӻ", 0, 2),
  3039.     FullCaseEntry("ӻ", 1, 2),
  3040.     FullCaseEntry("DZ", 0, 3),
  3041.     FullCaseEntry("dz", 1, 3),
  3042.     FullCaseEntry("Dz", 2, 3),
  3043.     FullCaseEntry("Ͷ", 0, 2),
  3044.     FullCaseEntry("ͷ", 1, 2),
  3045.     FullCaseEntry("Ố", 0, 2),
  3046.     FullCaseEntry("ố", 1, 2),
  3047.     FullCaseEntry("Ꞓ", 0, 2),
  3048.     FullCaseEntry("ꞓ", 1, 2),
  3049.     FullCaseEntry("Dz", 0, 3),
  3050.     FullCaseEntry("dz", 1, 3),
  3051.     FullCaseEntry("DZ", 2, 3),
  3052.     FullCaseEntry("Ӽ", 0, 2),
  3053.     FullCaseEntry("ӽ", 1, 2),
  3054.     FullCaseEntry("Ȿ", 0, 2),
  3055.     FullCaseEntry("ȿ", 1, 2),
  3056.     FullCaseEntry("Ồ", 0, 2),
  3057.     FullCaseEntry("ồ", 1, 2),
  3058.     FullCaseEntry("Ɀ", 0, 2),
  3059.     FullCaseEntry("ɀ", 1, 2),
  3060.     FullCaseEntry("Ǵ", 0, 2),
  3061.     FullCaseEntry("ǵ", 1, 2),
  3062.     FullCaseEntry("Ӿ", 0, 2),
  3063.     FullCaseEntry("ӿ", 1, 2),
  3064.     FullCaseEntry("Ⲁ", 0, 2),
  3065.     FullCaseEntry("ⲁ", 1, 2),
  3066.     FullCaseEntry("Ổ", 0, 2),
  3067.     FullCaseEntry("ổ", 1, 2),
  3068.     FullCaseEntry("Ƕ", 0, 2),
  3069.     FullCaseEntry("ƕ", 1, 2),
  3070.     FullCaseEntry("Ԁ", 0, 2),
  3071.     FullCaseEntry("ԁ", 1, 2),
  3072.     FullCaseEntry("Ⲃ", 0, 2),
  3073.     FullCaseEntry("ⲃ", 1, 2),
  3074.     FullCaseEntry("Ƿ", 0, 2),
  3075.     FullCaseEntry("ƿ", 1, 2),
  3076.     FullCaseEntry("Ỗ", 0, 2),
  3077.     FullCaseEntry("ỗ", 1, 2),
  3078.     FullCaseEntry("Ǹ", 0, 2),
  3079.     FullCaseEntry("ǹ", 1, 2),
  3080.     FullCaseEntry("Ԃ", 0, 2),
  3081.     FullCaseEntry("ԃ", 1, 2),
  3082.     FullCaseEntry("Ⲅ", 0, 2),
  3083.     FullCaseEntry("ⲅ", 1, 2),
  3084.     FullCaseEntry("Ộ", 0, 2),
  3085.     FullCaseEntry("ộ", 1, 2),
  3086.     FullCaseEntry("Ǻ", 0, 2),
  3087.     FullCaseEntry("ǻ", 1, 2),
  3088.     FullCaseEntry("Ԅ", 0, 2),
  3089.     FullCaseEntry("ԅ", 1, 2),
  3090.     FullCaseEntry("Ⲇ", 0, 2),
  3091.     FullCaseEntry("ⲇ", 1, 2),
  3092.     FullCaseEntry("Ớ", 0, 2),
  3093.     FullCaseEntry("ớ", 1, 2),
  3094.     FullCaseEntry("Ǽ", 0, 2),
  3095.     FullCaseEntry("ǽ", 1, 2),
  3096.     FullCaseEntry("Ԇ", 0, 2),
  3097.     FullCaseEntry("ԇ", 1, 2),
  3098.     FullCaseEntry("Ⲉ", 0, 2),
  3099.     FullCaseEntry("ⲉ", 1, 2),
  3100.     FullCaseEntry("Ờ", 0, 2),
  3101.     FullCaseEntry("ờ", 1, 2),
  3102.     FullCaseEntry("Ǿ", 0, 2),
  3103.     FullCaseEntry("ǿ", 1, 2),
  3104.     FullCaseEntry("Ԉ", 0, 2),
  3105.     FullCaseEntry("ԉ", 1, 2),
  3106.     FullCaseEntry("Ⲋ", 0, 2),
  3107.     FullCaseEntry("ⲋ", 1, 2),
  3108.     FullCaseEntry("Ở", 0, 2),
  3109.     FullCaseEntry("ở", 1, 2),
  3110.     FullCaseEntry("Ꞡ", 0, 2),
  3111.     FullCaseEntry("ꞡ", 1, 2),
  3112.     FullCaseEntry("Ȁ", 0, 2),
  3113.     FullCaseEntry("ȁ", 1, 2),
  3114.     FullCaseEntry("Ԋ", 0, 2),
  3115.     FullCaseEntry("ԋ", 1, 2),
  3116.     FullCaseEntry("Ⲍ", 0, 2),
  3117.     FullCaseEntry("ⲍ", 1, 2),
  3118.     FullCaseEntry("Ά", 0, 2),
  3119.     FullCaseEntry("ά", 1, 2),
  3120.     FullCaseEntry("Ỡ", 0, 2),
  3121.     FullCaseEntry("ỡ", 1, 2),
  3122.     FullCaseEntry("Ꞣ", 0, 2),
  3123.     FullCaseEntry("ꞣ", 1, 2),
  3124.     FullCaseEntry("Ȃ", 0, 2),
  3125.     FullCaseEntry("ȃ", 1, 2),
  3126.     FullCaseEntry("Ԍ", 0, 2),
  3127.     FullCaseEntry("ԍ", 1, 2),
  3128.     FullCaseEntry("Ⲏ", 0, 2),
  3129.     FullCaseEntry("ⲏ", 1, 2),
  3130.     FullCaseEntry("Έ", 0, 2),
  3131.     FullCaseEntry("έ", 1, 2),
  3132.     FullCaseEntry("Ợ", 0, 2),
  3133.     FullCaseEntry("ợ", 1, 2),
  3134.     FullCaseEntry("Ꞥ", 0, 2),
  3135.     FullCaseEntry("ꞥ", 1, 2),
  3136.     FullCaseEntry("Ȅ", 0, 2),
  3137.     FullCaseEntry("ȅ", 1, 2),
  3138.     FullCaseEntry("Ή", 0, 2),
  3139.     FullCaseEntry("ή", 1, 2),
  3140.     FullCaseEntry("Ԏ", 0, 2),
  3141.     FullCaseEntry("ԏ", 1, 2),
  3142.     FullCaseEntry("Ⲑ", 0, 2),
  3143.     FullCaseEntry("ⲑ", 1, 2),
  3144.     FullCaseEntry("Ί", 0, 2),
  3145.     FullCaseEntry("ί", 1, 2),
  3146.     FullCaseEntry("Ụ", 0, 2),
  3147.     FullCaseEntry("ụ", 1, 2),
  3148.     FullCaseEntry("Ꞧ", 0, 2),
  3149.     FullCaseEntry("ꞧ", 1, 2),
  3150.     FullCaseEntry("Ȇ", 0, 2),
  3151.     FullCaseEntry("ȇ", 1, 2),
  3152.     FullCaseEntry("Ԑ", 0, 2),
  3153.     FullCaseEntry("ԑ", 1, 2),
  3154.     FullCaseEntry("Ⲓ", 0, 2),
  3155.     FullCaseEntry("ⲓ", 1, 2),
  3156.     FullCaseEntry("Ό", 0, 2),
  3157.     FullCaseEntry("ό", 1, 2),
  3158.     FullCaseEntry("Ủ", 0, 2),
  3159.     FullCaseEntry("ủ", 1, 2),
  3160.     FullCaseEntry("Ꞩ", 0, 2),
  3161.     FullCaseEntry("ꞩ", 1, 2),
  3162.     FullCaseEntry("Ȉ", 0, 2),
  3163.     FullCaseEntry("ȉ", 1, 2),
  3164.     FullCaseEntry("Ԓ", 0, 2),
  3165.     FullCaseEntry("ԓ", 1, 2),
  3166.     FullCaseEntry("Ⲕ", 0, 2),
  3167.     FullCaseEntry("ⲕ", 1, 2),
  3168.     FullCaseEntry("Ύ", 0, 2),
  3169.     FullCaseEntry("ύ", 1, 2),
  3170.     FullCaseEntry("Ứ", 0, 2),
  3171.     FullCaseEntry("ứ", 1, 2),
  3172.     FullCaseEntry("Ɦ", 0, 2),
  3173.     FullCaseEntry("ɦ", 1, 2),
  3174.     FullCaseEntry("Ȋ", 0, 2),
  3175.     FullCaseEntry("ȋ", 1, 2),
  3176.     FullCaseEntry("Ώ", 0, 2),
  3177.     FullCaseEntry("ώ", 1, 2),
  3178.     FullCaseEntry("Ԕ", 0, 2),
  3179.     FullCaseEntry("ԕ", 1, 2),
  3180.     FullCaseEntry("Ⲗ", 0, 2),
  3181.     FullCaseEntry("ⲗ", 1, 2),
  3182.     FullCaseEntry("ΐ", 0, 3),
  3183.     FullCaseEntry("ΐ", 1, 3),
  3184.     FullCaseEntry("ΐ", 2, 3),
  3185.     FullCaseEntry("Ừ", 0, 2),
  3186.     FullCaseEntry("ừ", 1, 2),
  3187.     FullCaseEntry("Ȍ", 0, 2),
  3188.     FullCaseEntry("ȍ", 1, 2),
  3189.     FullCaseEntry("Α", 0, 2),
  3190.     FullCaseEntry("α", 1, 2),
  3191.     FullCaseEntry("Ԗ", 0, 2),
  3192.     FullCaseEntry("ԗ", 1, 2),
  3193.     FullCaseEntry("Ⲙ", 0, 2),
  3194.     FullCaseEntry("ⲙ", 1, 2),
  3195.     FullCaseEntry("Β", 0, 3),
  3196.     FullCaseEntry("β", 1, 3),
  3197.     FullCaseEntry("ϐ", 2, 3),
  3198.     FullCaseEntry("Ử", 0, 2),
  3199.     FullCaseEntry("ử", 1, 2),
  3200.     FullCaseEntry("Ȏ", 0, 2),
  3201.     FullCaseEntry("ȏ", 1, 2),
  3202.     FullCaseEntry("Γ", 0, 2),
  3203.     FullCaseEntry("γ", 1, 2),
  3204.     FullCaseEntry("Ԙ", 0, 2),
  3205.     FullCaseEntry("ԙ", 1, 2),
  3206.     FullCaseEntry("Ⲛ", 0, 2),
  3207.     FullCaseEntry("ⲛ", 1, 2),
  3208.     FullCaseEntry("Δ", 0, 2),
  3209.     FullCaseEntry("δ", 1, 2),
  3210.     FullCaseEntry("Ữ", 0, 2),
  3211.     FullCaseEntry("ữ", 1, 2),
  3212.     FullCaseEntry("Ȑ", 0, 2),
  3213.     FullCaseEntry("ȑ", 1, 2),
  3214.     FullCaseEntry("Ε", 0, 3),
  3215.     FullCaseEntry("ε", 1, 3),
  3216.     FullCaseEntry("ϵ", 2, 3),
  3217.     FullCaseEntry("Ԛ", 0, 2),
  3218.     FullCaseEntry("ԛ", 1, 2),
  3219.     FullCaseEntry("Ⲝ", 0, 2),
  3220.     FullCaseEntry("ⲝ", 1, 2),
  3221.     FullCaseEntry("Ζ", 0, 2),
  3222.     FullCaseEntry("ζ", 1, 2),
  3223.     FullCaseEntry("Ự", 0, 2),
  3224.     FullCaseEntry("ự", 1, 2),
  3225.     FullCaseEntry("Ȓ", 0, 2),
  3226.     FullCaseEntry("ȓ", 1, 2),
  3227.     FullCaseEntry("Η", 0, 2),
  3228.     FullCaseEntry("η", 1, 2),
  3229.     FullCaseEntry("Ԝ", 0, 2),
  3230.     FullCaseEntry("ԝ", 1, 2),
  3231.     FullCaseEntry("Ⲟ", 0, 2),
  3232.     FullCaseEntry("ⲟ", 1, 2),
  3233.     FullCaseEntry("Θ", 0, 4),
  3234.     FullCaseEntry("θ", 1, 4),
  3235.     FullCaseEntry("ϑ", 2, 4),
  3236.     FullCaseEntry("ϴ", 3, 4),
  3237.     FullCaseEntry("Ỳ", 0, 2),
  3238.     FullCaseEntry("ỳ", 1, 2),
  3239.     FullCaseEntry("Ȕ", 0, 2),
  3240.     FullCaseEntry("ȕ", 1, 2),
  3241.     FullCaseEntry("Ι", 0, 4),
  3242.     FullCaseEntry("ι", 1, 4),
  3243.     FullCaseEntry("ͅ", 2, 4),
  3244.     FullCaseEntry("ι", 3, 4),
  3245.     FullCaseEntry("Ԟ", 0, 2),
  3246.     FullCaseEntry("ԟ", 1, 2),
  3247.     FullCaseEntry("Ⲡ", 0, 2),
  3248.     FullCaseEntry("ⲡ", 1, 2),
  3249.     FullCaseEntry("Κ", 0, 3),
  3250.     FullCaseEntry("κ", 1, 3),
  3251.     FullCaseEntry("ϰ", 2, 3),
  3252.     FullCaseEntry("Ỵ", 0, 2),
  3253.     FullCaseEntry("ỵ", 1, 2),
  3254.     FullCaseEntry("Ȗ", 0, 2),
  3255.     FullCaseEntry("ȗ", 1, 2),
  3256.     FullCaseEntry("Λ", 0, 2),
  3257.     FullCaseEntry("λ", 1, 2),
  3258.     FullCaseEntry("Ԡ", 0, 2),
  3259.     FullCaseEntry("ԡ", 1, 2),
  3260.     FullCaseEntry("Ⲣ", 0, 2),
  3261.     FullCaseEntry("ⲣ", 1, 2),
  3262.     FullCaseEntry("Μ", 0, 3),
  3263.     FullCaseEntry("μ", 1, 3),
  3264.     FullCaseEntry("µ", 2, 3),
  3265.     FullCaseEntry("Ỷ", 0, 2),
  3266.     FullCaseEntry("ỷ", 1, 2),
  3267.     FullCaseEntry("Ș", 0, 2),
  3268.     FullCaseEntry("ș", 1, 2),
  3269.     FullCaseEntry("Ν", 0, 2),
  3270.     FullCaseEntry("ν", 1, 2),
  3271.     FullCaseEntry("Ԣ", 0, 2),
  3272.     FullCaseEntry("ԣ", 1, 2),
  3273.     FullCaseEntry("Ⲥ", 0, 2),
  3274.     FullCaseEntry("ⲥ", 1, 2),
  3275.     FullCaseEntry("Ξ", 0, 2),
  3276.     FullCaseEntry("ξ", 1, 2),
  3277.     FullCaseEntry("Ỹ", 0, 2),
  3278.     FullCaseEntry("ỹ", 1, 2),
  3279.     FullCaseEntry("Ț", 0, 2),
  3280.     FullCaseEntry("ț", 1, 2),
  3281.     FullCaseEntry("Ο", 0, 2),
  3282.     FullCaseEntry("ο", 1, 2),
  3283.     FullCaseEntry("Ԥ", 0, 2),
  3284.     FullCaseEntry("ԥ", 1, 2),
  3285.     FullCaseEntry("Ⲧ", 0, 2),
  3286.     FullCaseEntry("ⲧ", 1, 2),
  3287.     FullCaseEntry("Π", 0, 3),
  3288.     FullCaseEntry("π", 1, 3),
  3289.     FullCaseEntry("ϖ", 2, 3),
  3290.     FullCaseEntry("Ỻ", 0, 2),
  3291.     FullCaseEntry("ỻ", 1, 2),
  3292.     FullCaseEntry("Ȝ", 0, 2),
  3293.     FullCaseEntry("ȝ", 1, 2),
  3294.     FullCaseEntry("Ρ", 0, 3),
  3295.     FullCaseEntry("ρ", 1, 3),
  3296.     FullCaseEntry("ϱ", 2, 3),
  3297.     FullCaseEntry("Ԧ", 0, 2),
  3298.     FullCaseEntry("ԧ", 1, 2),
  3299.     FullCaseEntry("Ⲩ", 0, 2),
  3300.     FullCaseEntry("ⲩ", 1, 2),
  3301.     FullCaseEntry("Ỽ", 0, 2),
  3302.     FullCaseEntry("ỽ", 1, 2),
  3303.     FullCaseEntry("Ȟ", 0, 2),
  3304.     FullCaseEntry("ȟ", 1, 2),
  3305.     FullCaseEntry("Σ", 0, 3),
  3306.     FullCaseEntry("σ", 1, 3),
  3307.     FullCaseEntry("ς", 2, 3),
  3308.     FullCaseEntry("Ⲫ", 0, 2),
  3309.     FullCaseEntry("ⲫ", 1, 2),
  3310.     FullCaseEntry("Τ", 0, 2),
  3311.     FullCaseEntry("τ", 1, 2),
  3312.     FullCaseEntry("Ỿ", 0, 2),
  3313.     FullCaseEntry("ỿ", 1, 2),
  3314.     FullCaseEntry("Ƞ", 0, 2),
  3315.     FullCaseEntry("ƞ", 1, 2),
  3316.     FullCaseEntry("Υ", 0, 2),
  3317.     FullCaseEntry("υ", 1, 2),
  3318.     FullCaseEntry("Ⲭ", 0, 2),
  3319.     FullCaseEntry("ⲭ", 1, 2),
  3320.     FullCaseEntry("Φ", 0, 3),
  3321.     FullCaseEntry("φ", 1, 3),
  3322.     FullCaseEntry("ϕ", 2, 3),
  3323.     FullCaseEntry("Ȣ", 0, 2),
  3324.     FullCaseEntry("ȣ", 1, 2),
  3325.     FullCaseEntry("Χ", 0, 2),
  3326.     FullCaseEntry("χ", 1, 2),
  3327.     FullCaseEntry("Ⲯ", 0, 2),
  3328.     FullCaseEntry("ⲯ", 1, 2),
  3329.     FullCaseEntry("Ψ", 0, 2),
  3330.     FullCaseEntry("ψ", 1, 2),
  3331.     FullCaseEntry("Ȥ", 0, 2),
  3332.     FullCaseEntry("ȥ", 1, 2),
  3333.     FullCaseEntry("Ω", 0, 3),
  3334.     FullCaseEntry("ω", 1, 3),
  3335.     FullCaseEntry("Ω", 2, 3),
  3336.     FullCaseEntry("Ⲱ", 0, 2),
  3337.     FullCaseEntry("ⲱ", 1, 2),
  3338.     FullCaseEntry("Ꙁ", 0, 2),
  3339.     FullCaseEntry("ꙁ", 1, 2),
  3340.     FullCaseEntry("Ϊ", 0, 2),
  3341.     FullCaseEntry("ϊ", 1, 2),
  3342.     FullCaseEntry("Ȧ", 0, 2),
  3343.     FullCaseEntry("ȧ", 1, 2),
  3344.     FullCaseEntry("Ϋ", 0, 2),
  3345.     FullCaseEntry("ϋ", 1, 2),
  3346.     FullCaseEntry("Ⲳ", 0, 2),
  3347.     FullCaseEntry("ⲳ", 1, 2),
  3348.     FullCaseEntry("Ꙃ", 0, 2),
  3349.     FullCaseEntry("ꙃ", 1, 2),
  3350.     FullCaseEntry("Ա", 0, 2),
  3351.     FullCaseEntry("ա", 1, 2),
  3352.     FullCaseEntry("Ȩ", 0, 2),
  3353.     FullCaseEntry("ȩ", 1, 2),
  3354.     FullCaseEntry("Բ", 0, 2),
  3355.     FullCaseEntry("բ", 1, 2),
  3356.     FullCaseEntry("Ⲵ", 0, 2),
  3357.     FullCaseEntry("ⲵ", 1, 2),
  3358.     FullCaseEntry("Ꙅ", 0, 2),
  3359.     FullCaseEntry("ꙅ", 1, 2),
  3360.     FullCaseEntry("Գ", 0, 2),
  3361.     FullCaseEntry("գ", 1, 2),
  3362.     FullCaseEntry("Ἀ", 0, 2),
  3363.     FullCaseEntry("ἀ", 1, 2),
  3364.     FullCaseEntry("Ȫ", 0, 2),
  3365.     FullCaseEntry("ȫ", 1, 2),
  3366.     FullCaseEntry("Դ", 0, 2),
  3367.     FullCaseEntry("դ", 1, 2),
  3368.     FullCaseEntry("Ἁ", 0, 2),
  3369.     FullCaseEntry("ἁ", 1, 2),
  3370.     FullCaseEntry("Ⲷ", 0, 2),
  3371.     FullCaseEntry("ⲷ", 1, 2),
  3372.     FullCaseEntry("Ꙇ", 0, 2),
  3373.     FullCaseEntry("ꙇ", 1, 2),
  3374.     FullCaseEntry("ΰ", 0, 3),
  3375.     FullCaseEntry("ΰ", 1, 3),
  3376.     FullCaseEntry("ΰ", 2, 3),
  3377.     FullCaseEntry("Ե", 0, 2),
  3378.     FullCaseEntry("ե", 1, 2),
  3379.     FullCaseEntry("Ἂ", 0, 2),
  3380.     FullCaseEntry("ἂ", 1, 2),
  3381.     FullCaseEntry("Ȭ", 0, 2),
  3382.     FullCaseEntry("ȭ", 1, 2),
  3383.     FullCaseEntry("Զ", 0, 2),
  3384.     FullCaseEntry("զ", 1, 2),
  3385.     FullCaseEntry("Ἃ", 0, 2),
  3386.     FullCaseEntry("ἃ", 1, 2),
  3387.     FullCaseEntry("Ⲹ", 0, 2),
  3388.     FullCaseEntry("ⲹ", 1, 2),
  3389.     FullCaseEntry("Ꙉ", 0, 2),
  3390.     FullCaseEntry("ꙉ", 1, 2),
  3391.     FullCaseEntry("Է", 0, 2),
  3392.     FullCaseEntry("է", 1, 2),
  3393.     FullCaseEntry("Ἄ", 0, 2),
  3394.     FullCaseEntry("ἄ", 1, 2),
  3395.     FullCaseEntry("Ȯ", 0, 2),
  3396.     FullCaseEntry("ȯ", 1, 2),
  3397.     FullCaseEntry("Ը", 0, 2),
  3398.     FullCaseEntry("ը", 1, 2),
  3399.     FullCaseEntry("Ἅ", 0, 2),
  3400.     FullCaseEntry("ἅ", 1, 2),
  3401.     FullCaseEntry("Ⲻ", 0, 2),
  3402.     FullCaseEntry("ⲻ", 1, 2),
  3403.     FullCaseEntry("Ꙋ", 0, 2),
  3404.     FullCaseEntry("ꙋ", 1, 2),
  3405.     FullCaseEntry("Թ", 0, 2),
  3406.     FullCaseEntry("թ", 1, 2),
  3407.     FullCaseEntry("Ἆ", 0, 2),
  3408.     FullCaseEntry("ἆ", 1, 2),
  3409.     FullCaseEntry("Ȱ", 0, 2),
  3410.     FullCaseEntry("ȱ", 1, 2),
  3411.     FullCaseEntry("Ժ", 0, 2),
  3412.     FullCaseEntry("ժ", 1, 2),
  3413.     FullCaseEntry("Ἇ", 0, 2),
  3414.     FullCaseEntry("ἇ", 1, 2),
  3415.     FullCaseEntry("Ⲽ", 0, 2),
  3416.     FullCaseEntry("ⲽ", 1, 2),
  3417.     FullCaseEntry("Ꙍ", 0, 2),
  3418.     FullCaseEntry("ꙍ", 1, 2),
  3419.     FullCaseEntry("Ի", 0, 2),
  3420.     FullCaseEntry("ի", 1, 2),
  3421.     FullCaseEntry("Ȳ", 0, 2),
  3422.     FullCaseEntry("ȳ", 1, 2),
  3423.     FullCaseEntry("Լ", 0, 2),
  3424.     FullCaseEntry("լ", 1, 2),
  3425.     FullCaseEntry("Ⲿ", 0, 2),
  3426.     FullCaseEntry("ⲿ", 1, 2),
  3427.     FullCaseEntry("Ꙏ", 0, 2),
  3428.     FullCaseEntry("ꙏ", 1, 2),
  3429.     FullCaseEntry("Խ", 0, 2),
  3430.     FullCaseEntry("խ", 1, 2),
  3431.     FullCaseEntry("Ծ", 0, 2),
  3432.     FullCaseEntry("ծ", 1, 2),
  3433.     FullCaseEntry("Ⳁ", 0, 2),
  3434.     FullCaseEntry("ⳁ", 1, 2),
  3435.     FullCaseEntry("Ꙑ", 0, 2),
  3436.     FullCaseEntry("ꙑ", 1, 2),
  3437.     FullCaseEntry("Կ", 0, 2),
  3438.     FullCaseEntry("կ", 1, 2),
  3439.     FullCaseEntry("Հ", 0, 2),
  3440.     FullCaseEntry("հ", 1, 2),
  3441.     FullCaseEntry("Ⳃ", 0, 2),
  3442.     FullCaseEntry("ⳃ", 1, 2),
  3443.     FullCaseEntry("Ꙓ", 0, 2),
  3444.     FullCaseEntry("ꙓ", 1, 2),
  3445.     FullCaseEntry("Ձ", 0, 2),
  3446.     FullCaseEntry("ձ", 1, 2),
  3447.     FullCaseEntry("Ղ", 0, 2),
  3448.     FullCaseEntry("ղ", 1, 2),
  3449.     FullCaseEntry("Ⳅ", 0, 2),
  3450.     FullCaseEntry("ⳅ", 1, 2),
  3451.     FullCaseEntry("Ꙕ", 0, 2),
  3452.     FullCaseEntry("ꙕ", 1, 2),
  3453.     FullCaseEntry("Ճ", 0, 2),
  3454.     FullCaseEntry("ճ", 1, 2),
  3455.     FullCaseEntry("Ἐ", 0, 2),
  3456.     FullCaseEntry("ἐ", 1, 2),
  3457.     FullCaseEntry("µ", 0, 3),
  3458.     FullCaseEntry("μ", 1, 3),
  3459.     FullCaseEntry("Μ", 2, 3),
  3460.     FullCaseEntry("Ⱥ", 0, 2),
  3461.     FullCaseEntry("ⱥ", 1, 2),
  3462.     FullCaseEntry("Մ", 0, 2),
  3463.     FullCaseEntry("մ", 1, 2),
  3464.     FullCaseEntry("Ἑ", 0, 2),
  3465.     FullCaseEntry("ἑ", 1, 2),
  3466.     FullCaseEntry("Ⳇ", 0, 2),
  3467.     FullCaseEntry("ⳇ", 1, 2),
  3468.     FullCaseEntry("Ꙗ", 0, 2),
  3469.     FullCaseEntry("ꙗ", 1, 2),
  3470.     FullCaseEntry("Ȼ", 0, 2),
  3471.     FullCaseEntry("ȼ", 1, 2),
  3472.     FullCaseEntry("Յ", 0, 2),
  3473.     FullCaseEntry("յ", 1, 2),
  3474.     FullCaseEntry("Ἒ", 0, 2),
  3475.     FullCaseEntry("ἒ", 1, 2),
  3476.     FullCaseEntry("Ն", 0, 2),
  3477.     FullCaseEntry("ն", 1, 2),
  3478.     FullCaseEntry("Ἓ", 0, 2),
  3479.     FullCaseEntry("ἓ", 1, 2),
  3480.     FullCaseEntry("Ⳉ", 0, 2),
  3481.     FullCaseEntry("ⳉ", 1, 2),
  3482.     FullCaseEntry("Ꙙ", 0, 2),
  3483.     FullCaseEntry("ꙙ", 1, 2),
  3484.     FullCaseEntry("Ƚ", 0, 2),
  3485.     FullCaseEntry("ƚ", 1, 2),
  3486.     FullCaseEntry("ς", 0, 3),
  3487.     FullCaseEntry("σ", 1, 3),
  3488.     FullCaseEntry("Σ", 2, 3),
  3489.     FullCaseEntry("Շ", 0, 2),
  3490.     FullCaseEntry("շ", 1, 2),
  3491.     FullCaseEntry("Ἔ", 0, 2),
  3492.     FullCaseEntry("ἔ", 1, 2),
  3493.     FullCaseEntry("Ⱦ", 0, 2),
  3494.     FullCaseEntry("ⱦ", 1, 2),
  3495.     FullCaseEntry("Ո", 0, 2),
  3496.     FullCaseEntry("ո", 1, 2),
  3497.     FullCaseEntry("Ἕ", 0, 2),
  3498.     FullCaseEntry("ἕ", 1, 2),
  3499.     FullCaseEntry("Ⳋ", 0, 2),
  3500.     FullCaseEntry("ⳋ", 1, 2),
  3501.     FullCaseEntry("Ꙛ", 0, 2),
  3502.     FullCaseEntry("ꙛ", 1, 2),
  3503.     FullCaseEntry("Չ", 0, 2),
  3504.     FullCaseEntry("չ", 1, 2),
  3505.     FullCaseEntry("Պ", 0, 2),
  3506.     FullCaseEntry("պ", 1, 2),
  3507.     FullCaseEntry("Ⳍ", 0, 2),
  3508.     FullCaseEntry("ⳍ", 1, 2),
  3509.     FullCaseEntry("Ꙝ", 0, 2),
  3510.     FullCaseEntry("ꙝ", 1, 2),
  3511.     FullCaseEntry("Ɂ", 0, 2),
  3512.     FullCaseEntry("ɂ", 1, 2),
  3513.     FullCaseEntry("Ջ", 0, 2),
  3514.     FullCaseEntry("ջ", 1, 2),
  3515.     FullCaseEntry("Ռ", 0, 2),
  3516.     FullCaseEntry("ռ", 1, 2),
  3517.     FullCaseEntry("Ⳏ", 0, 2),
  3518.     FullCaseEntry("ⳏ", 1, 2),
  3519.     FullCaseEntry("Ꙟ", 0, 2),
  3520.     FullCaseEntry("ꙟ", 1, 2),
  3521.     FullCaseEntry("Ƀ", 0, 2),
  3522.     FullCaseEntry("ƀ", 1, 2),
  3523.     FullCaseEntry("Ս", 0, 2),
  3524.     FullCaseEntry("ս", 1, 2),
  3525.     FullCaseEntry("Ʉ", 0, 2),
  3526.     FullCaseEntry("ʉ", 1, 2),
  3527.     FullCaseEntry("Վ", 0, 2),
  3528.     FullCaseEntry("վ", 1, 2),
  3529.     FullCaseEntry("Ⳑ", 0, 2),
  3530.     FullCaseEntry("ⳑ", 1, 2),
  3531.     FullCaseEntry("Ꙡ", 0, 2),
  3532.     FullCaseEntry("ꙡ", 1, 2),
  3533.     FullCaseEntry("À", 0, 2),
  3534.     FullCaseEntry("à", 1, 2),
  3535.     FullCaseEntry("Ʌ", 0, 2),
  3536.     FullCaseEntry("ʌ", 1, 2),
  3537.     FullCaseEntry("Տ", 0, 2),
  3538.     FullCaseEntry("տ", 1, 2),
  3539.     FullCaseEntry("Á", 0, 2),
  3540.     FullCaseEntry("á", 1, 2),
  3541.     FullCaseEntry("Ɇ", 0, 2),
  3542.     FullCaseEntry("ɇ", 1, 2),
  3543.     FullCaseEntry("Ր", 0, 2),
  3544.     FullCaseEntry("ր", 1, 2),
  3545.     FullCaseEntry("Ⳓ", 0, 2),
  3546.     FullCaseEntry("ⳓ", 1, 2),
  3547.     FullCaseEntry("Ꙣ", 0, 2),
  3548.     FullCaseEntry("ꙣ", 1, 2),
  3549.     FullCaseEntry("Â", 0, 2),
  3550.     FullCaseEntry("â", 1, 2),
  3551.     FullCaseEntry("Ց", 0, 2),
  3552.     FullCaseEntry("ց", 1, 2),
  3553.     FullCaseEntry("Ã", 0, 2),
  3554.     FullCaseEntry("ã", 1, 2),
  3555.     FullCaseEntry("Ɉ", 0, 2),
  3556.     FullCaseEntry("ɉ", 1, 2),
  3557.     FullCaseEntry("Ւ", 0, 2),
  3558.     FullCaseEntry("ւ", 1, 2),
  3559.     FullCaseEntry("Ⳕ", 0, 2),
  3560.     FullCaseEntry("ⳕ", 1, 2),
  3561.     FullCaseEntry("Ꙥ", 0, 2),
  3562.     FullCaseEntry("ꙥ", 1, 2),
  3563.     FullCaseEntry("Ä", 0, 2),
  3564.     FullCaseEntry("ä", 1, 2),
  3565.     FullCaseEntry("Փ", 0, 2),
  3566.     FullCaseEntry("փ", 1, 2),
  3567.     FullCaseEntry("Ἠ", 0, 2),
  3568.     FullCaseEntry("ἠ", 1, 2),
  3569.     FullCaseEntry("Å", 0, 3),
  3570.     FullCaseEntry("å", 1, 3),
  3571.     FullCaseEntry("Å", 2, 3),
  3572.     FullCaseEntry("Ɋ", 0, 2),
  3573.     FullCaseEntry("ɋ", 1, 2),
  3574.     FullCaseEntry("Ϗ", 0, 2),
  3575.     FullCaseEntry("ϗ", 1, 2),
  3576.     FullCaseEntry("Ք", 0, 2),
  3577.     FullCaseEntry("ք", 1, 2),
  3578.     FullCaseEntry("Ἡ", 0, 2),
  3579.     FullCaseEntry("ἡ", 1, 2),
  3580.     FullCaseEntry("Ⳗ", 0, 2),
  3581.     FullCaseEntry("ⳗ", 1, 2),
  3582.     FullCaseEntry("Ꙧ", 0, 2),
  3583.     FullCaseEntry("ꙧ", 1, 2),
  3584.     FullCaseEntry("Æ", 0, 2),
  3585.     FullCaseEntry("æ", 1, 2),
  3586.     FullCaseEntry("ϐ", 0, 3),
  3587.     FullCaseEntry("β", 1, 3),
  3588.     FullCaseEntry("Β", 2, 3),
  3589.     FullCaseEntry("Օ", 0, 2),
  3590.     FullCaseEntry("օ", 1, 2),
  3591.     FullCaseEntry("Ἢ", 0, 2),
  3592.     FullCaseEntry("ἢ", 1, 2),
  3593.     FullCaseEntry("Ç", 0, 2),
  3594.     FullCaseEntry("ç", 1, 2),
  3595.     FullCaseEntry("Ɍ", 0, 2),
  3596.     FullCaseEntry("ɍ", 1, 2),
  3597.     FullCaseEntry("ϑ", 0, 4),
  3598.     FullCaseEntry("θ", 1, 4),
  3599.     FullCaseEntry("Θ", 2, 4),
  3600.     FullCaseEntry("ϴ", 3, 4),
  3601.     FullCaseEntry("Ֆ", 0, 2),
  3602.     FullCaseEntry("ֆ", 1, 2),
  3603.     FullCaseEntry("Ἣ", 0, 2),
  3604.     FullCaseEntry("ἣ", 1, 2),
  3605.     FullCaseEntry("Ⳙ", 0, 2),
  3606.     FullCaseEntry("ⳙ", 1, 2),
  3607.     FullCaseEntry("Ꙩ", 0, 2),
  3608.     FullCaseEntry("ꙩ", 1, 2),
  3609.     FullCaseEntry("È", 0, 2),
  3610.     FullCaseEntry("è", 1, 2),
  3611.     FullCaseEntry("Ἤ", 0, 2),
  3612.     FullCaseEntry("ἤ", 1, 2),
  3613.     FullCaseEntry("É", 0, 2),
  3614.     FullCaseEntry("é", 1, 2),
  3615.     FullCaseEntry("Ɏ", 0, 2),
  3616.     FullCaseEntry("ɏ", 1, 2),
  3617.     FullCaseEntry("Ἥ", 0, 2),
  3618.     FullCaseEntry("ἥ", 1, 2),
  3619.     FullCaseEntry("Ⳛ", 0, 2),
  3620.     FullCaseEntry("ⳛ", 1, 2),
  3621.     FullCaseEntry("Ꙫ", 0, 2),
  3622.     FullCaseEntry("ꙫ", 1, 2),
  3623.     FullCaseEntry("Ê", 0, 2),
  3624.     FullCaseEntry("ê", 1, 2),
  3625.     FullCaseEntry("Ἦ", 0, 2),
  3626.     FullCaseEntry("ἦ", 1, 2),
  3627.     FullCaseEntry("Ë", 0, 2),
  3628.     FullCaseEntry("ë", 1, 2),
  3629.     FullCaseEntry("ϕ", 0, 3),
  3630.     FullCaseEntry("φ", 1, 3),
  3631.     FullCaseEntry("Φ", 2, 3),
  3632.     FullCaseEntry("Ἧ", 0, 2),
  3633.     FullCaseEntry("ἧ", 1, 2),
  3634.     FullCaseEntry("Ⳝ", 0, 2),
  3635.     FullCaseEntry("ⳝ", 1, 2),
  3636.     FullCaseEntry("Ꙭ", 0, 2),
  3637.     FullCaseEntry("ꙭ", 1, 2),
  3638.     FullCaseEntry("Ì", 0, 2),
  3639.     FullCaseEntry("ì", 1, 2),
  3640.     FullCaseEntry("ϖ", 0, 3),
  3641.     FullCaseEntry("π", 1, 3),
  3642.     FullCaseEntry("Π", 2, 3),
  3643.     FullCaseEntry("Í", 0, 2),
  3644.     FullCaseEntry("í", 1, 2),
  3645.     FullCaseEntry("Ⳟ", 0, 2),
  3646.     FullCaseEntry("ⳟ", 1, 2),
  3647.     FullCaseEntry("Î", 0, 2),
  3648.     FullCaseEntry("î", 1, 2),
  3649.     FullCaseEntry("Ϙ", 0, 2),
  3650.     FullCaseEntry("ϙ", 1, 2),
  3651.     FullCaseEntry("Ï", 0, 2),
  3652.     FullCaseEntry("ï", 1, 2),
  3653.     FullCaseEntry("Ⳡ", 0, 2),
  3654.     FullCaseEntry("ⳡ", 1, 2),
  3655.     FullCaseEntry("Ð", 0, 2),
  3656.     FullCaseEntry("ð", 1, 2),
  3657.     FullCaseEntry("Ϛ", 0, 2),
  3658.     FullCaseEntry("ϛ", 1, 2),
  3659.     FullCaseEntry("Ñ", 0, 2),
  3660.     FullCaseEntry("ñ", 1, 2),
  3661.     FullCaseEntry("Ⳣ", 0, 2),
  3662.     FullCaseEntry("ⳣ", 1, 2),
  3663.     FullCaseEntry("Ò", 0, 2),
  3664.     FullCaseEntry("ò", 1, 2),
  3665.     FullCaseEntry("Ϝ", 0, 2),
  3666.     FullCaseEntry("ϝ", 1, 2),
  3667.     FullCaseEntry("Ó", 0, 2),
  3668.     FullCaseEntry("ó", 1, 2),
  3669.     FullCaseEntry("Ô", 0, 2),
  3670.     FullCaseEntry("ô", 1, 2),
  3671.     FullCaseEntry("Ϟ", 0, 2),
  3672.     FullCaseEntry("ϟ", 1, 2),
  3673.     FullCaseEntry("Ἰ", 0, 2),
  3674.     FullCaseEntry("ἰ", 1, 2),
  3675.     FullCaseEntry("Õ", 0, 2),
  3676.     FullCaseEntry("õ", 1, 2),
  3677.     FullCaseEntry("Ἱ", 0, 2),
  3678.     FullCaseEntry("ἱ", 1, 2),
  3679.     FullCaseEntry("Ö", 0, 2),
  3680.     FullCaseEntry("ö", 1, 2),
  3681.     FullCaseEntry("Ϡ", 0, 2),
  3682.     FullCaseEntry("ϡ", 1, 2),
  3683.     FullCaseEntry("Ἲ", 0, 2),
  3684.     FullCaseEntry("ἲ", 1, 2),
  3685.     FullCaseEntry("Ἳ", 0, 2),
  3686.     FullCaseEntry("ἳ", 1, 2),
  3687.     FullCaseEntry("Ø", 0, 2),
  3688.     FullCaseEntry("ø", 1, 2),
  3689.     FullCaseEntry("Ϣ", 0, 2),
  3690.     FullCaseEntry("ϣ", 1, 2),
  3691.     FullCaseEntry("Ἴ", 0, 2),
  3692.     FullCaseEntry("ἴ", 1, 2),
  3693.     FullCaseEntry("Ù", 0, 2),
  3694.     FullCaseEntry("ù", 1, 2),
  3695.     FullCaseEntry("Ἵ", 0, 2),
  3696.     FullCaseEntry("ἵ", 1, 2),
  3697.     FullCaseEntry("Ú", 0, 2),
  3698.     FullCaseEntry("ú", 1, 2),
  3699.     FullCaseEntry("Ϥ", 0, 2),
  3700.     FullCaseEntry("ϥ", 1, 2),
  3701.     FullCaseEntry("Ἶ", 0, 2),
  3702.     FullCaseEntry("ἶ", 1, 2),
  3703.     FullCaseEntry("Ⳬ", 0, 2),
  3704.     FullCaseEntry("ⳬ", 1, 2),
  3705.     FullCaseEntry("Û", 0, 2),
  3706.     FullCaseEntry("û", 1, 2),
  3707.     FullCaseEntry("Ἷ", 0, 2),
  3708.     FullCaseEntry("ἷ", 1, 2),
  3709.     FullCaseEntry("Ü", 0, 2),
  3710.     FullCaseEntry("ü", 1, 2),
  3711.     FullCaseEntry("Ϧ", 0, 2),
  3712.     FullCaseEntry("ϧ", 1, 2),
  3713.     FullCaseEntry("Ⳮ", 0, 2),
  3714.     FullCaseEntry("ⳮ", 1, 2),
  3715.     FullCaseEntry("Ý", 0, 2),
  3716.     FullCaseEntry("ý", 1, 2),
  3717.     FullCaseEntry("Þ", 0, 2),
  3718.     FullCaseEntry("þ", 1, 2),
  3719.     FullCaseEntry("Ϩ", 0, 2),
  3720.     FullCaseEntry("ϩ", 1, 2),
  3721.     FullCaseEntry("ß", 0, 3),
  3722.     FullCaseEntry("ss", 1, 3),
  3723.     FullCaseEntry("ẞ", 2, 3),
  3724.     FullCaseEntry("Ꚁ", 0, 2),
  3725.     FullCaseEntry("ꚁ", 1, 2),
  3726.     FullCaseEntry("Ϫ", 0, 2),
  3727.     FullCaseEntry("ϫ", 1, 2),
  3728.     FullCaseEntry("Ⳳ", 0, 2),
  3729.     FullCaseEntry("ⳳ", 1, 2),
  3730.     FullCaseEntry("Ꚃ", 0, 2),
  3731.     FullCaseEntry("ꚃ", 1, 2),
  3732.     FullCaseEntry("Ϭ", 0, 2),
  3733.     FullCaseEntry("ϭ", 1, 2),
  3734.     FullCaseEntry("Ꚅ", 0, 2),
  3735.     FullCaseEntry("ꚅ", 1, 2),
  3736.     FullCaseEntry("Ϯ", 0, 2),
  3737.     FullCaseEntry("ϯ", 1, 2),
  3738.     FullCaseEntry("Ὀ", 0, 2),
  3739.     FullCaseEntry("ὀ", 1, 2),
  3740.     FullCaseEntry("Ὁ", 0, 2),
  3741.     FullCaseEntry("ὁ", 1, 2),
  3742.     FullCaseEntry("Ꚇ", 0, 2),
  3743.     FullCaseEntry("ꚇ", 1, 2),
  3744.     FullCaseEntry("ϰ", 0, 3),
  3745.     FullCaseEntry("κ", 1, 3),
  3746.     FullCaseEntry("Κ", 2, 3),
  3747.     FullCaseEntry("Ὂ", 0, 2),
  3748.     FullCaseEntry("ὂ", 1, 2),
  3749.     FullCaseEntry("ϱ", 0, 3),
  3750.     FullCaseEntry("ρ", 1, 3),
  3751.     FullCaseEntry("Ρ", 2, 3),
  3752.     FullCaseEntry("Ὃ", 0, 2),
  3753.     FullCaseEntry("ὃ", 1, 2),
  3754.     FullCaseEntry("Ꚉ", 0, 2),
  3755.     FullCaseEntry("ꚉ", 1, 2),
  3756.     FullCaseEntry("Ὄ", 0, 2),
  3757.     FullCaseEntry("ὄ", 1, 2),
  3758.     FullCaseEntry("Ὅ", 0, 2),
  3759.     FullCaseEntry("ὅ", 1, 2),
  3760.     FullCaseEntry("Ꚋ", 0, 2),
  3761.     FullCaseEntry("ꚋ", 1, 2),
  3762.     FullCaseEntry("ϴ", 0, 4),
  3763.     FullCaseEntry("θ", 1, 4),
  3764.     FullCaseEntry("Θ", 2, 4),
  3765.     FullCaseEntry("ϑ", 3, 4),
  3766.     FullCaseEntry("ϵ", 0, 3),
  3767.     FullCaseEntry("ε", 1, 3),
  3768.     FullCaseEntry("Ε", 2, 3),
  3769.     FullCaseEntry("Ꚍ", 0, 2),
  3770.     FullCaseEntry("ꚍ", 1, 2),
  3771.     FullCaseEntry("ὐ", 0, 2),
  3772.     FullCaseEntry("ὐ", 1, 2),
  3773.     FullCaseEntry("Ϸ", 0, 2),
  3774.     FullCaseEntry("ϸ", 1, 2),
  3775.     FullCaseEntry("Ꚏ", 0, 2),
  3776.     FullCaseEntry("ꚏ", 1, 2),
  3777.     FullCaseEntry("ὒ", 0, 2),
  3778.     FullCaseEntry("ὒ", 1, 2),
  3779.     FullCaseEntry("Ϲ", 0, 2),
  3780.     FullCaseEntry("ϲ", 1, 2),
  3781.     FullCaseEntry("Ꚑ", 0, 2),
  3782.     FullCaseEntry("ꚑ", 1, 2),
  3783.     FullCaseEntry("Ϻ", 0, 2),
  3784.     FullCaseEntry("ϻ", 1, 2),
  3785.     FullCaseEntry("ὔ", 0, 2),
  3786.     FullCaseEntry("ὔ", 1, 2),
  3787.     FullCaseEntry("Ꚓ", 0, 2),
  3788.     FullCaseEntry("ꚓ", 1, 2),
  3789.     FullCaseEntry("ὖ", 0, 2),
  3790.     FullCaseEntry("ὖ", 1, 2),
  3791.     FullCaseEntry("Ͻ", 0, 2),
  3792.     FullCaseEntry("ͻ", 1, 2),
  3793.     FullCaseEntry("Ꚕ", 0, 2),
  3794.     FullCaseEntry("ꚕ", 1, 2),
  3795.     FullCaseEntry("Ͼ", 0, 2),
  3796.     FullCaseEntry("ͼ", 1, 2),
  3797.     FullCaseEntry("Ͽ", 0, 2),
  3798.     FullCaseEntry("ͽ", 1, 2),
  3799.     FullCaseEntry("Ὑ", 0, 2),
  3800.     FullCaseEntry("ὑ", 1, 2),
  3801.     FullCaseEntry("Ꚗ", 0, 2),
  3802.     FullCaseEntry("ꚗ", 1, 2),
  3803.     FullCaseEntry("Ѐ", 0, 2),
  3804.     FullCaseEntry("ѐ", 1, 2),
  3805.     FullCaseEntry("Ё", 0, 2),
  3806.     FullCaseEntry("ё", 1, 2),
  3807.     FullCaseEntry("Ὓ", 0, 2),
  3808.     FullCaseEntry("ὓ", 1, 2),
  3809.     FullCaseEntry("Ђ", 0, 2),
  3810.     FullCaseEntry("ђ", 1, 2),
  3811.     FullCaseEntry("և", 0, 2),
  3812.     FullCaseEntry("եւ", 1, 2),
  3813.     FullCaseEntry("Ѓ", 0, 2),
  3814.     FullCaseEntry("ѓ", 1, 2),
  3815.     FullCaseEntry("Ὕ", 0, 2),
  3816.     FullCaseEntry("ὕ", 1, 2),
  3817.     FullCaseEntry("Є", 0, 2),
  3818.     FullCaseEntry("є", 1, 2),
  3819.     FullCaseEntry("Ѕ", 0, 2),
  3820.     FullCaseEntry("ѕ", 1, 2),
  3821.     FullCaseEntry("Ὗ", 0, 2),
  3822.     FullCaseEntry("ὗ", 1, 2),
  3823.     FullCaseEntry("І", 0, 2),
  3824.     FullCaseEntry("і", 1, 2),
  3825.     FullCaseEntry("Ї", 0, 2),
  3826.     FullCaseEntry("ї", 1, 2),
  3827.     FullCaseEntry("Ј", 0, 2),
  3828.     FullCaseEntry("ј", 1, 2),
  3829.     FullCaseEntry("Љ", 0, 2),
  3830.     FullCaseEntry("љ", 1, 2),
  3831.     FullCaseEntry("Ā", 0, 2),
  3832.     FullCaseEntry("ā", 1, 2),
  3833.     FullCaseEntry("Њ", 0, 2),
  3834.     FullCaseEntry("њ", 1, 2),
  3835.     FullCaseEntry("Ћ", 0, 2),
  3836.     FullCaseEntry("ћ", 1, 2),
  3837.     FullCaseEntry("Ă", 0, 2),
  3838.     FullCaseEntry("ă", 1, 2),
  3839.     FullCaseEntry("Ќ", 0, 2),
  3840.     FullCaseEntry("ќ", 1, 2),
  3841.     FullCaseEntry("Ѝ", 0, 2),
  3842.     FullCaseEntry("ѝ", 1, 2),
  3843.     FullCaseEntry("Ą", 0, 2),
  3844.     FullCaseEntry("ą", 1, 2),
  3845.     FullCaseEntry("Ў", 0, 2),
  3846.     FullCaseEntry("ў", 1, 2),
  3847.     FullCaseEntry("Ὠ", 0, 2),
  3848.     FullCaseEntry("ὠ", 1, 2),
  3849.     FullCaseEntry("Џ", 0, 2),
  3850.     FullCaseEntry("џ", 1, 2),
  3851.     FullCaseEntry("Ὡ", 0, 2),
  3852.     FullCaseEntry("ὡ", 1, 2),
  3853.     FullCaseEntry("Ć", 0, 2),
  3854.     FullCaseEntry("ć", 1, 2),
  3855.     FullCaseEntry("А", 0, 2),
  3856.     FullCaseEntry("а", 1, 2),
  3857.     FullCaseEntry("Ὢ", 0, 2),
  3858.     FullCaseEntry("ὢ", 1, 2),
  3859.     FullCaseEntry("Б", 0, 2),
  3860.     FullCaseEntry("б", 1, 2),
  3861.     FullCaseEntry("Ὣ", 0, 2),
  3862.     FullCaseEntry("ὣ", 1, 2),
  3863.     FullCaseEntry("Ĉ", 0, 2),
  3864.     FullCaseEntry("ĉ", 1, 2),
  3865.     FullCaseEntry("В", 0, 2),
  3866.     FullCaseEntry("в", 1, 2),
  3867.     FullCaseEntry("Ὤ", 0, 2),
  3868.     FullCaseEntry("ὤ", 1, 2),
  3869.     FullCaseEntry("Г", 0, 2),
  3870.     FullCaseEntry("г", 1, 2),
  3871.     FullCaseEntry("Ὥ", 0, 2),
  3872.     FullCaseEntry("ὥ", 1, 2),
  3873.     FullCaseEntry("Ċ", 0, 2),
  3874.     FullCaseEntry("ċ", 1, 2),
  3875.     FullCaseEntry("Д", 0, 2),
  3876.     FullCaseEntry("д", 1, 2),
  3877.     FullCaseEntry("Ὦ", 0, 2),
  3878.     FullCaseEntry("ὦ", 1, 2),
  3879.     FullCaseEntry("Е", 0, 2),
  3880.     FullCaseEntry("е", 1, 2),
  3881.     FullCaseEntry("Ὧ", 0, 2),
  3882.     FullCaseEntry("ὧ", 1, 2),
  3883.     FullCaseEntry("Č", 0, 2),
  3884.     FullCaseEntry("č", 1, 2),
  3885.     FullCaseEntry("Ж", 0, 2),
  3886.     FullCaseEntry("ж", 1, 2),
  3887.     FullCaseEntry("З", 0, 2),
  3888.     FullCaseEntry("з", 1, 2),
  3889.     FullCaseEntry("Ď", 0, 2),
  3890.     FullCaseEntry("ď", 1, 2),
  3891.     FullCaseEntry("И", 0, 2),
  3892.     FullCaseEntry("и", 1, 2),
  3893.     FullCaseEntry("Й", 0, 2),
  3894.     FullCaseEntry("й", 1, 2),
  3895.     FullCaseEntry("Đ", 0, 2),
  3896.     FullCaseEntry("đ", 1, 2),
  3897.     FullCaseEntry("К", 0, 2),
  3898.     FullCaseEntry("к", 1, 2),
  3899.     FullCaseEntry("Л", 0, 2),
  3900.     FullCaseEntry("л", 1, 2),
  3901.     FullCaseEntry("Ē", 0, 2),
  3902.     FullCaseEntry("ē", 1, 2),
  3903.     FullCaseEntry("М", 0, 2),
  3904.     FullCaseEntry("м", 1, 2),
  3905.     FullCaseEntry("Н", 0, 2),
  3906.     FullCaseEntry("н", 1, 2),
  3907.     FullCaseEntry("Ĕ", 0, 2),
  3908.     FullCaseEntry("ĕ", 1, 2),
  3909.     FullCaseEntry("О", 0, 2),
  3910.     FullCaseEntry("о", 1, 2),
  3911.     FullCaseEntry("П", 0, 2),
  3912.     FullCaseEntry("п", 1, 2),
  3913.     FullCaseEntry("Ė", 0, 2),
  3914.     FullCaseEntry("ė", 1, 2),
  3915.     FullCaseEntry("Р", 0, 2),
  3916.     FullCaseEntry("р", 1, 2),
  3917.     FullCaseEntry("С", 0, 2),
  3918.     FullCaseEntry("с", 1, 2),
  3919.     FullCaseEntry("Ę", 0, 2),
  3920.     FullCaseEntry("ę", 1, 2),
  3921.     FullCaseEntry("Т", 0, 2),
  3922.     FullCaseEntry("т", 1, 2),
  3923.     FullCaseEntry("У", 0, 2),
  3924.     FullCaseEntry("у", 1, 2),
  3925.     FullCaseEntry("Ě", 0, 2),
  3926.     FullCaseEntry("ě", 1, 2),
  3927.     FullCaseEntry("Ф", 0, 2),
  3928.     FullCaseEntry("ф", 1, 2),
  3929.     FullCaseEntry("Х", 0, 2),
  3930.     FullCaseEntry("х", 1, 2),
  3931.     FullCaseEntry("Ĝ", 0, 2),
  3932.     FullCaseEntry("ĝ", 1, 2),
  3933.     FullCaseEntry("Ц", 0, 2),
  3934.     FullCaseEntry("ц", 1, 2),
  3935.     FullCaseEntry("ᾀ", 0, 3),
  3936.     FullCaseEntry("ἀι", 1, 3),
  3937.     FullCaseEntry("ᾈ", 2, 3),
  3938.     FullCaseEntry("Ч", 0, 2),
  3939.     FullCaseEntry("ч", 1, 2),
  3940.     FullCaseEntry("ᾁ", 0, 3),
  3941.     FullCaseEntry("ἁι", 1, 3),
  3942.     FullCaseEntry("ᾉ", 2, 3),
  3943.     FullCaseEntry("Ğ", 0, 2),
  3944.     FullCaseEntry("ğ", 1, 2),
  3945.     FullCaseEntry("Ш", 0, 2),
  3946.     FullCaseEntry("ш", 1, 2),
  3947.     FullCaseEntry("ᾂ", 0, 3),
  3948.     FullCaseEntry("ἂι", 1, 3),
  3949.     FullCaseEntry("ᾊ", 2, 3),
  3950.     FullCaseEntry("Щ", 0, 2),
  3951.     FullCaseEntry("щ", 1, 2),
  3952.     FullCaseEntry("ᾃ", 0, 3),
  3953.     FullCaseEntry("ἃι", 1, 3),
  3954.     FullCaseEntry("ᾋ", 2, 3),
  3955.     FullCaseEntry("Ġ", 0, 2),
  3956.     FullCaseEntry("ġ", 1, 2),
  3957.     FullCaseEntry("Ъ", 0, 2),
  3958.     FullCaseEntry("ъ", 1, 2),
  3959.     FullCaseEntry("ᾄ", 0, 3),
  3960.     FullCaseEntry("ἄι", 1, 3),
  3961.     FullCaseEntry("ᾌ", 2, 3),
  3962.     FullCaseEntry("Ы", 0, 2),
  3963.     FullCaseEntry("ы", 1, 2),
  3964.     FullCaseEntry("Ḁ", 0, 2),
  3965.     FullCaseEntry("ḁ", 1, 2),
  3966.     FullCaseEntry("ᾅ", 0, 3),
  3967.     FullCaseEntry("ἅι", 1, 3),
  3968.     FullCaseEntry("ᾍ", 2, 3),
  3969.     FullCaseEntry("Ģ", 0, 2),
  3970.     FullCaseEntry("ģ", 1, 2),
  3971.     FullCaseEntry("Ь", 0, 2),
  3972.     FullCaseEntry("ь", 1, 2),
  3973.     FullCaseEntry("ᾆ", 0, 3),
  3974.     FullCaseEntry("ἆι", 1, 3),
  3975.     FullCaseEntry("ᾎ", 2, 3),
  3976.     FullCaseEntry("Э", 0, 2),
  3977.     FullCaseEntry("э", 1, 2),
  3978.     FullCaseEntry("Ḃ", 0, 2),
  3979.     FullCaseEntry("ḃ", 1, 2),
  3980.     FullCaseEntry("ᾇ", 0, 3),
  3981.     FullCaseEntry("ἇι", 1, 3),
  3982.     FullCaseEntry("ᾏ", 2, 3),
  3983.     FullCaseEntry("Ĥ", 0, 2),
  3984.     FullCaseEntry("ĥ", 1, 2),
  3985.     FullCaseEntry("Ю", 0, 2),
  3986.     FullCaseEntry("ю", 1, 2),
  3987.     FullCaseEntry("ᾈ", 0, 3),
  3988.     FullCaseEntry("ἀι", 1, 3),
  3989.     FullCaseEntry("ᾀ", 2, 3),
  3990.     FullCaseEntry("Я", 0, 2),
  3991.     FullCaseEntry("я", 1, 2),
  3992.     FullCaseEntry("Ḅ", 0, 2),
  3993.     FullCaseEntry("ḅ", 1, 2),
  3994.     FullCaseEntry("ᾉ", 0, 3),
  3995.     FullCaseEntry("ἁι", 1, 3),
  3996.     FullCaseEntry("ᾁ", 2, 3),
  3997.     FullCaseEntry("Ħ", 0, 2),
  3998.     FullCaseEntry("ħ", 1, 2),
  3999.     FullCaseEntry("ᾊ", 0, 3),
  4000.     FullCaseEntry("ἂι", 1, 3),
  4001.     FullCaseEntry("ᾂ", 2, 3),
  4002.     FullCaseEntry("Ḇ", 0, 2),
  4003.     FullCaseEntry("ḇ", 1, 2),
  4004.     FullCaseEntry("ᾋ", 0, 3),
  4005.     FullCaseEntry("ἃι", 1, 3),
  4006.     FullCaseEntry("ᾃ", 2, 3),
  4007.     FullCaseEntry("Ĩ", 0, 2),
  4008.     FullCaseEntry("ĩ", 1, 2),
  4009.     FullCaseEntry("ᾌ", 0, 3),
  4010.     FullCaseEntry("ἄι", 1, 3),
  4011.     FullCaseEntry("ᾄ", 2, 3),
  4012.     FullCaseEntry("Ḉ", 0, 2),
  4013.     FullCaseEntry("ḉ", 1, 2),
  4014.     FullCaseEntry("ᾍ", 0, 3),
  4015.     FullCaseEntry("ἅι", 1, 3),
  4016.     FullCaseEntry("ᾅ", 2, 3),
  4017.     FullCaseEntry("Ī", 0, 2),
  4018.     FullCaseEntry("ī", 1, 2),
  4019.     FullCaseEntry("ᾎ", 0, 3),
  4020.     FullCaseEntry("ἆι", 1, 3),
  4021.     FullCaseEntry("ᾆ", 2, 3),
  4022.     FullCaseEntry("Ḋ", 0, 2),
  4023.     FullCaseEntry("ḋ", 1, 2),
  4024.     FullCaseEntry("ᾏ", 0, 3),
  4025.     FullCaseEntry("ἇι", 1, 3),
  4026.     FullCaseEntry("ᾇ", 2, 3),
  4027.     FullCaseEntry("Ĭ", 0, 2),
  4028.     FullCaseEntry("ĭ", 1, 2),
  4029.     FullCaseEntry("ᾐ", 0, 3),
  4030.     FullCaseEntry("ἠι", 1, 3),
  4031.     FullCaseEntry("ᾘ", 2, 3),
  4032.     FullCaseEntry("Ḍ", 0, 2),
  4033.     FullCaseEntry("ḍ", 1, 2),
  4034.     FullCaseEntry("ᾑ", 0, 3),
  4035.     FullCaseEntry("ἡι", 1, 3),
  4036.     FullCaseEntry("ᾙ", 2, 3),
  4037.     FullCaseEntry("Į", 0, 2),
  4038.     FullCaseEntry("į", 1, 2),
  4039.     FullCaseEntry("ᾒ", 0, 3),
  4040.     FullCaseEntry("ἢι", 1, 3),
  4041.     FullCaseEntry("ᾚ", 2, 3),
  4042.     FullCaseEntry("Ḏ", 0, 2),
  4043.     FullCaseEntry("ḏ", 1, 2),
  4044.     FullCaseEntry("ᾓ", 0, 3),
  4045.     FullCaseEntry("ἣι", 1, 3),
  4046.     FullCaseEntry("ᾛ", 2, 3),
  4047.     FullCaseEntry("İ", 0, 2),
  4048.     FullCaseEntry("i̇", 1, 2),
  4049.     FullCaseEntry("ᾔ", 0, 3),
  4050.     FullCaseEntry("ἤι", 1, 3),
  4051.     FullCaseEntry("ᾜ", 2, 3),
  4052.     FullCaseEntry("Ḑ", 0, 2),
  4053.     FullCaseEntry("ḑ", 1, 2),
  4054.     FullCaseEntry("ᾕ", 0, 3),
  4055.     FullCaseEntry("ἥι", 1, 3),
  4056.     FullCaseEntry("ᾝ", 2, 3),
  4057.     FullCaseEntry("IJ", 0, 2),
  4058.     FullCaseEntry("ij", 1, 2),
  4059.     FullCaseEntry("ᾖ", 0, 3),
  4060.     FullCaseEntry("ἦι", 1, 3),
  4061.     FullCaseEntry("ᾞ", 2, 3),
  4062.     FullCaseEntry("Ḓ", 0, 2),
  4063.     FullCaseEntry("ḓ", 1, 2),
  4064.     FullCaseEntry("ᾗ", 0, 3),
  4065.     FullCaseEntry("ἧι", 1, 3),
  4066.     FullCaseEntry("ᾟ", 2, 3),
  4067.     FullCaseEntry("Ĵ", 0, 2),
  4068.     FullCaseEntry("ĵ", 1, 2),
  4069.     FullCaseEntry("ᾘ", 0, 3),
  4070.     FullCaseEntry("ἠι", 1, 3),
  4071.     FullCaseEntry("ᾐ", 2, 3),
  4072.     FullCaseEntry("Ḕ", 0, 2),
  4073.     FullCaseEntry("ḕ", 1, 2),
  4074.     FullCaseEntry("ᾙ", 0, 3),
  4075.     FullCaseEntry("ἡι", 1, 3),
  4076.     FullCaseEntry("ᾑ", 2, 3),
  4077.     FullCaseEntry("Ķ", 0, 2),
  4078.     FullCaseEntry("ķ", 1, 2),
  4079.     FullCaseEntry("ᾚ", 0, 3),
  4080.     FullCaseEntry("ἢι", 1, 3),
  4081.     FullCaseEntry("ᾒ", 2, 3),
  4082.     FullCaseEntry("Ḗ", 0, 2),
  4083.     FullCaseEntry("ḗ", 1, 2),
  4084.     FullCaseEntry("ᾛ", 0, 3),
  4085.     FullCaseEntry("ἣι", 1, 3),
  4086.     FullCaseEntry("ᾓ", 2, 3),
  4087.     FullCaseEntry("ᾜ", 0, 3),
  4088.     FullCaseEntry("ἤι", 1, 3),
  4089.     FullCaseEntry("ᾔ", 2, 3),
  4090.     FullCaseEntry("Ĺ", 0, 2),
  4091.     FullCaseEntry("ĺ", 1, 2),
  4092.     FullCaseEntry("Ḙ", 0, 2),
  4093.     FullCaseEntry("ḙ", 1, 2),
  4094.     FullCaseEntry("ᾝ", 0, 3),
  4095.     FullCaseEntry("ἥι", 1, 3),
  4096.     FullCaseEntry("ᾕ", 2, 3),
  4097.     FullCaseEntry("ᾞ", 0, 3),
  4098.     FullCaseEntry("ἦι", 1, 3),
  4099.     FullCaseEntry("ᾖ", 2, 3),
  4100.     FullCaseEntry("Ļ", 0, 2),
  4101.     FullCaseEntry("ļ", 1, 2),
  4102.     FullCaseEntry("Ḛ", 0, 2),
  4103.     FullCaseEntry("ḛ", 1, 2),
  4104.     FullCaseEntry("ᾟ", 0, 3),
  4105.     FullCaseEntry("ἧι", 1, 3),
  4106.     FullCaseEntry("ᾗ", 2, 3),
  4107.     FullCaseEntry("ᾠ", 0, 3),
  4108.     FullCaseEntry("ὠι", 1, 3),
  4109.     FullCaseEntry("ᾨ", 2, 3),
  4110.     FullCaseEntry("Ľ", 0, 2),
  4111.     FullCaseEntry("ľ", 1, 2),
  4112.     FullCaseEntry("Ḝ", 0, 2),
  4113.     FullCaseEntry("ḝ", 1, 2),
  4114.     FullCaseEntry("ᾡ", 0, 3),
  4115.     FullCaseEntry("ὡι", 1, 3),
  4116.     FullCaseEntry("ᾩ", 2, 3),
  4117.     FullCaseEntry("Ω", 0, 3),
  4118.     FullCaseEntry("ω", 1, 3),
  4119.     FullCaseEntry("Ω", 2, 3),
  4120.     FullCaseEntry("ᾢ", 0, 3),
  4121.     FullCaseEntry("ὢι", 1, 3),
  4122.     FullCaseEntry("ᾪ", 2, 3),
  4123.     FullCaseEntry("Ŀ", 0, 2),
  4124.     FullCaseEntry("ŀ", 1, 2),
  4125.     FullCaseEntry("Ḟ", 0, 2),
  4126.     FullCaseEntry("ḟ", 1, 2),
  4127.     FullCaseEntry("ᾣ", 0, 3),
  4128.     FullCaseEntry("ὣι", 1, 3),
  4129.     FullCaseEntry("ᾫ", 2, 3),
  4130.     FullCaseEntry("ᾤ", 0, 3),
  4131.     FullCaseEntry("ὤι", 1, 3),
  4132.     FullCaseEntry("ᾬ", 2, 3),
  4133.     FullCaseEntry("Ł", 0, 2),
  4134.     FullCaseEntry("ł", 1, 2),
  4135.     FullCaseEntry("Ḡ", 0, 2),
  4136.     FullCaseEntry("ḡ", 1, 2),
  4137.     FullCaseEntry("ᾥ", 0, 3),
  4138.     FullCaseEntry("ὥι", 1, 3),
  4139.     FullCaseEntry("ᾭ", 2, 3),
  4140.     FullCaseEntry("K", 0, 3),
  4141.     FullCaseEntry("k", 1, 3),
  4142.     FullCaseEntry("K", 2, 3),
  4143.     FullCaseEntry("ᾦ", 0, 3),
  4144.     FullCaseEntry("ὦι", 1, 3),
  4145.     FullCaseEntry("ᾮ", 2, 3),
  4146.     FullCaseEntry("Å", 0, 3),
  4147.     FullCaseEntry("å", 1, 3),
  4148.     FullCaseEntry("Å", 2, 3),
  4149.     FullCaseEntry("Ń", 0, 2),
  4150.     FullCaseEntry("ń", 1, 2),
  4151.     FullCaseEntry("Ḣ", 0, 2),
  4152.     FullCaseEntry("ḣ", 1, 2),
  4153.     FullCaseEntry("ᾧ", 0, 3),
  4154.     FullCaseEntry("ὧι", 1, 3),
  4155.     FullCaseEntry("ᾯ", 2, 3),
  4156.     FullCaseEntry("ᾨ", 0, 3),
  4157.     FullCaseEntry("ὠι", 1, 3),
  4158.     FullCaseEntry("ᾠ", 2, 3),
  4159.     FullCaseEntry("Ņ", 0, 2),
  4160.     FullCaseEntry("ņ", 1, 2),
  4161.     FullCaseEntry("Ḥ", 0, 2),
  4162.     FullCaseEntry("ḥ", 1, 2),
  4163.     FullCaseEntry("ᾩ", 0, 3),
  4164.     FullCaseEntry("ὡι", 1, 3),
  4165.     FullCaseEntry("ᾡ", 2, 3),
  4166.     FullCaseEntry("ᾪ", 0, 3),
  4167.     FullCaseEntry("ὢι", 1, 3),
  4168.     FullCaseEntry("ᾢ", 2, 3),
  4169.     FullCaseEntry("Ň", 0, 2),
  4170.     FullCaseEntry("ň", 1, 2),
  4171.     FullCaseEntry("Ḧ", 0, 2),
  4172.     FullCaseEntry("ḧ", 1, 2),
  4173.     FullCaseEntry("ᾫ", 0, 3),
  4174.     FullCaseEntry("ὣι", 1, 3),
  4175.     FullCaseEntry("ᾣ", 2, 3),
  4176.     FullCaseEntry("ᾬ", 0, 3),
  4177.     FullCaseEntry("ὤι", 1, 3),
  4178.     FullCaseEntry("ᾤ", 2, 3),
  4179.     FullCaseEntry("ʼn", 0, 2),
  4180.     FullCaseEntry("ʼn", 1, 2),
  4181.     FullCaseEntry("Ḩ", 0, 2),
  4182.     FullCaseEntry("ḩ", 1, 2),
  4183.     FullCaseEntry("ᾭ", 0, 3),
  4184.     FullCaseEntry("ὥι", 1, 3),
  4185.     FullCaseEntry("ᾥ", 2, 3),
  4186.     FullCaseEntry("Ⅎ", 0, 2),
  4187.     FullCaseEntry("ⅎ", 1, 2),
  4188.     FullCaseEntry("Ŋ", 0, 2),
  4189.     FullCaseEntry("ŋ", 1, 2),
  4190.     FullCaseEntry("ᾮ", 0, 3),
  4191.     FullCaseEntry("ὦι", 1, 3),
  4192.     FullCaseEntry("ᾦ", 2, 3),
  4193.     FullCaseEntry("Ḫ", 0, 2),
  4194.     FullCaseEntry("ḫ", 1, 2),
  4195.     FullCaseEntry("ᾯ", 0, 3),
  4196.     FullCaseEntry("ὧι", 1, 3),
  4197.     FullCaseEntry("ᾧ", 2, 3),
  4198.     FullCaseEntry("Ō", 0, 2),
  4199.     FullCaseEntry("ō", 1, 2),
  4200.     FullCaseEntry("Ḭ", 0, 2),
  4201.     FullCaseEntry("ḭ", 1, 2),
  4202.     FullCaseEntry("Ŏ", 0, 2),
  4203.     FullCaseEntry("ŏ", 1, 2),
  4204.     FullCaseEntry("ᾲ", 0, 2),
  4205.     FullCaseEntry("ὰι", 1, 2),
  4206.     FullCaseEntry("Ḯ", 0, 2),
  4207.     FullCaseEntry("ḯ", 1, 2),
  4208.     FullCaseEntry("ᾳ", 0, 3),
  4209.     FullCaseEntry("αι", 1, 3),
  4210.     FullCaseEntry("ᾼ", 2, 3),
  4211.     FullCaseEntry("Ő", 0, 2),
  4212.     FullCaseEntry("ő", 1, 2),
  4213.     FullCaseEntry("ᾴ", 0, 2),
  4214.     FullCaseEntry("άι", 1, 2),
  4215.     FullCaseEntry("Ḱ", 0, 2),
  4216.     FullCaseEntry("ḱ", 1, 2),
  4217.     FullCaseEntry("Œ", 0, 2),
  4218.     FullCaseEntry("œ", 1, 2),
  4219.     FullCaseEntry("ᾶ", 0, 2),
  4220.     FullCaseEntry("ᾶ", 1, 2),
  4221.     FullCaseEntry("Ḳ", 0, 2),
  4222.     FullCaseEntry("ḳ", 1, 2),
  4223.     FullCaseEntry("ᾷ", 0, 2),
  4224.     FullCaseEntry("ᾶι", 1, 2),
  4225.     FullCaseEntry("Ŕ", 0, 2),
  4226.     FullCaseEntry("ŕ", 1, 2),
  4227.     FullCaseEntry("Ᾰ", 0, 2),
  4228.     FullCaseEntry("ᾰ", 1, 2),
  4229.     FullCaseEntry("Ḵ", 0, 2),
  4230.     FullCaseEntry("ḵ", 1, 2),
  4231.     FullCaseEntry("Ᾱ", 0, 2),
  4232.     FullCaseEntry("ᾱ", 1, 2),
  4233.     FullCaseEntry("Ŗ", 0, 2),
  4234.     FullCaseEntry("ŗ", 1, 2),
  4235.     FullCaseEntry("Ѡ", 0, 2),
  4236.     FullCaseEntry("ѡ", 1, 2),
  4237.     FullCaseEntry("Ὰ", 0, 2),
  4238.     FullCaseEntry("ὰ", 1, 2),
  4239.     FullCaseEntry("Ḷ", 0, 2),
  4240.     FullCaseEntry("ḷ", 1, 2),
  4241.     FullCaseEntry("Ά", 0, 2),
  4242.     FullCaseEntry("ά", 1, 2),
  4243.     FullCaseEntry("Ř", 0, 2),
  4244.     FullCaseEntry("ř", 1, 2),
  4245.     FullCaseEntry("Ѣ", 0, 2),
  4246.     FullCaseEntry("ѣ", 1, 2),
  4247.     FullCaseEntry("ᾼ", 0, 3),
  4248.     FullCaseEntry("αι", 1, 3),
  4249.     FullCaseEntry("ᾳ", 2, 3),
  4250.     FullCaseEntry("Ḹ", 0, 2),
  4251.     FullCaseEntry("ḹ", 1, 2),
  4252.     FullCaseEntry("Ś", 0, 2),
  4253.     FullCaseEntry("ś", 1, 2),
  4254.     FullCaseEntry("Ѥ", 0, 2),
  4255.     FullCaseEntry("ѥ", 1, 2),
  4256.     FullCaseEntry("ι", 0, 4),
  4257.     FullCaseEntry("ι", 1, 4),
  4258.     FullCaseEntry("ͅ", 2, 4),
  4259.     FullCaseEntry("Ι", 3, 4),
  4260.     FullCaseEntry("Ḻ", 0, 2),
  4261.     FullCaseEntry("ḻ", 1, 2),
  4262.     FullCaseEntry("Ŝ", 0, 2),
  4263.     FullCaseEntry("ŝ", 1, 2),
  4264.     FullCaseEntry("Ѧ", 0, 2),
  4265.     FullCaseEntry("ѧ", 1, 2),
  4266.     FullCaseEntry("Ḽ", 0, 2),
  4267.     FullCaseEntry("ḽ", 1, 2),
  4268.     FullCaseEntry("Ş", 0, 2),
  4269.     FullCaseEntry("ş", 1, 2),
  4270.     FullCaseEntry("Ѩ", 0, 2),
  4271.     FullCaseEntry("ѩ", 1, 2),
  4272.     FullCaseEntry("ῂ", 0, 2),
  4273.     FullCaseEntry("ὴι", 1, 2),
  4274.     FullCaseEntry("A", 0, 2),
  4275.     FullCaseEntry("a", 1, 2),
  4276.     FullCaseEntry("Ḿ", 0, 2),
  4277.     FullCaseEntry("ḿ", 1, 2),
  4278.     FullCaseEntry("ῃ", 0, 3),
  4279.     FullCaseEntry("ηι", 1, 3),
  4280.     FullCaseEntry("ῌ", 2, 3),
  4281.     FullCaseEntry("B", 0, 2),
  4282.     FullCaseEntry("b", 1, 2),
  4283.     FullCaseEntry("Š", 0, 2),
  4284.     FullCaseEntry("š", 1, 2),
  4285.     FullCaseEntry("Ѫ", 0, 2),
  4286.     FullCaseEntry("ѫ", 1, 2),
  4287.     FullCaseEntry("ῄ", 0, 2),
  4288.     FullCaseEntry("ήι", 1, 2),
  4289.     FullCaseEntry("C", 0, 2),
  4290.     FullCaseEntry("c", 1, 2),
  4291.     FullCaseEntry("Ṁ", 0, 2),
  4292.     FullCaseEntry("ṁ", 1, 2),
  4293.     FullCaseEntry("D", 0, 2),
  4294.     FullCaseEntry("d", 1, 2),
  4295.     FullCaseEntry("Ţ", 0, 2),
  4296.     FullCaseEntry("ţ", 1, 2),
  4297.     FullCaseEntry("Ѭ", 0, 2),
  4298.     FullCaseEntry("ѭ", 1, 2),
  4299.     FullCaseEntry("ῆ", 0, 2),
  4300.     FullCaseEntry("ῆ", 1, 2),
  4301.     FullCaseEntry("E", 0, 2),
  4302.     FullCaseEntry("e", 1, 2),
  4303.     FullCaseEntry("Ṃ", 0, 2),
  4304.     FullCaseEntry("ṃ", 1, 2),
  4305.     FullCaseEntry("ῇ", 0, 2),
  4306.     FullCaseEntry("ῆι", 1, 2),
  4307.     FullCaseEntry("F", 0, 2),
  4308.     FullCaseEntry("f", 1, 2),
  4309.     FullCaseEntry("Ť", 0, 2),
  4310.     FullCaseEntry("ť", 1, 2),
  4311.     FullCaseEntry("Ѯ", 0, 2),
  4312.     FullCaseEntry("ѯ", 1, 2),
  4313.     FullCaseEntry("Ὲ", 0, 2),
  4314.     FullCaseEntry("ὲ", 1, 2),
  4315.     FullCaseEntry("G", 0, 2),
  4316.     FullCaseEntry("g", 1, 2),
  4317.     FullCaseEntry("Ṅ", 0, 2),
  4318.     FullCaseEntry("ṅ", 1, 2),
  4319.     FullCaseEntry("Έ", 0, 2),
  4320.     FullCaseEntry("έ", 1, 2),
  4321.     FullCaseEntry("H", 0, 2),
  4322.     FullCaseEntry("h", 1, 2),
  4323.     FullCaseEntry("Ŧ", 0, 2),
  4324.     FullCaseEntry("ŧ", 1, 2),
  4325.     FullCaseEntry("Ѱ", 0, 2),
  4326.     FullCaseEntry("ѱ", 1, 2),
  4327.     FullCaseEntry("Ὴ", 0, 2),
  4328.     FullCaseEntry("ὴ", 1, 2),
  4329.     FullCaseEntry("I", 0, 2),
  4330.     FullCaseEntry("i", 1, 2),
  4331.     FullCaseEntry("Ṇ", 0, 2),
  4332.     FullCaseEntry("ṇ", 1, 2),
  4333.     FullCaseEntry("Ή", 0, 2),
  4334.     FullCaseEntry("ή", 1, 2),
  4335.     FullCaseEntry("J", 0, 2),
  4336.     FullCaseEntry("j", 1, 2),
  4337.     FullCaseEntry("Ũ", 0, 2),
  4338.     FullCaseEntry("ũ", 1, 2),
  4339.     FullCaseEntry("Ѳ", 0, 2),
  4340.     FullCaseEntry("ѳ", 1, 2),
  4341.     FullCaseEntry("ῌ", 0, 3),
  4342.     FullCaseEntry("ηι", 1, 3),
  4343.     FullCaseEntry("ῃ", 2, 3),
  4344.     FullCaseEntry("K", 0, 2),
  4345.     FullCaseEntry("k", 1, 2),
  4346.     FullCaseEntry("Ṉ", 0, 2),
  4347.     FullCaseEntry("ṉ", 1, 2),
  4348.     FullCaseEntry("L", 0, 2),
  4349.     FullCaseEntry("l", 1, 2),
  4350.     FullCaseEntry("Ū", 0, 2),
  4351.     FullCaseEntry("ū", 1, 2),
  4352.     FullCaseEntry("Ѵ", 0, 2),
  4353.     FullCaseEntry("ѵ", 1, 2),
  4354.     FullCaseEntry("M", 0, 2),
  4355.     FullCaseEntry("m", 1, 2),
  4356.     FullCaseEntry("Ṋ", 0, 2),
  4357.     FullCaseEntry("ṋ", 1, 2),
  4358.     FullCaseEntry("N", 0, 2),
  4359.     FullCaseEntry("n", 1, 2),
  4360.     FullCaseEntry("Ŭ", 0, 2),
  4361.     FullCaseEntry("ŭ", 1, 2),
  4362.     FullCaseEntry("Ѷ", 0, 2),
  4363.     FullCaseEntry("ѷ", 1, 2),
  4364.     FullCaseEntry("O", 0, 2),
  4365.     FullCaseEntry("o", 1, 2),
  4366.     FullCaseEntry("Ṍ", 0, 2),
  4367.     FullCaseEntry("ṍ", 1, 2),
  4368.     FullCaseEntry("P", 0, 2),
  4369.     FullCaseEntry("p", 1, 2),
  4370.     FullCaseEntry("Ů", 0, 2),
  4371.     FullCaseEntry("ů", 1, 2),
  4372.     FullCaseEntry("Ѹ", 0, 2),
  4373.     FullCaseEntry("ѹ", 1, 2),
  4374.     FullCaseEntry("Ⴀ", 0, 2),
  4375.     FullCaseEntry("ⴀ", 1, 2),
  4376.     FullCaseEntry("ῒ", 0, 2),
  4377.     FullCaseEntry("ῒ", 1, 2),
  4378.     FullCaseEntry("Q", 0, 2),
  4379.     FullCaseEntry("q", 1, 2),
  4380.     FullCaseEntry("Ⴁ", 0, 2),
  4381.     FullCaseEntry("ⴁ", 1, 2),
  4382.     FullCaseEntry("Ṏ", 0, 2),
  4383.     FullCaseEntry("ṏ", 1, 2),
  4384.     FullCaseEntry("ΐ", 0, 3),
  4385.     FullCaseEntry("ΐ", 1, 3),
  4386.     FullCaseEntry("ΐ", 2, 3),
  4387.     FullCaseEntry("R", 0, 2),
  4388.     FullCaseEntry("r", 1, 2),
  4389.     FullCaseEntry("Ű", 0, 2),
  4390.     FullCaseEntry("ű", 1, 2),
  4391.     FullCaseEntry("Ѻ", 0, 2),
  4392.     FullCaseEntry("ѻ", 1, 2),
  4393.     FullCaseEntry("Ⴂ", 0, 2),
  4394.     FullCaseEntry("ⴂ", 1, 2),
  4395.     FullCaseEntry("S", 0, 2),
  4396.     FullCaseEntry("s", 1, 2),
  4397.     FullCaseEntry("Ⴃ", 0, 2),
  4398.     FullCaseEntry("ⴃ", 1, 2),
  4399.     FullCaseEntry("Ṑ", 0, 2),
  4400.     FullCaseEntry("ṑ", 1, 2),
  4401.     FullCaseEntry("T", 0, 2),
  4402.     FullCaseEntry("t", 1, 2),
  4403.     FullCaseEntry("Ų", 0, 2),
  4404.     FullCaseEntry("ų", 1, 2),
  4405.     FullCaseEntry("Ѽ", 0, 2),
  4406.     FullCaseEntry("ѽ", 1, 2),
  4407.     FullCaseEntry("Ⴄ", 0, 2),
  4408.     FullCaseEntry("ⴄ", 1, 2),
  4409.     FullCaseEntry("ῖ", 0, 2),
  4410.     FullCaseEntry("ῖ", 1, 2),
  4411.     FullCaseEntry("U", 0, 2),
  4412.     FullCaseEntry("u", 1, 2),
  4413.     FullCaseEntry("Ⴅ", 0, 2),
  4414.     FullCaseEntry("ⴅ", 1, 2),
  4415.     FullCaseEntry("Ṓ", 0, 2),
  4416.     FullCaseEntry("ṓ", 1, 2),
  4417.     FullCaseEntry("ῗ", 0, 2),
  4418.     FullCaseEntry("ῗ", 1, 2),
  4419.     FullCaseEntry("V", 0, 2),
  4420.     FullCaseEntry("v", 1, 2),
  4421.     FullCaseEntry("Ŵ", 0, 2),
  4422.     FullCaseEntry("ŵ", 1, 2),
  4423.     FullCaseEntry("Ѿ", 0, 2),
  4424.     FullCaseEntry("ѿ", 1, 2),
  4425.     FullCaseEntry("Ⴆ", 0, 2),
  4426.     FullCaseEntry("ⴆ", 1, 2),
  4427.     FullCaseEntry("Ῐ", 0, 2),
  4428.     FullCaseEntry("ῐ", 1, 2),
  4429.     FullCaseEntry("Ⰰ", 0, 2),
  4430.     FullCaseEntry("ⰰ", 1, 2),
  4431.     FullCaseEntry("W", 0, 2),
  4432.     FullCaseEntry("w", 1, 2),
  4433.     FullCaseEntry("Ⴇ", 0, 2),
  4434.     FullCaseEntry("ⴇ", 1, 2),
  4435.     FullCaseEntry("Ṕ", 0, 2),
  4436.     FullCaseEntry("ṕ", 1, 2),
  4437.     FullCaseEntry("Ῑ", 0, 2),
  4438.     FullCaseEntry("ῑ", 1, 2),
  4439.     FullCaseEntry("Ⰱ", 0, 2),
  4440.     FullCaseEntry("ⰱ", 1, 2),
  4441.     FullCaseEntry("X", 0, 2),
  4442.     FullCaseEntry("x", 1, 2),
  4443.     FullCaseEntry("Ŷ", 0, 2),
  4444.     FullCaseEntry("ŷ", 1, 2),
  4445.     FullCaseEntry("Ҁ", 0, 2),
  4446.     FullCaseEntry("ҁ", 1, 2),
  4447.     FullCaseEntry("Ⴈ", 0, 2),
  4448.     FullCaseEntry("ⴈ", 1, 2),
  4449.     FullCaseEntry("Ὶ", 0, 2),
  4450.     FullCaseEntry("ὶ", 1, 2),
  4451.     FullCaseEntry("Ⰲ", 0, 2),
  4452.     FullCaseEntry("ⰲ", 1, 2),
  4453.     FullCaseEntry("Y", 0, 2),
  4454.     FullCaseEntry("y", 1, 2),
  4455.     FullCaseEntry("Ⴉ", 0, 2),
  4456.     FullCaseEntry("ⴉ", 1, 2),
  4457.     FullCaseEntry("Ṗ", 0, 2),
  4458.     FullCaseEntry("ṗ", 1, 2),
  4459.     FullCaseEntry("Ί", 0, 2),
  4460.     FullCaseEntry("ί", 1, 2),
  4461.     FullCaseEntry("Ⅰ", 0, 2),
  4462.     FullCaseEntry("ⅰ", 1, 2),
  4463.     FullCaseEntry("Ⰳ", 0, 2),
  4464.     FullCaseEntry("ⰳ", 1, 2),
  4465.     FullCaseEntry("Z", 0, 2),
  4466.     FullCaseEntry("z", 1, 2),
  4467.     FullCaseEntry("Ÿ", 0, 2),
  4468.     FullCaseEntry("ÿ", 1, 2),
  4469.     FullCaseEntry("Ⴊ", 0, 2),
  4470.     FullCaseEntry("ⴊ", 1, 2),
  4471.     FullCaseEntry("Ⅱ", 0, 2),
  4472.     FullCaseEntry("ⅱ", 1, 2),
  4473.     FullCaseEntry("Ⰴ", 0, 2),
  4474.     FullCaseEntry("ⰴ", 1, 2),
  4475.     FullCaseEntry("Ź", 0, 2),
  4476.     FullCaseEntry("ź", 1, 2),
  4477.     FullCaseEntry("Ⴋ", 0, 2),
  4478.     FullCaseEntry("ⴋ", 1, 2),
  4479.     FullCaseEntry("Ṙ", 0, 2),
  4480.     FullCaseEntry("ṙ", 1, 2),
  4481.     FullCaseEntry("Ⅲ", 0, 2),
  4482.     FullCaseEntry("ⅲ", 1, 2),
  4483.     FullCaseEntry("Ⰵ", 0, 2),
  4484.     FullCaseEntry("ⰵ", 1, 2),
  4485.     FullCaseEntry("Ⴌ", 0, 2),
  4486.     FullCaseEntry("ⴌ", 1, 2),
  4487.     FullCaseEntry("Ⅳ", 0, 2),
  4488.     FullCaseEntry("ⅳ", 1, 2),
  4489.     FullCaseEntry("Ⰶ", 0, 2),
  4490.     FullCaseEntry("ⰶ", 1, 2),
  4491.     FullCaseEntry("Ż", 0, 2),
  4492.     FullCaseEntry("ż", 1, 2),
  4493.     FullCaseEntry("Ⴍ", 0, 2),
  4494.     FullCaseEntry("ⴍ", 1, 2),
  4495.     FullCaseEntry("Ṛ", 0, 2),
  4496.     FullCaseEntry("ṛ", 1, 2),
  4497.     FullCaseEntry("Ⅴ", 0, 2),
  4498.     FullCaseEntry("ⅴ", 1, 2),
  4499.     FullCaseEntry("Ⰷ", 0, 2),
  4500.     FullCaseEntry("ⰷ", 1, 2),
  4501.     FullCaseEntry("Ⴎ", 0, 2),
  4502.     FullCaseEntry("ⴎ", 1, 2),
  4503.     FullCaseEntry("Ⅵ", 0, 2),
  4504.     FullCaseEntry("ⅵ", 1, 2),
  4505.     FullCaseEntry("Ⰸ", 0, 2),
  4506.     FullCaseEntry("ⰸ", 1, 2),
  4507.     FullCaseEntry("Ž", 0, 2),
  4508.     FullCaseEntry("ž", 1, 2),
  4509.     FullCaseEntry("Ⴏ", 0, 2),
  4510.     FullCaseEntry("ⴏ", 1, 2),
  4511.     FullCaseEntry("Ṝ", 0, 2),
  4512.     FullCaseEntry("ṝ", 1, 2),
  4513.     FullCaseEntry("Ⅶ", 0, 2),
  4514.     FullCaseEntry("ⅶ", 1, 2),
  4515.     FullCaseEntry("Ⰹ", 0, 2),
  4516.     FullCaseEntry("ⰹ", 1, 2),
  4517.     FullCaseEntry("Ⴐ", 0, 2),
  4518.     FullCaseEntry("ⴐ", 1, 2),
  4519.     FullCaseEntry("ῢ", 0, 2),
  4520.     FullCaseEntry("ῢ", 1, 2),
  4521.     FullCaseEntry("Ⅷ", 0, 2),
  4522.     FullCaseEntry("ⅷ", 1, 2),
  4523.     FullCaseEntry("Ⰺ", 0, 2),
  4524.     FullCaseEntry("ⰺ", 1, 2),
  4525.     FullCaseEntry("ſ", 0, 3),
  4526.     FullCaseEntry("s", 1, 3),
  4527.     FullCaseEntry("S", 2, 3),
  4528.     FullCaseEntry("Ⴑ", 0, 2),
  4529.     FullCaseEntry("ⴑ", 1, 2),
  4530.     FullCaseEntry("Ṟ", 0, 2),
  4531.     FullCaseEntry("ṟ", 1, 2),
  4532.     FullCaseEntry("ΰ", 0, 3),
  4533.     FullCaseEntry("ΰ", 1, 3),
  4534.     FullCaseEntry("ΰ", 2, 3),
  4535.     FullCaseEntry("Ⅸ", 0, 2),
  4536.     FullCaseEntry("ⅸ", 1, 2),
  4537.     FullCaseEntry("Ⰻ", 0, 2),
  4538.     FullCaseEntry("ⰻ", 1, 2),
  4539.     FullCaseEntry("Ҋ", 0, 2),
  4540.     FullCaseEntry("ҋ", 1, 2),
  4541.     FullCaseEntry("Ⴒ", 0, 2),
  4542.     FullCaseEntry("ⴒ", 1, 2),
  4543.     FullCaseEntry("ῤ", 0, 2),
  4544.     FullCaseEntry("ῤ", 1, 2),
  4545.     FullCaseEntry("Ⅹ", 0, 2),
  4546.     FullCaseEntry("ⅹ", 1, 2),
  4547.     FullCaseEntry("Ⰼ", 0, 2),
  4548.     FullCaseEntry("ⰼ", 1, 2),
  4549.     FullCaseEntry("Ɓ", 0, 2),
  4550.     FullCaseEntry("ɓ", 1, 2),
  4551.     FullCaseEntry("Ⴓ", 0, 2),
  4552.     FullCaseEntry("ⴓ", 1, 2),
  4553.     FullCaseEntry("Ṡ", 0, 3),
  4554.     FullCaseEntry("ṡ", 1, 3),
  4555.     FullCaseEntry("ẛ", 2, 3),
  4556.     FullCaseEntry("Ⅺ", 0, 2),
  4557.     FullCaseEntry("ⅺ", 1, 2),
  4558.     FullCaseEntry("Ⰽ", 0, 2),
  4559.     FullCaseEntry("ⰽ", 1, 2),
  4560.     FullCaseEntry("Ꜣ", 0, 2),
  4561.     FullCaseEntry("ꜣ", 1, 2),
  4562.     FullCaseEntry("Ƃ", 0, 2),
  4563.     FullCaseEntry("ƃ", 1, 2),
  4564.     FullCaseEntry("Ҍ", 0, 2),
  4565.     FullCaseEntry("ҍ", 1, 2),
  4566.     FullCaseEntry("Ⴔ", 0, 2),
  4567.     FullCaseEntry("ⴔ", 1, 2),
  4568.     FullCaseEntry("ῦ", 0, 2),
  4569.     FullCaseEntry("ῦ", 1, 2),
  4570.     FullCaseEntry("Ⅻ", 0, 2),
  4571.     FullCaseEntry("ⅻ", 1, 2),
  4572.     FullCaseEntry("Ⰾ", 0, 2),
  4573.     FullCaseEntry("ⰾ", 1, 2),
  4574.     FullCaseEntry("Ⴕ", 0, 2),
  4575.     FullCaseEntry("ⴕ", 1, 2),
  4576.     FullCaseEntry("Ṣ", 0, 2),
  4577.     FullCaseEntry("ṣ", 1, 2),
  4578.     FullCaseEntry("ῧ", 0, 2),
  4579.     FullCaseEntry("ῧ", 1, 2),
  4580.     FullCaseEntry("Ⅼ", 0, 2),
  4581.     FullCaseEntry("ⅼ", 1, 2),
  4582.     FullCaseEntry("Ⰿ", 0, 2),
  4583.     FullCaseEntry("ⰿ", 1, 2),
  4584.     FullCaseEntry("Ꜥ", 0, 2),
  4585.     FullCaseEntry("ꜥ", 1, 2),
  4586.     FullCaseEntry("Ƅ", 0, 2),
  4587.     FullCaseEntry("ƅ", 1, 2),
  4588.     FullCaseEntry("Ҏ", 0, 2),
  4589.     FullCaseEntry("ҏ", 1, 2),
  4590.     FullCaseEntry("Ⴖ", 0, 2),
  4591.     FullCaseEntry("ⴖ", 1, 2),
  4592.     FullCaseEntry("Ῠ", 0, 2),
  4593.     FullCaseEntry("ῠ", 1, 2),
  4594.     FullCaseEntry("Ⅽ", 0, 2),
  4595.     FullCaseEntry("ⅽ", 1, 2),
  4596.     FullCaseEntry("Ⱀ", 0, 2),
  4597.     FullCaseEntry("ⱀ""ASCII_Hex_Digit", unicodeASCII_Hex_Digit),
  4598. immutable(UnicodeProperty!ubyte)("InLatin-1 Supplement", unicodeInLatin_1_Supplement),
  4599. immutable(UnicodeProperty!ubyte)("InBasic Latin", unicodeInBasic_Latin),
  4600. immutable(UnicodeProperty!ubyte)("Lao", unicodeLao),
  4601. immutable(UnicodeProperty!ubyte)("Ll", unicodeLl),
  4602. immutable(UnicodeProperty!ubyte)("Lu", unicodeLu),
  4603. immutable(UnicodeProperty!ubyte)("LV", unicodeLV),
  4604. immutable(UnicodeProperty!ubyte)("LVT", unicodeLVT),
  4605. immutable(UnicodeProperty!ubyte)("LVT_Syllable", unicodeLVT),
  4606. immutable(UnicodeProperty!ubyte)("Lowercase", unicodeLowercase),
  4607. immutable(UnicodeProperty!ubyte)("Lowercase_Letter", unicodeLl),
  4608. immutable(UnicodeProperty!ubyte)("LV_Syllable", unicodeLV),
  4609. immutable(UnicodeProperty!ubyte)("Tamil", unicodeTamil),
  4610. immutable(UnicodeProperty!ubyte)("Telugu", unicodeTelugu),
  4611. immutable(UnicodeProperty!ubyte)("Uppercase", unicodeUppercase),
  4612. immutable(UnicodeProperty!ubyte)("Uppercase_Letter", unicodeLu),
  4613. immutable(UnicodeProperty!ubyte)("Kannada", unicodeKannada),
  4614. immutable(UnicodeProperty!ubyte)("Bengali", unicodeBengali),
  4615. immutable(UnicodeProperty!ubyte)("Gujarati", unicodeGujarati),
  4616. immutable(UnicodeProperty!ubyte)("Gurmukhi", unicodeGurmukhi),
  4617. immutable(UnicodeProperty!ubyte)("Cc", unicodeCc),
  4618. immutable(UnicodeProperty!ubyte)("Oriya", unicodeOriya),
  4619. immutable(UnicodeProperty!ubyte)("Control", unicodeCc),
  4620. ];
  4621.  
  4622. immutable immutable(UnicodeProperty!ushort)[] smallUnicodeProps = [
  4623. immutable(UnicodeProperty!ushort)("Alphabetic", unicodeAlphabetic),
  4624. immutable(UnicodeProperty!ushort)("Arabic", unicodeArabic),
  4625. immutable(UnicodeProperty!ushort)("Avestan", unicodeAvestan),
  4626. immutable(UnicodeProperty!ushort)("Armenian", unicodeArmenian),
  4627. immutable(UnicodeProperty!ushort)("Dash", unicodeDash),
  4628. immutable(UnicodeProperty!ushort)("Dash_Punctuation", unicodePd),
  4629. immutable(UnicodeProperty!ushort)("Default_Ignorable_Code_Point", unicodeDefault_Ignorable_Code_Point),
  4630. immutable(UnicodeProperty!ushort)("Devanagari", unicodeDevanagari),
  4631. immutable(UnicodeProperty!ushort)("Decimal_Number", unicodeNd),
  4632. immutable(UnicodeProperty!ushort)("Diacritic", unicodeDiacritic),
  4633. immutable(UnicodeProperty!ushort)("Ethiopic", unicodeEthiopic),
  4634. immutable(UnicodeProperty!ushort)("Extender", unicodeExtender),
  4635. immutable(UnicodeProperty!ushort)("Enclosing_Mark", unicodeMe),
  4636. immutable(UnicodeProperty!ushort)("Han", unicodeHan),
  4637. immutable(UnicodeProperty!ushort)("Hanunoo", unicodeHanunoo),
  4638. immutable(UnicodeProperty!ushort)("Hangul", unicodeHangul),
  4639. immutable(UnicodeProperty!ushort)("Hex_Digit", unicodeHex_Digit),
  4640. immutable(UnicodeProperty!ushort)("Hebrew", unicodeHebrew),
  4641. immutable(UnicodeProperty!ushort)("Hiragana", unicodeHiragana),
  4642. immutable(UnicodeProperty!ushort)("Hyphen", unicodeHyphen),
  4643. immutable(UnicodeProperty!ushort)("Ideographic", unicodeIdeographic),
  4644. immutable(UnicodeProperty!ushort)("ID_Start", unicodeID_Start),
  4645. immutable(UnicodeProperty!ushort)("IDS_Trinary_Operator", unicodeIDS_Trinary_Operator),
  4646. immutable(UnicodeProperty!ushort)("IDS_Binary_Operator", unicodeIDS_Binary_Operator),
  4647. immutable(UnicodeProperty!ushort)("ID_Continue", unicodeID_Continue),
  4648. immutable(UnicodeProperty!ushort)("Imperial_Aramaic", unicodeImperial_Aramaic),
  4649. immutable(UnicodeProperty!ushort)("InAlphabetic Presentation Forms", unicodeInAlphabetic_Presentation_Forms),
  4650. immutable(UnicodeProperty!ushort)("InArabic", unicodeInArabic),
  4651. immutable(UnicodeProperty!ushort)("InArabic Extended-A", unicodeInArabic_Extended_A),
  4652. immutable(UnicodeProperty!ushort)("InArabic Presentation Forms-A", unicodeInArabic_Presentation_Forms_A),
  4653. immutable(UnicodeProperty!ushort)("InArabic Presentation Forms-B", unicodeInArabic_Presentation_Forms_B),
  4654. immutable(UnicodeProperty!ushort)("InArabic Supplement", unicodeInArabic_Supplement),
  4655. immutable(UnicodeProperty!ushort)("InArmenian", unicodeInArmenian),
  4656. immutable(UnicodeProperty!ushort)("InArrows", unicodeInArrows),
  4657. immutable(UnicodeProperty!ushort)("InDevanagari", unicodeInDevanagari),
  4658. immutable(UnicodeProperty!ushort)("InDevanagari Extended", unicodeInDevanagari_Extended),
  4659. immutable(UnicodeProperty!ushort)("InDingbats", unicodeInDingbats),
  4660. immutable(UnicodeProperty!ushort)("InEthiopic", unicodeInEthiopic),
  4661. immutable(UnicodeProperty!ushort)("InEthiopic Extended", unicodeInEthiopic_Extended),
  4662. immutable(UnicodeProperty!ushort)("InEthiopic Extended-A", unicodeInEthiopic_Extended_A),
  4663. immutable(UnicodeProperty!ushort)("InEthiopic Supplement", unicodeInEthiopic_Supplement),
  4664. immutable(UnicodeProperty!ushort)("InEnclosed Alphanumerics", unicodeInEnclosed_Alphanumerics),
  4665. immutable(UnicodeProperty!ushort)("InEnclosed CJK Letters and Months", unicodeInEnclosed_CJK_Letters_and_Months),
  4666. immutable(UnicodeProperty!ushort)("InHalfwidth and Fullwidth Forms", unicodeInHalfwidth_and_Fullwidth_Forms),
  4667. immutable(UnicodeProperty!ushort)("InHanunoo", unicodeInHanunoo),
  4668. immutable(UnicodeProperty!ushort)("InHangul Jamo", unicodeInHangul_Jamo),
  4669. immutable(UnicodeProperty!ushort)("InHangul Jamo Extended-A", unicodeInHangul_Jamo_Extended_A),
  4670. immutable(UnicodeProperty!ushort)("InHangul Jamo Extended-B", unicodeInHangul_Jamo_Extended_B),
  4671. immutable(UnicodeProperty!ushort)("InHangul Syllables", unicodeInHangul_Syllables),
  4672. immutable(UnicodeProperty!ushort)("InHangul Compatibility Jamo", unicodeInHangul_Compatibility_Jamo),
  4673. immutable(UnicodeProperty!ushort)("Inherited", unicodeInherited),
  4674. immutable(UnicodeProperty!ushort)("InHebrew", unicodeInHebrew),
  4675. immutable(UnicodeProperty!ushort)("InHiragana", unicodeInHiragana),
  4676. immutable(UnicodeProperty!ushort)("InHigh Private Use Surrogates", unicodeInHigh_Private_Use_Surrogates),
  4677. immutable(UnicodeProperty!ushort)("InHigh Surrogates", unicodeInHigh_Surrogates),
  4678. immutable(UnicodeProperty!ushort)("InIdeographic Description Characters", unicodeInIdeographic_Description_Characters),
  4679. immutable(UnicodeProperty!ushort)("InIPA Extensions", unicodeInIPA_Extensions),
  4680. immutable(UnicodeProperty!ushort)("Initial_Punctuation", unicodePi),
  4681. immutable(UnicodeProperty!ushort)("InLatin Extended-A", unicodeInLatin_Extended_A),
  4682. immutable(UnicodeProperty!ushort)("InLatin Extended Additional", unicodeInLatin_Extended_Additional),
  4683. immutable(UnicodeProperty!ushort)("InLatin Extended-D", unicodeInLatin_Extended_D),
  4684. immutable(UnicodeProperty!ushort)("InLatin Extended-C", unicodeInLatin_Extended_C),
  4685. immutable(UnicodeProperty!ushort)("InLatin Extended-B", unicodeInLatin_Extended_B),
  4686. immutable(UnicodeProperty!ushort)("InLao", unicodeInLao),
  4687. immutable(UnicodeProperty!ushort)("InLepcha", unicodeInLepcha),
  4688. immutable(UnicodeProperty!ushort)("InLetterlike Symbols", unicodeInLetterlike_Symbols),
  4689. immutable(UnicodeProperty!ushort)("InLimbu", unicodeInLimbu),
  4690. immutable(UnicodeProperty!ushort)("InLisu", unicodeInLisu),
  4691. immutable(UnicodeProperty!ushort)("InLow Surrogates", unicodeInLow_Surrogates),
  4692. immutable(UnicodeProperty!ushort)("InMalayalam", unicodeInMalayalam),
  4693. immutable(UnicodeProperty!ushort)("InMathematical Operators", unicodeInMathematical_Operators),
  4694. immutable(UnicodeProperty!ushort)("InMandaic", unicodeInMandaic),
  4695. immutable(UnicodeProperty!ushort)("InMeetei Mayek", unicodeInMeetei_Mayek),
  4696. immutable(UnicodeProperty!ushort)("InMeetei Mayek Extensions", unicodeInMeetei_Mayek_Extensions),
  4697. immutable(UnicodeProperty!ushort)("InMiscellaneous Mathematical Symbols-A", unicodeInMiscellaneous_Mathematical_Symbols_A),
  4698. immutable(UnicodeProperty!ushort)("InMiscellaneous Mathematical Symbols-B", unicodeInMiscellaneous_Mathematical_Symbols_B),
  4699. immutable(UnicodeProperty!ushort)("InMiscellaneous Technical", unicodeInMiscellaneous_Technical),
  4700. immutable(UnicodeProperty!ushort)("InMiscellaneous Symbols", unicodeInMiscellaneous_Symbols),
  4701. immutable(UnicodeProperty!ushort)("InMiscellaneous Symbols and Arrows", unicodeInMiscellaneous_Symbols_and_Arrows),
  4702. immutable(UnicodeProperty!ushort)("InMyanmar", unicodeInMyanmar),
  4703. immutable(UnicodeProperty!ushort)("InMyanmar Extended-A", unicodeInMyanmar_Extended_A),
  4704. immutable(UnicodeProperty!ushort)("InModifier Tone Letters", unicodeInModifier_Tone_Letters),
  4705. immutable(UnicodeProperty!ushort)("InMongolian", unicodeInMongolian),
  4706. immutable(UnicodeProperty!ushort)("InPhags-pa", unicodeInPhags_pa),
  4707. immutable(UnicodeProperty!ushort)("InPhonetic Extensions", unicodeInPhonetic_Extensions),
  4708. immutable(UnicodeProperty!ushort)("InPhonetic Extensions Supplement", unicodeInPhonetic_Extensions_Supplement),
  4709. immutable(UnicodeProperty!ushort)("InPrivate Use Area", unicodeInPrivate_Use_Area),
  4710. immutable(UnicodeProperty!ushort)("InTai Le", unicodeInTai_Le),
  4711. immutable(UnicodeProperty!ushort)("InTai Tham", unicodeInTai_Tham),
  4712. immutable(UnicodeProperty!ushort)("InTai Viet", unicodeInTai_Viet),
  4713. immutable(UnicodeProperty!ushort)("InTamil", unicodeInTamil),
  4714. immutable(UnicodeProperty!ushort)("InTagalog", unicodeInTagalog),
  4715. immutable(UnicodeProperty!ushort)("InTagbanwa", unicodeInTagbanwa),
  4716. immutable(UnicodeProperty!ushort)("InTelugu", unicodeInTelugu),
  4717. immutable(UnicodeProperty!ushort)("InThaana", unicodeInThaana),
  4718. immutable(UnicodeProperty!ushort)("InThai", unicodeInThai),
  4719. immutable(UnicodeProperty!ushort)("InTibetan", unicodeInTibetan),
  4720. immutable(UnicodeProperty!ushort)("InTifinagh", unicodeInTifinagh),
  4721. immutable(UnicodeProperty!ushort)("InUnified Canadian Aboriginal Syllabics", unicodeInUnified_Canadian_Aboriginal_Syllabics),
  4722. immutable(UnicodeProperty!ushort)("InUnified Canadian Aboriginal Syllabics Extended", unicodeInUnified_Canadian_Aboriginal_Syllabics_Extended),
  4723. immutable(UnicodeProperty!ushort)("InYi Radicals", unicodeInYi_Radicals),
  4724. immutable(UnicodeProperty!ushort)("InYijing Hexagram Symbols", unicodeInYijing_Hexagram_Symbols),
  4725. immutable(UnicodeProperty!ushort)("InYi Syllables", unicodeInYi_Syllables),
  4726. immutable(UnicodeProperty!ushort)("InVai", unicodeInVai),
  4727. immutable(UnicodeProperty!ushort)("InBalinese", unicodeInBalinese),
  4728. immutable(UnicodeProperty!ushort)("InSamaritan", unicodeInSamaritan),
  4729. immutable(UnicodeProperty!ushort)("InBamum", unicodeInBamum),
  4730. immutable(UnicodeProperty!ushort)("InBatak", unicodeInBatak),
  4731. immutable(UnicodeProperty!ushort)("InKatakana", unicodeInKatakana),
  4732. immutable(UnicodeProperty!ushort)("InKatakana Phonetic Extensions", unicodeInKatakana_Phonetic_Extensions),
  4733. immutable(UnicodeProperty!ushort)("InSaurashtra", unicodeInSaurashtra),
  4734. immutable(UnicodeProperty!ushort)("InKayah Li", unicodeInKayah_Li),
  4735. immutable(UnicodeProperty!ushort)("InJavanese", unicodeInJavanese),
  4736. immutable(UnicodeProperty!ushort)("InVariation Selectors", unicodeInVariation_Selectors),
  4737. immutable(UnicodeProperty!ushort)("InKannada", unicodeInKannada),
  4738. immutable(UnicodeProperty!ushort)("InKanbun", unicodeInKanbun),
  4739. immutable(UnicodeProperty!ushort)("InKangxi Radicals", unicodeInKangxi_Radicals),
  4740. immutable(UnicodeProperty!ushort)("InVedic Extensions", unicodeInVedic_Extensions),
  4741. immutable(UnicodeProperty!ushort)("InRejang", unicodeInRejang),
  4742. immutable(UnicodeProperty!ushort)("InGeneral Punctuation", unicodeInGeneral_Punctuation),
  4743. immutable(UnicodeProperty!ushort)("InGeometric Shapes", unicodeInGeometric_Shapes),
  4744. immutable(UnicodeProperty!ushort)("InNew Tai Lue", unicodeInNew_Tai_Lue),
  4745. immutable(UnicodeProperty!ushort)("InVertical Forms", unicodeInVertical_Forms),
  4746. immutable(UnicodeProperty!ushort)("InBengali", unicodeInBengali),
  4747. immutable(UnicodeProperty!ushort)("InGeorgian", unicodeInGeorgian),
  4748. immutable(UnicodeProperty!ushort)("InGeorgian Supplement", unicodeInGeorgian_Supplement),
  4749. immutable(UnicodeProperty!ushort)("InCham", unicodeInCham),
  4750. immutable(UnicodeProperty!ushort)("InCherokee", unicodeInCherokee),
  4751. immutable(UnicodeProperty!ushort)("InKhmer", unicodeInKhmer),
  4752. immutable(UnicodeProperty!ushort)("InKhmer Symbols", unicodeInKhmer_Symbols),
  4753. immutable(UnicodeProperty!ushort)("InSinhala", unicodeInSinhala),
  4754. immutable(UnicodeProperty!ushort)("InGlagolitic", unicodeInGlagolitic),
  4755. immutable(UnicodeProperty!ushort)("InOl Chiki", unicodeInOl_Chiki),
  4756. immutable(UnicodeProperty!ushort)("InBlock Elements", unicodeInBlock_Elements),
  4757. immutable(UnicodeProperty!ushort)("InSmall Form Variants", unicodeInSmall_Form_Variants),
  4758. immutable(UnicodeProperty!ushort)("InSpacing Modifier Letters", unicodeInSpacing_Modifier_Letters),
  4759. immutable(UnicodeProperty!ushort)("InSpecials", unicodeInSpecials),
  4760. immutable(UnicodeProperty!ushort)("InOptical Character Recognition", unicodeInOptical_Character_Recognition),
  4761. immutable(UnicodeProperty!ushort)("InBuhid", unicodeInBuhid),
  4762. immutable(UnicodeProperty!ushort)("InNumber Forms", unicodeInNumber_Forms),
  4763. immutable(UnicodeProperty!ushort)("InSuperscripts and Subscripts", unicodeInSuperscripts_and_Subscripts),
  4764. immutable(UnicodeProperty!ushort)("InSupplemental Arrows-A", unicodeInSupplemental_Arrows_A),
  4765. immutable(UnicodeProperty!ushort)("InSupplemental Arrows-B", unicodeInSupplemental_Arrows_B),
  4766. immutable(UnicodeProperty!ushort)("InSupplemental Mathematical Operators", unicodeInSupplemental_Mathematical_Operators),
  4767. immutable(UnicodeProperty!ushort)("InSupplemental Punctuation", unicodeInSupplemental_Punctuation),
  4768. immutable(UnicodeProperty!ushort)("InGujarati", unicodeInGujarati),
  4769. immutable(UnicodeProperty!ushort)("InSundanese", unicodeInSundanese),
  4770. immutable(UnicodeProperty!ushort)("InSundanese Supplement", unicodeInSundanese_Supplement),
  4771. immutable(UnicodeProperty!ushort)("InRunic", unicodeInRunic),
  4772. immutable(UnicodeProperty!ushort)("InBuginese", unicodeInBuginese),
  4773. immutable(UnicodeProperty!ushort)("InGurmukhi", unicodeInGurmukhi),
  4774. immutable(UnicodeProperty!ushort)("InCurrency Symbols", unicodeInCurrency_Symbols),
  4775. immutable(UnicodeProperty!ushort)("InSyloti Nagri", unicodeInSyloti_Nagri),
  4776. immutable(UnicodeProperty!ushort)("InSyriac", unicodeInSyriac),
  4777. immutable(UnicodeProperty!ushort)("InCyrillic", unicodeInCyrillic),
  4778. immutable(UnicodeProperty!ushort)("InCyrillic Extended-A", unicodeInCyrillic_Extended_A),
  4779. immutable(UnicodeProperty!ushort)("InCyrillic Extended-B", unicodeInCyrillic_Extended_B),
  4780. immutable(UnicodeProperty!ushort)("InCyrillic Supplement", unicodeInCyrillic_Supplement),
  4781. immutable(UnicodeProperty!ushort)("InBraille Patterns", unicodeInBraille_Patterns),
  4782. immutable(UnicodeProperty!ushort)("InGreek and Coptic", unicodeInGreek_and_Coptic),
  4783. immutable(UnicodeProperty!ushort)("InGreek Extended", unicodeInGreek_Extended),
  4784. immutable(UnicodeProperty!ushort)("InOgham", unicodeInOgham),
  4785. immutable(UnicodeProperty!ushort)("InOriya", unicodeInOriya),
  4786. immutable(UnicodeProperty!ushort)("InCommon Indic Number Forms", unicodeInCommon_Indic_Number_Forms),
  4787. immutable(UnicodeProperty!ushort)("InCombining Diacritical Marks", unicodeInCombining_Diacritical_Marks),
  4788. immutable(UnicodeProperty!ushort)("InCombining Diacritical Marks Supplement", unicodeInCombining_Diacritical_Marks_Supplement),
  4789. immutable(UnicodeProperty!ushort)("InCombining Diacritical Marks for Symbols", unicodeInCombining_Diacritical_Marks_for_Symbols),
  4790. immutable(UnicodeProperty!ushort)("InCombining Half Marks", unicodeInCombining_Half_Marks),
  4791. immutable(UnicodeProperty!ushort)("InCoptic", unicodeInCoptic),
  4792. immutable(UnicodeProperty!ushort)("InBopomofo", unicodeInBopomofo),
  4793. immutable(UnicodeProperty!ushort)("InBopomofo Extended", unicodeInBopomofo_Extended),
  4794. immutable(UnicodeProperty!ushort)("InBox Drawing", unicodeInBox_Drawing),
  4795. immutable(UnicodeProperty!ushort)("InNKo", unicodeInNKo),
  4796. immutable(UnicodeProperty!ushort)("Inscriptional_Pahlavi", unicodeInscriptional_Pahlavi),
  4797. immutable(UnicodeProperty!ushort)("Inscriptional_Parthian", unicodeInscriptional_Parthian),
  4798. immutable(UnicodeProperty!ushort)("InControl Pictures", unicodeInControl_Pictures),
  4799. immutable(UnicodeProperty!ushort)("InCJK Unified Ideographs", unicodeInCJK_Unified_Ideographs),
  4800. immutable(UnicodeProperty!ushort)("InCJK Unified Ideographs Extension A", unicodeInCJK_Unified_Ideographs_Extension_A),
  4801. immutable(UnicodeProperty!ushort)("InCJK Radicals Supplement", unicodeInCJK_Radicals_Supplement),
  4802. immutable(UnicodeProperty!ushort)("InCJK Strokes", unicodeInCJK_Strokes),
  4803. immutable(UnicodeProperty!ushort)("InCJK Symbols and Punctuation", unicodeInCJK_Symbols_and_Punctuation),
  4804. immutable(UnicodeProperty!ushort)("InCJK Compatibility", unicodeInCJK_Compatibility),
  4805. immutable(UnicodeProperty!ushort)("InCJK Compatibility Ideographs", unicodeInCJK_Compatibility_Ideographs),
  4806. immutable(UnicodeProperty!ushort)("InCJK Compatibility Forms", unicodeInCJK_Compatibility_Forms),
  4807. immutable(UnicodeProperty!ushort)("L", unicodeL),
  4808. immutable(UnicodeProperty!ushort)("Latin", unicodeLatin),
  4809. immutable(UnicodeProperty!ushort)("Leading_Jamo", unicodeL),
  4810. immutable(UnicodeProperty!ushort)("Lepcha", unicodeLepcha),
  4811. immutable(UnicodeProperty!ushort)("Letter_Number", unicodeNl),
  4812. immutable(UnicodeProperty!ushort)("Limbu", unicodeLimbu),
  4813. immutable(UnicodeProperty!ushort)("Linear_B", unicodeLinear_B),
  4814. immutable(UnicodeProperty!ushort)("Line_Separator", unicodeZl),
  4815. immutable(UnicodeProperty!ushort)("Lisu", unicodeLisu),
  4816. immutable(UnicodeProperty!ushort)("Lm", unicodeLm),
  4817. immutable(UnicodeProperty!ushort)("Lt", unicodeLt),
  4818. immutable(UnicodeProperty!ushort)("Lydian", unicodeLydian),
  4819. immutable(UnicodeProperty!ushort)("Lo", unicodeLo),
  4820. immutable(UnicodeProperty!ushort)("Logical_Order_Exception", unicodeLogical_Order_Exception),
  4821. immutable(UnicodeProperty!ushort)("Malayalam", unicodeMalayalam),
  4822. immutable(UnicodeProperty!ushort)("Math", unicodeMath),
  4823. immutable(UnicodeProperty!ushort)("Math_Symbol", unicodeSm),
  4824. immutable(UnicodeProperty!ushort)("Mandaic", unicodeMandaic),
  4825. immutable(UnicodeProperty!ushort)("Me", unicodeMe),
  4826. immutable(UnicodeProperty!ushort)("Meetei_Mayek", unicodeMeetei_Mayek),
  4827. immutable(UnicodeProperty!ushort)("Meroitic_Cursive", unicodeMeroitic_Cursive),
  4828. immutable(UnicodeProperty!ushort)("Miao", unicodeMiao),
  4829. immutable(UnicodeProperty!ushort)("Myanmar", unicodeMyanmar),
  4830. immutable(UnicodeProperty!ushort)("Mn", unicodeMn),
  4831. immutable(UnicodeProperty!ushort)("Mc", unicodeMc),
  4832. immutable(UnicodeProperty!ushort)("Modifier_Letter", unicodeLm),
  4833. immutable(UnicodeProperty!ushort)("Modifier_Symbol", unicodeSk),
  4834. immutable(UnicodeProperty!ushort)("Mongolian", unicodeMongolian),
  4835. immutable(UnicodeProperty!ushort)("Pattern_White_Space", unicodePattern_White_Space),
  4836. immutable(UnicodeProperty!ushort)("Pattern_Syntax", unicodePattern_Syntax),
  4837. immutable(UnicodeProperty!ushort)("Paragraph_Separator", unicodeZp),
  4838. immutable(UnicodeProperty!ushort)("Pd", unicodePd),
  4839. immutable(UnicodeProperty!ushort)("Pe", unicodePe),
  4840. immutable(UnicodeProperty!ushort)("Phags_Pa", unicodePhags_Pa),
  4841. immutable(UnicodeProperty!ushort)("Phoenician", unicodePhoenician),
  4842. immutable(UnicodeProperty!ushort)("Pi", unicodePi),
  4843. immutable(UnicodeProperty!ushort)("Po", unicodePo),
  4844. immutable(UnicodeProperty!ushort)("Ps", unicodePs),
  4845. immutable(UnicodeProperty!ushort)("Pf", unicodePf),
  4846. immutable(UnicodeProperty!ushort)("Pc", unicodePc),
  4847. immutable(UnicodeProperty!ushort)("Quotation_Mark", unicodeQuotation_Mark),
  4848. immutable(UnicodeProperty!ushort)("T", unicodeT),
  4849. immutable(UnicodeProperty!ushort)("Tai_Le", unicodeTai_Le),
  4850. immutable(UnicodeProperty!ushort)("Tai_Tham", unicodeTai_Tham),
  4851. immutable(UnicodeProperty!ushort)("Tai_Viet", unicodeTai_Viet),
  4852. immutable(UnicodeProperty!ushort)("Tagalog", unicodeTagalog),
  4853. immutable(UnicodeProperty!ushort)("Tagbanwa", unicodeTagbanwa),
  4854. immutable(UnicodeProperty!ushort)("Takri", unicodeTakri),
  4855. immutable(UnicodeProperty!ushort)("Terminal_Punctuation", unicodeTerminal_Punctuation),
  4856. immutable(UnicodeProperty!ushort)("Thaana", unicodeThaana),
  4857. immutable(UnicodeProperty!ushort)("Thai", unicodeThai),
  4858. immutable(UnicodeProperty!ushort)("Titlecase_Letter", unicodeLt),
  4859. immutable(UnicodeProperty!ushort)("Tibetan", unicodeTibetan),
  4860. immutable(UnicodeProperty!ushort)("Tifinagh", unicodeTifinagh),
  4861. immutable(UnicodeProperty!ushort)("Trailing_Jamo", unicodeT),
  4862. immutable(UnicodeProperty!ushort)("Ugaritic", unicodeUgaritic),
  4863. immutable(UnicodeProperty!ushort)("Unassigned", unicodeCn),
  4864. immutable(UnicodeProperty!ushort)("Unified_Ideograph", unicodeUnified_Ideograph),
  4865. immutable(UnicodeProperty!ushort)("XID_Start", unicodeXID_Start),
  4866. immutable(UnicodeProperty!ushort)("XID_Continue", unicodeXID_Continue),
  4867. immutable(UnicodeProperty!ushort)("Yi", unicodeYi),
  4868. immutable(UnicodeProperty!ushort)("V", unicodeV),
  4869. immutable(UnicodeProperty!ushort)("Radical", unicodeRadical),
  4870. immutable(UnicodeProperty!ushort)("Vai", unicodeVai),
  4871. immutable(UnicodeProperty!ushort)("Balinese", unicodeBalinese),
  4872. immutable(UnicodeProperty!ushort)("Samaritan", unicodeSamaritan),
  4873. immutable(UnicodeProperty!ushort)("Bamum", unicodeBamum),
  4874. immutable(UnicodeProperty!ushort)("Batak", unicodeBatak),
  4875. immutable(UnicodeProperty!ushort)("Katakana", unicodeKatakana),
  4876. immutable(UnicodeProperty!ushort)("Saurashtra", unicodeSaurashtra),
  4877. immutable(UnicodeProperty!ushort)("Kayah_Li", unicodeKayah_Li),
  4878. immutable(UnicodeProperty!ushort)("Canadian_Aboriginal", unicodeCanadian_Aboriginal),
  4879. immutable(UnicodeProperty!ushort)("Javanese", unicodeJavanese),
  4880. immutable(UnicodeProperty!ushort)("Cased", unicodeCased),
  4881. immutable(UnicodeProperty!ushort)("Case_Ignorable", unicodeCase_Ignorable),
  4882. immutable(UnicodeProperty!ushort)("Nd", unicodeNd),
  4883. immutable(UnicodeProperty!ushort)("Rejang", unicodeRejang),
  4884. immutable(UnicodeProperty!ushort)("New_Tai_Lue", unicodeNew_Tai_Lue),
  4885. immutable(UnicodeProperty!ushort)("Georgian", unicodeGeorgian),
  4886. immutable(UnicodeProperty!ushort)("Cham", unicodeCham),
  4887. immutable(UnicodeProperty!ushort)("Sharada", unicodeSharada),
  4888. immutable(UnicodeProperty!ushort)("Chakma", unicodeChakma),
  4889. immutable(UnicodeProperty!ushort)("Kharoshthi", unicodeKharoshthi),
  4890. immutable(UnicodeProperty!ushort)("Cherokee", unicodeCherokee),
  4891. immutable(UnicodeProperty!ushort)("White_Space", unicodeWhite_Space),
  4892. immutable(UnicodeProperty!ushort)("Khmer", unicodeKhmer),
  4893. immutable(UnicodeProperty!ushort)("Bidi_Control", unicodeBidi_Control),
  4894. immutable(UnicodeProperty!ushort)("Final_Punctuation", unicodePf),
  4895. immutable(UnicodeProperty!ushort)("Sinhala", unicodeSinhala),
  4896. immutable(UnicodeProperty!ushort)("Nl", unicodeNl),
  4897. immutable(UnicodeProperty!ushort)("Zl", unicodeZl),
  4898. immutable(UnicodeProperty!ushort)("Glagolitic", unicodeGlagolitic),
  4899. immutable(UnicodeProperty!ushort)("Old_Italic", unicodeOld_Italic),
  4900. immutable(UnicodeProperty!ushort)("Old_Persian", unicodeOld_Persian),
  4901. immutable(UnicodeProperty!ushort)("Ol_Chiki", unicodeOl_Chiki),
  4902. immutable(UnicodeProperty!ushort)("Close_Punctuation", unicodePe),
  4903. immutable(UnicodeProperty!ushort)("Sm", unicodeSm),
  4904. immutable(UnicodeProperty!ushort)("Zp", unicodeZp),
  4905. immutable(UnicodeProperty!ushort)("Space_Separator", unicodeZs),
  4906. immutable(UnicodeProperty!ushort)("Spacing_Mark", unicodeMc),
  4907. immutable(UnicodeProperty!ushort)("Open_Punctuation", unicodePs),
  4908. immutable(UnicodeProperty!ushort)("STerm", unicodeSTerm),
  4909. immutable(UnicodeProperty!ushort)("Other_Alphabetic", unicodeOther_Alphabetic),
  4910. immutable(UnicodeProperty!ushort)("Other_ID_Start", unicodeOther_ID_Start),
  4911. immutable(UnicodeProperty!ushort)("Other_ID_Continue", unicodeOther_ID_Continue),
  4912. immutable(UnicodeProperty!ushort)("Other_Letter", unicodeLo),
  4913. immutable(UnicodeProperty!ushort)("Other_Lowercase", unicodeOther_Lowercase),
  4914. immutable(UnicodeProperty!ushort)("Other_Math", unicodeOther_Math),
  4915. immutable(UnicodeProperty!ushort)("Other_Punctuation", unicodePo),
  4916. immutable(UnicodeProperty!ushort)("Other_Uppercase", unicodeOther_Uppercase),
  4917. immutable(UnicodeProperty!ushort)("Other_Number", unicodeNo),
  4918. immutable(UnicodeProperty!ushort)("Other_Symbol", unicodeSo),
  4919. immutable(UnicodeProperty!ushort)("Other_Grapheme_Extend", unicodeOther_Grapheme_Extend),
  4920. immutable(UnicodeProperty!ushort)("Buhid", unicodeBuhid),
  4921. immutable(UnicodeProperty!ushort)("Sundanese", unicodeSundanese),
  4922. immutable(UnicodeProperty!ushort)("Cuneiform", unicodeCuneiform),
  4923. immutable(UnicodeProperty!ushort)("Runic", unicodeRunic),
  4924. immutable(UnicodeProperty!ushort)("Buginese", unicodeBuginese),
  4925. immutable(UnicodeProperty!ushort)("Currency_Symbol", unicodeSc),
  4926. immutable(UnicodeProperty!ushort)("Surrogate", unicodeCs),
  4927. immutable(UnicodeProperty!ushort)("Syloti_Nagri", unicodeSyloti_Nagri),
  4928. immutable(UnicodeProperty!ushort)("Cypriot", unicodeCypriot),
  4929. immutable(UnicodeProperty!ushort)("Syriac", unicodeSyriac),
  4930. immutable(UnicodeProperty!ushort)("Cyrillic", unicodeCyrillic),
  4931. immutable(UnicodeProperty!ushort)("Cs", unicodeCs),
  4932. immutable(UnicodeProperty!ushort)("Sc", unicodeSc),
  4933. immutable(UnicodeProperty!ushort)("Zs", unicodeZs),
  4934. immutable(UnicodeProperty!ushort)("No", unicodeNo),
  4935. immutable(UnicodeProperty!ushort)("Cn", unicodeCn),
  4936. immutable(UnicodeProperty!ushort)("Sk", unicodeSk),
  4937. immutable(UnicodeProperty!ushort)("So", unicodeSo),
  4938. immutable(UnicodeProperty!ushort)("Cf", unicodeCf),
  4939. immutable(UnicodeProperty!ushort)("Brahmi", unicodeBrahmi),
  4940. immutable(UnicodeProperty!ushort)("Braille", unicodeBraille),
  4941. immutable(UnicodeProperty!ushort)("Grapheme_Extend", unicodeGrapheme_Extend),
  4942. immutable(UnicodeProperty!ushort)("Grapheme_Link", unicodeGrapheme_Link),
  4943. immutable(UnicodeProperty!ushort)("Grapheme_Base", unicodeGrapheme_Base),
  4944. immutable(UnicodeProperty!ushort)("Greek", unicodeGreek),
  4945. immutable(UnicodeProperty!ushort)("Ogham", unicodeOgham),
  4946. immutable(UnicodeProperty!ushort)("Join_Control", unicodeJoin_Control),
  4947. immutable(UnicodeProperty!ushort)("Osmanya", unicodeOsmanya),
  4948. immutable(UnicodeProperty!ushort)("Common", unicodeCommon),
  4949. immutable(UnicodeProperty!ushort)("Coptic", unicodeCoptic),
  4950. immutable(UnicodeProperty!ushort)("Bopomofo", unicodeBopomofo),
  4951. immutable(UnicodeProperty!ushort)("Nko", unicodeNko),
  4952. immutable(UnicodeProperty!ushort)("Sora_Sompeng", unicodeSora_Sompeng),
  4953. immutable(UnicodeProperty!ushort)("Vowel_Jamo", unicodeV),
  4954. immutable(UnicodeProperty!ushort)("Format", unicodeCf),
  4955. immutable(UnicodeProperty!ushort)("Soft_Dotted", unicodeSoft_Dotted),
  4956. immutable(UnicodeProperty!ushort)("Connector_Punctuation", unicodePc),
  4957. immutable(UnicodeProperty!ushort)("Noncharacter_Code_Point", unicodeNoncharacter_Code_Point),
  4958. immutable(UnicodeProperty!ushort)("Nonspacing_Mark", unicodeMn),
  4959. ];
  4960.  
  4961. immutable immutable(UnicodeProperty!uint)[] fullUnicodeProps = [
  4962. immutable(UnicodeProperty!uint)("Deprecated", unicodeDeprecated),
  4963. immutable(UnicodeProperty!uint)("Deseret", unicodeDeseret),
  4964. immutable(UnicodeProperty!uint)("Egyptian_Hieroglyphs", unicodeEgyptian_Hieroglyphs),
  4965. immutable(UnicodeProperty!uint)("InAegean Numbers", unicodeInAegean_Numbers),
  4966. immutable(UnicodeProperty!uint)("InAlchemical Symbols", unicodeInAlchemical_Symbols),
  4967. immutable(UnicodeProperty!uint)("InArabic Mathematical Alphabetic Symbols", unicodeInArabic_Mathematical_Alphabetic_Symbols),
  4968. immutable(UnicodeProperty!uint)("InAvestan", unicodeInAvestan),
  4969. immutable(UnicodeProperty!uint)("InAncient Symbols", unicodeInAncient_Symbols),
  4970. immutable(UnicodeProperty!uint)("InAncient Greek Musical Notation", unicodeInAncient_Greek_Musical_Notation),
  4971. immutable(UnicodeProperty!uint)("InAncient Greek Numbers", unicodeInAncient_Greek_Numbers),
  4972. immutable(UnicodeProperty!uint)("InDeseret", unicodeInDeseret),
  4973. immutable(UnicodeProperty!uint)("InDomino Tiles", unicodeInDomino_Tiles),
  4974. immutable(UnicodeProperty!uint)("InEmoticons", unicodeInEmoticons),
  4975. immutable(UnicodeProperty!uint)("InEgyptian Hieroglyphs", unicodeInEgyptian_Hieroglyphs),
  4976. immutable(UnicodeProperty!uint)("InEnclosed Alphanumeric Supplement", unicodeInEnclosed_Alphanumeric_Supplement),
  4977. immutable(UnicodeProperty!uint)("InEnclosed Ideographic Supplement", unicodeInEnclosed_Ideographic_Supplement),
  4978. immutable(UnicodeProperty!uint)("InImperial Aramaic", unicodeInImperial_Aramaic),
  4979. immutable(UnicodeProperty!uint)("InInscriptional Pahlavi", unicodeInInscriptional_Pahlavi),
  4980. immutable(UnicodeProperty!uint)("InInscriptional Parthian", unicodeInInscriptional_Parthian),
  4981. immutable(UnicodeProperty!uint)("InLinear B Ideograms", unicodeInLinear_B_Ideograms),
  4982. immutable(UnicodeProperty!uint)("InLinear B Syllabary", unicodeInLinear_B_Syllabary),
  4983. immutable(UnicodeProperty!uint)("InLydian", unicodeInLydian),
  4984. immutable(UnicodeProperty!uint)("InLycian", unicodeInLycian),
  4985. immutable(UnicodeProperty!uint)("InMahjong Tiles", unicodeInMahjong_Tiles),
  4986. immutable(UnicodeProperty!uint)("InMathematical Alphanumeric Symbols", unicodeInMathematical_Alphanumeric_Symbols),
  4987. immutable(UnicodeProperty!uint)("InMeroitic Hieroglyphs", unicodeInMeroitic_Hieroglyphs),
  4988. immutable(UnicodeProperty!uint)("InMeroitic Cursive", unicodeInMeroitic_Cursive),
  4989. immutable(UnicodeProperty!uint)("InMiao", unicodeInMiao),
  4990. immutable(UnicodeProperty!uint)("InMiscellaneous Symbols And Pictographs", unicodeInMiscellaneous_Symbols_And_Pictographs),
  4991. immutable(UnicodeProperty!uint)("InMusical Symbols", unicodeInMusical_Symbols),
  4992. immutable(UnicodeProperty!uint)("InPhaistos Disc", unicodeInPhaistos_Disc),
  4993. immutable(UnicodeProperty!uint)("InPhoenician", unicodeInPhoenician),
  4994. immutable(UnicodeProperty!uint)("InPlaying Cards", unicodeInPlaying_Cards),
  4995. immutable(UnicodeProperty!uint)("InTai Xuan Jing Symbols", unicodeInTai_Xuan_Jing_Symbols),
  4996. immutable(UnicodeProperty!uint)("InTags", unicodeInTags),
  4997. immutable(UnicodeProperty!uint)("InTakri", unicodeInTakri),
  4998. immutable(UnicodeProperty!uint)("InTransport And Map Symbols", unicodeInTransport_And_Map_Symbols),
  4999. immutable(UnicodeProperty!uint)("InUgaritic", unicodeInUgaritic),
  5000. immutable(UnicodeProperty!uint)("InKaithi", unicodeInKaithi),
  5001. immutable(UnicodeProperty!uint)("InBamum Supplement", unicodeInBamum_Supplement),
  5002. immutable(UnicodeProperty!uint)("InKana Supplement", unicodeInKana_Supplement),
  5003. immutable(UnicodeProperty!uint)("InVariation Selectors Supplement", unicodeInVariation_Selectors_Supplement),
  5004. immutable(UnicodeProperty!uint)("InCarian", unicodeInCarian),
  5005. immutable(UnicodeProperty!uint)("InSharada", unicodeInSharada),
  5006. immutable(UnicodeProperty!uint)("InShavian", unicodeInShavian),
  5007. immutable(UnicodeProperty!uint)("InChakma", unicodeInChakma),
  5008. immutable(UnicodeProperty!uint)("InKharoshthi", unicodeInKharoshthi),
  5009. immutable(UnicodeProperty!uint)("InOld Italic", unicodeInOld_Italic),
  5010. immutable(UnicodeProperty!uint)("InOld Persian", unicodeInOld_Persian),
  5011. immutable(UnicodeProperty!uint)("InOld Turkic", unicodeInOld_Turkic),
  5012. immutable(UnicodeProperty!uint)("InOld South Arabian", unicodeInOld_South_Arabian),
  5013. immutable(UnicodeProperty!uint)("InRumi Numeral Symbols", unicodeInRumi_Numeral_Symbols),
  5014. immutable(UnicodeProperty!uint)("InSupplementary Private Use Area-A", unicodeInSupplementary_Private_Use_Area_A),
  5015. immutable(UnicodeProperty!uint)("InSupplementary Private Use Area-B", unicodeInSupplementary_Private_Use_Area_B),
  5016. immutable(UnicodeProperty!uint)("InCuneiform", unicodeInCuneiform),
  5017. immutable(UnicodeProperty!uint)("InCuneiform Numbers and Punctuation", unicodeInCuneiform_Numbers_and_Punctuation),
  5018. immutable(UnicodeProperty!uint)("InCypriot Syllabary", unicodeInCypriot_Syllabary),
  5019. immutable(UnicodeProperty!uint)("InByzantine Musical Symbols", unicodeInByzantine_Musical_Symbols),
  5020. immutable(UnicodeProperty!uint)("InBrahmi", unicodeInBrahmi),
  5021. immutable(UnicodeProperty!uint)("InOsmanya", unicodeInOsmanya),
  5022. immutable(UnicodeProperty!uint)("InGothic", unicodeInGothic),
  5023. immutable(UnicodeProperty!uint)("InCounting Rod Numerals", unicodeInCounting_Rod_Numerals),
  5024. immutable(UnicodeProperty!uint)("InSora Sompeng", unicodeInSora_Sompeng),
  5025. immutable(UnicodeProperty!uint)("InCJK Unified Ideographs Extension D", unicodeInCJK_Unified_Ideographs_Extension_D),
  5026. immutable(UnicodeProperty!uint)("InCJK Unified Ideographs Extension C", unicodeInCJK_Unified_Ideographs_Extension_C),
  5027. immutable(UnicodeProperty!uint)("InCJK Unified Ideographs Extension B", unicodeInCJK_Unified_Ideographs_Extension_B),
  5028. immutable(UnicodeProperty!uint)("InCJK Compatibility Ideographs Supplement", unicodeInCJK_Compatibility_Ideographs_Supplement),
  5029. immutable(UnicodeProperty!uint)("Lycian", unicodeLycian),
  5030. immutable(UnicodeProperty!uint)("Meroitic_Hieroglyphs", unicodeMeroitic_Hieroglyphs),
  5031. immutable(UnicodeProperty!uint)("Private_Use", unicodeCo),
  5032. immutable(UnicodeProperty!uint)("Kaithi", unicodeKaithi),
  5033. immutable(UnicodeProperty!uint)("Variation_Selector", unicodeVariation_Selector),
  5034. immutable(UnicodeProperty!uint)("Carian", unicodeCarian),
  5035. immutable(UnicodeProperty!uint)("Shavian", unicodeShavian),
  5036. immutable(UnicodeProperty!uint)("Old_Turkic", unicodeOld_Turkic),
  5037. immutable(UnicodeProperty!uint)("Old_South_Arabian", unicodeOld_South_Arabian),
  5038. immutable(UnicodeProperty!uint)("Other_Default_Ignorable_Code_Point", unicodeOther_Default_Ignorable_Code_Point),
  5039. immutable(UnicodeProperty!uint)("Co", unicodeCo),
  5040. immutable(UnicodeProperty!uint)("Gothic", unicodeGothic),
  5041. ];
  5042. immutable NFC_QCN = RleBitSet!uint.fromRawArray([0x340, 0x2, 0x1, 0x2, 0x2f, 0x1, 0x9, 0x1, 0x8, 0x1, 0x5d0, 0x8, 0x7c, 0x2, 0x1, 0x1, 0x53, 0x1, 0x2, 0x1, 0x22, 0x3, 0x2, 0x1, 0xfd, 0x2, 0x3e5, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x9, 0x1, 0x1, 0x2, 0x1, 0x1, 0x8, 0x1, 0x11, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0xfb7, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3d, 0x1, 0x2, 0x1, 0xa, 0x1, 0x1, 0x1, 0x7, 0x1, 0x7, 0x1, 0x7, 0x1, 0x7, 0x1, 0x2, 0x2, 0x9, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x2, 0x124, 0x1, 0x3, 0x2, 0x1fd, 0x2, 0x7b1, 0x1, 0xce23, 0x10e, 0x2, 0x1, 0x1, 0x1, 0x2, 0xa, 0x1, 0x1, 0x1, 0x1, 0x2, 0x2, 0x3, 0x44, 0x2, 0x6a, 0x43, 0x1, 0x1, 0x1, 0xa, 0xd, 0x1, 0x5, 0x1, 0x1, 0x1, 0x2, 0x1, 0x2, 0x1, 0x9, 0xd60f, 0x7, 0x56, 0x6, 0x1263f, 0x21e]);
  5043. immutable NFKC_QCM = RleBitSet!uint.fromRawArray([0x300, 0x5, 0x1, 0x7, 0x2, 0x1, 0x1, 0x1, 0x1, 0x2, 0x6, 0x1, 0x7, 0x6, 0x4, 0x2, 0x1, 0x2, 0x6, 0x1, 0x9, 0x1, 0x2, 0x1, 0x30d, 0x3, 0x2e6, 0x1, 0x81, 0x1, 0x18, 0x1, 0x166, 0x1, 0x17, 0x2, 0x66, 0x1, 0x18, 0x1, 0x7e, 0x1, 0x6b, 0x1, 0x12, 0x2, 0x67, 0x1, 0x18, 0x1, 0x72, 0x1, 0x4, 0x1, 0xf, 0x1, 0x24e, 0x1, 0x132, 0x15, 0x32, 0x1b, 0x972, 0x1, 0x1563, 0x2, 0xe01f, 0x1, 0x6c, 0x1]);
  5044. immutable NFD_QCN = RleBitSet!uint.fromRawArray([0xc0, 0x6, 0x1, 0x9, 0x1, 0x6, 0x2, 0x5, 0x2, 0x6, 0x1, 0x9, 0x1, 0x6, 0x2, 0x5, 0x1, 0x11, 0x2, 0x14, 0x2, 0x9, 0x3, 0x4, 0x1, 0x6, 0x4, 0x6, 0x3, 0x6, 0x2, 0x12, 0x2, 0x17, 0x21, 0x2, 0xd, 0x2, 0x1c, 0x10, 0x1, 0x6, 0x2, 0xb, 0x3, 0x2, 0x2, 0x24, 0x2, 0x2, 0x6, 0xe, 0x10c, 0x2, 0x1, 0x2, 0x2f, 0x1, 0x9, 0x1, 0x6, 0x6, 0x1, 0x1, 0x1, 0x3, 0x19, 0x7, 0x19, 0x5, 0x4, 0x2, 0x2b, 0x2, 0x1, 0x1, 0x3, 0x1, 0x4, 0x3, 0xa, 0x1, 0x1f, 0x1, 0x16, 0x2, 0x1, 0x1, 0x3, 0x1, 0x4, 0x3, 0x17, 0x2, 0x49, 0x2, 0xd, 0x4, 0x2, 0x2, 0x2, 0x6, 0x2, 0x6, 0x2, 0xc, 0x2, 0x2, 0x128, 0x5, 0x99, 0x1, 0x1, 0x1, 0x10, 0x1, 0x255, 0x1, 0x7, 0x1, 0x2, 0x1, 0x23, 0x8, 0x6b, 0x2, 0xf, 0x2, 0x1, 0x1, 0x53, 0x1, 0x2, 0x1, 0x22, 0x3, 0x2, 0x1, 0xe9, 0x1, 0x2, 0x2, 0xf, 0x2, 0x36, 0x1, 0x35, 0x3, 0x7b, 0x1, 0x77, 0x1, 0x6, 0x2, 0x1, 0x2, 0x7e, 0x3, 0x8d, 0x1, 0x1, 0x3, 0x164, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x9, 0x1, 0x1, 0x2, 0x1, 0x1, 0x8, 0x1, 0x11, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x6c, 0x1, 0xadf, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x1, 0x28, 0x1, 0x1, 0x1, 0x2, 0x2, 0x1, 0x1, 0x2bc, 0x9a, 0x1, 0x1, 0x4, 0x5a, 0x6, 0x16, 0x2, 0x6, 0x2, 0x26, 0x2, 0x6, 0x2, 0x8, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1f, 0x2, 0x35, 0x1, 0x7, 0x1, 0x1, 0x2, 0x4, 0x1, 0xe, 0x2, 0x6, 0x1, 0x13, 0x2, 0x3, 0x1, 0x8, 0x2, 0x2, 0x124, 0x1, 0x3, 0x2, 0x6e, 0x2, 0x12, 0x1, 0x1e, 0x3, 0x34, 0x1, 0x4, 0x1, 0x2, 0x1, 0x17, 0x1, 0x1, 0x1, 0x1a, 0x1, 0x2, 0x1, 0x2, 0x1, 0x1, 0x1, 0x16, 0x1, 0x1, 0x1, 0xa, 0x5, 0x2, 0x2, 0x2, 0x2, 0x6, 0x2, 0x2, 0x2, 0x2, 0x2, 0x22, 0x4, 0x30, 0x4, 0x6, 0x4, 0x3b, 0x2, 0x7b1, 0x1, 0x56f, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x16, 0x1, 0x9, 0x1, 0xd, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x16, 0x1, 0x2, 0x4, 0x3, 0x1, 0x7b01, 0x2ba4, 0x215c, 0x10e, 0x2, 0x1, 0x1, 0x1, 0x2, 0xa, 0x1, 0x1, 0x1, 0x1, 0x2, 0x2, 0x3, 0x44, 0x2, 0x6a, 0x43, 0x1, 0x1, 0x1, 0xa, 0xd, 0x1, 0x5, 0x1, 0x1, 0x1, 0x2, 0x1, 0x2, 0x1, 0x9, 0x154b, 0x1, 0x1, 0x1, 0xe, 0x1, 0x82, 0x2, 0xc02e, 0x7, 0x56, 0x6, 0x1263f, 0x21e]);
  5045. immutable NFKC_QCN = RleBitSet!uint.fromRawArray([0xa0, 0x1, 0x7, 0x1, 0x1, 0x1, 0x4, 0x1, 0x2, 0x4, 0x2, 0x3, 0x1, 0x3, 0x73, 0x2, 0xb, 0x2, 0x8, 0x1, 0x35, 0x1, 0x44, 0x9, 0x24, 0x3, 0xbc, 0x9, 0x1f, 0x6, 0x2, 0x5, 0x5b, 0x2, 0x1, 0x2, 0x2f, 0x1, 0x5, 0x1, 0x3, 0x1, 0x5, 0x2, 0x1, 0x1, 0x48, 0x7, 0x19, 0x3, 0x1, 0x2, 0x3, 0x1, 0x18d, 0x1, 0xed, 0x4, 0x2df, 0x8, 0x7c, 0x2, 0x1, 0x1, 0x53, 0x1, 0x2, 0x1, 0x22, 0x3, 0x2, 0x1, 0xfd, 0x2, 0x2d5, 0x1, 0x7f, 0x1, 0x28, 0x2, 0x2e, 0x1, 0x36, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x9, 0x1, 0x1, 0x5, 0x7, 0x1, 0x11, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x142, 0x1, 0xc2f, 0x3, 0x1, 0xb, 0x1, 0x12, 0x1, 0x1c, 0xd, 0x1, 0x22, 0x25, 0xda, 0x2, 0xd5, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3d, 0x1, 0x1, 0x5, 0x7, 0x1, 0x1, 0x1, 0x1, 0x3, 0x3, 0x1, 0x7, 0x1, 0x1, 0x3, 0x3, 0x1, 0x7, 0x1, 0x1, 0x3, 0x9, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0xb, 0x6, 0x1, 0x5, 0x1, 0xc, 0x3, 0x8, 0x1, 0x3, 0x2, 0x1, 0x2, 0x4, 0x1, 0x1, 0x1, 0x8, 0x3, 0xd, 0x1, 0x7, 0x1, 0x10, 0x2, 0x2, 0x1b, 0x1, 0xd, 0xb, 0x1, 0x57, 0x4, 0x1, 0x3, 0x1, 0xb, 0x1, 0x2, 0x2, 0x5, 0x2, 0x3, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x1, 0x3, 0x1, 0x7, 0x1, 0x6, 0x4, 0x5, 0x6, 0x30, 0x9, 0x1, 0xa2, 0x2, 0x1, 0x2, 0xf8, 0x2, 0x135, 0x8b, 0x521, 0x1, 0x67, 0x3, 0x65, 0x1, 0x19f, 0x2, 0xf1, 0x1, 0x12f, 0x1, 0x53, 0x1, 0xc, 0xd6, 0x2a, 0x1, 0x35, 0x1, 0x1, 0x3, 0x60, 0x2, 0x2, 0x1, 0x5f, 0x1, 0x31, 0x5e, 0x3, 0xe, 0x60, 0x1f, 0x1, 0x28, 0x8, 0x2f, 0x1, 0x7f, 0x1, 0x100, 0x7370, 0x1, 0x87, 0x2, 0x5106, 0x10e, 0x2, 0x1, 0x1, 0x1, 0x2, 0xa, 0x1, 0x1, 0x1, 0x1, 0x2, 0x2, 0x3, 0x44, 0x2, 0x6a, 0x26, 0x7, 0xc, 0x5, 0x5, 0x1, 0x1, 0x18, 0x1, 0x5, 0x1, 0x1, 0x1, 0x2, 0x1, 0x2, 0x1, 0x6c, 0x21, 0x16b, 0x12, 0x40, 0x2, 0x36, 0x28, 0xd, 0x13, 0xa, 0x16, 0x15, 0x2, 0xc, 0x1, 0x13, 0x1, 0x4, 0x4, 0x3, 0x1, 0x1, 0x1, 0x87, 0x4, 0xbe, 0x3, 0x6, 0x2, 0x6, 0x2, 0x6, 0x2, 0x3, 0x3, 0x7, 0x1, 0x7, 0xd16f, 0x7, 0x56, 0x6, 0x23f, 0x55, 0x1, 0x47, 0x1, 0x2, 0x2, 0x1, 0x2, 0x2, 0x2, 0x4, 0x1, 0xc, 0x1, 0x1, 0x1, 0x7, 0x1, 0x41, 0x1, 0x4, 0x2, 0x8, 0x1, 0x7, 0x1, 0x1c, 0x1, 0x4, 0x1, 0x5, 0x1, 0x1, 0x3, 0x7, 0x1, 0x154, 0x2, 0x124, 0x2, 0x32, 0x1600, 0x4, 0x1, 0x1b, 0x1, 0x2, 0x1, 0x1, 0x2, 0x1, 0x1, 0xa, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x6, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x1, 0x2, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x2, 0x4, 0x1, 0x7, 0x1, 0x4, 0x1, 0x4, 0x1, 0x1, 0x1, 0xa, 0x1, 0x11, 0x5, 0x3, 0x1, 0x5, 0x1, 0x11, 0x244, 0xb, 0x5, 0x1f, 0x1, 0x20, 0x1a, 0x2, 0x24, 0x1, 0x6f, 0x3, 0xd, 0x2b, 0x5, 0x9, 0x7, 0x2, 0x105ae, 0x21e]);
  5046. immutable NFKD_QCN = RleBitSet!uint.fromRawArray([0xa0, 0x1, 0x7, 0x1, 0x1, 0x1, 0x4, 0x1, 0x2, 0x4, 0x2, 0x3, 0x1, 0x3, 0x1, 0x6, 0x1, 0x9, 0x1, 0x6, 0x2, 0x5, 0x2, 0x6, 0x1, 0x9, 0x1, 0x6, 0x2, 0x5, 0x1, 0x11, 0x2, 0x14, 0x2, 0x9, 0x1, 0x6, 0x1, 0x8, 0x2, 0x7, 0x2, 0x6, 0x2, 0x12, 0x2, 0x18, 0x20, 0x2, 0xd, 0x2, 0x13, 0x19, 0x1, 0x6, 0x2, 0x10, 0x2, 0x24, 0x2, 0x2, 0x6, 0xe, 0x7c, 0x9, 0x1f, 0x6, 0x2, 0x5, 0x5b, 0x2, 0x1, 0x2, 0x2f, 0x1, 0x5, 0x1, 0x3, 0x1, 0x5, 0x7, 0x1, 0x1, 0x1, 0x3, 0x19, 0x7, 0x19, 0x5, 0x1, 0x7, 0x19, 0x3, 0x1, 0x2, 0x3, 0x1, 0x6, 0x2, 0x1, 0x1, 0x3, 0x1, 0x4, 0x3, 0xa, 0x1, 0x1f, 0x1, 0x16, 0x2, 0x1, 0x1, 0x3, 0x1, 0x4, 0x3, 0x17, 0x2, 0x49, 0x2, 0xd, 0x4, 0x2, 0x2, 0x2, 0x6, 0x2, 0x6, 0x2, 0xc, 0x2, 0x2, 0x8d, 0x1, 0x9a, 0x5, 0x4e, 0x4, 0x47, 0x1, 0x1, 0x1, 0x10, 0x1, 0x255, 0x1, 0x7, 0x1, 0x2, 0x1, 0x23, 0x8, 0x6b, 0x2, 0xf, 0x2, 0x1, 0x1, 0x53, 0x1, 0x2, 0x1, 0x22, 0x3, 0x2, 0x1, 0xe9, 0x1, 0x2, 0x2, 0xf, 0x2, 0x36, 0x1, 0x35, 0x3, 0x7b, 0x1, 0x77, 0x1, 0x6, 0x2, 0x1, 0x2, 0x7e, 0x3, 0x8d, 0x1, 0x1, 0x3, 0x54, 0x1, 0x7f, 0x1, 0x28, 0x2, 0x2e, 0x1, 0x36, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x9, 0x1, 0x1, 0x5, 0x7, 0x1, 0x11, 0x1, 0x9, 0x1, 0x4, 0x1, 0x4, 0x1, 0x4, 0x1, 0xc, 0x1, 0x6c, 0x1, 0xd5, 0x1, 0xa09, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x1, 0x28, 0x1, 0x1, 0x1, 0x2, 0x2, 0x1, 0x1, 0x1e8, 0x3, 0x1, 0xb, 0x1, 0x12, 0x1, 0x1c, 0xd, 0x1, 0x22, 0x25, 0x40, 0x9c, 0x4, 0x5a, 0x6, 0x16, 0x2, 0x6, 0x2, 0x26, 0x2, 0x6, 0x2, 0x8, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1f, 0x2, 0x35, 0x1, 0xf, 0x1, 0xe, 0x2, 0x6, 0x1, 0x13, 0x2, 0x3, 0x1, 0x9, 0x1, 0xb, 0x6, 0x1, 0x5, 0x1, 0xc, 0x3, 0x8, 0x1, 0x3, 0x2, 0x1, 0x2, 0x4, 0x1, 0x1, 0x1, 0x8, 0x3, 0xd, 0x1, 0x7, 0x1, 0x10, 0x2, 0x2, 0x1b, 0x1, 0xd, 0xb, 0x1, 0x57, 0x4, 0x1, 0x3, 0x1, 0xb, 0x1, 0x2, 0x2, 0x5, 0x2, 0x3, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x1, 0x3, 0x1, 0x7, 0x1, 0x6, 0x4, 0x5, 0x6, 0x30, 0x9, 0x1, 0x10, 0x2, 0x12, 0x1, 0x1e, 0x3, 0x34, 0x1, 0x4, 0x1, 0x2, 0x1, 0x17, 0x1, 0x1, 0x1, 0x5, 0x2, 0x1, 0x2, 0x10, 0x1, 0x2, 0x1, 0x2, 0x1, 0x1, 0x1, 0x16, 0x1, 0x1, 0x1, 0xa, 0x5, 0x2, 0x2, 0x2, 0x2, 0x6, 0x2, 0x2, 0x2, 0x2, 0x2, 0x22, 0x4, 0x30, 0x4, 0x6, 0x4, 0x3b, 0x2, 0x135, 0x8b, 0x521, 0x1, 0x67, 0x3, 0x65, 0x1, 0x19f, 0x2, 0xf1, 0x1, 0x12f, 0x1, 0x53, 0x1, 0xc, 0xd6, 0x2a, 0x1, 0x35, 0x1, 0x1, 0x3, 0x11, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x16, 0x1, 0x6, 0x2, 0x1, 0x2, 0xc, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x1, 0x2, 0x16, 0x1, 0x2, 0x4, 0x3, 0x2, 0x31, 0x5e, 0x3, 0xe, 0x60, 0x1f, 0x1, 0x28, 0x8, 0x2f, 0x1, 0x7f, 0x1, 0x100, 0x7370, 0x1, 0x87, 0x2, 0x406, 0x2ba4, 0x215c, 0x10e, 0x2, 0x1, 0x1, 0x1, 0x2, 0xa, 0x1, 0x1, 0x1, 0x1, 0x2, 0x2, 0x3, 0x44, 0x2, 0x6a, 0x26, 0x7, 0xc, 0x5, 0x5, 0x1, 0x1, 0x18, 0x1, 0x5, 0x1, 0x1, 0x1, 0x2, 0x1, 0x2, 0x1, 0x6c, 0x21, 0x16b, 0x12, 0x40, 0x2, 0x36, 0x28, 0xd, 0x13, 0xa, 0x16, 0x15, 0x2, 0xc, 0x1, 0x13, 0x1, 0x4, 0x4, 0x3, 0x1, 0x1, 0x1, 0x87, 0x4, 0xbe, 0x3, 0x6, 0x2, 0x6, 0x2, 0x6, 0x2, 0x3, 0x3, 0x7, 0x1, 0x7, 0x10ab, 0x1, 0x1, 0x1, 0xe, 0x1, 0x82, 0x2, 0xc02e, 0x7, 0x56, 0x6, 0x23f, 0x55, 0x1, 0x47, 0x1, 0x2, 0x2, 0x1, 0x2, 0x2, 0x2, 0x4, 0x1, 0xc, 0x1, 0x1, 0x1, 0x7, 0x1, 0x41, 0x1, 0x4, 0x2, 0x8, 0x1, 0x7, 0x1, 0x1c, 0x1, 0x4, 0x1, 0x5, 0x1, 0x1, 0x3, 0x7, 0x1, 0x154, 0x2, 0x124, 0x2, 0x32, 0x1600, 0x4, 0x1, 0x1b, 0x1, 0x2, 0x1, 0x1, 0x2, 0x1, 0x1, 0xa, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x6, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x1, 0x2, 0x1, 0x1, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2, 0x1, 0x1, 0x2, 0x4, 0x1, 0x7, 0x1, 0x4, 0x1, 0x4, 0x1, 0x1, 0x1, 0xa, 0x1, 0x11, 0x5, 0x3, 0x1, 0x5, 0x1, 0x11, 0x244, 0xb, 0x5, 0x1f, 0x1, 0x20, 0x1a, 0x2, 0x24, 0x1, 0x6f, 0x3, 0xd, 0x2b, 0x5, 0x9, 0x7, 0x2, 0x105ae, 0x21e]);
  5047. immutable NFC_QCM = RleBitSet!uint.fromRawArray([0x300, 0x5, 0x1, 0x7, 0x2, 0x1, 0x1, 0x1, 0x1, 0x2, 0x6, 0x1, 0x7, 0x6, 0x4, 0x2, 0x1, 0x2, 0x6, 0x1, 0x9, 0x1, 0x2, 0x1, 0x30d, 0x3, 0x2e6, 0x1, 0x81, 0x1, 0x18, 0x1, 0x166, 0x1, 0x17, 0x2, 0x66, 0x1, 0x18, 0x1, 0x7e, 0x1, 0x6b, 0x1, 0x12, 0x2, 0x67, 0x1, 0x18, 0x1, 0x72, 0x1, 0x4, 0x1, 0xf, 0x1, 0x24e, 0x1, 0x132, 0x15, 0x32, 0x1b, 0x972, 0x1, 0x1563, 0x2, 0xe01f, 0x1, 0x6c, 0x1]);