有个帖子你看看http://expert.csdn.net/Expert/topic/2515/2515519.xml?temp=.5754206

解决方案 »

  1.   

    回馈:
    public class LunarCalendar {
        public static final int START_YEAR = 1901;
        public static final int END_YEAR = 2050;
        public LunarCalendar() {
        }    final static long[] lunarInfo = new long[] {
                0x04bd8, 0x04ae0, 0x0a570, 0x054d5, 0x0d260, 0x0d950, 0x16554,
                0x056a0, 0x09ad0, 0x055d2,
                0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0,
                0x0ada2, 0x095b0, 0x14977,
                0x04970, 0x0a4b0, 0x0b4b5, 0x06a50, 0x06d40, 0x1ab54, 0x02b60,
                0x09570, 0x052f2, 0x04970,
                0x06566, 0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3,
                0x092e0, 0x1c8d7, 0x0c950,
                0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4, 0x025d0, 0x092d0,
                0x0d2b2, 0x0a950, 0x0b557,
                0x06ca0, 0x0b550, 0x15355, 0x04da0, 0x0a5d0, 0x14573, 0x052d0,
                0x0a9a8, 0x0e950, 0x06aa0,
                0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260, 0x0f263,
                0x0d950, 0x05b57, 0x056a0,
                0x096d0, 0x04dd5, 0x04ad0, 0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558,
                0x0b540, 0x0b5a0, 0x195a6,
                0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40,
                0x0af46, 0x0ab60, 0x09570,
                0x04af5, 0x04970, 0x064b0, 0x074a3, 0x0ea50, 0x06b58, 0x055c0,
                0x0ab60, 0x096d5, 0x092e0,
                0x0c960, 0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7,
                0x025d0, 0x092d0, 0x0cab5,
                0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9, 0x04ba0, 0x0a5b0,
                0x15176, 0x052b0, 0x0a930,
                0x07954, 0x06aa0, 0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0,
                0x0d260, 0x0ea65, 0x0d530,
                0x05aa0, 0x076a3, 0x096d0, 0x04bd7, 0x04ad0, 0x0a4d0, 0x1d0b6,
                0x0d250, 0x0d520, 0x0dd45,
                0x0b5a0, 0x056d0, 0x055b2, 0x049b0, 0x0a577, 0x0a4b0, 0x0aa50,
                0x1b255, 0x06d20, 0x0ada0};    final public static int lYearDays(int y) { //====== 传回农历 y年的总天数
            int i, sum = 348;
            for (i = 0x8000; i > 0x8; i >>= 1) {
                if ( (lunarInfo[y - 1900] & i) != 0)
                    sum += 1;
            }
            return (sum + leapDays(y));
        }    final public static int leapDays(int y) { //====== 传回农历 y年闰月的天数
            if (leapMonth(y) != 0) {
                if ( (lunarInfo[y - 1900] & 0x10000) != 0)
                    return 30;
                else
                    return 29;
            }
            else
                return 0;
        }    final public static int leapMonth(int y) { //====== 传回农历 y年闰哪个月 1-12 , 没闰传回 0
            return (int) (lunarInfo[y - 1900] & 0xf);
        }    final public static int monthDays(int y, int m) { //====== 传回农历 y年m月的总天数
            if ( (lunarInfo[y - 1900] & (0x10000 >> m)) == 0)
                return 29;
            else
                return 30;
        }    final public static String AnimalsYear(int y) { //====== 传回农历 y年的生肖
            final String[] Animals = new String[] {
                    "鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪"};
            return Animals[ (y - 4) % 12];
        }    final public static String cyclicalm(int num) { //====== 传入 月日的offset 传回干支, 0=甲子
            final String[] Gan = {
                    "甲", "乙", "丙", "丁", "戊", "己", "庚", "辛", "壬", "癸"};
            final String[] Zhi = {
                    "子", "丑", "寅", "卯", "辰", "巳", "午", "未", "申", "酉", "戌", "亥"};
            return (Gan[num % 10] + Zhi[num % 12]);
        }    final public static String cyclical(int y) { //====== 传入 offset 传回干支, 0=甲子
            int num = y - 1900 + 36;
            return (cyclicalm(num));
        }    final public long[] Lunar(int y, int m) //传出农历.year0 .month1 .day2 .yearCyl3 .monCyl4
        //       .dayCyl5 .isLeap6
        {
            final int[] year20 = new int[] {
                    1, 4, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1};
            final int[] year19 = new int[] {
                    0, 3, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0};
            final int[] year2000 = new int[] {
                    0, 3, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1};
            long[] nongDate = new long[7];
            int i = 0, temp = 0, leap = 0;
            Calendar baseDate = Calendar.getInstance();
            baseDate.set(1900 + 1900, 1, 31);
            Calendar objDate = Calendar.getInstance();
            objDate.set(y + 1900, m, 1);
            //Date baseDate = new Date(1900, 1, 31);
            //Date objDate = new Date(y, m, 1);
            long offset = (objDate.getTime().getTime() - baseDate.getTime().getTime()) /
                    86400000L;
            if (y < 2000)
                offset += year19[m - 1];
            if (y > 2000)
                offset += year20[m - 1];
            if (y == 2000)
                offset += year2000[m - 1];
            nongDate[5] = offset + 40;
            nongDate[4] = 14;        for (i = 1900; i < 2050 && offset > 0; i++) {
                temp = lYearDays(i);
                offset -= temp;
                nongDate[4] += 12;
            }
            if (offset < 0) {
                offset += temp;
                i--;
                nongDate[4] -= 12;
            }
            nongDate[0] = i;
            nongDate[3] = i - 1864;
            leap = leapMonth(i); //闰哪个月
            nongDate[6] = 0;        for (i = 1; i < 13 && offset > 0; i++) {
                //闰月
                if (leap > 0 && i == (leap + 1) && nongDate[6] == 0) {
                    --i; nongDate[6] = 1;
                    temp = leapDays( (int) nongDate[0]);
                }
                else {
                    temp = monthDays( (int) nongDate[0], i);
                }            //解除闰月
                if (nongDate[6] == 1 && i == (leap + 1))
                    nongDate[6] = 0;
                offset -= temp;
                if (nongDate[6] == 0)
                    nongDate[4]++;
            }        if (offset == 0 && leap > 0 && i == leap + 1) {
                if (nongDate[6] == 1) {
                    nongDate[6] = 0;
                }
                else {
                    nongDate[6] = 1;
                    --i; --nongDate[4];
                }
            }
            if (offset < 0) {
                offset += temp;
                --i; --nongDate[4];
            }
            nongDate[1] = i;
            nongDate[2] = offset + 1;
            return nongDate;
        }    final public static long[] calElement(int y, int m, int d)
        //得出y年m月d日对应的农历.year0 .month1 .day2 .yearCyl3 .monCyl4 .dayCyl5 .isLeap6
        {
            long[] nongDate = new long[7];
            int i = 0, temp = 0, leap = 0;
            Calendar baseDate = Calendar.getInstance();
            baseDate.set(0 + 1900, 0, 31);
            Calendar objDate = Calendar.getInstance();
            objDate.set(y - 1900 + 1900, m - 1, d);
            //Date baseDate = new Date(0, 0, 31);
            //Date objDate = new Date(y - 1900, m - 1, d);
            long offset = (objDate.getTime().getTime() - baseDate.getTime().getTime()) /
                    86400000L;
            nongDate[5] = offset + 40;
            nongDate[4] = 14;        for (i = 1900; i < 2050 && offset > 0; i++) {
                temp = lYearDays(i);
                offset -= temp;
                nongDate[4] += 12;
            }
            if (offset < 0) {
                offset += temp;
                i--;
                nongDate[4] -= 12;
            }
            nongDate[0] = i;
            nongDate[3] = i - 1864;
            leap = leapMonth(i); //闰哪个月
            nongDate[6] = 0;        for (i = 1; i < 13 && offset > 0; i++) {
                //闰月
                if (leap > 0 && i == (leap + 1) && nongDate[6] == 0) {
                    --i; nongDate[6] = 1;
                    temp = leapDays( (int) nongDate[0]);
                }
                else {
                    temp = monthDays( (int) nongDate[0], i);
                }
      

  2.   


                //解除闰月
                if (nongDate[6] == 1 && i == (leap + 1))
                    nongDate[6] = 0;
                offset -= temp;
                if (nongDate[6] == 0)
                    nongDate[4]++;
            }        if (offset == 0 && leap > 0 && i == leap + 1) {
                if (nongDate[6] == 1) {
                    nongDate[6] = 0;
                }
                else {
                    nongDate[6] = 1;
                    --i; --nongDate[4];
                }
            }
            if (offset < 0) {
                offset += temp;
                --i; --nongDate[4];
            }
            nongDate[1] = i;
            nongDate[2] = offset + 1;
            return nongDate;
        }//传出y年m月d日对应的农历.year0 .month1 .day2 .yearCyl3 .monCyl4 .dayCyl5 .isLeap6
        public static void main(String[] args) {
            Calendar cld = Calendar.getInstance();
            int year = cld.get(Calendar.YEAR);
            int month = cld.get(Calendar.MONTH) + 1;
            int day = cld.get(Calendar.DAY_OF_MONTH);
            long[] l = calElement(year, month, day);
            System.out.println(getLunarCalendar("20031207"));
            System.out.println(getCurrentLunarCalendar());    }    public static String getLunarCalendar(String date) {
            String strLunar = "";
            if (date == null || date.length() != 8) {
                strLunar = "getLunarCalendar()输入参数出错!";
                return strLunar;
            }
            int year = Integer.valueOf(date.substring(0, 4)).intValue();
            if (year > 2048 || year < 1900) {
                strLunar = "对不起, 超出了所能计算的范围,请正确输入!";
                return strLunar;
            }
            int month = Integer.valueOf(date.substring(4, 6)).intValue();
            int day = Integer.valueOf(date.substring(6, 8)).intValue();        long[] l = calElement(year, month, day);        strLunar = "农历" + getMonth( (int) (l[1])) + "月"
                    + getchinaDay( (int) (l[2])) + " "
                    + getLunarYear(year) + " "
                    + getLunarMonth((int) (l[4])) + " "
                    + getLunarDay((int) (l[5])) ;
            if (getHolDay(year, month, day) != null) {
                strLunar = strLunar + " 气节:" + getHolDay(year, month, day);
            }
            return strLunar;
        }
        public static String getCurrentLunarCalendar() {
            GregorianCalendar calendar = new GregorianCalendar();
            int year = calendar.get(calendar.YEAR);
            int month = calendar.get(calendar.MONTH) + 1;
            int day = calendar.get(calendar.DAY_OF_MONTH);
            long[] l = calElement(year, month, day);
            String strLunar = "";
            strLunar = "农历" + getMonth( (int) (l[1])) + "月"
                    + getchinaDay( (int) (l[2])) + " "
                    + getLunarYear(year) + " "
                    + getLunarMonth((int) (l[4])) + " "
                    + getLunarDay((int) (l[5])) ;
            if (getHolDay(year, month, day) != null) {
                strLunar = strLunar + " 气节:" + getHolDay(year, month, day);
            }
            return strLunar;
        }
        private static String getWeekDay(int year, int month, int day) {
            String week[] = {
                    "日", "一", "二", "三", "四", "五", "六"};
            GregorianCalendar calendar = new GregorianCalendar(year, month - 1, day);        return week[calendar.get(Calendar.DAY_OF_WEEK) - 1];
        }    private static String getMonth(int month) {
            String strMonth[] = {
                    "正", "二", "三", "四", "五", "六", "七", "八", "九",
                    "十", "十一", "十二"};        return strMonth[month - 1];
        }    public static String getchinaDay(int day) {
            String strDay[] = {
                    "一", "二", "三", "四", "五", "六", "八", "九"};
            String a = "";
            if (day == 10)
                return "初十";
            int two = (int) ( (day) / 10);
            if (two == 0)
                a = "初";
            if (two == 1)
                a = "十";
            if (two == 2)
                a = "廿";
            if (two == 3)
                a = "卅";
            int one = (int) (day % 10);        switch (one) {
                case 1:
                    a += "一";
                    break;
                case 2:
                    a += "二";
                    break;
                case 3:
                    a += "三";
                    break;
                case 4:
                    a += "四";
                    break;
                case 5:
                    a += "五";
                    break;
                case 6:
                    a += "六";
                    break;
                case 7:
                    a += "七";
                    break;
                case 8:
                    a += "八";
                    break;
                case 9:
                    a += "九";
                    break;
            }        return a;
        }    //数组gLanarHoliDay存放每年的二十四节气对应的阳历日期
    //每年的二十四节气对应的阳历日期几乎固定,平均分布于十二个月中
    // 1月 2月 3月 4月 5月 6月
    //小寒 大寒 立春 雨水 惊蛰 春分 清明 谷雨 立夏 小满 芒种 夏至
    // 7月 8月 9月 10月 11月 12月
    //小暑 大暑 立秋 处暑 白露 秋分 寒露 霜降 立冬 小雪 大雪 冬至
    //*********************************************************************************
    // 节气无任何确定规律,所以只好存表,要节省空间,所以....
    //**********************************************************************************}
    //数据格式说明:
    //如1901年的节气为
    // 1月 2月 3月 4月 5月 6月 7月 8月 9月 10月 11月 12月
    // 6, 21, 4, 19, 6, 21, 5, 21, 6,22, 6,22, 8, 23, 8, 24, 8, 24, 8, 24, 8, 23, 8, 22
    // 9, 6, 11,4, 9, 6, 10,6, 9,7, 9,7, 7, 8, 7, 9, 7, 9, 7, 9, 7, 8, 7, 15
    //上面第一行数据为每月节气对应日期,15减去每月第一个节气,每月第二个节气减去15得第二行
    // 这样每月两个节气对应数据都小于16,每月用一个字节存放,高位存放第一个节气数据,低位存放
    //第二个节气的数据,可得下表
      

  3.   

    private static final int[] gLunarHolDay = new int[] {
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1901
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x87, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1902
                  0x96, 0xA5, 0x87, 0x96, 0x87, 0x87, 0x79, 0x69, 0x69, 0x69, 0x78,
                  0x78, //1903
                  0x86, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x78,
                  0x87, //1904
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1905
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1906
                  0x96, 0xA5, 0x87, 0x96, 0x87, 0x87, 0x79, 0x69, 0x69, 0x69, 0x78,
                  0x78, //1907
                  0x86, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1908
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1909
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1910
                  0x96, 0xA5, 0x87, 0x96, 0x87, 0x87, 0x79, 0x69, 0x69, 0x69, 0x78,
                  0x78, //1911
                  0x86, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1912
                  0x95, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1913
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1914
                  0x96, 0xA5, 0x97, 0x96, 0x97, 0x87, 0x79, 0x79, 0x69, 0x69, 0x78,
                  0x78, //1915
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1916
                  0x95, 0xB4, 0x96, 0xA6, 0x96, 0x97, 0x78, 0x79, 0x78, 0x69, 0x78,
                  0x87, //1917
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1918
                  0x96, 0xA5, 0x97, 0x96, 0x97, 0x87, 0x79, 0x79, 0x69, 0x69, 0x78,
                  0x78, //1919
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1920
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x78, 0x79, 0x78, 0x69, 0x78,
                  0x87, //1921
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1922
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x87, 0x79, 0x79, 0x69, 0x69, 0x78,
                  0x78, //1923
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1924
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x78, 0x79, 0x78, 0x69, 0x78,
                  0x87, //1925
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1926
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x87, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1927
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1928
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1929
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1930
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x87, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1931
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1932
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1933
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1934
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1935
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1936
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1937
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1938
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1939
                  0x96, 0xA5, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1940
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1941
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1942
                  0x96, 0xA4, 0x96, 0x96, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1943
                  0x96, 0xA5, 0x96, 0xA5, 0xA6, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1944
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1945
                  0x95, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x78, 0x69, 0x78,
                  0x77, //1946
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1947
                  0x96, 0xA5, 0xA6, 0xA5, 0xA6, 0x96, 0x88, 0x88, 0x78, 0x78, 0x87,
                  0x87, //1948
                  0xA5, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x79, 0x78, 0x79, 0x77,
                  0x87, //1949
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x78, 0x79, 0x78, 0x69, 0x78,
                  0x77, //1950
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x79, 0x79, 0x79, 0x69, 0x78,
                  0x78, //1951
                  0x96, 0xA5, 0xA6, 0xA5, 0xA6, 0x96, 0x88, 0x88, 0x78, 0x78, 0x87,
                  0x87, //1952
                  0xA5, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1953
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x78, 0x79, 0x78, 0x68, 0x78,
                  0x87, //1954
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1955
                  0x96, 0xA5, 0xA5, 0xA5, 0xA6, 0x96, 0x88, 0x88, 0x78, 0x78, 0x87,
                  0x87, //1956
                  0xA5, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x79, 0x77,
                  0x87, //1957
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1958
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1959
                  0x96, 0xA4, 0xA5, 0xA5, 0xA6, 0x96, 0x88, 0x88, 0x88, 0x78, 0x87,
                  0x87, //1960
                  0xA5, 0xB4, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1961
                  0x96, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1962
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1963
                  0x96, 0xA4, 0xA5, 0xA5, 0xA6, 0x96, 0x88, 0x88, 0x88, 0x78, 0x87,
                  0x87, //1964
                  0xA5, 0xB4, 0x96, 0xA5, 0x96, 0x96, 0x88, 0x78, 0x78, 0x78, 0x87,
                  0x87, //1965
                  0x95, 0xB4, 0x96, 0xA5, 0x96, 0x97, 0x88, 0x78, 0x78, 0x69, 0x78,
                  0x87, //1966
                  0x96, 0xB4, 0x96, 0xA6, 0x97, 0x97, 0x78, 0x79, 0x79, 0x69, 0x78,
                  0x77, //1967