C#—— 身份证验证方法

身份证验证方法

身份证验证

 /// <summary>
    /// 身份证验证方法
    /// </summary>
    public class IDcards
    {

        #region 身份证验证公开方法
        /// <summary>
        /// 身份证号码验证(判断是否是正确的身份证号码)
        /// </summary>
        /// <param name="number">15或18位身份证</param>
        /// <returns>bool true or false</returns>
        public static bool IDcards_isright(string number)
        {
            try
            {
                if (number.Length != 15 && number.Length != 18)
                {
                    return false;
                }
                number = number.ToUpper();
                if (number.Length == 18)
                {
                    bool check = CheckIDCard18(number);
                    return check;
                }
                else
                {
                    bool check = CheckIDCard15(number);
                    return check;
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                return false;
            }
        }
        /// <summary>
        /// 获取出生日期(yyyy-MM-dd)
        /// </summary>
        /// <param name="number"></param>
        /// <returns></returns>
        public static string IDcards_GetBirthday(string number)
        {
            if (IDcards_isright(number))
            {
                string msg = number.Substring(number.Length - 12, 8).Insert(6, "-").Insert(4, "-");
                return sucjson(msg);
            }
            else
            {
                return errorjson(0, 20001, "身份证号码错误");
            }
        }
        /// <summary>
        /// 获取性别
        /// </summary>
        /// <param name="number"></param>
        /// <returns>男/女</returns>
        public static string IDcards_GetSex(string number)
        {
            if (IDcards_isright(number))
            {
                string msg = GetSex(number, true);
                return sucjson(msg);
            }
            else
            {
                return errorjson(0, 20001, "身份证号码错误");
            }
        }
        /// <summary>
        /// 获取身份证全部信息
        /// </summary>
        /// <param name="number"></param>
        /// <returns>json</returns>
        public static string IDcards_GetMsg(string number)
        {
            if (IDcards_isright(number))
            {
                string sex = GetSex(number, false);
                string address = Getarea(number);
                string Birthday = number.Substring(number.Length - 12, 8).Insert(6, "-").Insert(4, "-");
                string msg = "{\"idnumber\":\"" + number + "\",\"sex\":\"" + sex + "\",\"address\":\"" + address + "\",\"birthday\":\"" + Birthday + "\"}";
                return sucjson(msg);
            }
            else
            {
                return errorjson(0, 20001, "身份证号码错误");
            }
        }
        /// <summary>
        /// 获取随机身份证号码
        /// </summary>
        /// <param name="type"></param>
        /// <param name="msg"></param>
        /// <returns>身份证号码</returns>
        public static string IDcards_GetRanNum(int type, string msg)
        {
            try
            {
                if (type == 2)
                {
                    if (msg == "男" || msg == "女")//(限定男女的)随机身份证
                    {
                        Random rnd = new Random();
                        int mm = rnd.Next(1, 12);
                        string mms = mm > 9 ? mm.ToString() : "0" + mm;
                        int dd = rnd.Next(1, 28);
                        string dds = dd > 9 ? dd.ToString() : "0" + dd;
                        msg = GenPinCode(msg, "19" + rnd.Next(50, 99) + mms + dds);
                        if (string.IsNullOrEmpty(msg))
                        {
                            return errorjson(0, 20002, "获取身份证号码意外错误");
                        }
                        else
                        {
                            return sucjson(msg);
                        }
                    }
                    if (msg.Length == 8)
                    {
                        string birth = msg.Insert(6, "-").Insert(4, "-");
                        DateTime time = new DateTime();
                        if (DateTime.TryParse(birth, out time) == false)
                        {
                            return errorjson(0, 20003, "参数错误(19750123)");
                        }
                        //(限定出生日期)随机身份证
                        Random ran = new Random();
                        int RandKey = ran.Next(1, 10);
                        msg = GenPinCode(RandKey > 5 ? "男" : "女", msg);
                        if (!string.IsNullOrEmpty(msg))
                        {
                            return sucjson(msg);
                        }
                        return errorjson(0, 20002, "获取身份证号码意外错误");
                    }
                    return errorjson(0, 20004, "参数错误(男/女/19890428)");
                }
                else
                {
                    //随机身份证
                    // Random rnd = new Random(DateTime.Now.Millisecond);
                    Random ran = new Random();
                    int ms = ran.Next(1, 12); string mm = ms > 10 ? ms.ToString() : "0" + ms;
                    int ds = ran.Next(1, 28); string dd = ds > 10 ? ds.ToString() : "0" + ds;
                    msg = GenPinCode(ran.Next(1, 10) > 5 ? "男" : "女", "19" + ran.Next(50, 99) + mm + dd);
                    if (!string.IsNullOrEmpty(msg))
                    {
                        return sucjson(msg);
                    }
                    return errorjson(0, 20002, "获取身份证号码意外错误");
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                return errorjson(0, 20005, "接口内部错误,位置RanNum");
            }
        }
        /// <summary>
        /// 获取户籍所在地
        /// </summary>
        /// <param name="number"></param>
        /// <returns>json</returns>
        public static string IDcards_GetAddress(string number)
        {
            if (IDcards_isright(number))
            {
                string msg = Getarea(number);
                return sucjson(msg);
            }
            else
            {
                return errorjson(0, 20001, "身份证号码错误");
            }
        }
        #endregion

        #region 验证身份证号码是否正确
        /// <summary>  
        /// 18位身份证号码验证  
        /// </summary>  
        private static bool CheckIDCard18(string idNumber)
        {
            long n = 0;
            if (long.TryParse(idNumber.Remove(17), out n) == false
                || n < Math.Pow(10, 16) || long.TryParse(idNumber.Replace('x', '0').Replace('X', '0'), out n) == false)
            {
                Console.WriteLine("数字验证失败=" + idNumber);
                return false;//数字验证  
            }
            string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";
            if (address.IndexOf(idNumber.Remove(2)) == -1)
            {
                Console.WriteLine("省份验证失败=" + idNumber);
                return false;//省份验证  
            }
            string birth = idNumber.Substring(6, 8).Insert(6, "-").Insert(4, "-");
            DateTime time = new DateTime();
            if (DateTime.TryParse(birth, out time) == false)
            {
                Console.WriteLine("生日验证失败=" + birth);
                return false;//生日验证  
            }
            string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(',');
            string[] Wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(',');
            char[] Ai = idNumber.Remove(17).ToCharArray();
            int sum = 0;
            for (int i = 0; i < 17; i++)
            {
                sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString());
            }
            int y = -1;
            Math.DivRem(sum, 11, out y);
            if (arrVarifyCode[y] != idNumber.Substring(17, 1).ToLower())
            {
                Console.WriteLine("校验码验证失败=" + idNumber);
                return false;//校验码验证  
            }
            return true;//符合GB11643-1999标准  
        }

        /// <summary>  
        /// 15位身份证号码验证  
        /// </summary>  
        private static bool CheckIDCard15(string idNumber)
        {
            long n = 0;
            if (long.TryParse(idNumber, out n) == false || n < Math.Pow(10, 14))
            {
                return false;//数字验证  
            }
            string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";
            if (address.IndexOf(idNumber.Remove(2)) == -1)
            {
                return false;//省份验证  
            }
            string birth = idNumber.Substring(6, 6).Insert(4, "-").Insert(2, "-");
            DateTime time = new DateTime();
            if (DateTime.TryParse(birth, out time) == false)
            {
                return false;//生日验证  
            }
            return true;
        }
        #endregion

        /// <summary>
        /// 返回性别
        /// </summary>
        /// <param name="number"></param>
        /// <param name="f">返回类型 true=json  false=“男”or "女"</param>
        /// <returns></returns>
        private static string GetSex(string number, bool f)
        {
            string sexnum = number.Substring(number.Length - 2, 1);
            if ("02468".Contains(sexnum))
            {
                if (f)
                {
                    return sucjson("女");
                }
                else
                {
                    return "女";
                }
            }
            else
            {
                if (f)
                {
                    return sucjson("男");
                }
                else
                {
                    return "男";
                }
            }
        }

        /// <summary>
        /// 根据条件获取身份证号码
        /// </summary>
        /// <param name="Sex">性别</param>
        /// <param name="numtop">地区</param>
        /// <param name="birthday">生日</param>
        /// <returns>身份证号码</returns>
        private static string GenPinCode(string Sex, string birthday)
        {
            try
            {
                System.Random rnd;
                rnd = new Random(System.DateTime.Now.Millisecond);
                string numtop = "";//头文件编码

                Dictionary<int, string> city = GetCity();
                List<int> test = new List<int>(city.Keys);
                numtop = test[rnd.Next(0, city.Count - 1)].ToString();

                string a = rnd.Next(0, 5).ToString();
                string b = rnd.Next(0, 9).ToString();
                string c = "";
                if (Sex == "女")//男
                {
                    string[] r1 = new string[] { "0", "2", "4", "6", "8" };
                    c = r1[rnd.Next(4)];
                }
                else
                {
                    string[] r1 = new string[] { "1", "3", "5", "7", "9" };
                    c = r1[rnd.Next(4)];
                }
                //PIN = District + Year(50-92) + Month(01-12) + Date(01-30) + Seq(001-600)
                string _pinCode = string.Format("{0}{1}{2:00}{3:00}{4}", numtop, birthday.Substring(0, 4), birthday.Substring(4, 2), birthday.Substring(6, 2), a + b + c);
                #region Verify
                char[] _chrPinCode = _pinCode.ToCharArray();
                //校验码字符值
                char[] _chrVerify = new char[] { '1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2' };
                //i----表示号码字符从由至左包括校验码在内的位置序号;
                //ai----表示第i位置上的号码字符值;
                //Wi----示第i位置上的加权因子,其数值依据公式intWeight=2(n-1)(mod 11)计算得出。
                int[] _intWeight = new int[] { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 };
                int _craboWeight = 0;
                for (int i = 0; i < 17; i++)//从1 到 17 位,18为要生成的验证码
                {
                    _craboWeight = _craboWeight + Convert.ToUInt16(_chrPinCode[i].ToString()) * _intWeight[i];
                }
                _craboWeight = _craboWeight % 11;
                _pinCode += _chrVerify[_craboWeight];
                #endregion
                return _pinCode;
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString() + "birthday=" + birthday);
                return "";
            }
        }

        #region 身份证户籍所在地
        /// <summary>
        /// 根据身份证号码返回籍贯
        /// </summary>
        /// <param name="iccardno"></param>
        /// <returns></returns>
        private static string Getarea(string iccardno)
        {
            string topTwoNumber = iccardno.Substring(0, 2);  //前两位
            string topSexNumber = iccardno.Substring(0, 6);//前六位
            string provinces = getProvinces(topTwoNumber);
            string city = getCity(topSexNumber);
            return "{\"provinces\":\""+ provinces + "\",\"city\":\""+ city + "\"}";
        }
        /// <summary>
        /// 获得省份
        /// add by zhouf 2016-11-25
        /// </summary>
        /// <param name="topTwoNumber"></param>
        /// <returns></returns>
        private static string getProvinces(string topTwoNumber)
        {
            Dictionary<string, string> kvDictonary = GetProvinces();
            string provinces = "";
            try
            {
                provinces = kvDictonary[topTwoNumber];
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                return provinces;
            }
            return provinces;
        }
        /// <summary>
        /// 获得市区
        /// add by zhoud 2016-11-25
        /// </summary>
        /// <param name="topSexNumber">前六位</param>
        /// <returns></returns>
        private static string getCity(string topSexNumber)
        {
            Dictionary<int, string> hashMap = GetCity();
            string city = "";
            try
            {
                int sexname = int.Parse(topSexNumber);
                city = hashMap[sexname];
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                return city;
            }
            return city;
        }
        #region 获取省市区域
        private static Dictionary<string, string> GetProvinces()
        {
            #region 省份
            Dictionary<string, string> kvDictonary = new Dictionary<string, string>();
            kvDictonary.Add("11", "北京");
            kvDictonary.Add("12", "天津");
            kvDictonary.Add("13", "河北");
            kvDictonary.Add("14", "山西");
            kvDictonary.Add("15", "内蒙古");
            kvDictonary.Add("21", "辽宁");
            kvDictonary.Add("22", "吉林");
            kvDictonary.Add("23", "黑龙江");
            kvDictonary.Add("31", "上海");
            kvDictonary.Add("32", "江苏");
            kvDictonary.Add("33", "浙江");
            kvDictonary.Add("34", "安徽");
            kvDictonary.Add("35", "福建");
            kvDictonary.Add("36", "江西");
            kvDictonary.Add("37", "山东");
            kvDictonary.Add("41", "河南");
            kvDictonary.Add("42", "湖北");
            kvDictonary.Add("43", "湖南");
            kvDictonary.Add("44", "广东");
            kvDictonary.Add("45", "广西");
            kvDictonary.Add("46", "海南");
            kvDictonary.Add("50", "重庆");
            kvDictonary.Add("51", "四川");
            kvDictonary.Add("52", "贵州");
            kvDictonary.Add("53", "云南");
            kvDictonary.Add("54", "西藏");
            kvDictonary.Add("61", "陕西");
            kvDictonary.Add("62", "甘肃");
            kvDictonary.Add("63", "青海");
            kvDictonary.Add("64", "宁夏");
            kvDictonary.Add("65", "新疆");
            kvDictonary.Add("71", "台湾");
            kvDictonary.Add("81", "香港");
            kvDictonary.Add("82", "澳门");
            #endregion
            return kvDictonary;
        }
        private static Dictionary<int, string> GetCity()
        {
            #region 市区
            Dictionary<int, string> hashMap = new Dictionary<int, string>();
            hashMap.Add(110000, "北京市");
            hashMap.Add(110100, "市辖区");
            hashMap.Add(110101, "东城区");
            hashMap.Add(110102, "西城区");
            hashMap.Add(110105, "朝阳区");
            hashMap.Add(110106, "丰台区");
            hashMap.Add(110107, "石景山区");
            hashMap.Add(110108, "海淀区");
            hashMap.Add(110109, "门头沟区");
            hashMap.Add(110111, "房山区");
            hashMap.Add(110112, "通州区");
            hashMap.Add(110113, "顺义区");
            hashMap.Add(110114, "昌平区");
            hashMap.Add(110115, "大兴区");
            hashMap.Add(110116, "怀柔区");
            hashMap.Add(110117, "平谷区");
            hashMap.Add(110200, "县");
            hashMap.Add(110228, "密云县");
            hashMap.Add(110229, "延庆县");
            hashMap.Add(120000, "天津市");
            hashMap.Add(120100, "市辖区");
            hashMap.Add(120101, "和平区");
            hashMap.Add(120102, "河东区");
            hashMap.Add(120103, "河西区");
            hashMap.Add(120104, "南开区");
            hashMap.Add(120105, "河北区");
            hashMap.Add(120106, "红桥区");
            hashMap.Add(120110, "东丽区");
            hashMap.Add(120111, "西青区");
            hashMap.Add(120112, "津南区");
            hashMap.Add(120113, "北辰区");
            hashMap.Add(120114, "武清区");
            hashMap.Add(120115, "宝坻区");
            hashMap.Add(120116, "滨海新区");
            hashMap.Add(120200, "县");
            hashMap.Add(120221, "宁河县");
            hashMap.Add(120223, "静海县");
            hashMap.Add(120225, "蓟县");
            hashMap.Add(130000, "河北省");
            hashMap.Add(130100, "石家庄市");
            hashMap.Add(130101, "市辖区");
            hashMap.Add(130102, "长安区");
            hashMap.Add(130103, "桥东区");
            hashMap.Add(130104, "桥西区");
            hashMap.Add(130105, "新华区");
            hashMap.Add(130107, "井陉矿区");
            hashMap.Add(130108, "裕华区");
            hashMap.Add(130121, "井陉县");
            hashMap.Add(130123, "正定县");
            hashMap.Add(130124, "栾城县");
            hashMap.Add(130125, "行唐县");
            hashMap.Add(130126, "灵寿县");
            hashMap.Add(130127, "高邑县");
            hashMap.Add(130128, "深泽县");
            hashMap.Add(130129, "赞皇县");
            hashMap.Add(130130, "无极县");
            hashMap.Add(130131, "平山县");
            hashMap.Add(130132, "元氏县");
            hashMap.Add(130133, "赵县");
            hashMap.Add(130181, "辛集市");
            hashMap.Add(130182, "藁城市");
            hashMap.Add(130183, "晋州市");
            hashMap.Add(130184, "新乐市");
            hashMap.Add(130185, "鹿泉市");
            hashMap.Add(130200, "唐山市");
            hashMap.Add(130201, "市辖区");
            hashMap.Add(130202, "路南区");
            hashMap.Add(130203, "路北区");
            hashMap.Add(130204, "古冶区");
            hashMap.Add(130205, "开平区");
            hashMap.Add(130207, "丰南区");
            hashMap.Add(130208, "丰润区");
            hashMap.Add(130209, "曹妃甸区");
            hashMap.Add(130223, "滦县");
            hashMap.Add(130224, "滦南县");
            hashMap.Add(130225, "乐亭县");
            hashMap.Add(130227, "迁西县");
            hashMap.Add(130229, "玉田县");
            hashMap.Add(130281, "遵化市");
            hashMap.Add(130283, "迁安市");
            hashMap.Add(130300, "秦皇岛市");
            hashMap.Add(130301, "市辖区");
            hashMap.Add(130302, "海港区");
            hashMap.Add(130303, "山海关区");
            hashMap.Add(130304, "北戴河区");
            hashMap.Add(130321, "青龙满族自治县");
            hashMap.Add(130322, "昌黎县");
            hashMap.Add(130323, "抚宁县");
            hashMap.Add(130324, "卢龙县");
            hashMap.Add(130400, "邯郸市");
            hashMap.Add(130401, "市辖区");
            hashMap.Add(130402, "邯山区");
            hashMap.Add(130403, "丛台区");
            hashMap.Add(130404, "复兴区");
            hashMap.Add(130406, "峰峰矿区");
            hashMap.Add(130421, "邯郸县");
            hashMap.Add(130423, "临漳县");
            hashMap.Add(130424, "成安县");
            hashMap.Add(130425, "大名县");
            hashMap.Add(130426, "涉县");
            hashMap.Add(130427, "磁县");
            hashMap.Add(130428, "肥乡县");
            hashMap.Add(130429, "永年县");
            hashMap.Add(130430, "邱县");
            hashMap.Add(130431, "鸡泽县");
            hashMap.Add(130432, "广平县");
            hashMap.Add(130433, "馆陶县");
            hashMap.Add(130434, "魏县");
            hashMap.Add(130435, "曲周县");
            hashMap.Add(130481, "武安市");
            hashMap.Add(130500, "邢台市");
            hashMap.Add(130501, "市辖区");
            hashMap.Add(130502, "桥东区");
            hashMap.Add(130503, "桥西区");
            hashMap.Add(130521, "邢台县");
            hashMap.Add(130522, "临城县");
            hashMap.Add(130523, "内丘县");
            hashMap.Add(130524, "柏乡县");
            hashMap.Add(130525, "隆尧县");
            hashMap.Add(130526, "任县");
            hashMap.Add(130527, "南和县");
            hashMap.Add(130528, "宁晋县");
            hashMap.Add(130529, "巨鹿县");
            hashMap.Add(130530, "新河县");
            hashMap.Add(130531, "广宗县");
            hashMap.Add(130532, "平乡县");
            hashMap.Add(130533, "威县");
            hashMap.Add(130534, "清河县");
            hashMap.Add(130535, "临西县");
            hashMap.Add(130581, "南宫市");
            hashMap.Add(130582, "沙河市");
            hashMap.Add(130600, "保定市");
            hashMap.Add(130601, "市辖区");
            hashMap.Add(130602, "新市区");
            hashMap.Add(130603, "北市区");
            hashMap.Add(130604, "南市区");
            hashMap.Add(130621, "满城县");
            hashMap.Add(130622, "清苑县");
            hashMap.Add(130623, "涞水县");
            hashMap.Add(130624, "阜平县");
            hashMap.Add(130625, "徐水县");
            hashMap.Add(130626, "定兴县");
            hashMap.Add(130627, "唐县");
            hashMap.Add(130628, "高阳县");
            hashMap.Add(130629, "容城县");
            hashMap.Add(130630, "涞源县");
            hashMap.Add(130631, "望都县");
            hashMap.Add(130632, "安新县");
            hashMap.Add(130633, "易县");
            hashMap.Add(130634, "曲阳县");
            hashMap.Add(130635, "蠡县");
            hashMap.Add(130636, "顺平县");
            hashMap.Add(130637, "博野县");
            hashMap.Add(130638, "雄县");
            hashMap.Add(130681, "涿州市");
            hashMap.Add(130682, "定州市");
            hashMap.Add(130683, "安国市");
            hashMap.Add(130684, "高碑店市");
            hashMap.Add(130700, "张家口市");
            hashMap.Add(130701, "市辖区");
            hashMap.Add(130702, "桥东区");
            hashMap.Add(130703, "桥西区");
            hashMap.Add(130705, "宣化区");
            hashMap.Add(130706, "下花园区");
            hashMap.Add(130721, "宣化县");
            hashMap.Add(130722, "张北县");
            hashMap.Add(130723, "康保县");
            hashMap.Add(130724, "沽源县");
            hashMap.Add(130725, "尚义县");
            hashMap.Add(130726, "蔚县");
            hashMap.Add(130727, "阳原县");
            hashMap.Add(130728, "怀安县");
            hashMap.Add(130729, "万全县");
            hashMap.Add(130730, "怀来县");
            hashMap.Add(130731, "涿鹿县");
            hashMap.Add(130732, "赤城县");
            hashMap.Add(130733, "崇礼县");
            hashMap.Add(130800, "承德市");
            hashMap.Add(130801, "市辖区");
            hashMap.Add(130802, "双桥区");
            hashMap.Add(130803, "双滦区");
            hashMap.Add(130804, "鹰手营子矿区");
            hashMap.Add(130821, "承德县");
            hashMap.Add(130822, "兴隆县");
            hashMap.Add(130823, "平泉县");
            hashMap.Add(130824, "滦平县");
            hashMap.Add(130825, "隆化县");
            hashMap.Add(130826, "丰宁满族自治县");
            hashMap.Add(130827, "宽城满族自治县");
            hashMap.Add(130828, "围场满族蒙古族自治县");
            hashMap.Add(130900, "沧州市");
            hashMap.Add(130901, "市辖区");
            hashMap.Add(130902, "新华区");
            hashMap.Add(130903, "运河区");
            hashMap.Add(130921, "沧县");
            hashMap.Add(130922, "青县");
            hashMap.Add(130923, "东光县");
            hashMap.Add(130924, "海兴县");
            hashMap.Add(130925, "盐山县");
            hashMap.Add(130926, "肃宁县");
            hashMap.Add(130927, "南皮县");
            hashMap.Add(130928, "吴桥县");
            hashMap.Add(130929, "献县");
            hashMap.Add(130930, "孟村回族自治县");
            hashMap.Add(130981, "泊头市");
            hashMap.Add(130982, "任丘市");
            hashMap.Add(130983, "黄骅市");
            hashMap.Add(130984, "河间市");
            hashMap.Add(131000, "廊坊市");
            hashMap.Add(131001, "市辖区");
            hashMap.Add(131002, "安次区");
            hashMap.Add(131003, "广阳区");
            hashMap.Add(131022, "固安县");
            hashMap.Add(131023, "永清县");
            hashMap.Add(131024, "香河县");
            hashMap.Add(131025, "大城县");
            hashMap.Add(131026, "文安县");
            hashMap.Add(131028, "大厂回族自治县");
            hashMap.Add(131081, "霸州市");
            hashMap.Add(131082, "三河市");
            hashMap.Add(131100, "衡水市");
            hashMap.Add(131101, "市辖区");
            hashMap.Add(131102, "桃城区");
            hashMap.Add(131121, "枣强县");
            hashMap.Add(131122, "武邑县");
            hashMap.Add(131123, "武强县");
            hashMap.Add(131124, "饶阳县");
            hashMap.Add(131125, "安平县");
            hashMap.Add(131126, "故城县");
            hashMap.Add(131127, "景县");
            hashMap.Add(131128, "阜城县");
            hashMap.Add(131181, "冀州市");
            hashMap.Add(131182, "深州市");
            hashMap.Add(140000, "山西省");
            hashMap.Add(140100, "太原市");
            hashMap.Add(140101, "市辖区");
            hashMap.Add(140105, "小店区");
            hashMap.Add(140106, "迎泽区");
            hashMap.Add(140107, "杏花岭区");
            hashMap.Add(140108, "尖草坪区");
            hashMap.Add(140109, "万柏林区");
            hashMap.Add(140110, "晋源区");
            hashMap.Add(140121, "清徐县");
            hashMap.Add(140122, "阳曲县");
            hashMap.Add(140123, "娄烦县");
            hashMap.Add(140181, "古交市");
            hashMap.Add(140200, "大同市");
            hashMap.Add(140201, "市辖区");
            hashMap.Add(140202, "城区");
            hashMap.Add(140203, "矿区");
            hashMap.Add(140211, "南郊区");
            hashMap.Add(140212, "新荣区");
            hashMap.Add(140221, "阳高县");
            hashMap.Add(140222, "天镇县");
            hashMap.Add(140223, "广灵县");
            hashMap.Add(140224, "灵丘县");
            hashMap.Add(140225, "浑源县");
            hashMap.Add(140226, "左云县");
            hashMap.Add(140227, "大同县");
            hashMap.Add(140300, "阳泉市");
            hashMap.Add(140301, "市辖区");
            hashMap.Add(140302, "城区");
            hashMap.Add(140303, "矿区");
            hashMap.Add(140311, "郊区");
            hashMap.Add(140321, "平定县");
            hashMap.Add(140322, "盂县");
            hashMap.Add(140400, "长治市");
            hashMap.Add(140401, "市辖区");
            hashMap.Add(140402, "城区");
            hashMap.Add(140411, "郊区");
            hashMap.Add(140421, "长治县");
            hashMap.Add(140423, "襄垣县");
            hashMap.Add(140424, "屯留县");
            hashMap.Add(140425, "平顺县");
            hashMap.Add(140426, "黎城县");
            hashMap.Add(140427, "壶关县");
            hashMap.Add(140428, "长子县");
            hashMap.Add(140429, "武乡县");
            hashMap.Add(140430, "沁县");
            hashMap.Add(140431, "沁源县");
            hashMap.Add(140481, "潞城市");
            hashMap.Add(140500, "晋城市");
            hashMap.Add(140501, "市辖区");
            hashMap.Add(140502, "城区");
            hashMap.Add(140521, "沁水县");
            hashMap.Add(140522, "阳城县");
            hashMap.Add(140524, "陵川县");
            hashMap.Add(140525, "泽州县");
            hashMap.Add(140581, "高平市");
            hashMap.Add(140600, "朔州市");
            hashMap.Add(140601, "市辖区");
            hashMap.Add(140602, "朔城区");
            hashMap.Add(140603, "平鲁区");
            hashMap.Add(140621, "山阴县");
            hashMap.Add(140622, "应县");
            hashMap.Add(140623, "右玉县");
            hashMap.Add(140624, "怀仁县");
            hashMap.Add(140700, "晋中市");
            hashMap.Add(140701, "市辖区");
            hashMap.Add(140702, "榆次区");
            hashMap.Add(140721, "榆社县");
            hashMap.Add(140722, "左权县");
            hashMap.Add(140723, "和顺县");
            hashMap.Add(140724, "昔阳县");
            hashMap.Add(140725, "寿阳县");
            hashMap.Add(140726, "太谷县");
            hashMap.Add(140727, "祁县");
            hashMap.Add(140728, "平遥县");
            hashMap.Add(140729, "灵石县");
            hashMap.Add(140781, "介休市");
            hashMap.Add(140800, "运城市");
            hashMap.Add(140801, "市辖区");
            hashMap.Add(140802, "盐湖区");
            hashMap.Add(140821, "临猗县");
            hashMap.Add(140822, "万荣县");
            hashMap.Add(140823, "闻喜县");
            hashMap.Add(140824, "稷山县");
            hashMap.Add(140825, "新绛县");
            hashMap.Add(140826, "绛县");
            hashMap.Add(140827, "垣曲县");
            hashMap.Add(140828, "夏县");
            hashMap.Add(140829, "平陆县");
            hashMap.Add(140830, "芮城县");
            hashMap.Add(140881, "永济市");
            hashMap.Add(140882, "河津市");
            hashMap.Add(140900, "忻州市");
            hashMap.Add(140901, "市辖区");
            hashMap.Add(140902, "忻府区");
            hashMap.Add(140921, "定襄县");
            hashMap.Add(140922, "五台县");
            hashMap.Add(140923, "代县");
            hashMap.Add(140924, "繁峙县");
            hashMap.Add(140925, "宁武县");
            hashMap.Add(140926, "静乐县");
            hashMap.Add(140927, "神池县");
            hashMap.Add(140928, "五寨县");
            hashMap.Add(140929, "岢岚县");
            hashMap.Add(140930, "河曲县");
            hashMap.Add(140931, "保德县");
            hashMap.Add(140932, "偏关县");
            hashMap.Add(140981, "原平市");
            hashMap.Add(141000, "临汾市");
            hashMap.Add(141001, "市辖区");
            hashMap.Add(141002, "尧都区");
            hashMap.Add(141021, "曲沃县");
            hashMap.Add(141022, "翼城县");
            hashMap.Add(141023, "襄汾县");
            hashMap.Add(141024, "洪洞县");
            hashMap.Add(141025, "古县");
            hashMap.Add(141026, "安泽县");
            hashMap.Add(141027, "浮山县");
            hashMap.Add(141028, "吉县");
            hashMap.Add(141029, "乡宁县");
            hashMap.Add(141030, "大宁县");
            hashMap.Add(141031, "隰县");
            hashMap.Add(141032, "永和县");
            hashMap.Add(141033, "蒲县");
            hashMap.Add(141034, "汾西县");
            hashMap.Add(141081, "侯马市");
            hashMap.Add(141082, "霍州市");
            hashMap.Add(141100, "吕梁市");
            hashMap.Add(141101, "市辖区");
            hashMap.Add(141102, "离石区");
            hashMap.Add(141121, "文水县");
            hashMap.Add(141122, "交城县");
            hashMap.Add(141123, "兴县");
            hashMap.Add(141124, "临县");
            hashMap.Add(141125, "柳林县");
            hashMap.Add(141126, "石楼县");
            hashMap.Add(141127, "岚县");
            hashMap.Add(141128, "方山县");
            hashMap.Add(141129, "中阳县");
            hashMap.Add(141130, "交口县");
            hashMap.Add(141181, "孝义市");
            hashMap.Add(141182, "汾阳市");
            hashMap.Add(150000, "内蒙古自治区");
            hashMap.Add(150100, "呼和浩特市");
            hashMap.Add(150101, "市辖区");
            hashMap.Add(150102, "新城区");
            hashMap.Add(150103, "回民区");
            hashMap.Add(150104, "玉泉区");
            hashMap.Add(150105, "赛罕区");
            hashMap.Add(150121, "土默特左旗");
            hashMap.Add(150122, "托克托县");
            hashMap.Add(150123, "和林格尔县");
            hashMap.Add(150124, "清水河县");
            hashMap.Add(150125, "武川县");
            hashMap.Add(150200, "包头市");
            hashMap.Add(150201, "市辖区");
            hashMap.Add(150202, "东河区");
            hashMap.Add(150203, "昆都仑区");
            hashMap.Add(150204, "青山区");
            hashMap.Add(150205, "石拐区");
            hashMap.Add(150206, "白云鄂博矿区");
            hashMap.Add(150207, "九原区");
            hashMap.Add(150221, "土默特右旗");
            hashMap.Add(150222, "固阳县");
            hashMap.Add(150223, "达尔罕茂明安联合旗");
            hashMap.Add(150300, "乌海市");
            hashMap.Add(150301, "市辖区");
            hashMap.Add(150302, "海勃湾区");
            hashMap.Add(150303, "海南区");
            hashMap.Add(150304, "乌达区");
            hashMap.Add(150400, "赤峰市");
            hashMap.Add(150401, "市辖区");
            hashMap.Add(150402, "红山区");
            hashMap.Add(150403, "元宝山区");
            hashMap.Add(150404, "松山区");
            hashMap.Add(150421, "阿鲁科尔沁旗");
            hashMap.Add(150422, "巴林左旗");
            hashMap.Add(150423, "巴林右旗");
            hashMap.Add(150424, "林西县");
            hashMap.Add(150425, "克什克腾旗");
            hashMap.Add(150426, "翁牛特旗");
            hashMap.Add(150428, "喀喇沁旗");
            hashMap.Add(150429, "宁城县");
            hashMap.Add(150430, "敖汉旗");
            hashMap.Add(150500, "通辽市");
            hashMap.Add(150501, "市辖区");
            hashMap.Add(150502, "科尔沁区");
            hashMap.Add(150521, "科尔沁左翼中旗");
            hashMap.Add(150522, "科尔沁左翼后旗");
            hashMap.Add(150523, "开鲁县");
            hashMap.Add(150524, "库伦旗");
            hashMap.Add(150525, "奈曼旗");
            hashMap.Add(150526, "扎鲁特旗");
            hashMap.Add(150581, "霍林郭勒市");
            hashMap.Add(150600, "鄂尔多斯市");
            hashMap.Add(150601, "市辖区");
            hashMap.Add(150602, "东胜区");
            hashMap.Add(150621, "达拉特旗");
            hashMap.Add(150622, "准格尔旗");
            hashMap.Add(150623, "鄂托克前旗");
            hashMap.Add(150624, "鄂托克旗");
            hashMap.Add(150625, "杭锦旗");
            hashMap.Add(150626, "乌审旗");
            hashMap.Add(150627, "伊金霍洛旗");
            hashMap.Add(150700, "呼伦贝尔市");
            hashMap.Add(150701, "市辖区");
            hashMap.Add(150702, "海拉尔区");
            hashMap.Add(150703, "扎赉诺尔区");
            hashMap.Add(150721, "阿荣旗");
            hashMap.Add(150722, "莫力达瓦达斡尔族自治旗");
            hashMap.Add(150723, "鄂伦春自治旗");
            hashMap.Add(150724, "鄂温克族自治旗");
            hashMap.Add(150725, "陈巴尔虎旗");
            hashMap.Add(150726, "新巴尔虎左旗");
            hashMap.Add(150727, "新巴尔虎右旗");
            hashMap.Add(150781, "满洲里市");
            hashMap.Add(150782, "牙克石市");
            hashMap.Add(150783, "扎兰屯市");
            hashMap.Add(150784, "额尔古纳市");
            hashMap.Add(150785, "根河市");
            hashMap.Add(150800, "巴彦淖尔市");
            hashMap.Add(150801, "市辖区");
            hashMap.Add(150802, "临河区");
            hashMap.Add(150821, "五原县");
            hashMap.Add(150822, "磴口县");
            hashMap.Add(150823, "乌拉特前旗");
            hashMap.Add(150824, "乌拉特中旗");
            hashMap.Add(150825, "乌拉特后旗");
            hashMap.Add(150826, "杭锦后旗");
            hashMap.Add(150900, "乌兰察布市");
            hashMap.Add(150901, "市辖区");
            hashMap.Add(150902, "集宁区");
            hashMap.Add(150921, "卓资县");
            hashMap.Add(150922, "化德县");
            hashMap.Add(150923, "商都县");
            hashMap.Add(150924, "兴和县");
            hashMap.Add(150925, "凉城县");
            hashMap.Add(150926, "察哈尔右翼前旗");
            hashMap.Add(150927, "察哈尔右翼中旗");
            hashMap.Add(150928, "察哈尔右翼后旗");
            hashMap.Add(150929, "四子王旗");
            hashMap.Add(150981, "丰镇市");
            hashMap.Add(152200, "兴安盟");
            hashMap.Add(152201, "乌兰浩特市");
            hashMap.Add(152202, "阿尔山市");
            hashMap.Add(152221, "科尔沁右翼前旗");
            hashMap.Add(152222, "科尔沁右翼中旗");
            hashMap.Add(152223, "扎赉特旗");
            hashMap.Add(152224, "突泉县");
            hashMap.Add(152500, "锡林郭勒盟");
            hashMap.Add(152501, "二连浩特市");
            hashMap.Add(152502, "锡林浩特市");
            hashMap.Add(152522, "阿巴嘎旗");
            hashMap.Add(152523, "苏尼特左旗");
            hashMap.Add(152524, "苏尼特右旗");
            hashMap.Add(152525, "东乌珠穆沁旗");
            hashMap.Add(152526, "西乌珠穆沁旗");
            hashMap.Add(152527, "太仆寺旗");
            hashMap.Add(152528, "镶黄旗");
            hashMap.Add(152529, "正镶白旗");
            hashMap.Add(152530, "正蓝旗");
            hashMap.Add(152531, "多伦县");
            hashMap.Add(152900, "阿拉善盟");
            hashMap.Add(152921, "阿拉善左旗");
            hashMap.Add(152922, "阿拉善右旗");
            hashMap.Add(152923, "额济纳旗");
            hashMap.Add(210000, "辽宁省");
            hashMap.Add(210100, "沈阳市");
            hashMap.Add(210101, "市辖区");
            hashMap.Add(210102, "和平区");
            hashMap.Add(210103, "沈河区");
            hashMap.Add(210104, "大东区");
            hashMap.Add(210105, "皇姑区");
            hashMap.Add(210106, "铁西区");
            hashMap.Add(210111, "苏家屯区");
            hashMap.Add(210112, "东陵区");
            hashMap.Add(210113, "沈北新区");
            hashMap.Add(210114, "于洪区");
            hashMap.Add(210122, "辽中县");
            hashMap.Add(210123, "康平县");
            hashMap.Add(210124, "法库县");
            hashMap.Add(210181, "新民市");
            hashMap.Add(210200, "大连市");
            hashMap.Add(210201, "市辖区");
            hashMap.Add(210202, "中山区");
            hashMap.Add(210203, "西岗区");
            hashMap.Add(210204, "沙河口区");
            hashMap.Add(210211, "甘井子区");
            hashMap.Add(210212, "旅顺口区");
            hashMap.Add(210213, "金州区");
            hashMap.Add(210224, "长海县");
            hashMap.Add(210281, "瓦房店市");
            hashMap.Add(210282, "普兰店市");
            hashMap.Add(210283, "庄河市");
            hashMap.Add(210300, "鞍山市");
            hashMap.Add(210301, "市辖区");
            hashMap.Add(210302, "铁东区");
            hashMap.Add(210303, "铁西区");
            hashMap.Add(210304, "立山区");
            hashMap.Add(210311, "千山区");
            hashMap.Add(210321, "台安县");
            hashMap.Add(210323, "岫岩满族自治县");
            hashMap.Add(210381, "海城市");
            hashMap.Add(210400, "抚顺市");
            hashMap.Add(210401, "市辖区");
            hashMap.Add(210402, "新抚区");
            hashMap.Add(210403, "东洲区");
            hashMap.Add(210404, "望花区");
            hashMap.Add(210411, "顺城区");
            hashMap.Add(210421, "抚顺县");
            hashMap.Add(210422, "新宾满族自治县");
            hashMap.Add(210423, "清原满族自治县");
            hashMap.Add(210500, "本溪市");
            hashMap.Add(210501, "市辖区");
            hashMap.Add(210502, "平山区");
            hashMap.Add(210503, "溪湖区");
            hashMap.Add(210504, "明山区");
            hashMap.Add(210505, "南芬区");
            hashMap.Add(210521, "本溪满族自治县");
            hashMap.Add(210522, "桓仁满族自治县");
            hashMap.Add(210600, "丹东市");
            hashMap.Add(210601, "市辖区");
            hashMap.Add(210602, "元宝区");
            hashMap.Add(210603, "振兴区");
            hashMap.Add(210604, "振安区");
            hashMap.Add(210624, "宽甸满族自治县");
            hashMap.Add(210681, "东港市");
            hashMap.Add(210682, "凤城市");
            hashMap.Add(210700, "锦州市");
            hashMap.Add(210701, "市辖区");
            hashMap.Add(210702, "古塔区");
            hashMap.Add(210703, "凌河区");
            hashMap.Add(210711, "太和区");
            hashMap.Add(210726, "黑山县");
            hashMap.Add(210727, "义县");
            hashMap.Add(210781, "凌海市");
            hashMap.Add(210782, "北镇市");
            hashMap.Add(210800, "营口市");
            hashMap.Add(210801, "市辖区");
            hashMap.Add(210802, "站前区");
            hashMap.Add(210803, "西市区");
            hashMap.Add(210804, "鲅鱼圈区");
            hashMap.Add(210811, "老边区");
            hashMap.Add(210881, "盖州市");
            hashMap.Add(210882, "大石桥市");
            hashMap.Add(210900, "阜新市");
            hashMap.Add(210901, "市辖区");
            hashMap.Add(210902, "海州区");
            hashMap.Add(210903, "新邱区");
            hashMap.Add(210904, "太平区");
            hashMap.Add(210905, "清河门区");
            hashMap.Add(210911, "细河区");
            hashMap.Add(210921, "阜新蒙古族自治县");
            hashMap.Add(210922, "彰武县");
            hashMap.Add(211000, "辽阳市");
            hashMap.Add(211001, "市辖区");
            hashMap.Add(211002, "白塔区");
            hashMap.Add(211003, "文圣区");
            hashMap.Add(211004, "宏伟区");
            hashMap.Add(211005, "弓长岭区");
            hashMap.Add(211011, "太子河区");
            hashMap.Add(211021, "辽阳县");
            hashMap.Add(211081, "灯塔市");
            hashMap.Add(211100, "盘锦市");
            hashMap.Add(211101, "市辖区");
            hashMap.Add(211102, "双台子区");
            hashMap.Add(211103, "兴隆台区");
            hashMap.Add(211121, "大洼县");
            hashMap.Add(211122, "盘山县");
            hashMap.Add(211200, "铁岭市");
            hashMap.Add(211201, "市辖区");
            hashMap.Add(211202, "银州区");
            hashMap.Add(211204, "清河区");
            hashMap.Add(211221, "铁岭县");
            hashMap.Add(211223, "西丰县");
            hashMap.Add(211224, "昌图县");
            hashMap.Add(211281, "调兵山市");
            hashMap.Add(211282, "开原市");
            hashMap.Add(211300, "朝阳市");
            hashMap.Add(211301, "市辖区");
            hashMap.Add(211302, "双塔区");
            hashMap.Add(211303, "龙城区");
            hashMap.Add(211321, "朝阳县");
            hashMap.Add(211322, "建平县");
            hashMap.Add(211324, "喀喇沁左翼蒙古族自治县");
            hashMap.Add(211381, "北票市");
            hashMap.Add(211382, "凌源市");
            hashMap.Add(211400, "葫芦岛市");
            hashMap.Add(211401, "市辖区");
            hashMap.Add(211402, "连山区");
            hashMap.Add(211403, "龙港区");
            hashMap.Add(211404, "南票区");
            hashMap.Add(211421, "绥中县");
            hashMap.Add(211422, "建昌县");
            hashMap.Add(211481, "兴城市");
            hashMap.Add(220000, "吉林省");
            hashMap.Add(220100, "长春市");
            hashMap.Add(220101, "市辖区");
            hashMap.Add(220102, "南关区");
            hashMap.Add(220103, "宽城区");
            hashMap.Add(220104, "朝阳区");
            hashMap.Add(220105, "二道区");
            hashMap.Add(220106, "绿园区");
            hashMap.Add(220112, "双阳区");
            hashMap.Add(220122, "农安县");
            hashMap.Add(220181, "九台市");
            hashMap.Add(220182, "榆树市");
            hashMap.Add(220183, "德惠市");
            hashMap.Add(220200, "吉林市");
            hashMap.Add(220201, "市辖区");
            hashMap.Add(220202, "昌邑区");
            hashMap.Add(220203, "龙潭区");
            hashMap.Add(220204, "船营区");
            hashMap.Add(220211, "丰满区");
            hashMap.Add(220221, "永吉县");
            hashMap.Add(220281, "蛟河市");
            hashMap.Add(220282, "桦甸市");
            hashMap.Add(220283, "舒兰市");
            hashMap.Add(220284, "磐石市");
            hashMap.Add(220300, "四平市");
            hashMap.Add(220301, "市辖区");
            hashMap.Add(220302, "铁西区");
            hashMap.Add(220303, "铁东区");
            hashMap.Add(220322, "梨树县");
            hashMap.Add(220323, "伊通满族自治县");
            hashMap.Add(220381, "公主岭市");
            hashMap.Add(220382, "双辽市");
            hashMap.Add(220400, "辽源市");
            hashMap.Add(220401, "市辖区");
            hashMap.Add(220402, "龙山区");
            hashMap.Add(220403, "西安区");
            hashMap.Add(220421, "东丰县");
            hashMap.Add(220422, "东辽县");
            hashMap.Add(220500, "通化市");
            hashMap.Add(220501, "市辖区");
            hashMap.Add(220502, "东昌区");
            hashMap.Add(220503, "二道江区");
            hashMap.Add(220521, "通化县");
            hashMap.Add(220523, "辉南县");
            hashMap.Add(220524, "柳河县");
            hashMap.Add(220581, "梅河口市");
            hashMap.Add(220582, "集安市");
            hashMap.Add(220600, "白山市");
            hashMap.Add(220601, "市辖区");
            hashMap.Add(220602, "浑江区");
            hashMap.Add(220605, "江源区");
            hashMap.Add(220621, "抚松县");
            hashMap.Add(220622, "靖宇县");
            hashMap.Add(220623, "长白朝鲜族自治县");
            hashMap.Add(220681, "临江市");
            hashMap.Add(220700, "松原市");
            hashMap.Add(220701, "市辖区");
            hashMap.Add(220702, "宁江区");
            hashMap.Add(220721, "前郭尔罗斯蒙古族自治县");
            hashMap.Add(220722, "长岭县");
            hashMap.Add(220723, "乾安县");
            hashMap.Add(220781, "扶余市");
            hashMap.Add(220800, "白城市");
            hashMap.Add(220801, "市辖区");
            hashMap.Add(220802, "洮北区");
            hashMap.Add(220821, "镇赉县");
            hashMap.Add(220822, "通榆县");
            hashMap.Add(220881, "洮南市");
            hashMap.Add(220882, "大安市");
            hashMap.Add(222400, "延边朝鲜族自治州");
            hashMap.Add(222401, "延吉市");
            hashMap.Add(222402, "图们市");
            hashMap.Add(222403, "敦化市");
            hashMap.Add(222404, "珲春市");
            hashMap.Add(222405, "龙井市");
            hashMap.Add(222406, "和龙市");
            hashMap.Add(222424, "汪清县");
            hashMap.Add(222426, "安图县");
            hashMap.Add(230000, "黑龙江省");
            hashMap.Add(230100, "哈尔滨市");
            hashMap.Add(230101, "市辖区");
            hashMap.Add(230102, "道里区");
            hashMap.Add(230103, "南岗区");
            hashMap.Add(230104, "道外区");
            hashMap.Add(230108, "平房区");
            hashMap.Add(230109, "松北区");
            hashMap.Add(230110, "香坊区");
            hashMap.Add(230111, "呼兰区");
            hashMap.Add(230112, "阿城区");
            hashMap.Add(230123, "依兰县");
            hashMap.Add(230124, "方正县");
            hashMap.Add(230125, "宾县");
            hashMap.Add(230126, "巴彦县");
            hashMap.Add(230127, "木兰县");
            hashMap.Add(230128, "通河县");
            hashMap.Add(230129, "延寿县");
            hashMap.Add(230182, "双城市");
            hashMap.Add(230183, "尚志市");
            hashMap.Add(230184, "五常市");
            hashMap.Add(230200, "齐齐哈尔市");
            hashMap.Add(230201, "市辖区");
            hashMap.Add(230202, "龙沙区");
            hashMap.Add(230203, "建华区");
            hashMap.Add(230204, "铁锋区");
            hashMap.Add(230205, "昂昂溪区");
            hashMap.Add(230206, "富拉尔基区");
            hashMap.Add(230207, "碾子山区");
            hashMap.Add(230208, "梅里斯达斡尔族区");
            hashMap.Add(230221, "龙江县");
            hashMap.Add(230223, "依安县");
            hashMap.Add(230224, "泰来县");
            hashMap.Add(230225, "甘南县");
            hashMap.Add(230227, "富裕县");
            hashMap.Add(230229, "克山县");
            hashMap.Add(230230, "克东县");
            hashMap.Add(230231, "拜泉县");
            hashMap.Add(230281, "讷河市");
            hashMap.Add(230300, "鸡西市");
            hashMap.Add(230301, "市辖区");
            hashMap.Add(230302, "鸡冠区");
            hashMap.Add(230303, "恒山区");
            hashMap.Add(230304, "滴道区");
            hashMap.Add(230305, "梨树区");
            hashMap.Add(230306, "城子河区");
            hashMap.Add(230307, "麻山区");
            hashMap.Add(230321, "鸡东县");
            hashMap.Add(230381, "虎林市");
            hashMap.Add(230382, "密山市");
            hashMap.Add(230400, "鹤岗市");
            hashMap.Add(230401, "市辖区");
            hashMap.Add(230402, "向阳区");
            hashMap.Add(230403, "工农区");
            hashMap.Add(230404, "南山区");
            hashMap.Add(230405, "兴安区");
            hashMap.Add(230406, "东山区");
            hashMap.Add(230407, "兴山区");
            hashMap.Add(230421, "萝北县");
            hashMap.Add(230422, "绥滨县");
            hashMap.Add(230500, "双鸭山市");
            hashMap.Add(230501, "市辖区");
            hashMap.Add(230502, "尖山区");
            hashMap.Add(230503, "岭东区");
            hashMap.Add(230505, "四方台区");
            hashMap.Add(230506, "宝山区");
            hashMap.Add(230521, "集贤县");
            hashMap.Add(230522, "友谊县");
            hashMap.Add(230523, "宝清县");
            hashMap.Add(230524, "饶河县");
            hashMap.Add(230600, "大庆市");
            hashMap.Add(230601, "市辖区");
            hashMap.Add(230602, "萨尔图区");
            hashMap.Add(230603, "龙凤区");
            hashMap.Add(230604, "让胡路区");
            hashMap.Add(230605, "红岗区");
            hashMap.Add(230606, "大同区");
            hashMap.Add(230621, "肇州县");
            hashMap.Add(230622, "肇源县");
            hashMap.Add(230623, "林甸县");
            hashMap.Add(230624, "杜尔伯特蒙古族自治县");
            hashMap.Add(230700, "伊春市");
            hashMap.Add(230701, "市辖区");
            hashMap.Add(230702, "伊春区");
            hashMap.Add(230703, "南岔区");
            hashMap.Add(230704, "友好区");
            hashMap.Add(230705, "西林区");
            hashMap.Add(230706, "翠峦区");
            hashMap.Add(230707, "新青区");
            hashMap.Add(230708, "美溪区");
            hashMap.Add(230709, "金山屯区");
            hashMap.Add(230710, "五营区");
            hashMap.Add(230711, "乌马河区");
            hashMap.Add(230712, "汤旺河区");
            hashMap.Add(230713, "带岭区");
            hashMap.Add(230714, "乌伊岭区");
            hashMap.Add(230715, "红星区");
            hashMap.Add(230716, "上甘岭区");
            hashMap.Add(230722, "嘉荫县");
            hashMap.Add(230781, "铁力市");
            hashMap.Add(230800, "佳木斯市");
            hashMap.Add(230801, "市辖区");
            hashMap.Add(230803, "向阳区");
            hashMap.Add(230804, "前进区");
            hashMap.Add(230805, "东风区");
            hashMap.Add(230811, "郊区");
            hashMap.Add(230822, "桦南县");
            hashMap.Add(230826, "桦川县");
            hashMap.Add(230828, "汤原县");
            hashMap.Add(230833, "抚远县");
            hashMap.Add(230881, "同江市");
            hashMap.Add(230882, "富锦市");
            hashMap.Add(230900, "七台河市");
            hashMap.Add(230901, "市辖区");
            hashMap.Add(230902, "新兴区");
            hashMap.Add(230903, "桃山区");
            hashMap.Add(230904, "茄子河区");
            hashMap.Add(230921, "勃利县");
            hashMap.Add(231000, "牡丹江市");
            hashMap.Add(231001, "市辖区");
            hashMap.Add(231002, "东安区");
            hashMap.Add(231003, "阳明区");
            hashMap.Add(231004, "爱民区");
            hashMap.Add(231005, "西安区");
            hashMap.Add(231024, "东宁县");
            hashMap.Add(231025, "林口县");
            hashMap.Add(231081, "绥芬河市");
            hashMap.Add(231083, "海林市");
            hashMap.Add(231084, "宁安市");
            hashMap.Add(231085, "穆棱市");
            hashMap.Add(231100, "黑河市");
            hashMap.Add(231101, "市辖区");
            hashMap.Add(231102, "爱辉区");
            hashMap.Add(231121, "嫩江县");
            hashMap.Add(231123, "逊克县");
            hashMap.Add(231124, "孙吴县");
            hashMap.Add(231181, "北安市");
            hashMap.Add(231182, "五大连池市");
            hashMap.Add(231200, "绥化市");
            hashMap.Add(231201, "市辖区");
            hashMap.Add(231202, "北林区");
            hashMap.Add(231221, "望奎县");
            hashMap.Add(231222, "兰西县");
            hashMap.Add(231223, "青冈县");
            hashMap.Add(231224, "庆安县");
            hashMap.Add(231225, "明水县");
            hashMap.Add(231226, "绥棱县");
            hashMap.Add(231281, "安达市");
            hashMap.Add(231282, "肇东市");
            hashMap.Add(231283, "海伦市");
            hashMap.Add(232700, "大兴安岭地区");
            hashMap.Add(232721, "呼玛县");
            hashMap.Add(232722, "塔河县");
            hashMap.Add(232723, "漠河县");
            hashMap.Add(310000, "上海市");
            hashMap.Add(310100, "市辖区");
            hashMap.Add(310101, "黄浦区");
            hashMap.Add(310104, "徐汇区");
            hashMap.Add(310105, "长宁区");
            hashMap.Add(310106, "静安区");
            hashMap.Add(310107, "普陀区");
            hashMap.Add(310108, "闸北区");
            hashMap.Add(310109, "虹口区");
            hashMap.Add(310110, "杨浦区");
            hashMap.Add(310112, "闵行区");
            hashMap.Add(310113, "宝山区");
            hashMap.Add(310114, "嘉定区");
            hashMap.Add(310115, "浦东新区");
            hashMap.Add(310116, "金山区");
            hashMap.Add(310117, "松江区");
            hashMap.Add(310118, "青浦区");
            hashMap.Add(310120, "奉贤区");
            hashMap.Add(310200, "县");
            hashMap.Add(310230, "崇明县");
            hashMap.Add(320000, "江苏省");
            hashMap.Add(320100, "南京市");
            hashMap.Add(320101, "市辖区");
            hashMap.Add(320102, "玄武区");
            hashMap.Add(320104, "秦淮区");
            hashMap.Add(320105, "建邺区");
            hashMap.Add(320106, "鼓楼区");
            hashMap.Add(320111, "浦口区");
            hashMap.Add(320113, "栖霞区");
            hashMap.Add(320114, "雨花台区");
            hashMap.Add(320115, "江宁区");
            hashMap.Add(320116, "六合区");
            hashMap.Add(320117, "溧水区");
            hashMap.Add(320118, "高淳区");
            hashMap.Add(320200, "无锡市");
            hashMap.Add(320201, "市辖区");
            hashMap.Add(320202, "崇安区");
            hashMap.Add(320203, "南长区");
            hashMap.Add(320204, "北塘区");
            hashMap.Add(320205, "锡山区");
            hashMap.Add(320206, "惠山区");
            hashMap.Add(320211, "滨湖区");
            hashMap.Add(320281, "江阴市");
            hashMap.Add(320282, "宜兴市");
            hashMap.Add(320300, "徐州市");
            hashMap.Add(320301, "市辖区");
            hashMap.Add(320302, "鼓楼区");
            hashMap.Add(320303, "云龙区");
            hashMap.Add(320305, "贾汪区");
            hashMap.Add(320311, "泉山区");
            hashMap.Add(320312, "铜山区");
            hashMap.Add(320321, "丰县");
            hashMap.Add(320322, "沛县");
            hashMap.Add(320324, "睢宁县");
            hashMap.Add(320381, "新沂市");
            hashMap.Add(320382, "邳州市");
            hashMap.Add(320400, "常州市");
            hashMap.Add(320401, "市辖区");
            hashMap.Add(320402, "天宁区");
            hashMap.Add(320404, "钟楼区");
            hashMap.Add(320405, "戚墅堰区");
            hashMap.Add(320411, "新北区");
            hashMap.Add(320412, "武进区");
            hashMap.Add(320481, "溧阳市");
            hashMap.Add(320482, "金坛市");

            hashMap.Add(320500, "苏州市");
            hashMap.Add(320501, "市辖区");
            hashMap.Add(320505, "虎丘区");
            hashMap.Add(320506, "吴中区");
            hashMap.Add(320507, "相城区");
            hashMap.Add(320508, "姑苏区");
            hashMap.Add(320509, "吴江区");
            hashMap.Add(320581, "常熟市");
            hashMap.Add(320582, "张家港市");
            hashMap.Add(320583, "昆山市");
            hashMap.Add(320585, "太仓市");
            /*************************************/
            hashMap.Add(320586, "吴县市");
            /*************************************/
            hashMap.Add(320600, "南通市");
            hashMap.Add(320601, "市辖区");
            hashMap.Add(320602, "崇川区");
            hashMap.Add(320611, "港闸区");
            hashMap.Add(320612, "通州区");
            hashMap.Add(320621, "海安县");
            hashMap.Add(320623, "如东县");
            hashMap.Add(320681, "启东市");
            hashMap.Add(320682, "如皋市");
            hashMap.Add(320684, "海门市");
            hashMap.Add(320700, "连云港市");
            hashMap.Add(320701, "市辖区");
            hashMap.Add(320703, "连云区");
            hashMap.Add(320705, "新浦区");
            hashMap.Add(320706, "海州区");
            hashMap.Add(320721, "赣榆县");
            hashMap.Add(320722, "东海县");
            hashMap.Add(320723, "灌云县");
            hashMap.Add(320724, "灌南县");
            hashMap.Add(320800, "淮安市");
            hashMap.Add(320801, "市辖区");
            hashMap.Add(320802, "清河区");
            hashMap.Add(320803, "淮安区");
            hashMap.Add(320804, "淮阴区");
            hashMap.Add(320811, "清浦区");
            hashMap.Add(320826, "涟水县");
            hashMap.Add(320829, "洪泽县");
            hashMap.Add(320830, "盱眙县");
            hashMap.Add(320831, "金湖县");
            hashMap.Add(320900, "盐城市");
            hashMap.Add(320901, "市辖区");
            hashMap.Add(320902, "亭湖区");
            hashMap.Add(320903, "盐都区");
            hashMap.Add(320921, "响水县");
            hashMap.Add(320922, "滨海县");
            hashMap.Add(320923, "阜宁县");
            hashMap.Add(320924, "射阳县");
            hashMap.Add(320925, "建湖县");
            hashMap.Add(320981, "东台市");
            hashMap.Add(320982, "大丰市");
            hashMap.Add(321000, "扬州市");
            hashMap.Add(321001, "市辖区");
            hashMap.Add(321002, "广陵区");
            hashMap.Add(321003, "邗江区");
            hashMap.Add(321012, "江都区");
            hashMap.Add(321023, "宝应县");
            hashMap.Add(321081, "仪征市");
            hashMap.Add(321084, "高邮市");
            hashMap.Add(321100, "镇江市");
            hashMap.Add(321101, "市辖区");
            hashMap.Add(321102, "京口区");
            hashMap.Add(321111, "润州区");
            hashMap.Add(321112, "丹徒区");
            hashMap.Add(321181, "丹阳市");
            hashMap.Add(321182, "扬中市");
            hashMap.Add(321183, "句容市");
            hashMap.Add(321200, "泰州市");
            hashMap.Add(321201, "市辖区");
            hashMap.Add(321202, "海陵区");
            hashMap.Add(321203, "高港区");
            hashMap.Add(321204, "姜堰区");
            hashMap.Add(321281, "兴化市");
            hashMap.Add(321282, "靖江市");
            hashMap.Add(321283, "泰兴市");
            hashMap.Add(321300, "宿迁市");
            hashMap.Add(321301, "市辖区");
            hashMap.Add(321302, "宿城区");
            hashMap.Add(321311, "宿豫区");
            hashMap.Add(321322, "沭阳县");
            hashMap.Add(321323, "泗阳县");
            hashMap.Add(321324, "泗洪县");
            hashMap.Add(330000, "浙江省");
            hashMap.Add(330100, "杭州市");
            hashMap.Add(330101, "市辖区");
            hashMap.Add(330102, "上城区");
            hashMap.Add(330103, "下城区");
            hashMap.Add(330104, "江干区");
            hashMap.Add(330105, "拱墅区");
            hashMap.Add(330106, "西湖区");
            hashMap.Add(330108, "滨江区");
            hashMap.Add(330109, "萧山区");
            hashMap.Add(330110, "余杭区");
            hashMap.Add(330122, "桐庐县");
            hashMap.Add(330127, "淳安县");
            hashMap.Add(330182, "建德市");
            hashMap.Add(330183, "富阳市");
            hashMap.Add(330185, "临安市");
            hashMap.Add(330200, "宁波市");
            hashMap.Add(330201, "市辖区");
            hashMap.Add(330203, "海曙区");
            hashMap.Add(330204, "江东区");
            hashMap.Add(330205, "江北区");
            hashMap.Add(330206, "北仑区");
            hashMap.Add(330211, "镇海区");
            hashMap.Add(330212, "鄞州区");
            hashMap.Add(330225, "象山县");
            hashMap.Add(330226, "宁海县");
            hashMap.Add(330281, "余姚市");
            hashMap.Add(330282, "慈溪市");
            hashMap.Add(330283, "奉化市");
            hashMap.Add(330300, "温州市");
            hashMap.Add(330301, "市辖区");
            hashMap.Add(330302, "鹿城区");
            hashMap.Add(330303, "龙湾区");
            hashMap.Add(330304, "瓯海区");
            hashMap.Add(330322, "洞头县");
            hashMap.Add(330324, "永嘉县");
            hashMap.Add(330326, "平阳县");
            hashMap.Add(330327, "苍南县");
            hashMap.Add(330328, "文成县");
            hashMap.Add(330329, "泰顺县");
            hashMap.Add(330381, "瑞安市");
            hashMap.Add(330382, "乐清市");
            hashMap.Add(330400, "嘉兴市");
            hashMap.Add(330401, "市辖区");
            hashMap.Add(330402, "南湖区");
            hashMap.Add(330411, "秀洲区");
            hashMap.Add(330421, "嘉善县");
            hashMap.Add(330424, "海盐县");
            hashMap.Add(330481, "海宁市");
            hashMap.Add(330482, "平湖市");
            hashMap.Add(330483, "桐乡市");
            hashMap.Add(330500, "湖州市");
            hashMap.Add(330501, "市辖区");
            hashMap.Add(330502, "吴兴区");
            hashMap.Add(330503, "南浔区");
            hashMap.Add(330521, "德清县");
            hashMap.Add(330522, "长兴县");
            hashMap.Add(330523, "安吉县");
            hashMap.Add(330600, "绍兴市");
            hashMap.Add(330601, "市辖区");
            hashMap.Add(330602, "越城区");
            hashMap.Add(330621, "绍兴县");
            hashMap.Add(330624, "新昌县");
            hashMap.Add(330681, "诸暨市");
            hashMap.Add(330682, "上虞市");
            hashMap.Add(330683, "嵊州市");
            hashMap.Add(330700, "金华市");
            hashMap.Add(330701, "市辖区");
            hashMap.Add(330702, "婺城区");
            hashMap.Add(330703, "金东区");
            hashMap.Add(330723, "武义县");
            hashMap.Add(330726, "浦江县");
            hashMap.Add(330727, "磐安县");
            hashMap.Add(330781, "兰溪市");
            hashMap.Add(330782, "义乌市");
            hashMap.Add(330783, "东阳市");
            hashMap.Add(330784, "永康市");
            hashMap.Add(330800, "衢州市");
            hashMap.Add(330801, "市辖区");
            hashMap.Add(330802, "柯城区");
            hashMap.Add(330803, "衢江区");
            hashMap.Add(330822, "常山县");
            hashMap.Add(330824, "开化县");
            hashMap.Add(330825, "龙游县");
            hashMap.Add(330881, "江山市");
            hashMap.Add(330900, "舟山市");
            hashMap.Add(330901, "市辖区");
            hashMap.Add(330902, "定海区");
            hashMap.Add(330903, "普陀区");
            hashMap.Add(330921, "岱山县");
            hashMap.Add(330922, "嵊泗县");
            hashMap.Add(331000, "台州市");
            hashMap.Add(331001, "市辖区");
            hashMap.Add(331002, "椒江区");
            hashMap.Add(331003, "黄岩区");
            hashMap.Add(331004, "路桥区");
            hashMap.Add(331021, "玉环县");
            hashMap.Add(331022, "三门县");
            hashMap.Add(331023, "天台县");
            hashMap.Add(331024, "仙居县");
            hashMap.Add(331081, "温岭市");
            hashMap.Add(331082, "临海市");
            hashMap.Add(331100, "丽水市");
            hashMap.Add(331101, "市辖区");
            hashMap.Add(331102, "莲都区");
            hashMap.Add(331121, "青田县");
            hashMap.Add(331122, "缙云县");
            hashMap.Add(331123, "遂昌县");
            hashMap.Add(331124, "松阳县");
            hashMap.Add(331125, "云和县");
            hashMap.Add(331126, "庆元县");
            hashMap.Add(331127, "景宁畲族自治县");
            hashMap.Add(331181, "龙泉市");
            hashMap.Add(340000, "安徽省");
            hashMap.Add(340100, "合肥市");
            hashMap.Add(340101, "市辖区");
            hashMap.Add(340102, "瑶海区");
            hashMap.Add(340103, "庐阳区");
            hashMap.Add(340104, "蜀山区");
            hashMap.Add(340111, "包河区");
            hashMap.Add(340121, "长丰县");
            hashMap.Add(340122, "肥东县");
            hashMap.Add(340123, "肥西县");
            hashMap.Add(340124, "庐江县");
            hashMap.Add(340181, "巢湖市");
            hashMap.Add(340200, "芜湖市");
            hashMap.Add(340201, "市辖区");
            hashMap.Add(340202, "镜湖区");
            hashMap.Add(340203, "弋江区");
            hashMap.Add(340207, "鸠江区");
            hashMap.Add(340208, "三山区");
            hashMap.Add(340221, "芜湖县");
            hashMap.Add(340222, "繁昌县");
            hashMap.Add(340223, "南陵县");
            hashMap.Add(340225, "无为县");
            hashMap.Add(340300, "蚌埠市");
            hashMap.Add(340301, "市辖区");
            hashMap.Add(340302, "龙子湖区");
            hashMap.Add(340303, "蚌山区");
            hashMap.Add(340304, "禹会区");
            hashMap.Add(340311, "淮上区");
            hashMap.Add(340321, "怀远县");
            hashMap.Add(340322, "五河县");
            hashMap.Add(340323, "固镇县");
            hashMap.Add(340400, "淮南市");
            hashMap.Add(340401, "市辖区");
            hashMap.Add(340402, "大通区");
            hashMap.Add(340403, "田家庵区");
            hashMap.Add(340404, "谢家集区");
            hashMap.Add(340405, "八公山区");
            hashMap.Add(340406, "潘集区");
            hashMap.Add(340421, "凤台县");
            hashMap.Add(340500, "马鞍山市");
            hashMap.Add(340501, "市辖区");
            hashMap.Add(340503, "花山区");
            hashMap.Add(340504, "雨山区");
            hashMap.Add(340506, "博望区");
            hashMap.Add(340521, "当涂县");
            hashMap.Add(340522, "含山县");
            hashMap.Add(340523, "和县");
            hashMap.Add(340600, "淮北市");
            hashMap.Add(340601, "市辖区");
            hashMap.Add(340602, "杜集区");
            hashMap.Add(340603, "相山区");
            hashMap.Add(340604, "烈山区");
            hashMap.Add(340621, "濉溪县");
            hashMap.Add(340700, "铜陵市");
            hashMap.Add(340701, "市辖区");
            hashMap.Add(340702, "铜官山区");
            hashMap.Add(340703, "狮子山区");
            hashMap.Add(340711, "郊区");
            hashMap.Add(340721, "铜陵县");
            hashMap.Add(340800, "安庆市");
            hashMap.Add(340801, "市辖区");
            hashMap.Add(340802, "迎江区");
            hashMap.Add(340803, "大观区");
            hashMap.Add(340811, "宜秀区");
            hashMap.Add(340822, "怀宁县");
            hashMap.Add(340823, "枞阳县");
            hashMap.Add(340824, "潜山县");
            hashMap.Add(340825, "太湖县");
            hashMap.Add(340826, "宿松县");
            hashMap.Add(340827, "望江县");
            hashMap.Add(340828, "岳西县");
            hashMap.Add(340881, "桐城市");
            hashMap.Add(341000, "黄山市");
            hashMap.Add(341001, "市辖区");
            hashMap.Add(341002, "屯溪区");
            hashMap.Add(341003, "黄山区");
            hashMap.Add(341004, "徽州区");
            hashMap.Add(341021, "歙县");
            hashMap.Add(341022, "休宁县");
            hashMap.Add(341023, "黟县");
            hashMap.Add(341024, "祁门县");
            hashMap.Add(341100, "滁州市");
            hashMap.Add(341101, "市辖区");
            hashMap.Add(341102, "琅琊区");
            hashMap.Add(341103, "南谯区");
            hashMap.Add(341122, "来安县");
            hashMap.Add(341124, "全椒县");
            hashMap.Add(341125, "定远县");
            hashMap.Add(341126, "凤阳县");
            hashMap.Add(341181, "天长市");
            hashMap.Add(341182, "明光市");
            hashMap.Add(341200, "阜阳市");
            hashMap.Add(341201, "市辖区");
            hashMap.Add(341202, "颍州区");
            hashMap.Add(341203, "颍东区");
            hashMap.Add(341204, "颍泉区");
            hashMap.Add(341221, "临泉县");
            hashMap.Add(341222, "太和县");
            hashMap.Add(341225, "阜南县");
            hashMap.Add(341226, "颍上县");
            hashMap.Add(341282, "界首市");
            hashMap.Add(341300, "宿州市");
            hashMap.Add(341301, "市辖区");
            hashMap.Add(341302, "埇桥区");
            hashMap.Add(341321, "砀山县");
            hashMap.Add(341322, "萧县");
            hashMap.Add(341323, "灵璧县");
            hashMap.Add(341324, "泗县");
            hashMap.Add(341500, "六安市");
            hashMap.Add(341501, "市辖区");
            hashMap.Add(341502, "金安区");
            hashMap.Add(341503, "裕安区");
            hashMap.Add(341521, "寿县");
            hashMap.Add(341522, "霍邱县");
            hashMap.Add(341523, "舒城县");
            hashMap.Add(341524, "金寨县");
            hashMap.Add(341525, "霍山县");
            hashMap.Add(341600, "亳州市");
            hashMap.Add(341601, "市辖区");
            hashMap.Add(341602, "谯城区");
            hashMap.Add(341621, "涡阳县");
            hashMap.Add(341622, "蒙城县");
            hashMap.Add(341623, "利辛县");
            hashMap.Add(341700, "池州市");
            hashMap.Add(341701, "市辖区");
            hashMap.Add(341702, "贵池区");
            hashMap.Add(341721, "东至县");
            hashMap.Add(341722, "石台县");
            hashMap.Add(341723, "青阳县");
            hashMap.Add(341800, "宣城市");
            hashMap.Add(341801, "市辖区");
            hashMap.Add(341802, "宣州区");
            hashMap.Add(341821, "郎溪县");
            hashMap.Add(341822, "广德县");
            hashMap.Add(341823, "泾县");
            hashMap.Add(341824, "绩溪县");
            hashMap.Add(341825, "旌德县");
            hashMap.Add(341881, "宁国市");
            hashMap.Add(350000, "福建省");
            hashMap.Add(350100, "福州市");
            hashMap.Add(350101, "市辖区");
            hashMap.Add(350102, "鼓楼区");
            hashMap.Add(350103, "台江区");
            hashMap.Add(350104, "仓山区");
            hashMap.Add(350105, "马尾区");
            hashMap.Add(350111, "晋安区");
            hashMap.Add(350121, "闽侯县");
            hashMap.Add(350122, "连江县");
            hashMap.Add(350123, "罗源县");
            hashMap.Add(350124, "闽清县");
            hashMap.Add(350125, "永泰县");
            hashMap.Add(350128, "平潭县");
            hashMap.Add(350181, "福清市");
            hashMap.Add(350182, "长乐市");
            hashMap.Add(350200, "厦门市");
            hashMap.Add(350201, "市辖区");
            hashMap.Add(350203, "思明区");
            hashMap.Add(350205, "海沧区");
            hashMap.Add(350206, "湖里区");
            hashMap.Add(350211, "集美区");
            hashMap.Add(350212, "同安区");
            hashMap.Add(350213, "翔安区");
            hashMap.Add(350300, "莆田市");
            hashMap.Add(350301, "市辖区");
            hashMap.Add(350302, "城厢区");
            hashMap.Add(350303, "涵江区");
            hashMap.Add(350304, "荔城区");
            hashMap.Add(350305, "秀屿区");
            hashMap.Add(350322, "仙游县");
            hashMap.Add(350400, "三明市");
            hashMap.Add(350401, "市辖区");
            hashMap.Add(350402, "梅列区");
            hashMap.Add(350403, "三元区");
            hashMap.Add(350421, "明溪县");
            hashMap.Add(350423, "清流县");
            hashMap.Add(350424, "宁化县");
            hashMap.Add(350425, "大田县");
            hashMap.Add(350426, "尤溪县");
            hashMap.Add(350427, "沙县");
            hashMap.Add(350428, "将乐县");
            hashMap.Add(350429, "泰宁县");
            hashMap.Add(350430, "建宁县");
            hashMap.Add(350481, "永安市");
            hashMap.Add(350500, "泉州市");
            hashMap.Add(350501, "市辖区");
            hashMap.Add(350502, "鲤城区");
            hashMap.Add(350503, "丰泽区");
            hashMap.Add(350504, "洛江区");
            hashMap.Add(350505, "泉港区");
            hashMap.Add(350521, "惠安县");
            hashMap.Add(350524, "安溪县");
            hashMap.Add(350525, "永春县");
            hashMap.Add(350526, "德化县");
            hashMap.Add(350527, "金门县");
            hashMap.Add(350581, "石狮市");
            hashMap.Add(350582, "晋江市");
            hashMap.Add(350583, "南安市");
            hashMap.Add(350600, "漳州市");
            hashMap.Add(350601, "市辖区");
            hashMap.Add(350602, "芗城区");
            hashMap.Add(350603, "龙文区");
            hashMap.Add(350622, "云霄县");
            hashMap.Add(350623, "漳浦县");
            hashMap.Add(350624, "诏安县");
            hashMap.Add(350625, "长泰县");
            hashMap.Add(350626, "东山县");
            hashMap.Add(350627, "南靖县");
            hashMap.Add(350628, "平和县");
            hashMap.Add(350629, "华安县");
            hashMap.Add(350681, "龙海市");
            hashMap.Add(350700, "南平市");
            hashMap.Add(350701, "市辖区");
            hashMap.Add(350702, "延平区");
            hashMap.Add(350721, "顺昌县");
            hashMap.Add(350722, "浦城县");
            hashMap.Add(350723, "光泽县");
            hashMap.Add(350724, "松溪县");
            hashMap.Add(350725, "政和县");
            hashMap.Add(350781, "邵武市");
            hashMap.Add(350782, "武夷山市");
            hashMap.Add(350783, "建瓯市");
            hashMap.Add(350784, "建阳市");
            hashMap.Add(350800, "龙岩市");
            hashMap.Add(350801, "市辖区");
            hashMap.Add(350802, "新罗区");
            hashMap.Add(350821, "长汀县");
            hashMap.Add(350822, "永定县");
            hashMap.Add(350823, "上杭县");
            hashMap.Add(350824, "武平县");
            hashMap.Add(350825, "连城县");
            hashMap.Add(350881, "漳平市");
            hashMap.Add(350900, "宁德市");
            hashMap.Add(350901, "市辖区");
            hashMap.Add(350902, "蕉城区");
            hashMap.Add(350921, "霞浦县");
            hashMap.Add(350922, "古田县");
            hashMap.Add(350923, "屏南县");
            hashMap.Add(350924, "寿宁县");
            hashMap.Add(350925, "周宁县");
            hashMap.Add(350926, "柘荣县");
            hashMap.Add(350981, "福安市");
            hashMap.Add(350982, "福鼎市");
            hashMap.Add(360000, "江西省");
            hashMap.Add(360100, "南昌市");
            hashMap.Add(360101, "市辖区");
            hashMap.Add(360102, "东湖区");
            hashMap.Add(360103, "西湖区");
            hashMap.Add(360104, "青云谱区");
            hashMap.Add(360105, "湾里区");
            hashMap.Add(360111, "青山湖区");
            hashMap.Add(360121, "南昌县");
            hashMap.Add(360122, "新建县");
            hashMap.Add(360123, "安义县");
            hashMap.Add(360124, "进贤县");
            hashMap.Add(360200, "景德镇市");
            hashMap.Add(360201, "市辖区");
            hashMap.Add(360202, "昌江区");
            hashMap.Add(360203, "珠山区");
            hashMap.Add(360222, "浮梁县");
            hashMap.Add(360281, "乐平市");
            hashMap.Add(360300, "萍乡市");
            hashMap.Add(360301, "市辖区");
            hashMap.Add(360302, "安源区");
            hashMap.Add(360313, "湘东区");
            hashMap.Add(360321, "莲花县");
            hashMap.Add(360322, "上栗县");
            hashMap.Add(360323, "芦溪县");
            hashMap.Add(360400, "九江市");
            hashMap.Add(360401, "市辖区");
            hashMap.Add(360402, "庐山区");
            hashMap.Add(360403, "浔阳区");
            hashMap.Add(360421, "九江县");
            hashMap.Add(360423, "武宁县");
            hashMap.Add(360424, "修水县");
            hashMap.Add(360425, "永修县");
            hashMap.Add(360426, "德安县");
            hashMap.Add(360427, "星子县");
            hashMap.Add(360428, "都昌县");
            hashMap.Add(360429, "湖口县");
            hashMap.Add(360430, "彭泽县");
            hashMap.Add(360481, "瑞昌市");
            hashMap.Add(360482, "共青城市");
            hashMap.Add(360500, "新余市");
            hashMap.Add(360501, "市辖区");
            hashMap.Add(360502, "渝水区");
            hashMap.Add(360521, "分宜县");
            hashMap.Add(360600, "鹰潭市");
            hashMap.Add(360601, "市辖区");
            hashMap.Add(360602, "月湖区");
            hashMap.Add(360622, "余江县");
            hashMap.Add(360681, "贵溪市");
            hashMap.Add(360700, "赣州市");
            hashMap.Add(360701, "市辖区");
            hashMap.Add(360702, "章贡区");
            hashMap.Add(360721, "赣县");
            hashMap.Add(360722, "信丰县");
            hashMap.Add(360723, "大余县");
            hashMap.Add(360724, "上犹县");
            hashMap.Add(360725, "崇义县");
            hashMap.Add(360726, "安远县");
            hashMap.Add(360727, "龙南县");
            hashMap.Add(360728, "定南县");
            hashMap.Add(360729, "全南县");
            hashMap.Add(360730, "宁都县");
            hashMap.Add(360731, "于都县");
            hashMap.Add(360732, "兴国县");
            hashMap.Add(360733, "会昌县");
            hashMap.Add(360734, "寻乌县");
            hashMap.Add(360735, "石城县");
            hashMap.Add(360781, "瑞金市");
            hashMap.Add(360782, "南康市");
            hashMap.Add(360800, "吉安市");
            hashMap.Add(360801, "市辖区");
            hashMap.Add(360802, "吉州区");
            hashMap.Add(360803, "青原区");
            hashMap.Add(360821, "吉安县");
            hashMap.Add(360822, "吉水县");
            hashMap.Add(360823, "峡江县");
            hashMap.Add(360824, "新干县");
            hashMap.Add(360825, "永丰县");
            hashMap.Add(360826, "泰和县");
            hashMap.Add(360827, "遂川县");
            hashMap.Add(360828, "万安县");
            hashMap.Add(360829, "安福县");
            hashMap.Add(360830, "永新县");
            hashMap.Add(360881, "井冈山市");
            hashMap.Add(360900, "宜春市");
            hashMap.Add(360901, "市辖区");
            hashMap.Add(360902, "袁州区");
            hashMap.Add(360921, "奉新县");
            hashMap.Add(360922, "万载县");
            hashMap.Add(360923, "上高县");
            hashMap.Add(360924, "宜丰县");
            hashMap.Add(360925, "靖安县");
            hashMap.Add(360926, "铜鼓县");
            hashMap.Add(360981, "丰城市");
            hashMap.Add(360982, "樟树市");
            hashMap.Add(360983, "高安市");
            hashMap.Add(361000, "抚州市");
            hashMap.Add(361001, "市辖区");
            hashMap.Add(361002, "临川区");
            hashMap.Add(361021, "南城县");
            hashMap.Add(361022, "黎川县");
            hashMap.Add(361023, "南丰县");
            hashMap.Add(361024, "崇仁县");
            hashMap.Add(361025, "乐安县");
            hashMap.Add(361026, "宜黄县");
            hashMap.Add(361027, "金溪县");
            hashMap.Add(361028, "资溪县");
            hashMap.Add(361029, "东乡县");
            hashMap.Add(361030, "广昌县");
            hashMap.Add(361100, "上饶市");
            hashMap.Add(361101, "市辖区");
            hashMap.Add(361102, "信州区");
            hashMap.Add(361121, "上饶县");
            hashMap.Add(361122, "广丰县");
            hashMap.Add(361123, "玉山县");
            hashMap.Add(361124, "铅山县");
            hashMap.Add(361125, "横峰县");
            hashMap.Add(361126, "弋阳县");
            hashMap.Add(361127, "余干县");
            hashMap.Add(361128, "鄱阳县");
            hashMap.Add(361129, "万年县");
            hashMap.Add(361130, "婺源县");
            hashMap.Add(361181, "德兴市");
            hashMap.Add(370000, "山东省");
            hashMap.Add(370100, "济南市");
            hashMap.Add(370101, "市辖区");
            hashMap.Add(370102, "历下区");
            hashMap.Add(370103, "市中区");
            hashMap.Add(370104, "槐荫区");
            hashMap.Add(370105, "天桥区");
            hashMap.Add(370112, "历城区");
            hashMap.Add(370113, "长清区");
            hashMap.Add(370124, "平阴县");
            hashMap.Add(370125, "济阳县");
            hashMap.Add(370126, "商河县");
            hashMap.Add(370181, "章丘市");
            hashMap.Add(370200, "青岛市");
            hashMap.Add(370201, "市辖区");
            hashMap.Add(370202, "市南区");
            hashMap.Add(370203, "市北区");
            hashMap.Add(370211, "黄岛区");
            hashMap.Add(370212, "崂山区");
            hashMap.Add(370213, "李沧区");
            hashMap.Add(370214, "城阳区");
            hashMap.Add(370281, "胶州市");
            hashMap.Add(370282, "即墨市");
            hashMap.Add(370283, "平度市");
            hashMap.Add(370285, "莱西市");
            hashMap.Add(370300, "淄博市");
            hashMap.Add(370301, "市辖区");
            hashMap.Add(370302, "淄川区");
            hashMap.Add(370303, "张店区");
            hashMap.Add(370304, "博山区");
            hashMap.Add(370305, "临淄区");
            hashMap.Add(370306, "周村区");
            hashMap.Add(370321, "桓台县");
            hashMap.Add(370322, "高青县");
            hashMap.Add(370323, "沂源县");
            hashMap.Add(370400, "枣庄市");
            hashMap.Add(370401, "市辖区");
            hashMap.Add(370402, "市中区");
            hashMap.Add(370403, "薛城区");
            hashMap.Add(370404, "峄城区");
            hashMap.Add(370405, "台儿庄区");
            hashMap.Add(370406, "山亭区");
            hashMap.Add(370481, "滕州市");
            hashMap.Add(370500, "东营市");
            hashMap.Add(370501, "市辖区");
            hashMap.Add(370502, "东营区");
            hashMap.Add(370503, "河口区");
            hashMap.Add(370521, "垦利县");
            hashMap.Add(370522, "利津县");
            hashMap.Add(370523, "广饶县");
            hashMap.Add(370600, "烟台市");
            hashMap.Add(370601, "市辖区");
            hashMap.Add(370602, "芝罘区");
            hashMap.Add(370611, "福山区");
            hashMap.Add(370612, "牟平区");
            hashMap.Add(370613, "莱山区");
            hashMap.Add(370634, "长岛县");
            hashMap.Add(370681, "龙口市");
            hashMap.Add(370682, "莱阳市");
            hashMap.Add(370683, "莱州市");
            hashMap.Add(370684, "蓬莱市");
            hashMap.Add(370685, "招远市");
            hashMap.Add(370686, "栖霞市");
            hashMap.Add(370687, "海阳市");
            hashMap.Add(370700, "潍坊市");
            hashMap.Add(370701, "市辖区");
            hashMap.Add(370702, "潍城区");
            hashMap.Add(370703, "寒亭区");
            hashMap.Add(370704, "坊子区");
            hashMap.Add(370705, "奎文区");
            hashMap.Add(370724, "临朐县");
            hashMap.Add(370725, "昌乐县");
            hashMap.Add(370781, "青州市");
            hashMap.Add(370782, "诸城市");
            hashMap.Add(370783, "寿光市");
            hashMap.Add(370784, "安丘市");
            hashMap.Add(370785, "高密市");
            hashMap.Add(370786, "昌邑市");
            hashMap.Add(370800, "济宁市");
            hashMap.Add(370801, "市辖区");
            hashMap.Add(370802, "市中区");
            hashMap.Add(370811, "任城区");
            hashMap.Add(370826, "微山县");
            hashMap.Add(370827, "鱼台县");
            hashMap.Add(370828, "金乡县");
            hashMap.Add(370829, "嘉祥县");
            hashMap.Add(370830, "汶上县");
            hashMap.Add(370831, "泗水县");
            hashMap.Add(370832, "梁山县");
            hashMap.Add(370881, "曲阜市");
            hashMap.Add(370882, "兖州市");
            hashMap.Add(370883, "邹城市");
            hashMap.Add(370900, "泰安市");
            hashMap.Add(370901, "市辖区");
            hashMap.Add(370902, "泰山区");
            hashMap.Add(370911, "岱岳区");
            hashMap.Add(370921, "宁阳县");
            hashMap.Add(370923, "东平县");
            hashMap.Add(370982, "新泰市");
            hashMap.Add(370983, "肥城市");
            hashMap.Add(371000, "威海市");
            hashMap.Add(371001, "市辖区");
            hashMap.Add(371002, "环翠区");
            hashMap.Add(371081, "文登市");
            hashMap.Add(371082, "荣成市");
            hashMap.Add(371083, "乳山市");
            hashMap.Add(371100, "日照市");
            hashMap.Add(371101, "市辖区");
            hashMap.Add(371102, "东港区");
            hashMap.Add(371103, "岚山区");
            hashMap.Add(371121, "五莲县");
            hashMap.Add(371122, "莒县");
            hashMap.Add(371200, "莱芜市");
            hashMap.Add(371201, "市辖区");
            hashMap.Add(371202, "莱城区");
            hashMap.Add(371203, "钢城区");
            hashMap.Add(371300, "临沂市");
            hashMap.Add(371301, "市辖区");
            hashMap.Add(371302, "兰山区");
            hashMap.Add(371311, "罗庄区");
            hashMap.Add(371312, "河东区");
            hashMap.Add(371321, "沂南县");
            hashMap.Add(371322, "郯城县");
            hashMap.Add(371323, "沂水县");
            hashMap.Add(371324, "苍山县");
            hashMap.Add(371325, "费县");
            hashMap.Add(371326, "平邑县");
            hashMap.Add(371327, "莒南县");
            hashMap.Add(371328, "蒙阴县");
            hashMap.Add(371329, "临沭县");
            hashMap.Add(371400, "德州市");
            hashMap.Add(371401, "市辖区");
            hashMap.Add(371402, "德城区");
            hashMap.Add(371421, "陵县");
            hashMap.Add(371422, "宁津县");
            hashMap.Add(371423, "庆云县");
            hashMap.Add(371424, "临邑县");
            hashMap.Add(371425, "齐河县");
            hashMap.Add(371426, "平原县");
            hashMap.Add(371427, "夏津县");
            hashMap.Add(371428, "武城县");
            hashMap.Add(371481, "乐陵市");
            hashMap.Add(371482, "禹城市");
            hashMap.Add(371500, "聊城市");
            hashMap.Add(371501, "市辖区");
            hashMap.Add(371502, "东昌府区");
            hashMap.Add(371521, "阳谷县");
            hashMap.Add(371522, "莘县");
            hashMap.Add(371523, "茌平县");
            hashMap.Add(371524, "东阿县");
            hashMap.Add(371525, "冠县");
            hashMap.Add(371526, "高唐县");
            hashMap.Add(371581, "临清市");
            hashMap.Add(371600, "滨州市");
            hashMap.Add(371601, "市辖区");
            hashMap.Add(371602, "滨城区");
            hashMap.Add(371621, "惠民县");
            hashMap.Add(371622, "阳信县");
            hashMap.Add(371623, "无棣县");
            hashMap.Add(371624, "沾化县");
            hashMap.Add(371625, "博兴县");
            hashMap.Add(371626, "邹平县");
            hashMap.Add(371700, "菏泽市");
            hashMap.Add(371701, "市辖区");
            hashMap.Add(371702, "牡丹区");
            hashMap.Add(371721, "曹县");
            hashMap.Add(371722, "单县");
            hashMap.Add(371723, "成武县");
            hashMap.Add(371724, "巨野县");
            hashMap.Add(371725, "郓城县");
            hashMap.Add(371726, "鄄城县");
            hashMap.Add(371727, "定陶县");
            hashMap.Add(371728, "东明县");
            hashMap.Add(410000, "河南省");
            hashMap.Add(410100, "郑州市");
            hashMap.Add(410101, "市辖区");
            hashMap.Add(410102, "中原区");
            hashMap.Add(410103, "二七区");
            hashMap.Add(410104, "管城回族区");
            hashMap.Add(410105, "金水区");
            hashMap.Add(410106, "上街区");
            hashMap.Add(410108, "惠济区");
            hashMap.Add(410122, "中牟县");
            hashMap.Add(410181, "巩义市");
            hashMap.Add(410182, "荥阳市");
            hashMap.Add(410183, "新密市");
            hashMap.Add(410184, "新郑市");
            hashMap.Add(410185, "登封市");
            hashMap.Add(410200, "开封市");
            hashMap.Add(410201, "市辖区");
            hashMap.Add(410202, "龙亭区");
            hashMap.Add(410203, "顺河回族区");
            hashMap.Add(410204, "鼓楼区");
            hashMap.Add(410205, "禹王台区");
            hashMap.Add(410211, "金明区");
            hashMap.Add(410221, "杞县");
            hashMap.Add(410222, "通许县");
            hashMap.Add(410223, "尉氏县");
            hashMap.Add(410224, "开封县");
            hashMap.Add(410225, "兰考县");
            hashMap.Add(410300, "洛阳市");
            hashMap.Add(410301, "市辖区");
            hashMap.Add(410302, "老城区");
            hashMap.Add(410303, "西工区");
            hashMap.Add(410304, "瀍河回族区");
            hashMap.Add(410305, "涧西区");
            hashMap.Add(410306, "吉利区");
            hashMap.Add(410311, "洛龙区");
            hashMap.Add(410322, "孟津县");
            hashMap.Add(410323, "新安县");
            hashMap.Add(410324, "栾川县");
            hashMap.Add(410325, "嵩县");
            hashMap.Add(410326, "汝阳县");
            hashMap.Add(410327, "宜阳县");
            hashMap.Add(410328, "洛宁县");
            hashMap.Add(410329, "伊川县");
            hashMap.Add(410381, "偃师市");
            hashMap.Add(410400, "平顶山市");
            hashMap.Add(410401, "市辖区");
            hashMap.Add(410402, "新华区");
            hashMap.Add(410403, "卫东区");
            hashMap.Add(410404, "石龙区");
            hashMap.Add(410411, "湛河区");
            hashMap.Add(410421, "宝丰县");
            hashMap.Add(410422, "叶县");
            hashMap.Add(410423, "鲁山县");
            hashMap.Add(410425, "郏县");
            hashMap.Add(410481, "舞钢市");
            hashMap.Add(410482, "汝州市");
            hashMap.Add(410500, "安阳市");
            hashMap.Add(410501, "市辖区");
            hashMap.Add(410502, "文峰区");
            hashMap.Add(410503, "北关区");
            hashMap.Add(410505, "殷都区");
            hashMap.Add(410506, "龙安区");
            hashMap.Add(410522, "安阳县");
            hashMap.Add(410523, "汤阴县");
            hashMap.Add(410526, "滑县");
            hashMap.Add(410527, "内黄县");
            hashMap.Add(410581, "林州市");
            hashMap.Add(410600, "鹤壁市");
            hashMap.Add(410601, "市辖区");
            hashMap.Add(410602, "鹤山区");
            hashMap.Add(410603, "山城区");
            hashMap.Add(410611, "淇滨区");
            hashMap.Add(410621, "浚县");
            hashMap.Add(410622, "淇县");
            hashMap.Add(410700, "新乡市");
            hashMap.Add(410701, "市辖区");
            hashMap.Add(410702, "红旗区");
            hashMap.Add(410703, "卫滨区");
            hashMap.Add(410704, "凤泉区");
            hashMap.Add(410711, "牧野区");
            hashMap.Add(410721, "新乡县");
            hashMap.Add(410724, "获嘉县");
            hashMap.Add(410725, "原阳县");
            hashMap.Add(410726, "延津县");
            hashMap.Add(410727, "封丘县");
            hashMap.Add(410728, "长垣县");
            hashMap.Add(410781, "卫辉市");
            hashMap.Add(410782, "辉县市");
            hashMap.Add(410800, "焦作市");
            hashMap.Add(410801, "市辖区");
            hashMap.Add(410802, "解放区");
            hashMap.Add(410803, "中站区");
            hashMap.Add(410804, "马村区");
            hashMap.Add(410811, "山阳区");
            hashMap.Add(410821, "修武县");
            hashMap.Add(410822, "博爱县");
            hashMap.Add(410823, "武陟县");
            hashMap.Add(410825, "温县");
            hashMap.Add(410882, "沁阳市");
            hashMap.Add(410883, "孟州市");
            hashMap.Add(410900, "濮阳市");
            hashMap.Add(410901, "市辖区");
            hashMap.Add(410902, "华龙区");
            hashMap.Add(410922, "清丰县");
            hashMap.Add(410923, "南乐县");
            hashMap.Add(410926, "范县");
            hashMap.Add(410927, "台前县");
            hashMap.Add(410928, "濮阳县");
            hashMap.Add(411000, "许昌市");
            hashMap.Add(411001, "市辖区");
            hashMap.Add(411002, "魏都区");
            hashMap.Add(411023, "许昌县");
            hashMap.Add(411024, "鄢陵县");
            hashMap.Add(411025, "襄城县");
            hashMap.Add(411081, "禹州市");
            hashMap.Add(411082, "长葛市");
            hashMap.Add(411100, "漯河市");
            hashMap.Add(411101, "市辖区");
            hashMap.Add(411102, "源汇区");
            hashMap.Add(411103, "郾城区");
            hashMap.Add(411104, "召陵区");
            hashMap.Add(411121, "舞阳县");
            hashMap.Add(411122, "临颍县");
            hashMap.Add(411200, "三门峡市");
            hashMap.Add(411201, "市辖区");
            hashMap.Add(411202, "湖滨区");
            hashMap.Add(411221, "渑池县");
            hashMap.Add(411222, "陕县");
            hashMap.Add(411224, "卢氏县");
            hashMap.Add(411281, "义马市");
            hashMap.Add(411282, "灵宝市");
            hashMap.Add(411300, "南阳市");
            hashMap.Add(411301, "市辖区");
            hashMap.Add(411302, "宛城区");
            hashMap.Add(411303, "卧龙区");
            hashMap.Add(411321, "南召县");
            hashMap.Add(411322, "方城县");
            hashMap.Add(411323, "西峡县");
            hashMap.Add(411324, "镇平县");
            hashMap.Add(411325, "内乡县");
            hashMap.Add(411326, "淅川县");
            hashMap.Add(411327, "社旗县");
            hashMap.Add(411328, "唐河县");
            hashMap.Add(411329, "新野县");
            hashMap.Add(411330, "桐柏县");
            hashMap.Add(411381, "邓州市");
            hashMap.Add(411400, "商丘市");
            hashMap.Add(411401, "市辖区");
            hashMap.Add(411402, "梁园区");
            hashMap.Add(411403, "睢阳区");
            hashMap.Add(411421, "民权县");
            hashMap.Add(411422, "睢县");
            hashMap.Add(411423, "宁陵县");
            hashMap.Add(411424, "柘城县");
            hashMap.Add(411425, "虞城县");
            hashMap.Add(411426, "夏邑县");
            hashMap.Add(411481, "永城市");
            hashMap.Add(411500, "信阳市");
            hashMap.Add(411501, "市辖区");
            hashMap.Add(411502, "浉河区");
            hashMap.Add(411503, "平桥区");
            hashMap.Add(411521, "罗山县");
            hashMap.Add(411522, "光山县");
            hashMap.Add(411523, "新县");
            hashMap.Add(411524, "商城县");
            hashMap.Add(411525, "固始县");
            hashMap.Add(411526, "潢川县");
            hashMap.Add(411527, "淮滨县");
            hashMap.Add(411528, "息县");
            hashMap.Add(411600, "周口市");
            hashMap.Add(411601, "市辖区");
            hashMap.Add(411602, "川汇区");
            hashMap.Add(411621, "扶沟县");
            hashMap.Add(411622, "西华县");
            hashMap.Add(411623, "商水县");
            hashMap.Add(411624, "沈丘县");
            hashMap.Add(411625, "郸城县");
            hashMap.Add(411626, "淮阳县");
            hashMap.Add(411627, "太康县");
            hashMap.Add(411628, "鹿邑县");
            hashMap.Add(411681, "项城市");
            hashMap.Add(411700, "驻马店市");
            hashMap.Add(411701, "市辖区");
            hashMap.Add(411702, "驿城区");
            hashMap.Add(411721, "西平县");
            hashMap.Add(411722, "上蔡县");
            hashMap.Add(411723, "平舆县");
            hashMap.Add(411724, "正阳县");
            hashMap.Add(411725, "确山县");
            hashMap.Add(411726, "泌阳县");
            hashMap.Add(411727, "汝南县");
            hashMap.Add(411728, "遂平县");
            hashMap.Add(411729, "新蔡县");
            hashMap.Add(419000, "省直辖县级行政区划");
            hashMap.Add(419001, "济源市");
            hashMap.Add(420000, "湖北省");
            hashMap.Add(420100, "武汉市");
            hashMap.Add(420101, "市辖区");
            hashMap.Add(420102, "江岸区");
            hashMap.Add(420103, "江汉区");
            hashMap.Add(420104, "硚口区");
            hashMap.Add(420105, "汉阳区");
            hashMap.Add(420106, "武昌区");
            hashMap.Add(420107, "青山区");
            hashMap.Add(420111, "洪山区");
            hashMap.Add(420112, "东西湖区");
            hashMap.Add(420113, "汉南区");
            hashMap.Add(420114, "蔡甸区");
            hashMap.Add(420115, "江夏区");
            hashMap.Add(420116, "黄陂区");
            hashMap.Add(420117, "新洲区");
            hashMap.Add(420200, "黄石市");
            hashMap.Add(420201, "市辖区");
            hashMap.Add(420202, "黄石港区");
            hashMap.Add(420203, "西塞山区");
            hashMap.Add(420204, "下陆区");
            hashMap.Add(420205, "铁山区");
            hashMap.Add(420222, "阳新县");
            hashMap.Add(420281, "大冶市");
            hashMap.Add(420300, "十堰市");
            hashMap.Add(420301, "市辖区");
            hashMap.Add(420302, "茅箭区");
            hashMap.Add(420303, "张湾区");
            hashMap.Add(420321, "郧县");
            hashMap.Add(420322, "郧西县");
            hashMap.Add(420323, "竹山县");
            hashMap.Add(420324, "竹溪县");
            hashMap.Add(420325, "房县");
            hashMap.Add(420381, "丹江口市");
            hashMap.Add(420500, "宜昌市");
            hashMap.Add(420501, "市辖区");
            hashMap.Add(420502, "西陵区");
            hashMap.Add(420503, "伍家岗区");
            hashMap.Add(420504, "点军区");
            hashMap.Add(420505, "猇亭区");
            hashMap.Add(420506, "夷陵区");
            hashMap.Add(420525, "远安县");
            hashMap.Add(420526, "兴山县");
            hashMap.Add(420527, "秭归县");
            hashMap.Add(420528, "长阳土家族自治县");
            hashMap.Add(420529, "五峰土家族自治县");
            hashMap.Add(420581, "宜都市");
            hashMap.Add(420582, "当阳市");
            hashMap.Add(420583, "枝江市");
            hashMap.Add(420600, "襄阳市");
            hashMap.Add(420601, "市辖区");
            hashMap.Add(420602, "襄城区");
            hashMap.Add(420606, "樊城区");
            hashMap.Add(420607, "襄州区");
            hashMap.Add(420624, "南漳县");
            hashMap.Add(420625, "谷城县");
            hashMap.Add(420626, "保康县");
            hashMap.Add(420682, "老河口市");
            hashMap.Add(420683, "枣阳市");
            hashMap.Add(420684, "宜城市");
            hashMap.Add(420700, "鄂州市");
            hashMap.Add(420701, "市辖区");
            hashMap.Add(420702, "梁子湖区");
            hashMap.Add(420703, "华容区");
            hashMap.Add(420704, "鄂城区");
            hashMap.Add(420800, "荆门市");
            hashMap.Add(420801, "市辖区");
            hashMap.Add(420802, "东宝区");
            hashMap.Add(420804, "掇刀区");
            hashMap.Add(420821, "京山县");
            hashMap.Add(420822, "沙洋县");
            hashMap.Add(420881, "钟祥市");
            hashMap.Add(420900, "孝感市");
            hashMap.Add(420901, "市辖区");
            hashMap.Add(420902, "孝南区");
            hashMap.Add(420921, "孝昌县");
            hashMap.Add(420922, "大悟县");
            hashMap.Add(420923, "云梦县");
            hashMap.Add(420981, "应城市");
            hashMap.Add(420982, "安陆市");
            hashMap.Add(420984, "汉川市");
            hashMap.Add(421000, "荆州市");
            hashMap.Add(421001, "市辖区");
            hashMap.Add(421002, "沙市区");
            hashMap.Add(421003, "荆州区");
            hashMap.Add(421022, "公安县");
            hashMap.Add(421023, "监利县");
            hashMap.Add(421024, "江陵县");
            hashMap.Add(421081, "石首市");
            hashMap.Add(421083, "洪湖市");
            hashMap.Add(421087, "松滋市");
            hashMap.Add(421100, "黄冈市");
            hashMap.Add(421101, "市辖区");
            hashMap.Add(421102, "黄州区");
            hashMap.Add(421121, "团风县");
            hashMap.Add(421122, "红安县");
            hashMap.Add(421123, "罗田县");
            hashMap.Add(421124, "英山县");
            hashMap.Add(421125, "浠水县");
            hashMap.Add(421126, "蕲春县");
            hashMap.Add(421127, "黄梅县");
            hashMap.Add(421181, "麻城市");
            hashMap.Add(421182, "武穴市");
            hashMap.Add(421200, "咸宁市");
            hashMap.Add(421201, "市辖区");
            hashMap.Add(421202, "咸安区");
            hashMap.Add(421221, "嘉鱼县");
            hashMap.Add(421222, "通城县");
            hashMap.Add(421223, "崇阳县");
            hashMap.Add(421224, "通山县");
            hashMap.Add(421281, "赤壁市");
            hashMap.Add(421300, "随州市");
            hashMap.Add(421301, "市辖区");
            hashMap.Add(421303, "曾都区");
            hashMap.Add(421321, "随县");
            hashMap.Add(421381, "广水市");
            hashMap.Add(422800, "恩施土家族苗族自治州");
            hashMap.Add(422801, "恩施市");
            hashMap.Add(422802, "利川市");
            hashMap.Add(422822, "建始县");
            hashMap.Add(422823, "巴东县");
            hashMap.Add(422825, "宣恩县");
            hashMap.Add(422826, "咸丰县");
            hashMap.Add(422827, "来凤县");
            hashMap.Add(422828, "鹤峰县");
            hashMap.Add(429000, "省直辖县级行政区划");
            hashMap.Add(429004, "仙桃市");
            hashMap.Add(429005, "潜江市");
            hashMap.Add(429006, "天门市");
            hashMap.Add(429021, "神农架林区");
            hashMap.Add(430000, "湖南省");
            hashMap.Add(430100, "长沙市");
            hashMap.Add(430101, "市辖区");
            hashMap.Add(430102, "芙蓉区");
            hashMap.Add(430103, "天心区");
            hashMap.Add(430104, "岳麓区");
            hashMap.Add(430105, "开福区");
            hashMap.Add(430111, "雨花区");
            hashMap.Add(430112, "望城区");
            hashMap.Add(430121, "长沙县");
            hashMap.Add(430124, "宁乡县");
            hashMap.Add(430181, "浏阳市");
            hashMap.Add(430200, "株洲市");
            hashMap.Add(430201, "市辖区");
            hashMap.Add(430202, "荷塘区");
            hashMap.Add(430203, "芦淞区");
            hashMap.Add(430204, "石峰区");
            hashMap.Add(430211, "天元区");
            hashMap.Add(430221, "株洲县");
            hashMap.Add(430223, "攸县");
            hashMap.Add(430224, "茶陵县");
            hashMap.Add(430225, "炎陵县");
            hashMap.Add(430281, "醴陵市");
            hashMap.Add(430300, "湘潭市");
            hashMap.Add(430301, "市辖区");
            hashMap.Add(430302, "雨湖区");
            hashMap.Add(430304, "岳塘区");
            hashMap.Add(430321, "湘潭县");
            hashMap.Add(430381, "湘乡市");
            hashMap.Add(430382, "韶山市");
            hashMap.Add(430400, "衡阳市");
            hashMap.Add(430401, "市辖区");
            hashMap.Add(430405, "珠晖区");
            hashMap.Add(430406, "雁峰区");
            hashMap.Add(430407, "石鼓区");
            hashMap.Add(430408, "蒸湘区");
            hashMap.Add(430412, "南岳区");
            hashMap.Add(430421, "衡阳县");
            hashMap.Add(430422, "衡南县");
            hashMap.Add(430423, "衡山县");
            hashMap.Add(430424, "衡东县");
            hashMap.Add(430426, "祁东县");
            hashMap.Add(430481, "耒阳市");
            hashMap.Add(430482, "常宁市");
            hashMap.Add(430500, "邵阳市");
            hashMap.Add(430501, "市辖区");
            hashMap.Add(430502, "双清区");
            hashMap.Add(430503, "大祥区");
            hashMap.Add(430511, "北塔区");
            hashMap.Add(430521, "邵东县");
            hashMap.Add(430522, "新邵县");
            hashMap.Add(430523, "邵阳县");
            hashMap.Add(430524, "隆回县");
            hashMap.Add(430525, "洞口县");
            hashMap.Add(430527, "绥宁县");
            hashMap.Add(430528, "新宁县");
            hashMap.Add(430529, "城步苗族自治县");
            hashMap.Add(430581, "武冈市");
            hashMap.Add(430600, "岳阳市");
            hashMap.Add(430601, "市辖区");
            hashMap.Add(430602, "岳阳楼区");
            hashMap.Add(430603, "云溪区");
            hashMap.Add(430611, "君山区");
            hashMap.Add(430621, "岳阳县");
            hashMap.Add(430623, "华容县");
            hashMap.Add(430624, "湘阴县");
            hashMap.Add(430626, "平江县");
            hashMap.Add(430681, "汨罗市");
            hashMap.Add(430682, "临湘市");
            hashMap.Add(430700, "常德市");
            hashMap.Add(430701, "市辖区");
            hashMap.Add(430702, "武陵区");
            hashMap.Add(430703, "鼎城区");
            hashMap.Add(430721, "安乡县");
            hashMap.Add(430722, "汉寿县");
            hashMap.Add(430723, "澧县");
            hashMap.Add(430724, "临澧县");
            hashMap.Add(430725, "桃源县");
            hashMap.Add(430726, "石门县");
            hashMap.Add(430781, "津市市");
            hashMap.Add(430800, "张家界市");
            hashMap.Add(430801, "市辖区");
            hashMap.Add(430802, "永定区");
            hashMap.Add(430811, "武陵源区");
            hashMap.Add(430821, "慈利县");
            hashMap.Add(430822, "桑植县");
            hashMap.Add(430900, "益阳市");
            hashMap.Add(430901, "市辖区");
            hashMap.Add(430902, "资阳区");
            hashMap.Add(430903, "赫山区");
            hashMap.Add(430921, "南县");
            hashMap.Add(430922, "桃江县");
            hashMap.Add(430923, "安化县");
            hashMap.Add(430981, "沅江市");
            hashMap.Add(431000, "郴州市");
            hashMap.Add(431001, "市辖区");
            hashMap.Add(431002, "北湖区");
            hashMap.Add(431003, "苏仙区");
            hashMap.Add(431021, "桂阳县");
            hashMap.Add(431022, "宜章县");
            hashMap.Add(431023, "永兴县");
            hashMap.Add(431024, "嘉禾县");
            hashMap.Add(431025, "临武县");
            hashMap.Add(431026, "汝城县");
            hashMap.Add(431027, "桂东县");
            hashMap.Add(431028, "安仁县");
            hashMap.Add(431081, "资兴市");
            hashMap.Add(431100, "永州市");
            hashMap.Add(431101, "市辖区");
            hashMap.Add(431102, "零陵区");
            hashMap.Add(431103, "冷水滩区");
            hashMap.Add(431121, "祁阳县");
            hashMap.Add(431122, "东安县");
            hashMap.Add(431123, "双牌县");
            hashMap.Add(431124, "道县");
            hashMap.Add(431125, "江永县");
            hashMap.Add(431126, "宁远县");
            hashMap.Add(431127, "蓝山县");
            hashMap.Add(431128, "新田县");
            hashMap.Add(431129, "江华瑶族自治县");
            hashMap.Add(431200, "怀化市");
            hashMap.Add(431201, "市辖区");
            hashMap.Add(431202, "鹤城区");
            hashMap.Add(431221, "中方县");
            hashMap.Add(431222, "沅陵县");
            hashMap.Add(431223, "辰溪县");
            hashMap.Add(431224, "溆浦县");
            hashMap.Add(431225, "会同县");
            hashMap.Add(431226, "麻阳苗族自治县");
            hashMap.Add(431227, "新晃侗族自治县");
            hashMap.Add(431228, "芷江侗族自治县");
            hashMap.Add(431229, "靖州苗族侗族自治县");
            hashMap.Add(431230, "通道侗族自治县");
            hashMap.Add(431281, "洪江市");
            hashMap.Add(431300, "娄底市");
            hashMap.Add(431301, "市辖区");
            hashMap.Add(431302, "娄星区");
            hashMap.Add(431321, "双峰县");
            hashMap.Add(431322, "新化县");
            hashMap.Add(431381, "冷水江市");
            hashMap.Add(431382, "涟源市");
            hashMap.Add(433100, "湘西土家族苗族自治州");
            hashMap.Add(433101, "吉首市");
            hashMap.Add(433122, "泸溪县");
            hashMap.Add(433123, "凤凰县");
            hashMap.Add(433124, "花垣县");
            hashMap.Add(433125, "保靖县");
            hashMap.Add(433126, "古丈县");
            hashMap.Add(433127, "永顺县");
            hashMap.Add(433130, "龙山县");
            hashMap.Add(440000, "广东省");
            hashMap.Add(440100, "广州市");
            hashMap.Add(440101, "市辖区");
            hashMap.Add(440103, "荔湾区");
            hashMap.Add(440104, "越秀区");
            hashMap.Add(440105, "海珠区");
            hashMap.Add(440106, "天河区");
            hashMap.Add(440111, "白云区");
            hashMap.Add(440112, "黄埔区");
            hashMap.Add(440113, "番禺区");
            hashMap.Add(440114, "花都区");
            hashMap.Add(440115, "南沙区");
            hashMap.Add(440116, "萝岗区");
            hashMap.Add(440183, "增城市");
            hashMap.Add(440184, "从化市");
            hashMap.Add(440200, "韶关市");
            hashMap.Add(440201, "市辖区");
            hashMap.Add(440203, "武江区");
            hashMap.Add(440204, "浈江区");
            hashMap.Add(440205, "曲江区");
            hashMap.Add(440222, "始兴县");
            hashMap.Add(440224, "仁化县");
            hashMap.Add(440229, "翁源县");
            hashMap.Add(440232, "乳源瑶族自治县");
            hashMap.Add(440233, "新丰县");
            hashMap.Add(440281, "乐昌市");
            hashMap.Add(440282, "南雄市");
            hashMap.Add(440300, "深圳市");
            hashMap.Add(440301, "市辖区");
            hashMap.Add(440303, "罗湖区");
            hashMap.Add(440304, "福田区");
            hashMap.Add(440305, "南山区");
            hashMap.Add(440306, "宝安区");
            hashMap.Add(440307, "龙岗区");
            hashMap.Add(440308, "盐田区");
            hashMap.Add(440400, "珠海市");
            hashMap.Add(440401, "市辖区");
            hashMap.Add(440402, "香洲区");
            hashMap.Add(440403, "斗门区");
            hashMap.Add(440404, "金湾区");
            hashMap.Add(440500, "汕头市");
            hashMap.Add(440501, "市辖区");
            hashMap.Add(440507, "龙湖区");
            hashMap.Add(440511, "金平区");
            hashMap.Add(440512, "濠江区");
            hashMap.Add(440513, "潮阳区");
            hashMap.Add(440514, "潮南区");
            hashMap.Add(440515, "澄海区");
            hashMap.Add(440523, "南澳县");
            hashMap.Add(440600, "佛山市");
            hashMap.Add(440601, "市辖区");
            hashMap.Add(440604, "禅城区");
            hashMap.Add(440605, "南海区");
            hashMap.Add(440606, "顺德区");
            hashMap.Add(440607, "三水区");
            hashMap.Add(440608, "高明区");
            hashMap.Add(440700, "江门市");
            hashMap.Add(440701, "市辖区");
            hashMap.Add(440703, "蓬江区");
            hashMap.Add(440704, "江海区");
            hashMap.Add(440705, "新会区");
            hashMap.Add(440781, "台山市");
            hashMap.Add(440783, "开平市");
            hashMap.Add(440784, "鹤山市");
            hashMap.Add(440785, "恩平市");
            hashMap.Add(440800, "湛江市");
            hashMap.Add(440801, "市辖区");
            hashMap.Add(440802, "赤坎区");
            hashMap.Add(440803, "霞山区");
            hashMap.Add(440804, "坡头区");
            hashMap.Add(440811, "麻章区");
            hashMap.Add(440823, "遂溪县");
            hashMap.Add(440825, "徐闻县");
            hashMap.Add(440881, "廉江市");
            hashMap.Add(440882, "雷州市");
            hashMap.Add(440883, "吴川市");
            hashMap.Add(440900, "茂名市");
            hashMap.Add(440901, "市辖区");
            hashMap.Add(440902, "茂南区");
            hashMap.Add(440903, "茂港区");
            hashMap.Add(440923, "电白县");
            hashMap.Add(440981, "高州市");
            hashMap.Add(440982, "化州市");
            hashMap.Add(440983, "信宜市");
            hashMap.Add(441200, "肇庆市");
            hashMap.Add(441201, "市辖区");
            hashMap.Add(441202, "端州区");
            hashMap.Add(441203, "鼎湖区");
            hashMap.Add(441223, "广宁县");
            hashMap.Add(441224, "怀集县");
            hashMap.Add(441225, "封开县");
            hashMap.Add(441226, "德庆县");
            hashMap.Add(441283, "高要市");
            hashMap.Add(441284, "四会市");
            hashMap.Add(441300, "惠州市");
            hashMap.Add(441301, "市辖区");
            hashMap.Add(441302, "惠城区");
            hashMap.Add(441303, "惠阳区");
            hashMap.Add(441322, "博罗县");
            hashMap.Add(441323, "惠东县");
            hashMap.Add(441324, "龙门县");
            hashMap.Add(441400, "梅州市");
            hashMap.Add(441401, "市辖区");
            hashMap.Add(441402, "梅江区");
            hashMap.Add(441421, "梅县");
            hashMap.Add(441422, "大埔县");
            hashMap.Add(441423, "丰顺县");
            hashMap.Add(441424, "五华县");
            hashMap.Add(441426, "平远县");
            hashMap.Add(441427, "蕉岭县");
            hashMap.Add(441481, "兴宁市");
            hashMap.Add(441500, "汕尾市");
            hashMap.Add(441501, "市辖区");
            hashMap.Add(441502, "城区");
            hashMap.Add(441521, "海丰县");
            hashMap.Add(441523, "陆河县");
            hashMap.Add(441581, "陆丰市");
            hashMap.Add(441600, "河源市");
            hashMap.Add(441601, "市辖区");
            hashMap.Add(441602, "源城区");
            hashMap.Add(441621, "紫金县");
            hashMap.Add(441622, "龙川县");
            hashMap.Add(441623, "连平县");
            hashMap.Add(441624, "和平县");
            hashMap.Add(441625, "东源县");
            hashMap.Add(441700, "阳江市");
            hashMap.Add(441701, "市辖区");
            hashMap.Add(441702, "江城区");
            hashMap.Add(441721, "阳西县");
            hashMap.Add(441723, "阳东县");
            hashMap.Add(441781, "阳春市");
            hashMap.Add(441800, "清远市");
            hashMap.Add(441801, "市辖区");
            hashMap.Add(441802, "清城区");
            hashMap.Add(441803, "清新区");
            hashMap.Add(441821, "佛冈县");
            hashMap.Add(441823, "阳山县");
            hashMap.Add(441825, "连山壮族瑶族自治县");
            hashMap.Add(441826, "连南瑶族自治县");
            hashMap.Add(441881, "英德市");
            hashMap.Add(441882, "连州市");
            hashMap.Add(441900, "东莞市");
            hashMap.Add(442000, "中山市");
            hashMap.Add(445100, "潮州市");
            hashMap.Add(445101, "市辖区");
            hashMap.Add(445102, "湘桥区");
            hashMap.Add(445103, "潮安区");
            hashMap.Add(445122, "饶平县");
            hashMap.Add(445200, "揭阳市");
            hashMap.Add(445201, "市辖区");
            hashMap.Add(445202, "榕城区");
            hashMap.Add(445203, "揭东区");
            hashMap.Add(445222, "揭西县");
            hashMap.Add(445224, "惠来县");
            hashMap.Add(445281, "普宁市");
            hashMap.Add(445300, "云浮市");
            hashMap.Add(445301, "市辖区");
            hashMap.Add(445302, "云城区");
            hashMap.Add(445321, "新兴县");
            hashMap.Add(445322, "郁南县");
            hashMap.Add(445323, "云安县");
            hashMap.Add(445381, "罗定市");
            hashMap.Add(450000, "广西壮族自治区");
            hashMap.Add(450100, "南宁市");
            hashMap.Add(450101, "市辖区");
            hashMap.Add(450102, "兴宁区");
            hashMap.Add(450103, "青秀区");
            hashMap.Add(450105, "江南区");
            hashMap.Add(450107, "西乡塘区");
            hashMap.Add(450108, "良庆区");
            hashMap.Add(450109, "邕宁区");
            hashMap.Add(450122, "武鸣县");
            hashMap.Add(450123, "隆安县");
            hashMap.Add(450124, "马山县");
            hashMap.Add(450125, "上林县");
            hashMap.Add(450126, "宾阳县");
            hashMap.Add(450127, "横县");
            hashMap.Add(450200, "柳州市");
            hashMap.Add(450201, "市辖区");
            hashMap.Add(450202, "城中区");
            hashMap.Add(450203, "鱼峰区");
            hashMap.Add(450204, "柳南区");
            hashMap.Add(450205, "柳北区");
            hashMap.Add(450221, "柳江县");
            hashMap.Add(450222, "柳城县");
            hashMap.Add(450223, "鹿寨县");
            hashMap.Add(450224, "融安县");
            hashMap.Add(450225, "融水苗族自治县");
            hashMap.Add(450226, "三江侗族自治县");
            hashMap.Add(450300, "桂林市");
            hashMap.Add(450301, "市辖区");
            hashMap.Add(450302, "秀峰区");
            hashMap.Add(450303, "叠彩区");
            hashMap.Add(450304, "象山区");
            hashMap.Add(450305, "七星区");
            hashMap.Add(450311, "雁山区");
            hashMap.Add(450312, "临桂区");
            hashMap.Add(450321, "阳朔县");
            hashMap.Add(450323, "灵川县");
            hashMap.Add(450324, "全州县");
            hashMap.Add(450325, "兴安县");
            hashMap.Add(450326, "永福县");
            hashMap.Add(450327, "灌阳县");
            hashMap.Add(450328, "龙胜各族自治县");
            hashMap.Add(450329, "资源县");
            hashMap.Add(450330, "平乐县");
            hashMap.Add(450331, "荔浦县");
            hashMap.Add(450332, "恭城瑶族自治县");
            hashMap.Add(450400, "梧州市");
            hashMap.Add(450401, "市辖区");
            hashMap.Add(450403, "万秀区");
            hashMap.Add(450405, "长洲区");
            hashMap.Add(450406, "龙圩区");
            hashMap.Add(450421, "苍梧县");
            hashMap.Add(450422, "藤县");
            hashMap.Add(450423, "蒙山县");
            hashMap.Add(450481, "岑溪市");
            hashMap.Add(450500, "北海市");
            hashMap.Add(450501, "市辖区");
            hashMap.Add(450502, "海城区");
            hashMap.Add(450503, "银海区");
            hashMap.Add(450512, "铁山港区");
            hashMap.Add(450521, "合浦县");
            hashMap.Add(450600, "防城港市");
            hashMap.Add(450601, "市辖区");
            hashMap.Add(450602, "港口区");
            hashMap.Add(450603, "防城区");
            hashMap.Add(450621, "上思县");
            hashMap.Add(450681, "东兴市");
            hashMap.Add(450700, "钦州市");
            hashMap.Add(450701, "市辖区");
            hashMap.Add(450702, "钦南区");
            hashMap.Add(450703, "钦北区");
            hashMap.Add(450721, "灵山县");
            hashMap.Add(450722, "浦北县");
            hashMap.Add(450800, "贵港市");
            hashMap.Add(450801, "市辖区");
            hashMap.Add(450802, "港北区");
            hashMap.Add(450803, "港南区");
            hashMap.Add(450804, "覃塘区");
            hashMap.Add(450821, "平南县");
            hashMap.Add(450881, "桂平市");
            hashMap.Add(450900, "玉林市");
            hashMap.Add(450901, "市辖区");
            hashMap.Add(450902, "玉州区");
            hashMap.Add(450903, "福绵区");
            hashMap.Add(450921, "容县");
            hashMap.Add(450922, "陆川县");
            hashMap.Add(450923, "博白县");
            hashMap.Add(450924, "兴业县");
            hashMap.Add(450981, "北流市");
            hashMap.Add(451000, "百色市");
            hashMap.Add(451001, "市辖区");
            hashMap.Add(451002, "右江区");
            hashMap.Add(451021, "田阳县");
            hashMap.Add(451022, "田东县");
            hashMap.Add(451023, "平果县");
            hashMap.Add(451024, "德保县");
            hashMap.Add(451025, "靖西县");
            hashMap.Add(451026, "那坡县");
            hashMap.Add(451027, "凌云县");
            hashMap.Add(451028, "乐业县");
            hashMap.Add(451029, "田林县");
            hashMap.Add(451030, "西林县");
            hashMap.Add(451031, "隆林各族自治县");
            hashMap.Add(451100, "贺州市");
            hashMap.Add(451101, "市辖区");
            hashMap.Add(451102, "八步区");
            hashMap.Add(451121, "昭平县");
            hashMap.Add(451122, "钟山县");
            hashMap.Add(451123, "富川瑶族自治县");
            hashMap.Add(451200, "河池市");
            hashMap.Add(451201, "市辖区");
            hashMap.Add(451202, "金城江区");
            hashMap.Add(451221, "南丹县");
            hashMap.Add(451222, "天峨县");
            hashMap.Add(451223, "凤山县");
            hashMap.Add(451224, "东兰县");
            hashMap.Add(451225, "罗城仫佬族自治县");
            hashMap.Add(451226, "环江毛南族自治县");
            hashMap.Add(451227, "巴马瑶族自治县");
            hashMap.Add(451228, "都安瑶族自治县");
            hashMap.Add(451229, "大化瑶族自治县");
            hashMap.Add(451281, "宜州市");
            hashMap.Add(451300, "来宾市");
            hashMap.Add(451301, "市辖区");
            hashMap.Add(451302, "兴宾区");
            hashMap.Add(451321, "忻城县");
            hashMap.Add(451322, "象州县");
            hashMap.Add(451323, "武宣县");
            hashMap.Add(451324, "金秀瑶族自治县");
            hashMap.Add(451381, "合山市");
            hashMap.Add(451400, "崇左市");
            hashMap.Add(451401, "市辖区");
            hashMap.Add(451402, "江州区");
            hashMap.Add(451421, "扶绥县");
            hashMap.Add(451422, "宁明县");
            hashMap.Add(451423, "龙州县");
            hashMap.Add(451424, "大新县");
            hashMap.Add(451425, "天等县");
            hashMap.Add(451481, "凭祥市");
            hashMap.Add(460000, "海南省");
            hashMap.Add(460100, "海口市");
            hashMap.Add(460101, "市辖区");
            hashMap.Add(460105, "秀英区");
            hashMap.Add(460106, "龙华区");
            hashMap.Add(460107, "琼山区");
            hashMap.Add(460108, "美兰区");
            hashMap.Add(460200, "三亚市");
            hashMap.Add(460201, "市辖区");
            hashMap.Add(460300, "三沙市");
            hashMap.Add(460321, "西沙群岛");
            hashMap.Add(460322, "南沙群岛");
            hashMap.Add(460323, "中沙群岛的岛礁及其海域");
            hashMap.Add(469000, "省直辖县级行政区划");
            hashMap.Add(469001, "五指山市");
            hashMap.Add(469002, "琼海市");
            hashMap.Add(469003, "儋州市");
            hashMap.Add(469005, "文昌市");
            hashMap.Add(469006, "万宁市");
            hashMap.Add(469007, "东方市");
            hashMap.Add(469021, "定安县");
            hashMap.Add(469022, "屯昌县");
            hashMap.Add(469023, "澄迈县");
            hashMap.Add(469024, "临高县");
            hashMap.Add(469025, "白沙黎族自治县");
            hashMap.Add(469026, "昌江黎族自治县");
            hashMap.Add(469027, "乐东黎族自治县");
            hashMap.Add(469028, "陵水黎族自治县");
            hashMap.Add(469029, "保亭黎族苗族自治县");
            hashMap.Add(469030, "琼中黎族苗族自治县");
            hashMap.Add(500000, "重庆市");
            hashMap.Add(500100, "市辖区");
            hashMap.Add(500101, "万州区");
            hashMap.Add(500102, "涪陵区");
            hashMap.Add(500103, "渝中区");
            hashMap.Add(500104, "大渡口区");
            hashMap.Add(500105, "江北区");
            hashMap.Add(500106, "沙坪坝区");
            hashMap.Add(500107, "九龙坡区");
            hashMap.Add(500108, "南岸区");
            hashMap.Add(500109, "北碚区");
            hashMap.Add(500110, "綦江区");
            hashMap.Add(500111, "大足区");
            hashMap.Add(500112, "渝北区");
            hashMap.Add(500113, "巴南区");
            hashMap.Add(500114, "黔江区");
            hashMap.Add(500115, "长寿区");
            hashMap.Add(500116, "江津区");
            hashMap.Add(500117, "合川区");
            hashMap.Add(500118, "永川区");
            hashMap.Add(500119, "南川区");
            hashMap.Add(500200, "县");
            hashMap.Add(500223, "潼南县");
            hashMap.Add(500224, "铜梁县");
            hashMap.Add(500226, "荣昌县");
            hashMap.Add(500227, "璧山县");
            hashMap.Add(500228, "梁平县");
            hashMap.Add(500229, "城口县");
            hashMap.Add(500230, "丰都县");
            hashMap.Add(500231, "垫江县");
            hashMap.Add(500232, "武隆县");
            hashMap.Add(500233, "忠县");
            hashMap.Add(500234, "开县");
            hashMap.Add(500235, "云阳县");
            hashMap.Add(500236, "奉节县");
            hashMap.Add(500237, "巫山县");
            hashMap.Add(500238, "巫溪县");
            hashMap.Add(500240, "石柱土家族自治县");
            hashMap.Add(500241, "秀山土家族苗族自治县");
            hashMap.Add(500242, "酉阳土家族苗族自治县");
            hashMap.Add(500243, "彭水苗族土家族自治县");
            hashMap.Add(510000, "四川省");
            hashMap.Add(510100, "成都市");
            hashMap.Add(510101, "市辖区");
            hashMap.Add(510104, "锦江区");
            hashMap.Add(510105, "青羊区");
            hashMap.Add(510106, "金牛区");
            hashMap.Add(510107, "武侯区");
            hashMap.Add(510108, "成华区");
            hashMap.Add(510112, "龙泉驿区");
            hashMap.Add(510113, "青白江区");
            hashMap.Add(510114, "新都区");
            hashMap.Add(510115, "温江区");
            hashMap.Add(510121, "金堂县");
            hashMap.Add(510122, "双流县");
            hashMap.Add(510124, "郫县");
            hashMap.Add(510129, "大邑县");
            hashMap.Add(510131, "蒲江县");
            hashMap.Add(510132, "新津县");
            hashMap.Add(510181, "都江堰市");
            hashMap.Add(510182, "彭州市");
            hashMap.Add(510183, "邛崃市");
            hashMap.Add(510184, "崇州市");
            hashMap.Add(510300, "自贡市");
            hashMap.Add(510301, "市辖区");
            hashMap.Add(510302, "自流井区");
            hashMap.Add(510303, "贡井区");
            hashMap.Add(510304, "大安区");
            hashMap.Add(510311, "沿滩区");
            hashMap.Add(510321, "荣县");
            hashMap.Add(510322, "富顺县");
            hashMap.Add(510400, "攀枝花市");
            hashMap.Add(510401, "市辖区");
            hashMap.Add(510402, "东区");
            hashMap.Add(510403, "西区");
            hashMap.Add(510411, "仁和区");
            hashMap.Add(510421, "米易县");
            hashMap.Add(510422, "盐边县");
            hashMap.Add(510500, "泸州市");
            hashMap.Add(510501, "市辖区");
            hashMap.Add(510502, "江阳区");
            hashMap.Add(510503, "纳溪区");
            hashMap.Add(510504, "龙马潭区");
            hashMap.Add(510521, "泸县");
            hashMap.Add(510522, "合江县");
            hashMap.Add(510524, "叙永县");
            hashMap.Add(510525, "古蔺县");
            hashMap.Add(510600, "德阳市");
            hashMap.Add(510601, "市辖区");
            hashMap.Add(510603, "旌阳区");
            hashMap.Add(510623, "中江县");
            hashMap.Add(510626, "罗江县");
            hashMap.Add(510681, "广汉市");
            hashMap.Add(510682, "什邡市");
            hashMap.Add(510683, "绵竹市");
            hashMap.Add(510700, "绵阳市");
            hashMap.Add(510701, "市辖区");
            hashMap.Add(510703, "涪城区");
            hashMap.Add(510704, "游仙区");
            hashMap.Add(510722, "三台县");
            hashMap.Add(510723, "盐亭县");
            hashMap.Add(510724, "安县");
            hashMap.Add(510725, "梓潼县");
            hashMap.Add(510726, "北川羌族自治县");
            hashMap.Add(510727, "平武县");
            hashMap.Add(510781, "江油市");
            hashMap.Add(510800, "广元市");
            hashMap.Add(510801, "市辖区");
            hashMap.Add(510802, "利州区");
            hashMap.Add(510811, "元坝区");
            hashMap.Add(510812, "朝天区");
            hashMap.Add(510821, "旺苍县");
            hashMap.Add(510822, "青川县");
            hashMap.Add(510823, "剑阁县");
            hashMap.Add(510824, "苍溪县");
            hashMap.Add(510900, "遂宁市");
            hashMap.Add(510901, "市辖区");
            hashMap.Add(510903, "船山区");
            hashMap.Add(510904, "安居区");
            hashMap.Add(510921, "蓬溪县");
            hashMap.Add(510922, "射洪县");
            hashMap.Add(510923, "大英县");
            hashMap.Add(511000, "内江市");
            hashMap.Add(511001, "市辖区");
            hashMap.Add(511002, "市中区");
            hashMap.Add(511011, "东兴区");
            hashMap.Add(511024, "威远县");
            hashMap.Add(511025, "资中县");
            hashMap.Add(511028, "隆昌县");
            hashMap.Add(511100, "乐山市");
            hashMap.Add(511101, "市辖区");
            hashMap.Add(511102, "市中区");
            hashMap.Add(511111, "沙湾区");
            hashMap.Add(511112, "五通桥区");
            hashMap.Add(511113, "金口河区");
            hashMap.Add(511123, "犍为县");
            hashMap.Add(511124, "井研县");
            hashMap.Add(511126, "夹江县");
            hashMap.Add(511129, "沐川县");
            hashMap.Add(511132, "峨边彝族自治县");
            hashMap.Add(511133, "马边彝族自治县");
            hashMap.Add(511181, "峨眉山市");
            hashMap.Add(511300, "南充市");
            hashMap.Add(511301, "市辖区");
            hashMap.Add(511302, "顺庆区");
            hashMap.Add(511303, "高坪区");
            hashMap.Add(511304, "嘉陵区");
            hashMap.Add(511321, "南部县");
            hashMap.Add(511322, "营山县");
            hashMap.Add(511323, "蓬安县");
            hashMap.Add(511324, "仪陇县");
            hashMap.Add(511325, "西充县");
            hashMap.Add(511381, "阆中市");
            hashMap.Add(511400, "眉山市");
            hashMap.Add(511401, "市辖区");
            hashMap.Add(511402, "东坡区");
            hashMap.Add(511421, "仁寿县");
            hashMap.Add(511422, "彭山县");
            hashMap.Add(511423, "洪雅县");
            hashMap.Add(511424, "丹棱县");
            hashMap.Add(511425, "青神县");
            hashMap.Add(511500, "宜宾市");
            hashMap.Add(511501, "市辖区");
            hashMap.Add(511502, "翠屏区");
            hashMap.Add(511503, "南溪区");
            hashMap.Add(511521, "宜宾县");
            hashMap.Add(511523, "江安县");
            hashMap.Add(511524, "长宁县");
            hashMap.Add(511525, "高县");
            hashMap.Add(511526, "珙县");
            hashMap.Add(511527, "筠连县");
            hashMap.Add(511528, "兴文县");
            hashMap.Add(511529, "屏山县");
            hashMap.Add(511600, "广安市");
            hashMap.Add(511601, "市辖区");
            hashMap.Add(511602, "广安区");
            hashMap.Add(511603, "前锋区");
            hashMap.Add(511621, "岳池县");
            hashMap.Add(511622, "武胜县");
            hashMap.Add(511623, "邻水县");
            hashMap.Add(511681, "华蓥市");
            hashMap.Add(511700, "达州市");
            hashMap.Add(511701, "市辖区");
            hashMap.Add(511702, "通川区");
            hashMap.Add(511703, "达川区");
            hashMap.Add(511722, "宣汉县");
            hashMap.Add(511723, "开江县");
            hashMap.Add(511724, "大竹县");
            hashMap.Add(511725, "渠县");
            hashMap.Add(511781, "万源市");
            hashMap.Add(511800, "雅安市");
            hashMap.Add(511801, "市辖区");
            hashMap.Add(511802, "雨城区");
            hashMap.Add(511803, "名山区");
            hashMap.Add(511822, "荥经县");
            hashMap.Add(511823, "汉源县");
            hashMap.Add(511824, "石棉县");
            hashMap.Add(511825, "天全县");
            hashMap.Add(511826, "芦山县");
            hashMap.Add(511827, "宝兴县");
            hashMap.Add(511900, "巴中市");
            hashMap.Add(511901, "市辖区");
            hashMap.Add(511902, "巴州区");
            hashMap.Add(511903, "恩阳区");
            hashMap.Add(511921, "通江县");
            hashMap.Add(511922, "南江县");
            hashMap.Add(511923, "平昌县");
            hashMap.Add(512000, "资阳市");
            hashMap.Add(512001, "市辖区");
            hashMap.Add(512002, "雁江区");
            hashMap.Add(512021, "安岳县");
            hashMap.Add(512022, "乐至县");
            hashMap.Add(512081, "简阳市");
            hashMap.Add(513200, "阿坝藏族羌族自治州");
            hashMap.Add(513221, "汶川县");
            hashMap.Add(513222, "理县");
            hashMap.Add(513223, "茂县");
            hashMap.Add(513224, "松潘县");
            hashMap.Add(513225, "九寨沟县");
            hashMap.Add(513226, "金川县");
            hashMap.Add(513227, "小金县");
            hashMap.Add(513228, "黑水县");
            hashMap.Add(513229, "马尔康县");
            hashMap.Add(513230, "壤塘县");
            hashMap.Add(513231, "阿坝县");
            hashMap.Add(513232, "若尔盖县");
            hashMap.Add(513233, "红原县");
            hashMap.Add(513300, "甘孜藏族自治州");
            hashMap.Add(513321, "康定县");
            hashMap.Add(513322, "泸定县");
            hashMap.Add(513323, "丹巴县");
            hashMap.Add(513324, "九龙县");
            hashMap.Add(513325, "雅江县");
            hashMap.Add(513326, "道孚县");
            hashMap.Add(513327, "炉霍县");
            hashMap.Add(513328, "甘孜县");
            hashMap.Add(513329, "新龙县");
            hashMap.Add(513330, "德格县");
            hashMap.Add(513331, "白玉县");
            hashMap.Add(513332, "石渠县");
            hashMap.Add(513333, "色达县");
            hashMap.Add(513334, "理塘县");
            hashMap.Add(513335, "巴塘县");
            hashMap.Add(513336, "乡城县");
            hashMap.Add(513337, "稻城县");
            hashMap.Add(513338, "得荣县");
            hashMap.Add(513400, "凉山彝族自治州");
            hashMap.Add(513401, "西昌市");
            hashMap.Add(513422, "木里藏族自治县");
            hashMap.Add(513423, "盐源县");
            hashMap.Add(513424, "德昌县");
            hashMap.Add(513425, "会理县");
            hashMap.Add(513426, "会东县");
            hashMap.Add(513427, "宁南县");
            hashMap.Add(513428, "普格县");
            hashMap.Add(513429, "布拖县");
            hashMap.Add(513430, "金阳县");
            hashMap.Add(513431, "昭觉县");
            hashMap.Add(513432, "喜德县");
            hashMap.Add(513433, "冕宁县");
            hashMap.Add(513434, "越西县");
            hashMap.Add(513435, "甘洛县");
            hashMap.Add(513436, "美姑县");
            hashMap.Add(513437, "雷波县");
            hashMap.Add(520000, "贵州省");
            hashMap.Add(520100, "贵阳市");
            hashMap.Add(520101, "市辖区");
            hashMap.Add(520102, "南明区");
            hashMap.Add(520103, "云岩区");
            hashMap.Add(520111, "花溪区");
            hashMap.Add(520112, "乌当区");
            hashMap.Add(520113, "白云区");
            hashMap.Add(520115, "观山湖区");
            hashMap.Add(520121, "开阳县");
            hashMap.Add(520122, "息烽县");
            hashMap.Add(520123, "修文县");
            hashMap.Add(520181, "清镇市");
            hashMap.Add(520200, "六盘水市");
            hashMap.Add(520201, "钟山区");
            hashMap.Add(520203, "六枝特区");
            hashMap.Add(520221, "水城县");
            hashMap.Add(520222, "盘县");
            hashMap.Add(520300, "遵义市");
            hashMap.Add(520301, "市辖区");
            hashMap.Add(520302, "红花岗区");
            hashMap.Add(520303, "汇川区");
            hashMap.Add(520321, "遵义县");
            hashMap.Add(520322, "桐梓县");
            hashMap.Add(520323, "绥阳县");
            hashMap.Add(520324, "正安县");
            hashMap.Add(520325, "道真仡佬族苗族自治县");
            hashMap.Add(520326, "务川仡佬族苗族自治县");
            hashMap.Add(520327, "凤冈县");
            hashMap.Add(520328, "湄潭县");
            hashMap.Add(520329, "余庆县");
            hashMap.Add(520330, "习水县");
            hashMap.Add(520381, "赤水市");
            hashMap.Add(520382, "仁怀市");
            hashMap.Add(520400, "安顺市");
            hashMap.Add(520401, "市辖区");
            hashMap.Add(520402, "西秀区");
            hashMap.Add(520421, "平坝县");
            hashMap.Add(520422, "普定县");
            hashMap.Add(520423, "镇宁布依族苗族自治县");
            hashMap.Add(520424, "关岭布依族苗族自治县");
            hashMap.Add(520425, "紫云苗族布依族自治县");
            hashMap.Add(520500, "毕节市");
            hashMap.Add(520501, "市辖区");
            hashMap.Add(520502, "七星关区");
            hashMap.Add(520521, "大方县");
            hashMap.Add(520522, "黔西县");
            hashMap.Add(520523, "金沙县");
            hashMap.Add(520524, "织金县");
            hashMap.Add(520525, "纳雍县");
            hashMap.Add(520526, "威宁彝族回族苗族自治县");
            hashMap.Add(520527, "赫章县");
            hashMap.Add(520600, "铜仁市");
            hashMap.Add(520601, "市辖区");
            hashMap.Add(520602, "碧江区");
            hashMap.Add(520603, "万山区");
            hashMap.Add(520621, "江口县");
            hashMap.Add(520622, "玉屏侗族自治县");
            hashMap.Add(520623, "石阡县");
            hashMap.Add(520624, "思南县");
            hashMap.Add(520625, "印江土家族苗族自治县");
            hashMap.Add(520626, "德江县");
            hashMap.Add(520627, "沿河土家族自治县");
            hashMap.Add(520628, "松桃苗族自治县");
            hashMap.Add(522300, "黔西南布依族苗族自治州");
            hashMap.Add(522301, "兴义市");
            hashMap.Add(522322, "兴仁县");
            hashMap.Add(522323, "普安县");
            hashMap.Add(522324, "晴隆县");
            hashMap.Add(522325, "贞丰县");
            hashMap.Add(522326, "望谟县");
            hashMap.Add(522327, "册亨县");
            hashMap.Add(522328, "安龙县");
            hashMap.Add(522600, "黔东南苗族侗族自治州");
            hashMap.Add(522601, "凯里市");
            hashMap.Add(522622, "黄平县");
            hashMap.Add(522623, "施秉县");
            hashMap.Add(522624, "三穗县");
            hashMap.Add(522625, "镇远县");
            hashMap.Add(522626, "岑巩县");
            hashMap.Add(522627, "天柱县");
            hashMap.Add(522628, "锦屏县");
            hashMap.Add(522629, "剑河县");
            hashMap.Add(522630, "台江县");
            hashMap.Add(522631, "黎平县");
            hashMap.Add(522632, "榕江县");
            hashMap.Add(522633, "从江县");
            hashMap.Add(522634, "雷山县");
            hashMap.Add(522635, "麻江县");
            hashMap.Add(522636, "丹寨县");
            hashMap.Add(522700, "黔南布依族苗族自治州");
            hashMap.Add(522701, "都匀市");
            hashMap.Add(522702, "福泉市");
            hashMap.Add(522722, "荔波县");
            hashMap.Add(522723, "贵定县");
            hashMap.Add(522725, "瓮安县");
            hashMap.Add(522726, "独山县");
            hashMap.Add(522727, "平塘县");
            hashMap.Add(522728, "罗甸县");
            hashMap.Add(522729, "长顺县");
            hashMap.Add(522730, "龙里县");
            hashMap.Add(522731, "惠水县");
            hashMap.Add(522732, "三都水族自治县");
            hashMap.Add(530000, "云南省");
            hashMap.Add(530100, "昆明市");
            hashMap.Add(530101, "市辖区");
            hashMap.Add(530102, "五华区");
            hashMap.Add(530103, "盘龙区");
            hashMap.Add(530111, "官渡区");
            hashMap.Add(530112, "西山区");
            hashMap.Add(530113, "东川区");
            hashMap.Add(530114, "呈贡区");
            hashMap.Add(530122, "晋宁县");
            hashMap.Add(530124, "富民县");
            hashMap.Add(530125, "宜良县");
            hashMap.Add(530126, "石林彝族自治县");
            hashMap.Add(530127, "嵩明县");
            hashMap.Add(530128, "禄劝彝族苗族自治县");
            hashMap.Add(530129, "寻甸回族彝族自治县");
            hashMap.Add(530181, "安宁市");
            hashMap.Add(530300, "曲靖市");
            hashMap.Add(530301, "市辖区");
            hashMap.Add(530302, "麒麟区");
            hashMap.Add(530321, "马龙县");
            hashMap.Add(530322, "陆良县");
            hashMap.Add(530323, "师宗县");
            hashMap.Add(530324, "罗平县");
            hashMap.Add(530325, "富源县");
            hashMap.Add(530326, "会泽县");
            hashMap.Add(530328, "沾益县");
            hashMap.Add(530381, "宣威市");
            hashMap.Add(530400, "玉溪市");
            hashMap.Add(530401, "市辖区");
            hashMap.Add(530402, "红塔区");
            hashMap.Add(530421, "江川县");
            hashMap.Add(530422, "澄江县");
            hashMap.Add(530423, "通海县");
            hashMap.Add(530424, "华宁县");
            hashMap.Add(530425, "易门县");
            hashMap.Add(530426, "峨山彝族自治县");
            hashMap.Add(530427, "新平彝族傣族自治县");
            hashMap.Add(530428, "元江哈尼族彝族傣族自治县");
            hashMap.Add(530500, "保山市");
            hashMap.Add(530501, "市辖区");
            hashMap.Add(530502, "隆阳区");
            hashMap.Add(530521, "施甸县");
            hashMap.Add(530522, "腾冲县");
            hashMap.Add(530523, "龙陵县");
            hashMap.Add(530524, "昌宁县");
            hashMap.Add(530600, "昭通市");
            hashMap.Add(530601, "市辖区");
            hashMap.Add(530602, "昭阳区");
            hashMap.Add(530621, "鲁甸县");
            hashMap.Add(530622, "巧家县");
            hashMap.Add(530623, "盐津县");
            hashMap.Add(530624, "大关县");
            hashMap.Add(530625, "永善县");
            hashMap.Add(530626, "绥江县");
            hashMap.Add(530627, "镇雄县");
            hashMap.Add(530628, "彝良县");
            hashMap.Add(530629, "威信县");
            hashMap.Add(530630, "水富县");
            hashMap.Add(530700, "丽江市");
            hashMap.Add(530701, "市辖区");
            hashMap.Add(530702, "古城区");
            hashMap.Add(530721, "玉龙纳西族自治县");
            hashMap.Add(530722, "永胜县");
            hashMap.Add(530723, "华坪县");
            hashMap.Add(530724, "宁蒗彝族自治县");
            hashMap.Add(530800, "普洱市");
            hashMap.Add(530801, "市辖区");
            hashMap.Add(530802, "思茅区");
            hashMap.Add(530821, "宁洱哈尼族彝族自治县");
            hashMap.Add(530822, "墨江哈尼族自治县");
            hashMap.Add(530823, "景东彝族自治县");
            hashMap.Add(530824, "景谷傣族彝族自治县");
            hashMap.Add(530825, "镇沅彝族哈尼族拉祜族自治县");
            hashMap.Add(530826, "江城哈尼族彝族自治县");
            hashMap.Add(530827, "孟连傣族拉祜族佤族自治县");
            hashMap.Add(530828, "澜沧拉祜族自治县");
            hashMap.Add(530829, "西盟佤族自治县");
            hashMap.Add(530900, "临沧市");
            hashMap.Add(530901, "市辖区");
            hashMap.Add(530902, "临翔区");
            hashMap.Add(530921, "凤庆县");
            hashMap.Add(530922, "云县");
            hashMap.Add(530923, "永德县");
            hashMap.Add(530924, "镇康县");
            hashMap.Add(530925, "双江拉祜族佤族布朗族傣族自治县");
            hashMap.Add(530926, "耿马傣族佤族自治县");
            hashMap.Add(530927, "沧源佤族自治县");
            hashMap.Add(532300, "楚雄彝族自治州");
            hashMap.Add(532301, "楚雄市");
            hashMap.Add(532322, "双柏县");
            hashMap.Add(532323, "牟定县");
            hashMap.Add(532324, "南华县");
            hashMap.Add(532325, "姚安县");
            hashMap.Add(532326, "大姚县");
            hashMap.Add(532327, "永仁县");
            hashMap.Add(532328, "元谋县");
            hashMap.Add(532329, "武定县");
            hashMap.Add(532331, "禄丰县");
            hashMap.Add(532500, "红河哈尼族彝族自治州");
            hashMap.Add(532501, "个旧市");
            hashMap.Add(532502, "开远市");
            hashMap.Add(532503, "蒙自市");
            hashMap.Add(532504, "弥勒市");
            hashMap.Add(532523, "屏边苗族自治县");
            hashMap.Add(532524, "建水县");
            hashMap.Add(532525, "石屏县");
            hashMap.Add(532527, "泸西县");
            hashMap.Add(532528, "元阳县");
            hashMap.Add(532529, "红河县");
            hashMap.Add(532530, "金平苗族瑶族傣族自治县");
            hashMap.Add(532531, "绿春县");
            hashMap.Add(532532, "河口瑶族自治县");
            hashMap.Add(532600, "文山壮族苗族自治州");
            hashMap.Add(532601, "文山市");
            hashMap.Add(532622, "砚山县");
            hashMap.Add(532623, "西畴县");
            hashMap.Add(532624, "麻栗坡县");
            hashMap.Add(532625, "马关县");
            hashMap.Add(532626, "丘北县");
            hashMap.Add(532627, "广南县");
            hashMap.Add(532628, "富宁县");
            hashMap.Add(532800, "西双版纳傣族自治州");
            hashMap.Add(532801, "景洪市");
            hashMap.Add(532822, "勐海县");
            hashMap.Add(532823, "勐腊县");
            hashMap.Add(532900, "大理白族自治州");
            hashMap.Add(532901, "大理市");
            hashMap.Add(532922, "漾濞彝族自治县");
            hashMap.Add(532923, "祥云县");
            hashMap.Add(532924, "宾川县");
            hashMap.Add(532925, "弥渡县");
            hashMap.Add(532926, "南涧彝族自治县");
            hashMap.Add(532927, "巍山彝族回族自治县");
            hashMap.Add(532928, "永平县");
            hashMap.Add(532929, "云龙县");
            hashMap.Add(532930, "洱源县");
            hashMap.Add(532931, "剑川县");
            hashMap.Add(532932, "鹤庆县");
            hashMap.Add(533100, "德宏傣族景颇族自治州");
            hashMap.Add(533102, "瑞丽市");
            hashMap.Add(533103, "芒市");
            hashMap.Add(533122, "梁河县");
            hashMap.Add(533123, "盈江县");
            hashMap.Add(533124, "陇川县");
            hashMap.Add(533300, "怒江傈僳族自治州");
            hashMap.Add(533321, "泸水县");
            hashMap.Add(533323, "福贡县");
            hashMap.Add(533324, "贡山独龙族怒族自治县");
            hashMap.Add(533325, "兰坪白族普米族自治县");
            hashMap.Add(533400, "迪庆藏族自治州");
            hashMap.Add(533421, "香格里拉县");
            hashMap.Add(533422, "德钦县");
            hashMap.Add(533423, "维西傈僳族自治县");
            hashMap.Add(540000, "西藏自治区");
            hashMap.Add(540100, "拉萨市");
            hashMap.Add(540101, "市辖区");
            hashMap.Add(540102, "城关区");
            hashMap.Add(540121, "林周县");
            hashMap.Add(540122, "当雄县");
            hashMap.Add(540123, "尼木县");
            hashMap.Add(540124, "曲水县");
            hashMap.Add(540125, "堆龙德庆县");
            hashMap.Add(540126, "达孜县");
            hashMap.Add(540127, "墨竹工卡县");
            hashMap.Add(542100, "昌都地区");
            hashMap.Add(542121, "昌都县");
            hashMap.Add(542122, "江达县");
            hashMap.Add(542123, "贡觉县");
            hashMap.Add(542124, "类乌齐县");
            hashMap.Add(542125, "丁青县");
            hashMap.Add(542126, "察雅县");
            hashMap.Add(542127, "八宿县");
            hashMap.Add(542128, "左贡县");
            hashMap.Add(542129, "芒康县");
            hashMap.Add(542132, "洛隆县");
            hashMap.Add(542133, "边坝县");
            hashMap.Add(542200, "山南地区");
            hashMap.Add(542221, "乃东县");
            hashMap.Add(542222, "扎囊县");
            hashMap.Add(542223, "贡嘎县");
            hashMap.Add(542224, "桑日县");
            hashMap.Add(542225, "琼结县");
            hashMap.Add(542226, "曲松县");
            hashMap.Add(542227, "措美县");
            hashMap.Add(542228, "洛扎县");
            hashMap.Add(542229, "加查县");
            hashMap.Add(542231, "隆子县");
            hashMap.Add(542232, "错那县");
            hashMap.Add(542233, "浪卡子县");
            hashMap.Add(542300, "日喀则地区");
            hashMap.Add(542301, "日喀则市");
            hashMap.Add(542322, "南木林县");
            hashMap.Add(542323, "江孜县");
            hashMap.Add(542324, "定日县");
            hashMap.Add(542325, "萨迦县");
            hashMap.Add(542326, "拉孜县");
            hashMap.Add(542327, "昂仁县");
            hashMap.Add(542328, "谢通门县");
            hashMap.Add(542329, "白朗县");
            hashMap.Add(542330, "仁布县");
            hashMap.Add(542331, "康马县");
            hashMap.Add(542332, "定结县");
            hashMap.Add(542333, "仲巴县");
            hashMap.Add(542334, "亚东县");
            hashMap.Add(542335, "吉隆县");
            hashMap.Add(542336, "聂拉木县");
            hashMap.Add(542337, "萨嘎县");
            hashMap.Add(542338, "岗巴县");
            hashMap.Add(542400, "那曲地区");
            hashMap.Add(542421, "那曲县");
            hashMap.Add(542422, "嘉黎县");
            hashMap.Add(542423, "比如县");
            hashMap.Add(542424, "聂荣县");
            hashMap.Add(542425, "安多县");
            hashMap.Add(542426, "申扎县");
            hashMap.Add(542427, "索县");
            hashMap.Add(542428, "班戈县");
            hashMap.Add(542429, "巴青县");
            hashMap.Add(542430, "尼玛县");
            hashMap.Add(542431, "双湖县");
            hashMap.Add(542500, "阿里地区");
            hashMap.Add(542521, "普兰县");
            hashMap.Add(542522, "札达县");
            hashMap.Add(542523, "噶尔县");
            hashMap.Add(542524, "日土县");
            hashMap.Add(542525, "革吉县");
            hashMap.Add(542526, "改则县");
            hashMap.Add(542527, "措勤县");
            hashMap.Add(542600, "林芝地区");
            hashMap.Add(542621, "林芝县");
            hashMap.Add(542622, "工布江达县");
            hashMap.Add(542623, "米林县");
            hashMap.Add(542624, "墨脱县");
            hashMap.Add(542625, "波密县");
            hashMap.Add(542626, "察隅县");
            hashMap.Add(542627, "朗县");
            hashMap.Add(610000, "陕西省");
            hashMap.Add(610100, "西安市");
            hashMap.Add(610101, "市辖区");
            hashMap.Add(610102, "新城区");
            hashMap.Add(610103, "碑林区");
            hashMap.Add(610104, "莲湖区");
            hashMap.Add(610111, "灞桥区");
            hashMap.Add(610112, "未央区");
            hashMap.Add(610113, "雁塔区");
            hashMap.Add(610114, "阎良区");
            hashMap.Add(610115, "临潼区");
            hashMap.Add(610116, "长安区");
            hashMap.Add(610122, "蓝田县");
            hashMap.Add(610124, "周至县");
            hashMap.Add(610125, "户县");
            hashMap.Add(610126, "高陵县");
            hashMap.Add(610200, "铜川市");
            hashMap.Add(610201, "市辖区");
            hashMap.Add(610202, "王益区");
            hashMap.Add(610203, "印台区");
            hashMap.Add(610204, "耀州区");
            hashMap.Add(610222, "宜君县");
            hashMap.Add(610300, "宝鸡市");
            hashMap.Add(610301, "市辖区");
            hashMap.Add(610302, "渭滨区");
            hashMap.Add(610303, "金台区");
            hashMap.Add(610304, "陈仓区");
            hashMap.Add(610322, "凤翔县");
            hashMap.Add(610323, "岐山县");
            hashMap.Add(610324, "扶风县");
            hashMap.Add(610326, "眉县");
            hashMap.Add(610327, "陇县");
            hashMap.Add(610328, "千阳县");
            hashMap.Add(610329, "麟游县");
            hashMap.Add(610330, "凤县");
            hashMap.Add(610331, "太白县");
            hashMap.Add(610400, "咸阳市");
            hashMap.Add(610401, "市辖区");
            hashMap.Add(610402, "秦都区");
            hashMap.Add(610403, "杨陵区");
            hashMap.Add(610404, "渭城区");
            hashMap.Add(610422, "三原县");
            hashMap.Add(610423, "泾阳县");
            hashMap.Add(610424, "乾县");
            hashMap.Add(610425, "礼泉县");
            hashMap.Add(610426, "永寿县");
            hashMap.Add(610427, "彬县");
            hashMap.Add(610428, "长武县");
            hashMap.Add(610429, "旬邑县");
            hashMap.Add(610430, "淳化县");
            hashMap.Add(610431, "武功县");
            hashMap.Add(610481, "兴平市");
            hashMap.Add(610500, "渭南市");
            hashMap.Add(610501, "市辖区");
            hashMap.Add(610502, "临渭区");
            hashMap.Add(610521, "华县");
            hashMap.Add(610522, "潼关县");
            hashMap.Add(610523, "大荔县");
            hashMap.Add(610524, "合阳县");
            hashMap.Add(610525, "澄城县");
            hashMap.Add(610526, "蒲城县");
            hashMap.Add(610527, "白水县");
            hashMap.Add(610528, "富平县");
            hashMap.Add(610581, "韩城市");
            hashMap.Add(610582, "华阴市");
            hashMap.Add(610600, "延安市");
            hashMap.Add(610601, "市辖区");
            hashMap.Add(610602, "宝塔区");
            hashMap.Add(610621, "延长县");
            hashMap.Add(610622, "延川县");
            hashMap.Add(610623, "子长县");
            hashMap.Add(610624, "安塞县");
            hashMap.Add(610625, "志丹县");
            hashMap.Add(610626, "吴起县");
            hashMap.Add(610627, "甘泉县");
            hashMap.Add(610628, "富县");
            hashMap.Add(610629, "洛川县");
            hashMap.Add(610630, "宜川县");
            hashMap.Add(610631, "黄龙县");
            hashMap.Add(610632, "黄陵县");
            hashMap.Add(610700, "汉中市");
            hashMap.Add(610701, "市辖区");
            hashMap.Add(610702, "汉台区");
            hashMap.Add(610721, "南郑县");
            hashMap.Add(610722, "城固县");
            hashMap.Add(610723, "洋县");
            hashMap.Add(610724, "西乡县");
            hashMap.Add(610725, "勉县");
            hashMap.Add(610726, "宁强县");
            hashMap.Add(610727, "略阳县");
            hashMap.Add(610728, "镇巴县");
            hashMap.Add(610729, "留坝县");
            hashMap.Add(610730, "佛坪县");
            hashMap.Add(610800, "榆林市");
            hashMap.Add(610801, "市辖区");
            hashMap.Add(610802, "榆阳区");
            hashMap.Add(610821, "神木县");
            hashMap.Add(610822, "府谷县");
            hashMap.Add(610823, "横山县");
            hashMap.Add(610824, "靖边县");
            hashMap.Add(610825, "定边县");
            hashMap.Add(610826, "绥德县");
            hashMap.Add(610827, "米脂县");
            hashMap.Add(610828, "佳县");
            hashMap.Add(610829, "吴堡县");
            hashMap.Add(610830, "清涧县");
            hashMap.Add(610831, "子洲县");
            hashMap.Add(610900, "安康市");
            hashMap.Add(610901, "市辖区");
            hashMap.Add(610902, "汉滨区");
            hashMap.Add(610921, "汉阴县");
            hashMap.Add(610922, "石泉县");
            hashMap.Add(610923, "宁陕县");
            hashMap.Add(610924, "紫阳县");
            hashMap.Add(610925, "岚皋县");
            hashMap.Add(610926, "平利县");
            hashMap.Add(610927, "镇坪县");
            hashMap.Add(610928, "旬阳县");
            hashMap.Add(610929, "白河县");
            hashMap.Add(611000, "商洛市");
            hashMap.Add(611001, "市辖区");
            hashMap.Add(611002, "商州区");
            hashMap.Add(611021, "洛南县");
            hashMap.Add(611022, "丹凤县");
            hashMap.Add(611023, "商南县");
            hashMap.Add(611024, "山阳县");
            hashMap.Add(611025, "镇安县");
            hashMap.Add(611026, "柞水县");
            hashMap.Add(620000, "甘肃省");
            hashMap.Add(620100, "兰州市");
            hashMap.Add(620101, "市辖区");
            hashMap.Add(620102, "城关区");
            hashMap.Add(620103, "七里河区");
            hashMap.Add(620104, "西固区");
            hashMap.Add(620105, "安宁区");
            hashMap.Add(620111, "红古区");
            hashMap.Add(620121, "永登县");
            hashMap.Add(620122, "皋兰县");
            hashMap.Add(620123, "榆中县");
            hashMap.Add(620200, "嘉峪关市");
            hashMap.Add(620201, "市辖区");
            hashMap.Add(620300, "金昌市");
            hashMap.Add(620301, "市辖区");
            hashMap.Add(620302, "金川区");
            hashMap.Add(620321, "永昌县");
            hashMap.Add(620400, "白银市");
            hashMap.Add(620401, "市辖区");
            hashMap.Add(620402, "白银区");
            hashMap.Add(620403, "平川区");
            hashMap.Add(620421, "靖远县");
            hashMap.Add(620422, "会宁县");
            hashMap.Add(620423, "景泰县");
            hashMap.Add(620500, "天水市");
            hashMap.Add(620501, "市辖区");
            hashMap.Add(620502, "秦州区");
            hashMap.Add(620503, "麦积区");
            hashMap.Add(620521, "清水县");
            hashMap.Add(620522, "秦安县");
            hashMap.Add(620523, "甘谷县");
            hashMap.Add(620524, "武山县");
            hashMap.Add(620525, "张家川回族自治县");
            hashMap.Add(620600, "武威市");
            hashMap.Add(620601, "市辖区");
            hashMap.Add(620602, "凉州区");
            hashMap.Add(620621, "民勤县");
            hashMap.Add(620622, "古浪县");
            hashMap.Add(620623, "天祝藏族自治县");
            hashMap.Add(620700, "张掖市");
            hashMap.Add(620701, "市辖区");
            hashMap.Add(620702, "甘州区");
            hashMap.Add(620721, "肃南裕固族自治县");
            hashMap.Add(620722, "民乐县");
            hashMap.Add(620723, "临泽县");
            hashMap.Add(620724, "高台县");
            hashMap.Add(620725, "山丹县");
            hashMap.Add(620800, "平凉市");
            hashMap.Add(620801, "市辖区");
            hashMap.Add(620802, "崆峒区");
            hashMap.Add(620821, "泾川县");
            hashMap.Add(620822, "灵台县");
            hashMap.Add(620823, "崇信县");
            hashMap.Add(620824, "华亭县");
            hashMap.Add(620825, "庄浪县");
            hashMap.Add(620826, "静宁县");
            hashMap.Add(620900, "酒泉市");
            hashMap.Add(620901, "市辖区");
            hashMap.Add(620902, "肃州区");
            hashMap.Add(620921, "金塔县");
            hashMap.Add(620922, "瓜州县");
            hashMap.Add(620923, "肃北蒙古族自治县");
            hashMap.Add(620924, "阿克塞哈萨克族自治县");
            hashMap.Add(620981, "玉门市");
            hashMap.Add(620982, "敦煌市");
            hashMap.Add(621000, "庆阳市");
            hashMap.Add(621001, "市辖区");
            hashMap.Add(621002, "西峰区");
            hashMap.Add(621021, "庆城县");
            hashMap.Add(621022, "环县");
            hashMap.Add(621023, "华池县");
            hashMap.Add(621024, "合水县");
            hashMap.Add(621025, "正宁县");
            hashMap.Add(621026, "宁县");
            hashMap.Add(621027, "镇原县");
            hashMap.Add(621100, "定西市");
            hashMap.Add(621101, "市辖区");
            hashMap.Add(621102, "安定区");
            hashMap.Add(621121, "通渭县");
            hashMap.Add(621122, "陇西县");
            hashMap.Add(621123, "渭源县");
            hashMap.Add(621124, "临洮县");
            hashMap.Add(621125, "漳县");
            hashMap.Add(621126, "岷县");
            hashMap.Add(621200, "陇南市");
            hashMap.Add(621201, "市辖区");
            hashMap.Add(621202, "武都区");
            hashMap.Add(621221, "成县");
            hashMap.Add(621222, "文县");
            hashMap.Add(621223, "宕昌县");
            hashMap.Add(621224, "康县");
            hashMap.Add(621225, "西和县");
            hashMap.Add(621226, "礼县");
            hashMap.Add(621227, "徽县");
            hashMap.Add(621228, "两当县");
            hashMap.Add(622900, "临夏回族自治州");
            hashMap.Add(622901, "临夏市");
            hashMap.Add(622921, "临夏县");
            hashMap.Add(622922, "康乐县");
            hashMap.Add(622923, "永靖县");
            hashMap.Add(622924, "广河县");
            hashMap.Add(622925, "和政县");
            hashMap.Add(622926, "东乡族自治县");
            hashMap.Add(622927, "积石山保安族东乡族撒拉族自治县");
            hashMap.Add(623000, "甘南藏族自治州");
            hashMap.Add(623001, "合作市");
            hashMap.Add(623021, "临潭县");
            hashMap.Add(623022, "卓尼县");
            hashMap.Add(623023, "舟曲县");
            hashMap.Add(623024, "迭部县");
            hashMap.Add(623025, "玛曲县");
            hashMap.Add(623026, "碌曲县");
            hashMap.Add(623027, "夏河县");
            hashMap.Add(630000, "青海省");
            hashMap.Add(630100, "西宁市");
            hashMap.Add(630101, "市辖区");
            hashMap.Add(630102, "城东区");
            hashMap.Add(630103, "城中区");
            hashMap.Add(630104, "城西区");
            hashMap.Add(630105, "城北区");
            hashMap.Add(630121, "大通回族土族自治县");
            hashMap.Add(630122, "湟中县");
            hashMap.Add(630123, "湟源县");
            hashMap.Add(630200, "海东市");
            hashMap.Add(630202, "乐都区");
            hashMap.Add(630221, "平安县");
            hashMap.Add(630222, "民和回族土族自治县");
            hashMap.Add(630223, "互助土族自治县");
            hashMap.Add(630224, "化隆回族自治县");
            hashMap.Add(630225, "循化撒拉族自治县");
            hashMap.Add(632200, "海北藏族自治州");
            hashMap.Add(632221, "门源回族自治县");
            hashMap.Add(632222, "祁连县");
            hashMap.Add(632223, "海晏县");
            hashMap.Add(632224, "刚察县");
            hashMap.Add(632300, "黄南藏族自治州");
            hashMap.Add(632321, "同仁县");
            hashMap.Add(632322, "尖扎县");
            hashMap.Add(632323, "泽库县");
            hashMap.Add(632324, "河南蒙古族自治县");
            hashMap.Add(632500, "海南藏族自治州");
            hashMap.Add(632521, "共和县");
            hashMap.Add(632522, "同德县");
            hashMap.Add(632523, "贵德县");
            hashMap.Add(632524, "兴海县");
            hashMap.Add(632525, "贵南县");
            hashMap.Add(632600, "果洛藏族自治州");
            hashMap.Add(632621, "玛沁县");
            hashMap.Add(632622, "班玛县");
            hashMap.Add(632623, "甘德县");
            hashMap.Add(632624, "达日县");
            hashMap.Add(632625, "久治县");
            hashMap.Add(632626, "玛多县");
            hashMap.Add(632700, "玉树藏族自治州");
            hashMap.Add(632701, "玉树市");
            hashMap.Add(632722, "杂多县");
            hashMap.Add(632723, "称多县");
            hashMap.Add(632724, "治多县");
            hashMap.Add(632725, "囊谦县");
            hashMap.Add(632726, "曲麻莱县");
            hashMap.Add(632800, "海西蒙古族藏族自治州");
            hashMap.Add(632801, "格尔木市");
            hashMap.Add(632802, "德令哈市");
            hashMap.Add(632821, "乌兰县");
            hashMap.Add(632822, "都兰县");
            hashMap.Add(632823, "天峻县");
            hashMap.Add(640000, "宁夏回族自治区");
            hashMap.Add(640100, "银川市");
            hashMap.Add(640101, "市辖区");
            hashMap.Add(640104, "兴庆区");
            hashMap.Add(640105, "西夏区");
            hashMap.Add(640106, "金凤区");
            hashMap.Add(640121, "永宁县");
            hashMap.Add(640122, "贺兰县");
            hashMap.Add(640181, "灵武市");
            hashMap.Add(640200, "石嘴山市");
            hashMap.Add(640201, "市辖区");
            hashMap.Add(640202, "大武口区");
            hashMap.Add(640205, "惠农区");
            hashMap.Add(640221, "平罗县");
            hashMap.Add(640300, "吴忠市");
            hashMap.Add(640301, "市辖区");
            hashMap.Add(640302, "利通区");
            hashMap.Add(640303, "红寺堡区");
            hashMap.Add(640323, "盐池县");
            hashMap.Add(640324, "同心县");
            hashMap.Add(640381, "青铜峡市");
            hashMap.Add(640400, "固原市");
            hashMap.Add(640401, "市辖区");
            hashMap.Add(640402, "原州区");
            hashMap.Add(640422, "西吉县");
            hashMap.Add(640423, "隆德县");
            hashMap.Add(640424, "泾源县");
            hashMap.Add(640425, "彭阳县");
            hashMap.Add(640500, "中卫市");
            hashMap.Add(640501, "市辖区");
            hashMap.Add(640502, "沙坡头区");
            hashMap.Add(640521, "中宁县");
            hashMap.Add(640522, "海原县");
            hashMap.Add(650000, "新疆维吾尔自治区");
            hashMap.Add(650100, "乌鲁木齐市");
            hashMap.Add(650101, "市辖区");
            hashMap.Add(650102, "天山区");
            hashMap.Add(650103, "沙依巴克区");
            hashMap.Add(650104, "新市区");
            hashMap.Add(650105, "水磨沟区");
            hashMap.Add(650106, "头屯河区");
            hashMap.Add(650107, "达坂城区");
            hashMap.Add(650109, "米东区");
            hashMap.Add(650121, "乌鲁木齐县");
            hashMap.Add(650200, "克拉玛依市");
            hashMap.Add(650201, "市辖区");
            hashMap.Add(650202, "独山子区");
            hashMap.Add(650203, "克拉玛依区");
            hashMap.Add(650204, "白碱滩区");
            hashMap.Add(650205, "乌尔禾区");
            hashMap.Add(652100, "吐鲁番地区");
            hashMap.Add(652101, "吐鲁番市");
            hashMap.Add(652122, "鄯善县");
            hashMap.Add(652123, "托克逊县");
            hashMap.Add(652200, "哈密地区");
            hashMap.Add(652201, "哈密市");
            hashMap.Add(652222, "巴里坤哈萨克自治县");
            hashMap.Add(652223, "伊吾县");
            hashMap.Add(652300, "昌吉回族自治州");
            hashMap.Add(652301, "昌吉市");
            hashMap.Add(652302, "阜康市");
            hashMap.Add(652323, "呼图壁县");
            hashMap.Add(652324, "玛纳斯县");
            hashMap.Add(652325, "奇台县");
            hashMap.Add(652327, "吉木萨尔县");
            hashMap.Add(652328, "木垒哈萨克自治县");
            hashMap.Add(652700, "博尔塔拉蒙古自治州");
            hashMap.Add(652701, "博乐市");
            hashMap.Add(652702, "阿拉山口市");
            hashMap.Add(652722, "精河县");
            hashMap.Add(652723, "温泉县");
            hashMap.Add(652800, "巴音郭楞蒙古自治州");
            hashMap.Add(652801, "库尔勒市");
            hashMap.Add(652822, "轮台县");
            hashMap.Add(652823, "尉犁县");
            hashMap.Add(652824, "若羌县");
            hashMap.Add(652825, "且末县");
            hashMap.Add(652826, "焉耆回族自治县");
            hashMap.Add(652827, "和静县");
            hashMap.Add(652828, "和硕县");
            hashMap.Add(652829, "博湖县");
            hashMap.Add(652900, "阿克苏地区");
            hashMap.Add(652901, "阿克苏市");
            hashMap.Add(652922, "温宿县");
            hashMap.Add(652923, "库车县");
            hashMap.Add(652924, "沙雅县");
            hashMap.Add(652925, "新和县");
            hashMap.Add(652926, "拜城县");
            hashMap.Add(652927, "乌什县");
            hashMap.Add(652928, "阿瓦提县");
            hashMap.Add(652929, "柯坪县");
            hashMap.Add(653000, "克孜勒苏柯尔克孜自治州");
            hashMap.Add(653001, "阿图什市");
            hashMap.Add(653022, "阿克陶县");
            hashMap.Add(653023, "阿合奇县");
            hashMap.Add(653024, "乌恰县");
            hashMap.Add(653100, "喀什地区");
            hashMap.Add(653101, "喀什市");
            hashMap.Add(653121, "疏附县");
            hashMap.Add(653122, "疏勒县");
            hashMap.Add(653123, "英吉沙县");
            hashMap.Add(653124, "泽普县");
            hashMap.Add(653125, "莎车县");
            hashMap.Add(653126, "叶城县");
            hashMap.Add(653127, "麦盖提县");
            hashMap.Add(653128, "岳普湖县");
            hashMap.Add(653129, "伽师县");
            hashMap.Add(653130, "巴楚县");
            hashMap.Add(653131, "塔什库尔干塔吉克自治县");
            hashMap.Add(653200, "和田地区");
            hashMap.Add(653201, "和田市");
            hashMap.Add(653221, "和田县");
            hashMap.Add(653222, "墨玉县");
            hashMap.Add(653223, "皮山县");
            hashMap.Add(653224, "洛浦县");
            hashMap.Add(653225, "策勒县");
            hashMap.Add(653226, "于田县");
            hashMap.Add(653227, "民丰县");
            hashMap.Add(654000, "伊犁哈萨克自治州");
            hashMap.Add(654002, "伊宁市");
            hashMap.Add(654003, "奎屯市");
            hashMap.Add(654021, "伊宁县");
            hashMap.Add(654022, "察布查尔锡伯自治县");
            hashMap.Add(654023, "霍城县");
            hashMap.Add(654024, "巩留县");
            hashMap.Add(654025, "新源县");
            hashMap.Add(654026, "昭苏县");
            hashMap.Add(654027, "特克斯县");
            hashMap.Add(654028, "尼勒克县");
            hashMap.Add(654200, "塔城地区");
            hashMap.Add(654201, "塔城市");
            hashMap.Add(654202, "乌苏市");
            hashMap.Add(654221, "额敏县");
            hashMap.Add(654223, "沙湾县");
            hashMap.Add(654224, "托里县");
            hashMap.Add(654225, "裕民县");
            hashMap.Add(654226, "和布克赛尔蒙古自治县");
            hashMap.Add(654300, "阿勒泰地区");
            hashMap.Add(654301, "阿勒泰市");
            hashMap.Add(654321, "布尔津县");
            hashMap.Add(654322, "富蕴县");
            hashMap.Add(654323, "福海县");
            hashMap.Add(654324, "哈巴河县");
            hashMap.Add(654325, "青河县");
            hashMap.Add(654326, "吉木乃县");
            hashMap.Add(659000, "自治区直辖县级行政区划");
            hashMap.Add(659001, "石河子市");
            hashMap.Add(659002, "阿拉尔市");
            hashMap.Add(659003, "图木舒克市");
            hashMap.Add(659004, "五家渠市");
            hashMap.Add(710000, "台湾省");
            hashMap.Add(810000, "香港特别行政区");
            hashMap.Add(820000, "澳门特别行政区");
            #endregion
            return hashMap;
        }
        #endregion
        #endregion

        /// <summary>
        ///错误返回
        /// </summary>
        /// <param name="status">0,服务有问题,1,服务没问题</param>
        /// <param name="info">返回信息OK或ERROR</param>
        /// <param name="infocode">返回信息代码</param>
        /// <param name="msg1">返回信息说明</param>
        /// <returns></returns>
        private static string errorjson(int status, int infocode, string msg1)
        {
            // msg1 = "";
            string info = "ERROE";
            if (status == 1)
            {
                info = "OK";
            }
            string msg = "{\"status\":\"" + status + "\",\"info\":\"" + info + "\",\"infocode\":\"" + infocode + "\",\"msg\":\"" + msg1 + "\"}";
            return msg;
        }

        /// <summary>
        /// 成功返回
        /// </summary>
        /// <param name="infocode">1000成功</param>
        /// <param name="msg1"></param>
        /// <returns></returns>
        private static string sucjson(string msg1)
        {
            string msg = "{\"status\":\"1\",\"info\":\"OK\",\"infocode\":\"10000\",\"msg\":\"" + msg1 + "\"}";
            return msg;
        }
    }
  • 13
    点赞
  • 29
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值