三级联动

结构

<select v-model="form.provinceCode" id="provinceCode"></select>
<select v-model="form.cityCode" id="cityCode">
     <option value="">市</option>
</select>
<select v-model="form.district" id="corporationName">
     <option value="">区</option>
</select>

js

var $provinceList = document.getElementById("provinceCode"),i;
        var $cityList = document.getElementById("cityCode");
        var $districtList = document.getElementById("corporationName");
        $provinceList.innerHTML = '<option value="">省</option>';
        for(i=0;i<provinces.length;i++){
            var thisOption = document.createElement("option");
            thisOption.value = provinces[i].cityid;
            thisOption.innerText = provinces[i].cityname;
            $provinceList.appendChild(thisOption);
        }
        var provinceChange = function(value){
            if(value){
                $cityList.innerHTML = '<option value="">市</option>';
                $districtList.innerHTML = '<option value="">区县</option>';
                for(i=0;i<citys.length;i++){
                    if(citys[i].pcityid == value){
                        var thisOption = document.createElement("option");
                        thisOption.value = citys[i].cityid;
                        thisOption.innerText = citys[i].cityname;
                        $cityList.appendChild(thisOption);
                    }
                }
            }
        };
        $provinceList.addEventListener("change",function(){
            provinceChange(this.value);
        });
        var cityChange = function(value){
            if(value){
                $districtList.innerHTML = '<option value="">区县</option>';
                for(i=0;i<districts.length;i++){
                    if(districts[i].pcityid == value){
                        var thisOption = document.createElement("option");
                        thisOption.value = districts[i].cityid;
                        thisOption.innerText = districts[i].cityname;
                        $districtList.appendChild(thisOption);
                    }
                }
            }
        };
        $cityList.addEventListener("change",function(){
            cityChange(this.value);
        });

        if (window.localStorage.isUser=='1'){
            this.$router.push('start')
        }else{
            this.$router.push('dredge')
        }

这里有一个城市列表的json文件

/**
 * Created by user on 2018/3/14.
 */
var provinces = [
    {
        "cityid":110000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"北京市",
        "citysort":"1",
        "citycode":"110000",
        "citytype":"2",
        "city_full_name":"北京市",
        "is_virtual_region":"0"
    },
    {
        "cityid":120000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"天津市",
        "citysort":"20",
        "citycode":"120000",
        "citytype":"2",
        "city_full_name":"天津市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"河北省",
        "citysort":"39",
        "citycode":"130000",
        "citytype":"2",
        "city_full_name":"河北省",
        "is_virtual_region":"0"
    },
    {
        "cityid":140000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"山*省",
        "citysort":"233",
        "citycode":"140000",
        "citytype":"2",
        "city_full_name":"山*省",
        "is_virtual_region":"0"
    },
    {
        "cityid":150000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"内蒙古自治区",
        "citysort":"375",
        "citycode":"150000",
        "citytype":"2",
        "city_full_name":"内蒙古自治区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"辽宁省",
        "citysort":"499",
        "citycode":"210000",
        "citytype":"2",
        "city_full_name":"辽宁省",
        "is_virtual_region":"0"
    },
    {
        "cityid":220000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"吉林省",
        "citysort":"628",
        "citycode":"220000",
        "citytype":"2",
        "city_full_name":"吉林省",
        "is_virtual_region":"0"
    },
    {
        "cityid":230000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"黑龙江省",
        "citysort":"706",
        "citycode":"230000",
        "citytype":"2",
        "city_full_name":"黑龙江省",
        "is_virtual_region":"0"
    },
    {
        "cityid":310000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"上海市",
        "citysort":"860",
        "citycode":"310000",
        "citytype":"2",
        "city_full_name":"上海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"江苏省",
        "citysort":"880",
        "citycode":"320000",
        "citytype":"2",
        "city_full_name":"江苏省",
        "is_virtual_region":"0"
    },
    {
        "cityid":330000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"浙江省",
        "citysort":"1006",
        "citycode":"330000",
        "citytype":"2",
        "city_full_name":"浙江省",
        "is_virtual_region":"0"
    },
    {
        "cityid":340000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"安徽省",
        "citysort":"1119",
        "citycode":"340000",
        "citytype":"2",
        "city_full_name":"安徽省",
        "is_virtual_region":"0"
    },
    {
        "cityid":350000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"福建省",
        "citysort":"1257",
        "citycode":"350000",
        "citytype":"2",
        "city_full_name":"福建省",
        "is_virtual_region":"0"
    },
    {
        "cityid":360000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"江*省",
        "citysort":"1361",
        "citycode":"360000",
        "citytype":"2",
        "city_full_name":"江*省",
        "is_virtual_region":"0"
    },
    {
        "cityid":370000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"山东省",
        "citysort":"1484",
        "citycode":"370000",
        "citytype":"2",
        "city_full_name":"山东省",
        "is_virtual_region":"0"
    },
    {
        "cityid":410000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"河南省",
        "citysort":"1656",
        "citycode":"410000",
        "citytype":"2",
        "city_full_name":"河南省",
        "is_virtual_region":"0"
    },
    {
        "cityid":420000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"湖北省",
        "citysort":"1851",
        "citycode":"420000",
        "citytype":"2",
        "city_full_name":"湖北省",
        "is_virtual_region":"0"
    },
    {
        "cityid":430000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"湖南省",
        "citysort":"1981",
        "citycode":"430000",
        "citytype":"2",
        "city_full_name":"湖南省",
        "is_virtual_region":"0"
    },
    {
        "cityid":440000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"广东省",
        "citysort":"2131",
        "citycode":"440000",
        "citytype":"2",
        "city_full_name":"广东省",
        "is_virtual_region":"0"
    },
    {
        "cityid":450000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"广*壮族自治区",
        "citysort":"2292",
        "citycode":"450000",
        "citytype":"2",
        "city_full_name":"广*壮族自治区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"海南省",
        "citysort":"2431",
        "citycode":"460000",
        "citytype":"2",
        "city_full_name":"海南省",
        "is_virtual_region":"0"
    },
    {
        "cityid":500000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"重庆市",
        "citysort":"2462",
        "citycode":"500000",
        "citytype":"2",
        "city_full_name":"重庆市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"四川省",
        "citysort":"2503",
        "citycode":"510000",
        "citytype":"2",
        "city_full_name":"四川省",
        "is_virtual_region":"0"
    },
    {
        "cityid":520000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"贵州省",
        "citysort":"2726",
        "citycode":"520000",
        "citytype":"2",
        "city_full_name":"贵州省",
        "is_virtual_region":"0"
    },
    {
        "cityid":530000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"云南省",
        "citysort":"2829",
        "citycode":"530000",
        "citytype":"2",
        "city_full_name":"云南省",
        "is_virtual_region":"0"
    },
    {
        "cityid":540000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"*藏自治区",
        "citysort":"2983",
        "citycode":"540000",
        "citytype":"2",
        "city_full_name":"*藏自治区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"陕*省",
        "citysort":"3066",
        "citycode":"610000",
        "citytype":"2",
        "city_full_name":"陕*省",
        "is_virtual_region":"0"
    },
    {
        "cityid":620000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"甘肃省",
        "citysort":"3194",
        "citycode":"620000",
        "citytype":"2",
        "city_full_name":"甘肃省",
        "is_virtual_region":"0"
    },
    {
        "cityid":630000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"青海省",
        "citysort":"3307",
        "citycode":"630000",
        "citytype":"2",
        "city_full_name":"青海省",
        "is_virtual_region":"0"
    },
    {
        "cityid":640000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"宁夏回族自治区",
        "citysort":"3360",
        "citycode":"640000",
        "citytype":"2",
        "city_full_name":"宁夏回族自治区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"新疆维吾尔自治区",
        "citysort":"3393",
        "citycode":"650000",
        "citytype":"2",
        "city_full_name":"新疆维吾尔自治区",
        "is_virtual_region":"0"
    },
    {
        "cityid":710000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"台湾省",
        "citysort":"3510",
        "citycode":"710000",
        "citytype":"2",
        "city_full_name":"台湾省",
        "is_virtual_region":"0"
    },
    {
        "cityid":810000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"香港特别行政区",
        "citysort":"3511",
        "citycode":"810000",
        "citytype":"2",
        "city_full_name":"香港特别行政区",
        "is_virtual_region":"0"
    },
    {
        "cityid":820000,
        "pcityid":"1",
        "pcityids":"1,",
        "cityname":"澳门特别行政区",
        "citysort":"3512",
        "citycode":"820000",
        "citytype":"2",
        "city_full_name":"澳门特别行政区",
        "is_virtual_region":"0"
    }
];
var citys = [
    {
        "cityid":110100,
        "pcityid":"110000",
        "pcityids":"1,110000,",
        "cityname":"市辖区",
        "citysort":"2",
        "citycode":"110100",
        "citytype":"3",
        "city_full_name":"北京市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110200,
        "pcityid":"110000",
        "pcityids":"1,110000,",
        "cityname":"县",
        "citysort":"17",
        "citycode":"110200",
        "citytype":"3",
        "city_full_name":"北京市县",
        "is_virtual_region":"0"
    },
    {
        "cityid":120100,
        "pcityid":"120000",
        "pcityids":"1,120000,",
        "cityname":"市辖区",
        "citysort":"21",
        "citycode":"120100",
        "citytype":"3",
        "city_full_name":"天津市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120200,
        "pcityid":"120000",
        "pcityids":"1,120000,",
        "cityname":"县",
        "citysort":"35",
        "citycode":"120200",
        "citytype":"3",
        "city_full_name":"天津市县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130100,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"石家庄市",
        "citysort":"40",
        "citycode":"130100",
        "citytype":"3",
        "city_full_name":"河北省石家庄市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130200,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"唐山市",
        "citysort":"64",
        "citycode":"130200",
        "citytype":"3",
        "city_full_name":"河北省唐山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130300,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"秦皇岛市",
        "citysort":"80",
        "citycode":"130300",
        "citytype":"3",
        "city_full_name":"河北省秦皇岛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130400,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"邯郸市",
        "citysort":"89",
        "citycode":"130400",
        "citytype":"3",
        "city_full_name":"河北省邯郸市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130500,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"邢台市",
        "citysort":"110",
        "citycode":"130500",
        "citytype":"3",
        "city_full_name":"河北省邢台市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130600,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"保定市",
        "citysort":"131",
        "citycode":"130600",
        "citytype":"3",
        "city_full_name":"河北省保定市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130700,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"张家口市",
        "citysort":"158",
        "citycode":"130700",
        "citytype":"3",
        "city_full_name":"河北省张家口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130800,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"承德市",
        "citysort":"177",
        "citycode":"130800",
        "citytype":"3",
        "city_full_name":"河北省承德市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130900,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"沧州市",
        "citysort":"190",
        "citycode":"130900",
        "citytype":"3",
        "city_full_name":"河北省沧州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131000,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"廊坊市",
        "citysort":"208",
        "citycode":"131000",
        "citytype":"3",
        "city_full_name":"河北省廊坊市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131100,
        "pcityid":"130000",
        "pcityids":"1,130000,",
        "cityname":"衡水市",
        "citysort":"220",
        "citycode":"131100",
        "citytype":"3",
        "city_full_name":"河北省衡水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140100,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"太原市",
        "citysort":"234",
        "citycode":"140100",
        "citytype":"3",
        "city_full_name":"山*省太原市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140200,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"大同市",
        "citysort":"246",
        "citycode":"140200",
        "citytype":"3",
        "city_full_name":"山*省大同市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140300,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"阳泉市",
        "citysort":"259",
        "citycode":"140300",
        "citytype":"3",
        "city_full_name":"山*省阳泉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140400,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"长治市",
        "citysort":"266",
        "citycode":"140400",
        "citytype":"3",
        "city_full_name":"山*省长治市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140500,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"*城市",
        "citysort":"281",
        "citycode":"140500",
        "citytype":"3",
        "city_full_name":"山*省*城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140600,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"朔州市",
        "citysort":"289",
        "citycode":"140600",
        "citytype":"3",
        "city_full_name":"山*省朔州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140700,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"*中市",
        "citysort":"297",
        "citycode":"140700",
        "citytype":"3",
        "city_full_name":"山*省*中市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140800,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"运城市",
        "citysort":"310",
        "citycode":"140800",
        "citytype":"3",
        "city_full_name":"山*省运城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140900,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"忻州市",
        "citysort":"325",
        "citycode":"140900",
        "citytype":"3",
        "city_full_name":"山*省忻州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141000,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"临汾市",
        "citysort":"341",
        "citycode":"141000",
        "citytype":"3",
        "city_full_name":"山*省临汾市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141100,
        "pcityid":"140000",
        "pcityids":"1,140000,",
        "cityname":"吕梁市",
        "citysort":"360",
        "citycode":"141100",
        "citytype":"3",
        "city_full_name":"山*省吕梁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150100,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"呼和浩特市",
        "citysort":"376",
        "citycode":"150100",
        "citytype":"3",
        "city_full_name":"内蒙古自治区呼和浩特市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150200,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"包头市",
        "citysort":"387",
        "citycode":"150200",
        "citytype":"3",
        "city_full_name":"内蒙古自治区包头市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150300,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"乌海市",
        "citysort":"398",
        "citycode":"150300",
        "citytype":"3",
        "city_full_name":"内蒙古自治区乌海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150400,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"赤峰市",
        "citysort":"403",
        "citycode":"150400",
        "citytype":"3",
        "city_full_name":"内蒙古自治区赤峰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150500,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"通辽市",
        "citysort":"417",
        "citycode":"150500",
        "citytype":"3",
        "city_full_name":"内蒙古自治区通辽市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150600,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"鄂尔多斯市",
        "citysort":"427",
        "citycode":"150600",
        "citytype":"3",
        "city_full_name":"内蒙古自治区鄂尔多斯市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150700,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"呼伦贝尔市",
        "citysort":"437",
        "citycode":"150700",
        "citytype":"3",
        "city_full_name":"内蒙古自治区呼伦贝尔市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150800,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"巴彦淖尔市",
        "citysort":"453",
        "citycode":"150800",
        "citytype":"3",
        "city_full_name":"内蒙古自治区巴彦淖尔市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150900,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"乌兰察布市",
        "citysort":"462",
        "citycode":"150900",
        "citytype":"3",
        "city_full_name":"内蒙古自治区乌兰察布市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152200,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"兴安盟",
        "citysort":"475",
        "citycode":"152200",
        "citytype":"3",
        "city_full_name":"内蒙古自治区兴安盟",
        "is_virtual_region":"0"
    },
    {
        "cityid":152500,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"锡林郭勒盟",
        "citysort":"482",
        "citycode":"152500",
        "citytype":"3",
        "city_full_name":"内蒙古自治区锡林郭勒盟",
        "is_virtual_region":"0"
    },
    {
        "cityid":152900,
        "pcityid":"150000",
        "pcityids":"1,150000,",
        "cityname":"阿拉善盟",
        "citysort":"495",
        "citycode":"152900",
        "citytype":"3",
        "city_full_name":"内蒙古自治区阿拉善盟",
        "is_virtual_region":"0"
    },
    {
        "cityid":210100,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"沈阳市",
        "citysort":"500",
        "citycode":"210100",
        "citytype":"3",
        "city_full_name":"辽宁省沈阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210200,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"大连市",
        "citysort":"515",
        "citycode":"210200",
        "citytype":"3",
        "city_full_name":"辽宁省大连市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210300,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"鞍山市",
        "citysort":"527",
        "citycode":"210300",
        "citytype":"3",
        "city_full_name":"辽宁省鞍山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210400,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"抚顺市",
        "citysort":"536",
        "citycode":"210400",
        "citytype":"3",
        "city_full_name":"辽宁省抚顺市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210500,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"本溪市",
        "citysort":"545",
        "citycode":"210500",
        "citytype":"3",
        "city_full_name":"辽宁省本溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210600,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"丹东市",
        "citysort":"553",
        "citycode":"210600",
        "citytype":"3",
        "city_full_name":"辽宁省丹东市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210700,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"锦州市",
        "citysort":"561",
        "citycode":"210700",
        "citytype":"3",
        "city_full_name":"辽宁省锦州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210800,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"营口市",
        "citysort":"570",
        "citycode":"210800",
        "citytype":"3",
        "city_full_name":"辽宁省营口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210900,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"阜新市",
        "citysort":"578",
        "citycode":"210900",
        "citytype":"3",
        "city_full_name":"辽宁省阜新市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211000,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"辽阳市",
        "citysort":"587",
        "citycode":"211000",
        "citytype":"3",
        "city_full_name":"辽宁省辽阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211100,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"盘锦市",
        "citysort":"596",
        "citycode":"211100",
        "citytype":"3",
        "city_full_name":"辽宁省盘锦市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211200,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"铁岭市",
        "citysort":"602",
        "citycode":"211200",
        "citytype":"3",
        "city_full_name":"辽宁省铁岭市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211300,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"朝阳市",
        "citysort":"611",
        "citycode":"211300",
        "citytype":"3",
        "city_full_name":"辽宁省朝阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211400,
        "pcityid":"210000",
        "pcityids":"1,210000,",
        "cityname":"葫芦岛市",
        "citysort":"620",
        "citycode":"211400",
        "citytype":"3",
        "city_full_name":"辽宁省葫芦岛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220100,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"长春市",
        "citysort":"629",
        "citycode":"220100",
        "citytype":"3",
        "city_full_name":"吉林省长春市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220200,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"吉林市",
        "citysort":"641",
        "citycode":"220200",
        "citytype":"3",
        "city_full_name":"吉林省吉林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220300,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"四*市",
        "citysort":"652",
        "citycode":"220300",
        "citytype":"3",
        "city_full_name":"吉林省四*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220400,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"辽源市",
        "citysort":"660",
        "citycode":"220400",
        "citytype":"3",
        "city_full_name":"吉林省辽源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220500,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"通化市",
        "citysort":"666",
        "citycode":"220500",
        "citytype":"3",
        "city_full_name":"吉林省通化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220600,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"白山市",
        "citysort":"675",
        "citycode":"220600",
        "citytype":"3",
        "city_full_name":"吉林省白山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220700,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"松原市",
        "citysort":"683",
        "citycode":"220700",
        "citytype":"3",
        "city_full_name":"吉林省松原市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220800,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"白城市",
        "citysort":"690",
        "citycode":"220800",
        "citytype":"3",
        "city_full_name":"吉林省白城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222400,
        "pcityid":"220000",
        "pcityids":"1,220000,",
        "cityname":"延边朝鲜族自治州",
        "citysort":"697",
        "citycode":"222400",
        "citytype":"3",
        "city_full_name":"吉林省延边朝鲜族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":230100,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"哈尔滨市",
        "citysort":"707",
        "citycode":"230100",
        "citytype":"3",
        "city_full_name":"黑龙江省哈尔滨市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230200,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"齐齐哈尔市",
        "citysort":"727",
        "citycode":"230200",
        "citytype":"3",
        "city_full_name":"黑龙江省齐齐哈尔市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230300,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"鸡*市",
        "citysort":"745",
        "citycode":"230300",
        "citytype":"3",
        "city_full_name":"黑龙江省鸡*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230400,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"鹤岗市",
        "citysort":"756",
        "citycode":"230400",
        "citytype":"3",
        "city_full_name":"黑龙江省鹤岗市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230500,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"双鸭山市",
        "citysort":"766",
        "citycode":"230500",
        "citytype":"3",
        "city_full_name":"黑龙江省双鸭山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230600,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"大庆市",
        "citysort":"776",
        "citycode":"230600",
        "citytype":"3",
        "city_full_name":"黑龙江省大庆市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230700,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"伊春市",
        "citysort":"787",
        "citycode":"230700",
        "citytype":"3",
        "city_full_name":"黑龙江省伊春市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230800,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"佳木斯市",
        "citysort":"806",
        "citycode":"230800",
        "citytype":"3",
        "city_full_name":"黑龙江省佳木斯市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230900,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"七台河市",
        "citysort":"818",
        "citycode":"230900",
        "citytype":"3",
        "city_full_name":"黑龙江省七台河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231000,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"牡丹江市",
        "citysort":"824",
        "citycode":"231000",
        "citytype":"3",
        "city_full_name":"黑龙江省牡丹江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231100,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"黑河市",
        "citysort":"836",
        "citycode":"231100",
        "citytype":"3",
        "city_full_name":"黑龙江省黑河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231200,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"绥化市",
        "citysort":"844",
        "citycode":"231200",
        "citytype":"3",
        "city_full_name":"黑龙江省绥化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":232700,
        "pcityid":"230000",
        "pcityids":"1,230000,",
        "cityname":"大兴安岭地区",
        "citysort":"856",
        "citycode":"232700",
        "citytype":"3",
        "city_full_name":"黑龙江省大兴安岭地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310100,
        "pcityid":"310000",
        "pcityids":"1,310000,",
        "cityname":"市辖区",
        "citysort":"861",
        "citycode":"310100",
        "citytype":"3",
        "city_full_name":"上海市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310200,
        "pcityid":"310000",
        "pcityids":"1,310000,",
        "cityname":"县",
        "citysort":"878",
        "citycode":"310200",
        "citytype":"3",
        "city_full_name":"上海市县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320100,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"南京市",
        "citysort":"881",
        "citycode":"320100",
        "citytype":"3",
        "city_full_name":"江苏省南京市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320200,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"无锡市",
        "citysort":"894",
        "citycode":"320200",
        "citytype":"3",
        "city_full_name":"江苏省无锡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320300,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"徐州市",
        "citysort":"904",
        "citycode":"320300",
        "citytype":"3",
        "city_full_name":"江苏省徐州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320400,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"常州市",
        "citysort":"916",
        "citycode":"320400",
        "citytype":"3",
        "city_full_name":"江苏省常州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320500,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"苏州市",
        "citysort":"925",
        "citycode":"320500",
        "citytype":"3",
        "city_full_name":"江苏省苏州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320600,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"南通市",
        "citysort":"936",
        "citycode":"320600",
        "citytype":"3",
        "city_full_name":"江苏省南通市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320700,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"连云港市",
        "citysort":"946",
        "citycode":"320700",
        "citytype":"3",
        "city_full_name":"江苏省连云港市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320800,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"淮安市",
        "citysort":"954",
        "citycode":"320800",
        "citytype":"3",
        "city_full_name":"江苏省淮安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320900,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"盐城市",
        "citysort":"964",
        "citycode":"320900",
        "citytype":"3",
        "city_full_name":"江苏省盐城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321000,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"扬州市",
        "citysort":"975",
        "citycode":"321000",
        "citytype":"3",
        "city_full_name":"江苏省扬州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321100,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"镇江市",
        "citysort":"983",
        "citycode":"321100",
        "citytype":"3",
        "city_full_name":"江苏省镇江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321200,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"泰州市",
        "citysort":"991",
        "citycode":"321200",
        "citytype":"3",
        "city_full_name":"江苏省泰州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321300,
        "pcityid":"320000",
        "pcityids":"1,320000,",
        "cityname":"宿迁市",
        "citysort":"999",
        "citycode":"321300",
        "citytype":"3",
        "city_full_name":"江苏省宿迁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330100,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"杭州市",
        "citysort":"1007",
        "citycode":"330100",
        "citytype":"3",
        "city_full_name":"浙江省杭州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330200,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"宁波市",
        "citysort":"1022",
        "citycode":"330200",
        "citytype":"3",
        "city_full_name":"浙江省宁波市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330300,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"温州市",
        "citysort":"1035",
        "citycode":"330300",
        "citytype":"3",
        "city_full_name":"浙江省温州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330400,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"嘉兴市",
        "citysort":"1048",
        "citycode":"330400",
        "citytype":"3",
        "city_full_name":"浙江省嘉兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330500,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"湖州市",
        "citysort":"1057",
        "citycode":"330500",
        "citytype":"3",
        "city_full_name":"浙江省湖州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330600,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"绍兴市",
        "citysort":"1064",
        "citycode":"330600",
        "citytype":"3",
        "city_full_name":"浙江省绍兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330700,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"金华市",
        "citysort":"1072",
        "citycode":"330700",
        "citytype":"3",
        "city_full_name":"浙江省金华市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330800,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"衢州市",
        "citysort":"1083",
        "citycode":"330800",
        "citytype":"3",
        "city_full_name":"浙江省衢州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330900,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"舟山市",
        "citysort":"1091",
        "citycode":"330900",
        "citytype":"3",
        "city_full_name":"浙江省舟山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":331000,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"台州市",
        "citysort":"1097",
        "citycode":"331000",
        "citytype":"3",
        "city_full_name":"浙江省台州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":331100,
        "pcityid":"330000",
        "pcityids":"1,330000,",
        "cityname":"丽水市",
        "citysort":"1108",
        "citycode":"331100",
        "citytype":"3",
        "city_full_name":"浙江省丽水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340100,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"合肥市",
        "citysort":"1120",
        "citycode":"340100",
        "citytype":"3",
        "city_full_name":"安徽省合肥市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340200,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"芜湖市",
        "citysort":"1131",
        "citycode":"340200",
        "citytype":"3",
        "city_full_name":"安徽省芜湖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340300,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"蚌埠市",
        "citysort":"1141",
        "citycode":"340300",
        "citytype":"3",
        "city_full_name":"安徽省蚌埠市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340400,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"淮南市",
        "citysort":"1150",
        "citycode":"340400",
        "citytype":"3",
        "city_full_name":"安徽省淮南市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340500,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"马鞍山市",
        "citysort":"1158",
        "citycode":"340500",
        "citytype":"3",
        "city_full_name":"安徽省马鞍山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340600,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"淮北市",
        "citysort":"1166",
        "citycode":"340600",
        "citytype":"3",
        "city_full_name":"安徽省淮北市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340700,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"铜陵市",
        "citysort":"1172",
        "citycode":"340700",
        "citytype":"3",
        "city_full_name":"安徽省铜陵市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340800,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"安庆市",
        "citysort":"1178",
        "citycode":"340800",
        "citytype":"3",
        "city_full_name":"安徽省安庆市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341000,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"黄山市",
        "citysort":"1191",
        "citycode":"341000",
        "citytype":"3",
        "city_full_name":"安徽省黄山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341100,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"滁州市",
        "citysort":"1200",
        "citycode":"341100",
        "citytype":"3",
        "city_full_name":"安徽省滁州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341200,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"阜阳市",
        "citysort":"1210",
        "citycode":"341200",
        "citytype":"3",
        "city_full_name":"安徽省阜阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341300,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"宿州市",
        "citysort":"1220",
        "citycode":"341300",
        "citytype":"3",
        "city_full_name":"安徽省宿州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341500,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"六安市",
        "citysort":"1227",
        "citycode":"341500",
        "citytype":"3",
        "city_full_name":"安徽省六安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341600,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"亳州市",
        "citysort":"1236",
        "citycode":"341600",
        "citytype":"3",
        "city_full_name":"安徽省亳州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341700,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"池州市",
        "citysort":"1242",
        "citycode":"341700",
        "citytype":"3",
        "city_full_name":"安徽省池州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341800,
        "pcityid":"340000",
        "pcityids":"1,340000,",
        "cityname":"宣城市",
        "citysort":"1248",
        "citycode":"341800",
        "citytype":"3",
        "city_full_name":"安徽省宣城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350100,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"福州市",
        "citysort":"1258",
        "citycode":"350100",
        "citytype":"3",
        "city_full_name":"福建省福州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350200,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"厦门市",
        "citysort":"1273",
        "citycode":"350200",
        "citytype":"3",
        "city_full_name":"福建省厦门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350300,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"莆田市",
        "citysort":"1281",
        "citycode":"350300",
        "citytype":"3",
        "city_full_name":"福建省莆田市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350400,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"三明市",
        "citysort":"1288",
        "citycode":"350400",
        "citytype":"3",
        "city_full_name":"福建省三明市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350500,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"泉州市",
        "citysort":"1302",
        "citycode":"350500",
        "citytype":"3",
        "city_full_name":"福建省泉州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350600,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"漳州市",
        "citysort":"1316",
        "citycode":"350600",
        "citytype":"3",
        "city_full_name":"福建省漳州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350700,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"南*市",
        "citysort":"1329",
        "citycode":"350700",
        "citytype":"3",
        "city_full_name":"福建省南*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350800,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"龙岩市",
        "citysort":"1341",
        "citycode":"350800",
        "citytype":"3",
        "city_full_name":"福建省龙岩市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350900,
        "pcityid":"350000",
        "pcityids":"1,350000,",
        "cityname":"宁德市",
        "citysort":"1350",
        "citycode":"350900",
        "citytype":"3",
        "city_full_name":"福建省宁德市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360100,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"南昌市",
        "citysort":"1362",
        "citycode":"360100",
        "citytype":"3",
        "city_full_name":"江*省南昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360200,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"景德镇市",
        "citysort":"1373",
        "citycode":"360200",
        "citytype":"3",
        "city_full_name":"江*省景德镇市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360300,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"萍乡市",
        "citysort":"1379",
        "citycode":"360300",
        "citytype":"3",
        "city_full_name":"江*省萍乡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360400,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"九江市",
        "citysort":"1386",
        "citycode":"360400",
        "citytype":"3",
        "city_full_name":"江*省九江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360500,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"新余市",
        "citysort":"1401",
        "citycode":"360500",
        "citytype":"3",
        "city_full_name":"江*省新余市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360600,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"鹰潭市",
        "citysort":"1405",
        "citycode":"360600",
        "citytype":"3",
        "city_full_name":"江*省鹰潭市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360700,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"赣州市",
        "citysort":"1410",
        "citycode":"360700",
        "citytype":"3",
        "city_full_name":"江*省赣州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360800,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"吉安市",
        "citysort":"1430",
        "citycode":"360800",
        "citytype":"3",
        "city_full_name":"江*省吉安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360900,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"宜春市",
        "citysort":"1445",
        "citycode":"360900",
        "citytype":"3",
        "city_full_name":"江*省宜春市",
        "is_virtual_region":"0"
    },
    {
        "cityid":361000,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"抚州市",
        "citysort":"1457",
        "citycode":"361000",
        "citytype":"3",
        "city_full_name":"江*省抚州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":361100,
        "pcityid":"360000",
        "pcityids":"1,360000,",
        "cityname":"上饶市",
        "citysort":"1470",
        "citycode":"361100",
        "citytype":"3",
        "city_full_name":"江*省上饶市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370100,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"济南市",
        "citysort":"1485",
        "citycode":"370100",
        "citytype":"3",
        "city_full_name":"山东省济南市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370200,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"青岛市",
        "citysort":"1497",
        "citycode":"370200",
        "citytype":"3",
        "city_full_name":"山东省青岛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370300,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"淄博市",
        "citysort":"1509",
        "citycode":"370300",
        "citytype":"3",
        "city_full_name":"山东省淄博市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370400,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"枣庄市",
        "citysort":"1519",
        "citycode":"370400",
        "citytype":"3",
        "city_full_name":"山东省枣庄市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370500,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"东营市",
        "citysort":"1527",
        "citycode":"370500",
        "citytype":"3",
        "city_full_name":"山东省东营市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370600,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"烟台市",
        "citysort":"1534",
        "citycode":"370600",
        "citytype":"3",
        "city_full_name":"山东省烟台市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370700,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"潍坊市",
        "citysort":"1548",
        "citycode":"370700",
        "citytype":"3",
        "city_full_name":"山东省潍坊市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370800,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"济宁市",
        "citysort":"1562",
        "citycode":"370800",
        "citytype":"3",
        "city_full_name":"山东省济宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370900,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"泰安市",
        "citysort":"1575",
        "citycode":"370900",
        "citytype":"3",
        "city_full_name":"山东省泰安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371000,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"威海市",
        "citysort":"1583",
        "citycode":"371000",
        "citytype":"3",
        "city_full_name":"山东省威海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371100,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"日照市",
        "citysort":"1589",
        "citycode":"371100",
        "citytype":"3",
        "city_full_name":"山东省日照市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371200,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"莱芜市",
        "citysort":"1595",
        "citycode":"371200",
        "citytype":"3",
        "city_full_name":"山东省莱芜市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371300,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"临沂市",
        "citysort":"1599",
        "citycode":"371300",
        "citytype":"3",
        "city_full_name":"山东省临沂市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371400,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"德州市",
        "citysort":"1613",
        "citycode":"371400",
        "citytype":"3",
        "city_full_name":"山东省德州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371500,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"聊城市",
        "citysort":"1626",
        "citycode":"371500",
        "citytype":"3",
        "city_full_name":"山东省聊城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371600,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"滨州市",
        "citysort":"1636",
        "citycode":"371600",
        "citytype":"3",
        "city_full_name":"山东省滨州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371700,
        "pcityid":"370000",
        "pcityids":"1,370000,",
        "cityname":"菏泽市",
        "citysort":"1645",
        "citycode":"371700",
        "citytype":"3",
        "city_full_name":"山东省菏泽市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410100,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"郑州市",
        "citysort":"1657",
        "citycode":"410100",
        "citytype":"3",
        "city_full_name":"河南省郑州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410200,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"开封市",
        "citysort":"1671",
        "citycode":"410200",
        "citytype":"3",
        "city_full_name":"河南省开封市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410300,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"洛阳市",
        "citysort":"1683",
        "citycode":"410300",
        "citytype":"3",
        "city_full_name":"河南省洛阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410400,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"*顶山市",
        "citysort":"1700",
        "citycode":"410400",
        "citytype":"3",
        "city_full_name":"河南省*顶山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410500,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"安阳市",
        "citysort":"1712",
        "citycode":"410500",
        "citytype":"3",
        "city_full_name":"河南省安阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410600,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"鹤壁市",
        "citysort":"1723",
        "citycode":"410600",
        "citytype":"3",
        "city_full_name":"河南省鹤壁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410700,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"新乡市",
        "citysort":"1730",
        "citycode":"410700",
        "citytype":"3",
        "city_full_name":"河南省新乡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410800,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"焦作市",
        "citysort":"1744",
        "citycode":"410800",
        "citytype":"3",
        "city_full_name":"河南省焦作市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410900,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"濮阳市",
        "citysort":"1756",
        "citycode":"410900",
        "citytype":"3",
        "city_full_name":"河南省濮阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411000,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"许昌市",
        "citysort":"1764",
        "citycode":"411000",
        "citytype":"3",
        "city_full_name":"河南省许昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411100,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"漯河市",
        "citysort":"1772",
        "citycode":"411100",
        "citytype":"3",
        "city_full_name":"河南省漯河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411200,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"三门峡市",
        "citysort":"1779",
        "citycode":"411200",
        "citytype":"3",
        "city_full_name":"河南省三门峡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411300,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"南阳市",
        "citysort":"1787",
        "citycode":"411300",
        "citytype":"3",
        "city_full_name":"河南省南阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411400,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"商丘市",
        "citysort":"1802",
        "citycode":"411400",
        "citytype":"3",
        "city_full_name":"河南省商丘市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411500,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"信阳市",
        "citysort":"1813",
        "citycode":"411500",
        "citytype":"3",
        "city_full_name":"河南省信阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411600,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"周口市",
        "citysort":"1825",
        "citycode":"411600",
        "citytype":"3",
        "city_full_name":"河南省周口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411700,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"驻马店市",
        "citysort":"1837",
        "citycode":"411700",
        "citytype":"3",
        "city_full_name":"河南省驻马店市",
        "is_virtual_region":"0"
    },
    {
        "cityid":419000,
        "pcityid":"410000",
        "pcityids":"1,410000,",
        "cityname":"省直辖县级行政区划",
        "citysort":"1849",
        "citycode":"419000",
        "citytype":"3",
        "city_full_name":"河南省省直辖县级行政区划",
        "is_virtual_region":"0"
    },
    {
        "cityid":420100,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"武汉市",
        "citysort":"1852",
        "citycode":"420100",
        "citytype":"3",
        "city_full_name":"湖北省武汉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420200,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"黄石市",
        "citysort":"1867",
        "citycode":"420200",
        "citytype":"3",
        "city_full_name":"湖北省黄石市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420300,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"十堰市",
        "citysort":"1875",
        "citycode":"420300",
        "citytype":"3",
        "city_full_name":"湖北省十堰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420500,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"宜昌市",
        "citysort":"1885",
        "citycode":"420500",
        "citytype":"3",
        "city_full_name":"湖北省宜昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420600,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"襄阳市",
        "citysort":"1900",
        "citycode":"420600",
        "citytype":"3",
        "city_full_name":"湖北省襄阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420700,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"鄂州市",
        "citysort":"1911",
        "citycode":"420700",
        "citytype":"3",
        "city_full_name":"湖北省鄂州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420800,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"荆门市",
        "citysort":"1916",
        "citycode":"420800",
        "citytype":"3",
        "city_full_name":"湖北省荆门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420900,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"孝感市",
        "citysort":"1923",
        "citycode":"420900",
        "citytype":"3",
        "city_full_name":"湖北省孝感市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421000,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"荆州市",
        "citysort":"1932",
        "citycode":"421000",
        "citytype":"3",
        "city_full_name":"湖北省荆州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421100,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"黄冈市",
        "citysort":"1942",
        "citycode":"421100",
        "citytype":"3",
        "city_full_name":"湖北省黄冈市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421200,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"咸宁市",
        "citysort":"1954",
        "citycode":"421200",
        "citytype":"3",
        "city_full_name":"湖北省咸宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421300,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"随州市",
        "citysort":"1962",
        "citycode":"421300",
        "citytype":"3",
        "city_full_name":"湖北省随州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":422800,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"恩施土家族苗族自治州",
        "citysort":"1967",
        "citycode":"422800",
        "citytype":"3",
        "city_full_name":"湖北省恩施土家族苗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":429000,
        "pcityid":"420000",
        "pcityids":"1,420000,",
        "cityname":"省直辖县级行政区划",
        "citysort":"1976",
        "citycode":"429000",
        "citytype":"3",
        "city_full_name":"湖北省省直辖县级行政区划",
        "is_virtual_region":"0"
    },
    {
        "cityid":430100,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"长沙市",
        "citysort":"1982",
        "citycode":"430100",
        "citytype":"3",
        "city_full_name":"湖南省长沙市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430200,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"株洲市",
        "citysort":"1993",
        "citycode":"430200",
        "citytype":"3",
        "city_full_name":"湖南省株洲市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430300,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"湘潭市",
        "citysort":"2004",
        "citycode":"430300",
        "citytype":"3",
        "city_full_name":"湖南省湘潭市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430400,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"衡阳市",
        "citysort":"2011",
        "citycode":"430400",
        "citytype":"3",
        "city_full_name":"湖南省衡阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430500,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"邵阳市",
        "citysort":"2025",
        "citycode":"430500",
        "citytype":"3",
        "city_full_name":"湖南省邵阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430600,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"岳阳市",
        "citysort":"2039",
        "citycode":"430600",
        "citytype":"3",
        "city_full_name":"湖南省岳阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430700,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"常德市",
        "citysort":"2050",
        "citycode":"430700",
        "citytype":"3",
        "city_full_name":"湖南省常德市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430800,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"张家界市",
        "citysort":"2061",
        "citycode":"430800",
        "citytype":"3",
        "city_full_name":"湖南省张家界市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430900,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"益阳市",
        "citysort":"2067",
        "citycode":"430900",
        "citytype":"3",
        "city_full_name":"湖南省益阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431000,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"郴州市",
        "citysort":"2075",
        "citycode":"431000",
        "citytype":"3",
        "city_full_name":"湖南省郴州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431100,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"永州市",
        "citysort":"2088",
        "citycode":"431100",
        "citytype":"3",
        "city_full_name":"湖南省永州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431200,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"怀化市",
        "citysort":"2101",
        "citycode":"431200",
        "citytype":"3",
        "city_full_name":"湖南省怀化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431300,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"娄底市",
        "citysort":"2115",
        "citycode":"431300",
        "citytype":"3",
        "city_full_name":"湖南省娄底市",
        "is_virtual_region":"0"
    },
    {
        "cityid":433100,
        "pcityid":"430000",
        "pcityids":"1,430000,",
        "cityname":"湘*土家族苗族自治州",
        "citysort":"2122",
        "citycode":"433100",
        "citytype":"3",
        "city_full_name":"湖南省湘*土家族苗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":440100,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"广州市",
        "citysort":"2132",
        "citycode":"440100",
        "citytype":"3",
        "city_full_name":"广东省广州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440200,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"韶关市",
        "citysort":"2146",
        "citycode":"440200",
        "citytype":"3",
        "city_full_name":"广东省韶关市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440300,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"深圳市",
        "citysort":"2158",
        "citycode":"440300",
        "citytype":"3",
        "city_full_name":"广东省深圳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440400,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"珠海市",
        "citysort":"2166",
        "citycode":"440400",
        "citytype":"3",
        "city_full_name":"广东省珠海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440500,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"汕头市",
        "citysort":"2171",
        "citycode":"440500",
        "citytype":"3",
        "city_full_name":"广东省汕头市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440600,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"佛山市",
        "citysort":"2180",
        "citycode":"440600",
        "citytype":"3",
        "city_full_name":"广东省佛山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440700,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"江门市",
        "citysort":"2187",
        "citycode":"440700",
        "citytype":"3",
        "city_full_name":"广东省江门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440800,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"湛江市",
        "citysort":"2196",
        "citycode":"440800",
        "citytype":"3",
        "city_full_name":"广东省湛江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440900,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"茂名市",
        "citysort":"2207",
        "citycode":"440900",
        "citytype":"3",
        "city_full_name":"广东省茂名市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441200,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"肇庆市",
        "citysort":"2214",
        "citycode":"441200",
        "citytype":"3",
        "city_full_name":"广东省肇庆市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441300,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"惠州市",
        "citysort":"2224",
        "citycode":"441300",
        "citytype":"3",
        "city_full_name":"广东省惠州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441400,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"梅州市",
        "citysort":"2231",
        "citycode":"441400",
        "citytype":"3",
        "city_full_name":"广东省梅州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441500,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"汕尾市",
        "citysort":"2241",
        "citycode":"441500",
        "citytype":"3",
        "city_full_name":"广东省汕尾市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441600,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"河源市",
        "citysort":"2247",
        "citycode":"441600",
        "citytype":"3",
        "city_full_name":"广东省河源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441700,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"阳江市",
        "citysort":"2255",
        "citycode":"441700",
        "citytype":"3",
        "city_full_name":"广东省阳江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441800,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"清远市",
        "citysort":"2261",
        "citycode":"441800",
        "citytype":"3",
        "city_full_name":"广东省清远市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441900,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"东莞市",
        "citysort":"2271",
        "citycode":"441900",
        "citytype":"3",
        "city_full_name":"广东省东莞市",
        "is_virtual_region":"0"
    },
    {
        "cityid":442000,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"中山市",
        "citysort":"2272",
        "citycode":"442000",
        "citytype":"3",
        "city_full_name":"广东省中山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":445100,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"潮州市",
        "citysort":"2273",
        "citycode":"445100",
        "citytype":"3",
        "city_full_name":"广东省潮州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":445200,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"揭阳市",
        "citysort":"2278",
        "citycode":"445200",
        "citytype":"3",
        "city_full_name":"广东省揭阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":445300,
        "pcityid":"440000",
        "pcityids":"1,440000,",
        "cityname":"云浮市",
        "citysort":"2285",
        "citycode":"445300",
        "citytype":"3",
        "city_full_name":"广东省云浮市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450100,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"南宁市",
        "citysort":"2293",
        "citycode":"450100",
        "citytype":"3",
        "city_full_name":"广*壮族自治区南宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450200,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"柳州市",
        "citysort":"2307",
        "citycode":"450200",
        "citytype":"3",
        "city_full_name":"广*壮族自治区柳州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450300,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"桂林市",
        "citysort":"2319",
        "citycode":"450300",
        "citytype":"3",
        "city_full_name":"广*壮族自治区桂林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450400,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"梧州市",
        "citysort":"2338",
        "citycode":"450400",
        "citytype":"3",
        "city_full_name":"广*壮族自治区梧州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450500,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"北海市",
        "citysort":"2347",
        "citycode":"450500",
        "citytype":"3",
        "city_full_name":"广*壮族自治区北海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450600,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"防城港市",
        "citysort":"2353",
        "citycode":"450600",
        "citytype":"3",
        "city_full_name":"广*壮族自治区防城港市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450700,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"钦州市",
        "citysort":"2359",
        "citycode":"450700",
        "citytype":"3",
        "city_full_name":"广*壮族自治区钦州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450800,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"贵港市",
        "citysort":"2365",
        "citycode":"450800",
        "citytype":"3",
        "city_full_name":"广*壮族自治区贵港市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450900,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"玉林市",
        "citysort":"2372",
        "citycode":"450900",
        "citytype":"3",
        "city_full_name":"广*壮族自治区玉林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451000,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"百色市",
        "citysort":"2381",
        "citycode":"451000",
        "citytype":"3",
        "city_full_name":"广*壮族自治区百色市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451100,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"贺州市",
        "citysort":"2395",
        "citycode":"451100",
        "citytype":"3",
        "city_full_name":"广*壮族自治区贺州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451200,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"河池市",
        "citysort":"2401",
        "citycode":"451200",
        "citytype":"3",
        "city_full_name":"广*壮族自治区河池市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451300,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"来宾市",
        "citysort":"2414",
        "citycode":"451300",
        "citytype":"3",
        "city_full_name":"广*壮族自治区来宾市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451400,
        "pcityid":"450000",
        "pcityids":"1,450000,",
        "cityname":"崇左市",
        "citysort":"2422",
        "citycode":"451400",
        "citytype":"3",
        "city_full_name":"广*壮族自治区崇左市",
        "is_virtual_region":"0"
    },
    {
        "cityid":460100,
        "pcityid":"460000",
        "pcityids":"1,460000,",
        "cityname":"海口市",
        "citysort":"2432",
        "citycode":"460100",
        "citytype":"3",
        "city_full_name":"海南省海口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":460200,
        "pcityid":"460000",
        "pcityids":"1,460000,",
        "cityname":"三亚市",
        "citysort":"2438",
        "citycode":"460200",
        "citytype":"3",
        "city_full_name":"海南省三亚市",
        "is_virtual_region":"0"
    },
    {
        "cityid":460300,
        "pcityid":"460000",
        "pcityids":"1,460000,",
        "cityname":"三沙市",
        "citysort":"2444",
        "citycode":"460300",
        "citytype":"3",
        "city_full_name":"海南省三沙市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469000,
        "pcityid":"460000",
        "pcityids":"1,460000,",
        "cityname":"省直辖县级行政区划",
        "citysort":"2445",
        "citycode":"469000",
        "citytype":"3",
        "city_full_name":"海南省省直辖县级行政区划",
        "is_virtual_region":"0"
    },
    {
        "cityid":500100,
        "pcityid":"500000",
        "pcityids":"1,500000,",
        "cityname":"市辖区",
        "citysort":"2463",
        "citycode":"500100",
        "citytype":"3",
        "city_full_name":"重庆市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500200,
        "pcityid":"500000",
        "pcityids":"1,500000,",
        "cityname":"县",
        "citysort":"2485",
        "citycode":"500200",
        "citytype":"3",
        "city_full_name":"重庆市县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510100,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"成都市",
        "citysort":"2504",
        "citycode":"510100",
        "citytype":"3",
        "city_full_name":"四川省成都市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510300,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"自贡市",
        "citysort":"2525",
        "citycode":"510300",
        "citytype":"3",
        "city_full_name":"四川省自贡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510400,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"攀枝花市",
        "citysort":"2533",
        "citycode":"510400",
        "citytype":"3",
        "city_full_name":"四川省攀枝花市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510500,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"泸州市",
        "citysort":"2540",
        "citycode":"510500",
        "citytype":"3",
        "city_full_name":"四川省泸州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510600,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"德阳市",
        "citysort":"2549",
        "citycode":"510600",
        "citytype":"3",
        "city_full_name":"四川省德阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510700,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"绵阳市",
        "citysort":"2557",
        "citycode":"510700",
        "citytype":"3",
        "city_full_name":"四川省绵阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510800,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"广元市",
        "citysort":"2568",
        "citycode":"510800",
        "citytype":"3",
        "city_full_name":"四川省广元市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510900,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"遂宁市",
        "citysort":"2577",
        "citycode":"510900",
        "citytype":"3",
        "city_full_name":"四川省遂宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511000,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"内江市",
        "citysort":"2584",
        "citycode":"511000",
        "citytype":"3",
        "city_full_name":"四川省内江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511100,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"乐山市",
        "citysort":"2591",
        "citycode":"511100",
        "citytype":"3",
        "city_full_name":"四川省乐山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511300,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"南充市",
        "citysort":"2604",
        "citycode":"511300",
        "citytype":"3",
        "city_full_name":"四川省南充市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511400,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"眉山市",
        "citysort":"2615",
        "citycode":"511400",
        "citytype":"3",
        "city_full_name":"四川省眉山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511500,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"宜宾市",
        "citysort":"2623",
        "citycode":"511500",
        "citytype":"3",
        "city_full_name":"四川省宜宾市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511600,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"广安市",
        "citysort":"2635",
        "citycode":"511600",
        "citytype":"3",
        "city_full_name":"四川省广安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511700,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"达州市",
        "citysort":"2643",
        "citycode":"511700",
        "citytype":"3",
        "city_full_name":"四川省达州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511800,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"雅安市",
        "citysort":"2652",
        "citycode":"511800",
        "citytype":"3",
        "city_full_name":"四川省雅安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511900,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"巴中市",
        "citysort":"2662",
        "citycode":"511900",
        "citytype":"3",
        "city_full_name":"四川省巴中市",
        "is_virtual_region":"0"
    },
    {
        "cityid":512000,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"资阳市",
        "citysort":"2669",
        "citycode":"512000",
        "citytype":"3",
        "city_full_name":"四川省资阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":513200,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"阿坝藏族羌族自治州",
        "citysort":"2675",
        "citycode":"513200",
        "citytype":"3",
        "city_full_name":"四川省阿坝藏族羌族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":513300,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"甘孜藏族自治州",
        "citysort":"2689",
        "citycode":"513300",
        "citytype":"3",
        "city_full_name":"四川省甘孜藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":513400,
        "pcityid":"510000",
        "pcityids":"1,510000,",
        "cityname":"凉山彝族自治州",
        "citysort":"2708",
        "citycode":"513400",
        "citytype":"3",
        "city_full_name":"四川省凉山彝族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":520100,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"贵阳市",
        "citysort":"2727",
        "citycode":"520100",
        "citytype":"3",
        "city_full_name":"贵州省贵阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520200,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"六盘水市",
        "citysort":"2739",
        "citycode":"520200",
        "citytype":"3",
        "city_full_name":"贵州省六盘水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520300,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"遵义市",
        "citysort":"2744",
        "citycode":"520300",
        "citytype":"3",
        "city_full_name":"贵州省遵义市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520400,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"安顺市",
        "citysort":"2760",
        "citycode":"520400",
        "citytype":"3",
        "city_full_name":"贵州省安顺市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520500,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"毕节市",
        "citysort":"2768",
        "citycode":"520500",
        "citytype":"3",
        "city_full_name":"贵州省毕节市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520600,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"铜仁市",
        "citysort":"2778",
        "citycode":"520600",
        "citytype":"3",
        "city_full_name":"贵州省铜仁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":522300,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"黔*南布依族苗族自治州",
        "citysort":"2790",
        "citycode":"522300",
        "citytype":"3",
        "city_full_name":"贵州省黔*南布依族苗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":522600,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"黔东南苗族侗族自治州",
        "citysort":"2799",
        "citycode":"522600",
        "citytype":"3",
        "city_full_name":"贵州省黔东南苗族侗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":522700,
        "pcityid":"520000",
        "pcityids":"1,520000,",
        "cityname":"黔南布依族苗族自治州",
        "citysort":"2816",
        "citycode":"522700",
        "citytype":"3",
        "city_full_name":"贵州省黔南布依族苗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":530100,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"昆明市",
        "citysort":"2830",
        "citycode":"530100",
        "citytype":"3",
        "city_full_name":"云南省昆明市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530300,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"曲靖市",
        "citysort":"2846",
        "citycode":"530300",
        "citytype":"3",
        "city_full_name":"云南省曲靖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530400,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"玉溪市",
        "citysort":"2857",
        "citycode":"530400",
        "citytype":"3",
        "city_full_name":"云南省玉溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530500,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"保山市",
        "citysort":"2868",
        "citycode":"530500",
        "citytype":"3",
        "city_full_name":"云南省保山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530600,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"昭通市",
        "citysort":"2875",
        "citycode":"530600",
        "citytype":"3",
        "city_full_name":"云南省昭通市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530700,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"丽江市",
        "citysort":"2888",
        "citycode":"530700",
        "citytype":"3",
        "city_full_name":"云南省丽江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530800,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"普洱市",
        "citysort":"2895",
        "citycode":"530800",
        "citytype":"3",
        "city_full_name":"云南省普洱市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530900,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"临沧市",
        "citysort":"2907",
        "citycode":"530900",
        "citytype":"3",
        "city_full_name":"云南省临沧市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532300,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"楚雄彝族自治州",
        "citysort":"2917",
        "citycode":"532300",
        "citytype":"3",
        "city_full_name":"云南省楚雄彝族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":532500,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"红河哈尼族彝族自治州",
        "citysort":"2928",
        "citycode":"532500",
        "citytype":"3",
        "city_full_name":"云南省红河哈尼族彝族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":532600,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"文山壮族苗族自治州",
        "citysort":"2942",
        "citycode":"532600",
        "citytype":"3",
        "city_full_name":"云南省文山壮族苗族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":532800,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"*双版纳傣族自治州",
        "citysort":"2951",
        "citycode":"532800",
        "citytype":"3",
        "city_full_name":"云南省*双版纳傣族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":532900,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"大理白族自治州",
        "citysort":"2955",
        "citycode":"532900",
        "citytype":"3",
        "city_full_name":"云南省大理白族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":533100,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"德宏傣族景颇族自治州",
        "citysort":"2968",
        "citycode":"533100",
        "citytype":"3",
        "city_full_name":"云南省德宏傣族景颇族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":533300,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"怒江傈僳族自治州",
        "citysort":"2974",
        "citycode":"533300",
        "citytype":"3",
        "city_full_name":"云南省怒江傈僳族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":533400,
        "pcityid":"530000",
        "pcityids":"1,530000,",
        "cityname":"迪庆藏族自治州",
        "citysort":"2979",
        "citycode":"533400",
        "citytype":"3",
        "city_full_name":"云南省迪庆藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":540100,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"拉萨市",
        "citysort":"2984",
        "citycode":"540100",
        "citytype":"3",
        "city_full_name":"*藏自治区拉萨市",
        "is_virtual_region":"0"
    },
    {
        "cityid":540200,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"日喀则市",
        "citysort":"2994",
        "citycode":"540200",
        "citytype":"3",
        "city_full_name":"*藏自治区日喀则市",
        "is_virtual_region":"0"
    },
    {
        "cityid":542100,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"昌都地区",
        "citysort":"3013",
        "citycode":"542100",
        "citytype":"3",
        "city_full_name":"*藏自治区昌都地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":542200,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"山南地区",
        "citysort":"3025",
        "citycode":"542200",
        "citytype":"3",
        "city_full_name":"*藏自治区山南地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":542400,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"那曲地区",
        "citysort":"3038",
        "citycode":"542400",
        "citytype":"3",
        "city_full_name":"*藏自治区那曲地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":542500,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"阿里地区",
        "citysort":"3050",
        "citycode":"542500",
        "citytype":"3",
        "city_full_name":"*藏自治区阿里地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":542600,
        "pcityid":"540000",
        "pcityids":"1,540000,",
        "cityname":"林芝地区",
        "citysort":"3058",
        "citycode":"542600",
        "citytype":"3",
        "city_full_name":"*藏自治区林芝地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610100,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"*安市",
        "citysort":"3067",
        "citycode":"610100",
        "citytype":"3",
        "city_full_name":"陕*省*安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610200,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"铜川市",
        "citysort":"3082",
        "citycode":"610200",
        "citytype":"3",
        "city_full_name":"陕*省铜川市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610300,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"宝鸡市",
        "citysort":"3088",
        "citycode":"610300",
        "citytype":"3",
        "city_full_name":"陕*省宝鸡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610400,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"咸阳市",
        "citysort":"3102",
        "citycode":"610400",
        "citytype":"3",
        "city_full_name":"陕*省咸阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610500,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"渭南市",
        "citysort":"3118",
        "citycode":"610500",
        "citytype":"3",
        "city_full_name":"陕*省渭南市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610600,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"延安市",
        "citysort":"3131",
        "citycode":"610600",
        "citytype":"3",
        "city_full_name":"陕*省延安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610700,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"汉中市",
        "citysort":"3146",
        "citycode":"610700",
        "citytype":"3",
        "city_full_name":"陕*省汉中市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610800,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"榆林市",
        "citysort":"3159",
        "citycode":"610800",
        "citytype":"3",
        "city_full_name":"陕*省榆林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610900,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"安康市",
        "citysort":"3173",
        "citycode":"610900",
        "citytype":"3",
        "city_full_name":"陕*省安康市",
        "is_virtual_region":"0"
    },
    {
        "cityid":611000,
        "pcityid":"610000",
        "pcityids":"1,610000,",
        "cityname":"商洛市",
        "citysort":"3185",
        "citycode":"611000",
        "citytype":"3",
        "city_full_name":"陕*省商洛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620100,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"兰州市",
        "citysort":"3195",
        "citycode":"620100",
        "citytype":"3",
        "city_full_name":"甘肃省兰州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620200,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"嘉峪关市",
        "citysort":"3205",
        "citycode":"620200",
        "citytype":"3",
        "city_full_name":"甘肃省嘉峪关市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620300,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"金昌市",
        "citysort":"3207",
        "citycode":"620300",
        "citytype":"3",
        "city_full_name":"甘肃省金昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620400,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"白银市",
        "citysort":"3211",
        "citycode":"620400",
        "citytype":"3",
        "city_full_name":"甘肃省白银市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620500,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"天水市",
        "citysort":"3218",
        "citycode":"620500",
        "citytype":"3",
        "city_full_name":"甘肃省天水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620600,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"武威市",
        "citysort":"3227",
        "citycode":"620600",
        "citytype":"3",
        "city_full_name":"甘肃省武威市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620700,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"张掖市",
        "citysort":"3233",
        "citycode":"620700",
        "citytype":"3",
        "city_full_name":"甘肃省张掖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620800,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"*凉市",
        "citysort":"3241",
        "citycode":"620800",
        "citytype":"3",
        "city_full_name":"甘肃省*凉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620900,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"酒泉市",
        "citysort":"3250",
        "citycode":"620900",
        "citytype":"3",
        "city_full_name":"甘肃省酒泉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":621000,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"庆阳市",
        "citysort":"3259",
        "citycode":"621000",
        "citytype":"3",
        "city_full_name":"甘肃省庆阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":621100,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"定*市",
        "citysort":"3269",
        "citycode":"621100",
        "citytype":"3",
        "city_full_name":"甘肃省定*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":621200,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"陇南市",
        "citysort":"3278",
        "citycode":"621200",
        "citytype":"3",
        "city_full_name":"甘肃省陇南市",
        "is_virtual_region":"0"
    },
    {
        "cityid":622900,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"临夏回族自治州",
        "citysort":"3289",
        "citycode":"622900",
        "citytype":"3",
        "city_full_name":"甘肃省临夏回族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":623000,
        "pcityid":"620000",
        "pcityids":"1,620000,",
        "cityname":"甘南藏族自治州",
        "citysort":"3298",
        "citycode":"623000",
        "citytype":"3",
        "city_full_name":"甘肃省甘南藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":630100,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"*宁市",
        "citysort":"3308",
        "citycode":"630100",
        "citytype":"3",
        "city_full_name":"青海省*宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":630200,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"海东市",
        "citysort":"3317",
        "citycode":"630200",
        "citytype":"3",
        "city_full_name":"青海省海东市",
        "is_virtual_region":"0"
    },
    {
        "cityid":632200,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"海北藏族自治州",
        "citysort":"3324",
        "citycode":"632200",
        "citytype":"3",
        "city_full_name":"青海省海北藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":632300,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"黄南藏族自治州",
        "citysort":"3329",
        "citycode":"632300",
        "citytype":"3",
        "city_full_name":"青海省黄南藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":632500,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"海南藏族自治州",
        "citysort":"3334",
        "citycode":"632500",
        "citytype":"3",
        "city_full_name":"青海省海南藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":632600,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"果洛藏族自治州",
        "citysort":"3340",
        "citycode":"632600",
        "citytype":"3",
        "city_full_name":"青海省果洛藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":632700,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"玉树藏族自治州",
        "citysort":"3347",
        "citycode":"632700",
        "citytype":"3",
        "city_full_name":"青海省玉树藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":632800,
        "pcityid":"630000",
        "pcityids":"1,630000,",
        "cityname":"海*蒙古族藏族自治州",
        "citysort":"3354",
        "citycode":"632800",
        "citytype":"3",
        "city_full_name":"青海省海*蒙古族藏族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":640100,
        "pcityid":"640000",
        "pcityids":"1,640000,",
        "cityname":"银川市",
        "citysort":"3361",
        "citycode":"640100",
        "citytype":"3",
        "city_full_name":"宁夏回族自治区银川市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640200,
        "pcityid":"640000",
        "pcityids":"1,640000,",
        "cityname":"石嘴山市",
        "citysort":"3369",
        "citycode":"640200",
        "citytype":"3",
        "city_full_name":"宁夏回族自治区石嘴山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640300,
        "pcityid":"640000",
        "pcityids":"1,640000,",
        "cityname":"吴忠市",
        "citysort":"3374",
        "citycode":"640300",
        "citytype":"3",
        "city_full_name":"宁夏回族自治区吴忠市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640400,
        "pcityid":"640000",
        "pcityids":"1,640000,",
        "cityname":"固原市",
        "citysort":"3381",
        "citycode":"640400",
        "citytype":"3",
        "city_full_name":"宁夏回族自治区固原市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640500,
        "pcityid":"640000",
        "pcityids":"1,640000,",
        "cityname":"中卫市",
        "citysort":"3388",
        "citycode":"640500",
        "citytype":"3",
        "city_full_name":"宁夏回族自治区中卫市",
        "is_virtual_region":"0"
    },
    {
        "cityid":650100,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"乌鲁木齐市",
        "citysort":"3394",
        "citycode":"650100",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市",
        "is_virtual_region":"0"
    },
    {
        "cityid":650200,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"克拉玛依市",
        "citysort":"3404",
        "citycode":"650200",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区克拉玛依市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652100,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"吐鲁番地区",
        "citysort":"3410",
        "citycode":"652100",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区吐鲁番地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":652200,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"哈密地区",
        "citysort":"3414",
        "citycode":"652200",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区哈密地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":652300,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"昌吉回族自治州",
        "citysort":"3418",
        "citycode":"652300",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":652700,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"博尔塔拉蒙古自治州",
        "citysort":"3426",
        "citycode":"652700",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区博尔塔拉蒙古自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":652800,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"巴音郭楞蒙古自治州",
        "citysort":"3431",
        "citycode":"652800",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":652900,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"阿克苏地区",
        "citysort":"3441",
        "citycode":"652900",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区阿克苏地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":653000,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"克孜勒苏柯尔克孜自治州",
        "citysort":"3451",
        "citycode":"653000",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区克孜勒苏柯尔克孜自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":653100,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"喀什地区",
        "citysort":"3456",
        "citycode":"653100",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区喀什地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":653200,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"和田地区",
        "citysort":"3469",
        "citycode":"653200",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区和田地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":654000,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"伊犁哈萨克自治州",
        "citysort":"3478",
        "citycode":"654000",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州",
        "is_virtual_region":"0"
    },
    {
        "cityid":654200,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"塔城地区",
        "citysort":"3489",
        "citycode":"654200",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区塔城地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":654300,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"阿勒泰地区",
        "citysort":"3497",
        "citycode":"654300",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区",
        "is_virtual_region":"0"
    },
    {
        "cityid":659000,
        "pcityid":"650000",
        "pcityids":"1,650000,",
        "cityname":"自治区直辖县级行政区划",
        "citysort":"3505",
        "citycode":"659000",
        "citytype":"3",
        "city_full_name":"新疆维吾尔自治区自治区直辖县级行政区划",
        "is_virtual_region":"0"
    }
];
var districts = [
    {
        "cityid":110101,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"东城区",
        "citysort":"3",
        "citycode":"110101",
        "citytype":"4",
        "city_full_name":"北京市东城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110102,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"*城区",
        "citysort":"4",
        "citycode":"110102",
        "citytype":"4",
        "city_full_name":"北京市*城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110105,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"朝阳区",
        "citysort":"5",
        "citycode":"110105",
        "citytype":"4",
        "city_full_name":"北京市朝阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110106,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"丰台区",
        "citysort":"6",
        "citycode":"110106",
        "citytype":"4",
        "city_full_name":"北京市丰台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110107,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"石景山区",
        "citysort":"7",
        "citycode":"110107",
        "citytype":"4",
        "city_full_name":"北京市石景山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110108,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"海淀区",
        "citysort":"8",
        "citycode":"110108",
        "citytype":"4",
        "city_full_name":"北京市海淀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110109,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"门头沟区",
        "citysort":"9",
        "citycode":"110109",
        "citytype":"4",
        "city_full_name":"北京市门头沟区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110111,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"房山区",
        "citysort":"10",
        "citycode":"110111",
        "citytype":"4",
        "city_full_name":"北京市房山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110112,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"通州区",
        "citysort":"11",
        "citycode":"110112",
        "citytype":"4",
        "city_full_name":"北京市通州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110113,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"顺义区",
        "citysort":"12",
        "citycode":"110113",
        "citytype":"4",
        "city_full_name":"北京市顺义区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110114,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"昌*区",
        "citysort":"13",
        "citycode":"110114",
        "citytype":"4",
        "city_full_name":"北京市昌*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110115,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"大兴区",
        "citysort":"14",
        "citycode":"110115",
        "citytype":"4",
        "city_full_name":"北京市大兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110116,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"怀柔区",
        "citysort":"15",
        "citycode":"110116",
        "citytype":"4",
        "city_full_name":"北京市怀柔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110117,
        "pcityid":"110100",
        "pcityids":"1,110000,110100,",
        "cityname":"*谷区",
        "citysort":"16",
        "citycode":"110117",
        "citytype":"4",
        "city_full_name":"北京市*谷区",
        "is_virtual_region":"0"
    },
    {
        "cityid":110228,
        "pcityid":"110200",
        "pcityids":"1,110000,110200,",
        "cityname":"密云县",
        "citysort":"18",
        "citycode":"110228",
        "citytype":"4",
        "city_full_name":"北京市密云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":110229,
        "pcityid":"110200",
        "pcityids":"1,110000,110200,",
        "cityname":"延庆县",
        "citysort":"19",
        "citycode":"110229",
        "citytype":"4",
        "city_full_name":"北京市延庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":120101,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"和*区",
        "citysort":"22",
        "citycode":"120101",
        "citytype":"4",
        "city_full_name":"天津市和*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120102,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"河东区",
        "citysort":"23",
        "citycode":"120102",
        "citytype":"4",
        "city_full_name":"天津市河东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120103,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"河*区",
        "citysort":"24",
        "citycode":"120103",
        "citytype":"4",
        "city_full_name":"天津市河*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120104,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"南开区",
        "citysort":"25",
        "citycode":"120104",
        "citytype":"4",
        "city_full_name":"天津市南开区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120105,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"河北区",
        "citysort":"26",
        "citycode":"120105",
        "citytype":"4",
        "city_full_name":"天津市河北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120106,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"红桥区",
        "citysort":"27",
        "citycode":"120106",
        "citytype":"4",
        "city_full_name":"天津市红桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120110,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"东丽区",
        "citysort":"28",
        "citycode":"120110",
        "citytype":"4",
        "city_full_name":"天津市东丽区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120111,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"*青区",
        "citysort":"29",
        "citycode":"120111",
        "citytype":"4",
        "city_full_name":"天津市*青区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120112,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"津南区",
        "citysort":"30",
        "citycode":"120112",
        "citytype":"4",
        "city_full_name":"天津市津南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120113,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"北辰区",
        "citysort":"31",
        "citycode":"120113",
        "citytype":"4",
        "city_full_name":"天津市北辰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120114,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"武清区",
        "citysort":"32",
        "citycode":"120114",
        "citytype":"4",
        "city_full_name":"天津市武清区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120115,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"宝坻区",
        "citysort":"33",
        "citycode":"120115",
        "citytype":"4",
        "city_full_name":"天津市宝坻区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120116,
        "pcityid":"120100",
        "pcityids":"1,120000,120100,",
        "cityname":"滨海新区",
        "citysort":"34",
        "citycode":"120116",
        "citytype":"4",
        "city_full_name":"天津市滨海新区",
        "is_virtual_region":"0"
    },
    {
        "cityid":120221,
        "pcityid":"120200",
        "pcityids":"1,120000,120200,",
        "cityname":"宁河县",
        "citysort":"36",
        "citycode":"120221",
        "citytype":"4",
        "city_full_name":"天津市宁河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":120223,
        "pcityid":"120200",
        "pcityids":"1,120000,120200,",
        "cityname":"静海县",
        "citysort":"37",
        "citycode":"120223",
        "citytype":"4",
        "city_full_name":"天津市静海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":120225,
        "pcityid":"120200",
        "pcityids":"1,120000,120200,",
        "cityname":"蓟县",
        "citysort":"38",
        "citycode":"120225",
        "citytype":"4",
        "city_full_name":"天津市蓟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130101,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"市辖区",
        "citysort":"41",
        "citycode":"130101",
        "citytype":"4",
        "city_full_name":"河北省石家庄市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130102,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"长安区",
        "citysort":"42",
        "citycode":"130102",
        "citytype":"4",
        "city_full_name":"河北省石家庄市长安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130104,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"桥*区",
        "citysort":"43",
        "citycode":"130104",
        "citytype":"4",
        "city_full_name":"河北省石家庄市桥*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130105,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"新华区",
        "citysort":"44",
        "citycode":"130105",
        "citytype":"4",
        "city_full_name":"河北省石家庄市新华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130107,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"井陉矿区",
        "citysort":"45",
        "citycode":"130107",
        "citytype":"4",
        "city_full_name":"河北省石家庄市井陉矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130108,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"裕华区",
        "citysort":"46",
        "citycode":"130108",
        "citytype":"4",
        "city_full_name":"河北省石家庄市裕华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130109,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"藁城区",
        "citysort":"47",
        "citycode":"130109",
        "citytype":"4",
        "city_full_name":"河北省石家庄市藁城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130110,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"鹿泉区",
        "citysort":"48",
        "citycode":"130110",
        "citytype":"4",
        "city_full_name":"河北省石家庄市鹿泉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130111,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"栾城区",
        "citysort":"49",
        "citycode":"130111",
        "citytype":"4",
        "city_full_name":"河北省石家庄市栾城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130121,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"井陉县",
        "citysort":"50",
        "citycode":"130121",
        "citytype":"4",
        "city_full_name":"河北省石家庄市井陉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130123,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"正定县",
        "citysort":"51",
        "citycode":"130123",
        "citytype":"4",
        "city_full_name":"河北省石家庄市正定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130125,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"行唐县",
        "citysort":"52",
        "citycode":"130125",
        "citytype":"4",
        "city_full_name":"河北省石家庄市行唐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130126,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"灵寿县",
        "citysort":"53",
        "citycode":"130126",
        "citytype":"4",
        "city_full_name":"河北省石家庄市灵寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130127,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"高邑县",
        "citysort":"54",
        "citycode":"130127",
        "citytype":"4",
        "city_full_name":"河北省石家庄市高邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130128,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"深泽县",
        "citysort":"55",
        "citycode":"130128",
        "citytype":"4",
        "city_full_name":"河北省石家庄市深泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130129,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"赞皇县",
        "citysort":"56",
        "citycode":"130129",
        "citytype":"4",
        "city_full_name":"河北省石家庄市赞皇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130130,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"无极县",
        "citysort":"57",
        "citycode":"130130",
        "citytype":"4",
        "city_full_name":"河北省石家庄市无极县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130131,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"*山县",
        "citysort":"58",
        "citycode":"130131",
        "citytype":"4",
        "city_full_name":"河北省石家庄市*山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130132,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"元氏县",
        "citysort":"59",
        "citycode":"130132",
        "citytype":"4",
        "city_full_name":"河北省石家庄市元氏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130133,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"赵县",
        "citysort":"60",
        "citycode":"130133",
        "citytype":"4",
        "city_full_name":"河北省石家庄市赵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130181,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"辛集市",
        "citysort":"61",
        "citycode":"130181",
        "citytype":"4",
        "city_full_name":"河北省石家庄市辛集市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130183,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"*州市",
        "citysort":"62",
        "citycode":"130183",
        "citytype":"4",
        "city_full_name":"河北省石家庄市*州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130184,
        "pcityid":"130100",
        "pcityids":"1,130000,130100,",
        "cityname":"新乐市",
        "citysort":"63",
        "citycode":"130184",
        "citytype":"4",
        "city_full_name":"河北省石家庄市新乐市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130201,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"市辖区",
        "citysort":"65",
        "citycode":"130201",
        "citytype":"4",
        "city_full_name":"河北省唐山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130202,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"路南区",
        "citysort":"66",
        "citycode":"130202",
        "citytype":"4",
        "city_full_name":"河北省唐山市路南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130203,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"路北区",
        "citysort":"67",
        "citycode":"130203",
        "citytype":"4",
        "city_full_name":"河北省唐山市路北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130204,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"古冶区",
        "citysort":"68",
        "citycode":"130204",
        "citytype":"4",
        "city_full_name":"河北省唐山市古冶区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130205,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"开*区",
        "citysort":"69",
        "citycode":"130205",
        "citytype":"4",
        "city_full_name":"河北省唐山市开*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130207,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"丰南区",
        "citysort":"70",
        "citycode":"130207",
        "citytype":"4",
        "city_full_name":"河北省唐山市丰南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130208,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"丰润区",
        "citysort":"71",
        "citycode":"130208",
        "citytype":"4",
        "city_full_name":"河北省唐山市丰润区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130209,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"曹妃甸区",
        "citysort":"72",
        "citycode":"130209",
        "citytype":"4",
        "city_full_name":"河北省唐山市曹妃甸区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130223,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"滦县",
        "citysort":"73",
        "citycode":"130223",
        "citytype":"4",
        "city_full_name":"河北省唐山市滦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130224,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"滦南县",
        "citysort":"74",
        "citycode":"130224",
        "citytype":"4",
        "city_full_name":"河北省唐山市滦南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130225,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"乐亭县",
        "citysort":"75",
        "citycode":"130225",
        "citytype":"4",
        "city_full_name":"河北省唐山市乐亭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130227,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"迁*县",
        "citysort":"76",
        "citycode":"130227",
        "citytype":"4",
        "city_full_name":"河北省唐山市迁*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130229,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"玉田县",
        "citysort":"77",
        "citycode":"130229",
        "citytype":"4",
        "city_full_name":"河北省唐山市玉田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130281,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"遵化市",
        "citysort":"78",
        "citycode":"130281",
        "citytype":"4",
        "city_full_name":"河北省唐山市遵化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130283,
        "pcityid":"130200",
        "pcityids":"1,130000,130200,",
        "cityname":"迁安市",
        "citysort":"79",
        "citycode":"130283",
        "citytype":"4",
        "city_full_name":"河北省唐山市迁安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130301,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"市辖区",
        "citysort":"81",
        "citycode":"130301",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130302,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"海港区",
        "citysort":"82",
        "citycode":"130302",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市海港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130303,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"山海关区",
        "citysort":"83",
        "citycode":"130303",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市山海关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130304,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"北戴河区",
        "citysort":"84",
        "citycode":"130304",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市北戴河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130321,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"青龙满族自治县",
        "citysort":"85",
        "citycode":"130321",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市青龙满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130322,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"昌黎县",
        "citysort":"86",
        "citycode":"130322",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市昌黎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130323,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"抚宁县",
        "citysort":"87",
        "citycode":"130323",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市抚宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130324,
        "pcityid":"130300",
        "pcityids":"1,130000,130300,",
        "cityname":"卢龙县",
        "citysort":"88",
        "citycode":"130324",
        "citytype":"4",
        "city_full_name":"河北省秦皇岛市卢龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130401,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"市辖区",
        "citysort":"90",
        "citycode":"130401",
        "citytype":"4",
        "city_full_name":"河北省邯郸市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130402,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"邯山区",
        "citysort":"91",
        "citycode":"130402",
        "citytype":"4",
        "city_full_name":"河北省邯郸市邯山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130403,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"丛台区",
        "citysort":"92",
        "citycode":"130403",
        "citytype":"4",
        "city_full_name":"河北省邯郸市丛台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130404,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"复兴区",
        "citysort":"93",
        "citycode":"130404",
        "citytype":"4",
        "city_full_name":"河北省邯郸市复兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130406,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"峰峰矿区",
        "citysort":"94",
        "citycode":"130406",
        "citytype":"4",
        "city_full_name":"河北省邯郸市峰峰矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130421,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"邯郸县",
        "citysort":"95",
        "citycode":"130421",
        "citytype":"4",
        "city_full_name":"河北省邯郸市邯郸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130423,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"临漳县",
        "citysort":"96",
        "citycode":"130423",
        "citytype":"4",
        "city_full_name":"河北省邯郸市临漳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130424,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"成安县",
        "citysort":"97",
        "citycode":"130424",
        "citytype":"4",
        "city_full_name":"河北省邯郸市成安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130425,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"大名县",
        "citysort":"98",
        "citycode":"130425",
        "citytype":"4",
        "city_full_name":"河北省邯郸市大名县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130426,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"涉县",
        "citysort":"99",
        "citycode":"130426",
        "citytype":"4",
        "city_full_name":"河北省邯郸市涉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130427,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"磁县",
        "citysort":"100",
        "citycode":"130427",
        "citytype":"4",
        "city_full_name":"河北省邯郸市磁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130428,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"肥乡县",
        "citysort":"101",
        "citycode":"130428",
        "citytype":"4",
        "city_full_name":"河北省邯郸市肥乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130429,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"永年县",
        "citysort":"102",
        "citycode":"130429",
        "citytype":"4",
        "city_full_name":"河北省邯郸市永年县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130430,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"邱县",
        "citysort":"103",
        "citycode":"130430",
        "citytype":"4",
        "city_full_name":"河北省邯郸市邱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130431,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"鸡泽县",
        "citysort":"104",
        "citycode":"130431",
        "citytype":"4",
        "city_full_name":"河北省邯郸市鸡泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130432,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"广*县",
        "citysort":"105",
        "citycode":"130432",
        "citytype":"4",
        "city_full_name":"河北省邯郸市广*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130433,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"馆陶县",
        "citysort":"106",
        "citycode":"130433",
        "citytype":"4",
        "city_full_name":"河北省邯郸市馆陶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130434,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"魏县",
        "citysort":"107",
        "citycode":"130434",
        "citytype":"4",
        "city_full_name":"河北省邯郸市魏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130435,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"曲周县",
        "citysort":"108",
        "citycode":"130435",
        "citytype":"4",
        "city_full_name":"河北省邯郸市曲周县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130481,
        "pcityid":"130400",
        "pcityids":"1,130000,130400,",
        "cityname":"武安市",
        "citysort":"109",
        "citycode":"130481",
        "citytype":"4",
        "city_full_name":"河北省邯郸市武安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130501,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"市辖区",
        "citysort":"111",
        "citycode":"130501",
        "citytype":"4",
        "city_full_name":"河北省邢台市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130502,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"桥东区",
        "citysort":"112",
        "citycode":"130502",
        "citytype":"4",
        "city_full_name":"河北省邢台市桥东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130503,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"桥*区",
        "citysort":"113",
        "citycode":"130503",
        "citytype":"4",
        "city_full_name":"河北省邢台市桥*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130521,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"邢台县",
        "citysort":"114",
        "citycode":"130521",
        "citytype":"4",
        "city_full_name":"河北省邢台市邢台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130522,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"临城县",
        "citysort":"115",
        "citycode":"130522",
        "citytype":"4",
        "city_full_name":"河北省邢台市临城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130523,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"内丘县",
        "citysort":"116",
        "citycode":"130523",
        "citytype":"4",
        "city_full_name":"河北省邢台市内丘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130524,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"柏乡县",
        "citysort":"117",
        "citycode":"130524",
        "citytype":"4",
        "city_full_name":"河北省邢台市柏乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130525,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"隆尧县",
        "citysort":"118",
        "citycode":"130525",
        "citytype":"4",
        "city_full_name":"河北省邢台市隆尧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130526,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"任县",
        "citysort":"119",
        "citycode":"130526",
        "citytype":"4",
        "city_full_name":"河北省邢台市任县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130527,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"南和县",
        "citysort":"120",
        "citycode":"130527",
        "citytype":"4",
        "city_full_name":"河北省邢台市南和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130528,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"宁*县",
        "citysort":"121",
        "citycode":"130528",
        "citytype":"4",
        "city_full_name":"河北省邢台市宁*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130529,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"巨鹿县",
        "citysort":"122",
        "citycode":"130529",
        "citytype":"4",
        "city_full_name":"河北省邢台市巨鹿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130530,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"新河县",
        "citysort":"123",
        "citycode":"130530",
        "citytype":"4",
        "city_full_name":"河北省邢台市新河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130531,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"广宗县",
        "citysort":"124",
        "citycode":"130531",
        "citytype":"4",
        "city_full_name":"河北省邢台市广宗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130532,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"*乡县",
        "citysort":"125",
        "citycode":"130532",
        "citytype":"4",
        "city_full_name":"河北省邢台市*乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130533,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"威县",
        "citysort":"126",
        "citycode":"130533",
        "citytype":"4",
        "city_full_name":"河北省邢台市威县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130534,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"清河县",
        "citysort":"127",
        "citycode":"130534",
        "citytype":"4",
        "city_full_name":"河北省邢台市清河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130535,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"临*县",
        "citysort":"128",
        "citycode":"130535",
        "citytype":"4",
        "city_full_name":"河北省邢台市临*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130581,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"南宫市",
        "citysort":"129",
        "citycode":"130581",
        "citytype":"4",
        "city_full_name":"河北省邢台市南宫市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130582,
        "pcityid":"130500",
        "pcityids":"1,130000,130500,",
        "cityname":"沙河市",
        "citysort":"130",
        "citycode":"130582",
        "citytype":"4",
        "city_full_name":"河北省邢台市沙河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130601,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"市辖区",
        "citysort":"132",
        "citycode":"130601",
        "citytype":"4",
        "city_full_name":"河北省保定市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130602,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"新市区",
        "citysort":"133",
        "citycode":"130602",
        "citytype":"4",
        "city_full_name":"河北省保定市新市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130603,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"北市区",
        "citysort":"134",
        "citycode":"130603",
        "citytype":"4",
        "city_full_name":"河北省保定市北市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130604,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"南市区",
        "citysort":"135",
        "citycode":"130604",
        "citytype":"4",
        "city_full_name":"河北省保定市南市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130621,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"满城县",
        "citysort":"136",
        "citycode":"130621",
        "citytype":"4",
        "city_full_name":"河北省保定市满城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130622,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"清苑县",
        "citysort":"137",
        "citycode":"130622",
        "citytype":"4",
        "city_full_name":"河北省保定市清苑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130623,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"涞水县",
        "citysort":"138",
        "citycode":"130623",
        "citytype":"4",
        "city_full_name":"河北省保定市涞水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130624,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"阜*县",
        "citysort":"139",
        "citycode":"130624",
        "citytype":"4",
        "city_full_name":"河北省保定市阜*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130625,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"徐水县",
        "citysort":"140",
        "citycode":"130625",
        "citytype":"4",
        "city_full_name":"河北省保定市徐水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130626,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"定兴县",
        "citysort":"141",
        "citycode":"130626",
        "citytype":"4",
        "city_full_name":"河北省保定市定兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130627,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"唐县",
        "citysort":"142",
        "citycode":"130627",
        "citytype":"4",
        "city_full_name":"河北省保定市唐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130628,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"高阳县",
        "citysort":"143",
        "citycode":"130628",
        "citytype":"4",
        "city_full_name":"河北省保定市高阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130629,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"容城县",
        "citysort":"144",
        "citycode":"130629",
        "citytype":"4",
        "city_full_name":"河北省保定市容城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130630,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"涞源县",
        "citysort":"145",
        "citycode":"130630",
        "citytype":"4",
        "city_full_name":"河北省保定市涞源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130631,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"望都县",
        "citysort":"146",
        "citycode":"130631",
        "citytype":"4",
        "city_full_name":"河北省保定市望都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130632,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"安新县",
        "citysort":"147",
        "citycode":"130632",
        "citytype":"4",
        "city_full_name":"河北省保定市安新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130633,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"易县",
        "citysort":"148",
        "citycode":"130633",
        "citytype":"4",
        "city_full_name":"河北省保定市易县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130634,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"曲阳县",
        "citysort":"149",
        "citycode":"130634",
        "citytype":"4",
        "city_full_name":"河北省保定市曲阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130635,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"蠡县",
        "citysort":"150",
        "citycode":"130635",
        "citytype":"4",
        "city_full_name":"河北省保定市蠡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130636,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"顺*县",
        "citysort":"151",
        "citycode":"130636",
        "citytype":"4",
        "city_full_name":"河北省保定市顺*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130637,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"博野县",
        "citysort":"152",
        "citycode":"130637",
        "citytype":"4",
        "city_full_name":"河北省保定市博野县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130638,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"雄县",
        "citysort":"153",
        "citycode":"130638",
        "citytype":"4",
        "city_full_name":"河北省保定市雄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130681,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"涿州市",
        "citysort":"154",
        "citycode":"130681",
        "citytype":"4",
        "city_full_name":"河北省保定市涿州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130682,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"定州市",
        "citysort":"155",
        "citycode":"130682",
        "citytype":"4",
        "city_full_name":"河北省保定市定州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130683,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"安国市",
        "citysort":"156",
        "citycode":"130683",
        "citytype":"4",
        "city_full_name":"河北省保定市安国市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130684,
        "pcityid":"130600",
        "pcityids":"1,130000,130600,",
        "cityname":"高碑店市",
        "citysort":"157",
        "citycode":"130684",
        "citytype":"4",
        "city_full_name":"河北省保定市高碑店市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130701,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"市辖区",
        "citysort":"159",
        "citycode":"130701",
        "citytype":"4",
        "city_full_name":"河北省张家口市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130702,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"桥东区",
        "citysort":"160",
        "citycode":"130702",
        "citytype":"4",
        "city_full_name":"河北省张家口市桥东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130703,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"桥*区",
        "citysort":"161",
        "citycode":"130703",
        "citytype":"4",
        "city_full_name":"河北省张家口市桥*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130705,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"宣化区",
        "citysort":"162",
        "citycode":"130705",
        "citytype":"4",
        "city_full_name":"河北省张家口市宣化区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130706,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"下花园区",
        "citysort":"163",
        "citycode":"130706",
        "citytype":"4",
        "city_full_name":"河北省张家口市下花园区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130721,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"宣化县",
        "citysort":"164",
        "citycode":"130721",
        "citytype":"4",
        "city_full_name":"河北省张家口市宣化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130722,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"张北县",
        "citysort":"165",
        "citycode":"130722",
        "citytype":"4",
        "city_full_name":"河北省张家口市张北县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130723,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"康保县",
        "citysort":"166",
        "citycode":"130723",
        "citytype":"4",
        "city_full_name":"河北省张家口市康保县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130724,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"沽源县",
        "citysort":"167",
        "citycode":"130724",
        "citytype":"4",
        "city_full_name":"河北省张家口市沽源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130725,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"尚义县",
        "citysort":"168",
        "citycode":"130725",
        "citytype":"4",
        "city_full_name":"河北省张家口市尚义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130726,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"蔚县",
        "citysort":"169",
        "citycode":"130726",
        "citytype":"4",
        "city_full_name":"河北省张家口市蔚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130727,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"阳原县",
        "citysort":"170",
        "citycode":"130727",
        "citytype":"4",
        "city_full_name":"河北省张家口市阳原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130728,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"怀安县",
        "citysort":"171",
        "citycode":"130728",
        "citytype":"4",
        "city_full_name":"河北省张家口市怀安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130729,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"万全县",
        "citysort":"172",
        "citycode":"130729",
        "citytype":"4",
        "city_full_name":"河北省张家口市万全县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130730,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"怀来县",
        "citysort":"173",
        "citycode":"130730",
        "citytype":"4",
        "city_full_name":"河北省张家口市怀来县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130731,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"涿鹿县",
        "citysort":"174",
        "citycode":"130731",
        "citytype":"4",
        "city_full_name":"河北省张家口市涿鹿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130732,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"赤城县",
        "citysort":"175",
        "citycode":"130732",
        "citytype":"4",
        "city_full_name":"河北省张家口市赤城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130733,
        "pcityid":"130700",
        "pcityids":"1,130000,130700,",
        "cityname":"崇礼县",
        "citysort":"176",
        "citycode":"130733",
        "citytype":"4",
        "city_full_name":"河北省张家口市崇礼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130801,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"市辖区",
        "citysort":"178",
        "citycode":"130801",
        "citytype":"4",
        "city_full_name":"河北省承德市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130802,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"双桥区",
        "citysort":"179",
        "citycode":"130802",
        "citytype":"4",
        "city_full_name":"河北省承德市双桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130803,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"双滦区",
        "citysort":"180",
        "citycode":"130803",
        "citytype":"4",
        "city_full_name":"河北省承德市双滦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130804,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"鹰手营子矿区",
        "citysort":"181",
        "citycode":"130804",
        "citytype":"4",
        "city_full_name":"河北省承德市鹰手营子矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130821,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"承德县",
        "citysort":"182",
        "citycode":"130821",
        "citytype":"4",
        "city_full_name":"河北省承德市承德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130822,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"兴隆县",
        "citysort":"183",
        "citycode":"130822",
        "citytype":"4",
        "city_full_name":"河北省承德市兴隆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130823,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"*泉县",
        "citysort":"184",
        "citycode":"130823",
        "citytype":"4",
        "city_full_name":"河北省承德市*泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130824,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"滦*县",
        "citysort":"185",
        "citycode":"130824",
        "citytype":"4",
        "city_full_name":"河北省承德市滦*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130825,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"隆化县",
        "citysort":"186",
        "citycode":"130825",
        "citytype":"4",
        "city_full_name":"河北省承德市隆化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130826,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"丰宁满族自治县",
        "citysort":"187",
        "citycode":"130826",
        "citytype":"4",
        "city_full_name":"河北省承德市丰宁满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130827,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"宽城满族自治县",
        "citysort":"188",
        "citycode":"130827",
        "citytype":"4",
        "city_full_name":"河北省承德市宽城满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130828,
        "pcityid":"130800",
        "pcityids":"1,130000,130800,",
        "cityname":"围场满族蒙古族自治县",
        "citysort":"189",
        "citycode":"130828",
        "citytype":"4",
        "city_full_name":"河北省承德市围场满族蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130901,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"市辖区",
        "citysort":"191",
        "citycode":"130901",
        "citytype":"4",
        "city_full_name":"河北省沧州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130902,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"新华区",
        "citysort":"192",
        "citycode":"130902",
        "citytype":"4",
        "city_full_name":"河北省沧州市新华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130903,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"运河区",
        "citysort":"193",
        "citycode":"130903",
        "citytype":"4",
        "city_full_name":"河北省沧州市运河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":130921,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"沧县",
        "citysort":"194",
        "citycode":"130921",
        "citytype":"4",
        "city_full_name":"河北省沧州市沧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130922,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"青县",
        "citysort":"195",
        "citycode":"130922",
        "citytype":"4",
        "city_full_name":"河北省沧州市青县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130923,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"东光县",
        "citysort":"196",
        "citycode":"130923",
        "citytype":"4",
        "city_full_name":"河北省沧州市东光县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130924,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"海兴县",
        "citysort":"197",
        "citycode":"130924",
        "citytype":"4",
        "city_full_name":"河北省沧州市海兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130925,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"盐山县",
        "citysort":"198",
        "citycode":"130925",
        "citytype":"4",
        "city_full_name":"河北省沧州市盐山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130926,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"肃宁县",
        "citysort":"199",
        "citycode":"130926",
        "citytype":"4",
        "city_full_name":"河北省沧州市肃宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130927,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"南皮县",
        "citysort":"200",
        "citycode":"130927",
        "citytype":"4",
        "city_full_name":"河北省沧州市南皮县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130928,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"吴桥县",
        "citysort":"201",
        "citycode":"130928",
        "citytype":"4",
        "city_full_name":"河北省沧州市吴桥县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130929,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"献县",
        "citysort":"202",
        "citycode":"130929",
        "citytype":"4",
        "city_full_name":"河北省沧州市献县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130930,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"孟村回族自治县",
        "citysort":"203",
        "citycode":"130930",
        "citytype":"4",
        "city_full_name":"河北省沧州市孟村回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":130981,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"泊头市",
        "citysort":"204",
        "citycode":"130981",
        "citytype":"4",
        "city_full_name":"河北省沧州市泊头市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130982,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"任丘市",
        "citysort":"205",
        "citycode":"130982",
        "citytype":"4",
        "city_full_name":"河北省沧州市任丘市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130983,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"黄骅市",
        "citysort":"206",
        "citycode":"130983",
        "citytype":"4",
        "city_full_name":"河北省沧州市黄骅市",
        "is_virtual_region":"0"
    },
    {
        "cityid":130984,
        "pcityid":"130900",
        "pcityids":"1,130000,130900,",
        "cityname":"河间市",
        "citysort":"207",
        "citycode":"130984",
        "citytype":"4",
        "city_full_name":"河北省沧州市河间市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131001,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"市辖区",
        "citysort":"209",
        "citycode":"131001",
        "citytype":"4",
        "city_full_name":"河北省廊坊市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":131002,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"安次区",
        "citysort":"210",
        "citycode":"131002",
        "citytype":"4",
        "city_full_name":"河北省廊坊市安次区",
        "is_virtual_region":"0"
    },
    {
        "cityid":131003,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"广阳区",
        "citysort":"211",
        "citycode":"131003",
        "citytype":"4",
        "city_full_name":"河北省廊坊市广阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":131022,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"固安县",
        "citysort":"212",
        "citycode":"131022",
        "citytype":"4",
        "city_full_name":"河北省廊坊市固安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131023,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"永清县",
        "citysort":"213",
        "citycode":"131023",
        "citytype":"4",
        "city_full_name":"河北省廊坊市永清县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131024,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"香河县",
        "citysort":"214",
        "citycode":"131024",
        "citytype":"4",
        "city_full_name":"河北省廊坊市香河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131025,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"大城县",
        "citysort":"215",
        "citycode":"131025",
        "citytype":"4",
        "city_full_name":"河北省廊坊市大城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131026,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"文安县",
        "citysort":"216",
        "citycode":"131026",
        "citytype":"4",
        "city_full_name":"河北省廊坊市文安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131028,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"大厂回族自治县",
        "citysort":"217",
        "citycode":"131028",
        "citytype":"4",
        "city_full_name":"河北省廊坊市大厂回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131081,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"霸州市",
        "citysort":"218",
        "citycode":"131081",
        "citytype":"4",
        "city_full_name":"河北省廊坊市霸州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131082,
        "pcityid":"131000",
        "pcityids":"1,130000,131000,",
        "cityname":"三河市",
        "citysort":"219",
        "citycode":"131082",
        "citytype":"4",
        "city_full_name":"河北省廊坊市三河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131101,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"市辖区",
        "citysort":"221",
        "citycode":"131101",
        "citytype":"4",
        "city_full_name":"河北省衡水市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":131102,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"桃城区",
        "citysort":"222",
        "citycode":"131102",
        "citytype":"4",
        "city_full_name":"河北省衡水市桃城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":131121,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"枣强县",
        "citysort":"223",
        "citycode":"131121",
        "citytype":"4",
        "city_full_name":"河北省衡水市枣强县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131122,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"武邑县",
        "citysort":"224",
        "citycode":"131122",
        "citytype":"4",
        "city_full_name":"河北省衡水市武邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131123,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"武强县",
        "citysort":"225",
        "citycode":"131123",
        "citytype":"4",
        "city_full_name":"河北省衡水市武强县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131124,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"饶阳县",
        "citysort":"226",
        "citycode":"131124",
        "citytype":"4",
        "city_full_name":"河北省衡水市饶阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131125,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"安*县",
        "citysort":"227",
        "citycode":"131125",
        "citytype":"4",
        "city_full_name":"河北省衡水市安*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131126,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"故城县",
        "citysort":"228",
        "citycode":"131126",
        "citytype":"4",
        "city_full_name":"河北省衡水市故城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131127,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"景县",
        "citysort":"229",
        "citycode":"131127",
        "citytype":"4",
        "city_full_name":"河北省衡水市景县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131128,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"阜城县",
        "citysort":"230",
        "citycode":"131128",
        "citytype":"4",
        "city_full_name":"河北省衡水市阜城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":131181,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"冀州市",
        "citysort":"231",
        "citycode":"131181",
        "citytype":"4",
        "city_full_name":"河北省衡水市冀州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":131182,
        "pcityid":"131100",
        "pcityids":"1,130000,131100,",
        "cityname":"深州市",
        "citysort":"232",
        "citycode":"131182",
        "citytype":"4",
        "city_full_name":"河北省衡水市深州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140101,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"市辖区",
        "citysort":"235",
        "citycode":"140101",
        "citytype":"4",
        "city_full_name":"山*省太原市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140105,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"小店区",
        "citysort":"236",
        "citycode":"140105",
        "citytype":"4",
        "city_full_name":"山*省太原市小店区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140106,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"迎泽区",
        "citysort":"237",
        "citycode":"140106",
        "citytype":"4",
        "city_full_name":"山*省太原市迎泽区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140107,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"杏花岭区",
        "citysort":"238",
        "citycode":"140107",
        "citytype":"4",
        "city_full_name":"山*省太原市杏花岭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140108,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"尖草坪区",
        "citysort":"239",
        "citycode":"140108",
        "citytype":"4",
        "city_full_name":"山*省太原市尖草坪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140109,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"万柏林区",
        "citysort":"240",
        "citycode":"140109",
        "citytype":"4",
        "city_full_name":"山*省太原市万柏林区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140110,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"*源区",
        "citysort":"241",
        "citycode":"140110",
        "citytype":"4",
        "city_full_name":"山*省太原市*源区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140121,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"清徐县",
        "citysort":"242",
        "citycode":"140121",
        "citytype":"4",
        "city_full_name":"山*省太原市清徐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140122,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"阳曲县",
        "citysort":"243",
        "citycode":"140122",
        "citytype":"4",
        "city_full_name":"山*省太原市阳曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140123,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"娄烦县",
        "citysort":"244",
        "citycode":"140123",
        "citytype":"4",
        "city_full_name":"山*省太原市娄烦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140181,
        "pcityid":"140100",
        "pcityids":"1,140000,140100,",
        "cityname":"古交市",
        "citysort":"245",
        "citycode":"140181",
        "citytype":"4",
        "city_full_name":"山*省太原市古交市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140201,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"市辖区",
        "citysort":"247",
        "citycode":"140201",
        "citytype":"4",
        "city_full_name":"山*省大同市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140202,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"城区",
        "citysort":"248",
        "citycode":"140202",
        "citytype":"4",
        "city_full_name":"山*省大同市城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140203,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"矿区",
        "citysort":"249",
        "citycode":"140203",
        "citytype":"4",
        "city_full_name":"山*省大同市矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140211,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"南郊区",
        "citysort":"250",
        "citycode":"140211",
        "citytype":"4",
        "city_full_name":"山*省大同市南郊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140212,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"新荣区",
        "citysort":"251",
        "citycode":"140212",
        "citytype":"4",
        "city_full_name":"山*省大同市新荣区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140221,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"阳高县",
        "citysort":"252",
        "citycode":"140221",
        "citytype":"4",
        "city_full_name":"山*省大同市阳高县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140222,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"天镇县",
        "citysort":"253",
        "citycode":"140222",
        "citytype":"4",
        "city_full_name":"山*省大同市天镇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140223,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"广灵县",
        "citysort":"254",
        "citycode":"140223",
        "citytype":"4",
        "city_full_name":"山*省大同市广灵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140224,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"灵丘县",
        "citysort":"255",
        "citycode":"140224",
        "citytype":"4",
        "city_full_name":"山*省大同市灵丘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140225,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"浑源县",
        "citysort":"256",
        "citycode":"140225",
        "citytype":"4",
        "city_full_name":"山*省大同市浑源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140226,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"左云县",
        "citysort":"257",
        "citycode":"140226",
        "citytype":"4",
        "city_full_name":"山*省大同市左云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140227,
        "pcityid":"140200",
        "pcityids":"1,140000,140200,",
        "cityname":"大同县",
        "citysort":"258",
        "citycode":"140227",
        "citytype":"4",
        "city_full_name":"山*省大同市大同县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140301,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"市辖区",
        "citysort":"260",
        "citycode":"140301",
        "citytype":"4",
        "city_full_name":"山*省阳泉市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140302,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"城区",
        "citysort":"261",
        "citycode":"140302",
        "citytype":"4",
        "city_full_name":"山*省阳泉市城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140303,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"矿区",
        "citysort":"262",
        "citycode":"140303",
        "citytype":"4",
        "city_full_name":"山*省阳泉市矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140311,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"郊区",
        "citysort":"263",
        "citycode":"140311",
        "citytype":"4",
        "city_full_name":"山*省阳泉市郊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140321,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"*定县",
        "citysort":"264",
        "citycode":"140321",
        "citytype":"4",
        "city_full_name":"山*省阳泉市*定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140322,
        "pcityid":"140300",
        "pcityids":"1,140000,140300,",
        "cityname":"盂县",
        "citysort":"265",
        "citycode":"140322",
        "citytype":"4",
        "city_full_name":"山*省阳泉市盂县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140401,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"市辖区",
        "citysort":"267",
        "citycode":"140401",
        "citytype":"4",
        "city_full_name":"山*省长治市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140402,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"城区",
        "citysort":"268",
        "citycode":"140402",
        "citytype":"4",
        "city_full_name":"山*省长治市城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140411,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"郊区",
        "citysort":"269",
        "citycode":"140411",
        "citytype":"4",
        "city_full_name":"山*省长治市郊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140421,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"长治县",
        "citysort":"270",
        "citycode":"140421",
        "citytype":"4",
        "city_full_name":"山*省长治市长治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140423,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"襄垣县",
        "citysort":"271",
        "citycode":"140423",
        "citytype":"4",
        "city_full_name":"山*省长治市襄垣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140424,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"屯留县",
        "citysort":"272",
        "citycode":"140424",
        "citytype":"4",
        "city_full_name":"山*省长治市屯留县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140425,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"*顺县",
        "citysort":"273",
        "citycode":"140425",
        "citytype":"4",
        "city_full_name":"山*省长治市*顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140426,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"黎城县",
        "citysort":"274",
        "citycode":"140426",
        "citytype":"4",
        "city_full_name":"山*省长治市黎城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140427,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"壶关县",
        "citysort":"275",
        "citycode":"140427",
        "citytype":"4",
        "city_full_name":"山*省长治市壶关县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140428,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"长子县",
        "citysort":"276",
        "citycode":"140428",
        "citytype":"4",
        "city_full_name":"山*省长治市长子县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140429,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"武乡县",
        "citysort":"277",
        "citycode":"140429",
        "citytype":"4",
        "city_full_name":"山*省长治市武乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140430,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"沁县",
        "citysort":"278",
        "citycode":"140430",
        "citytype":"4",
        "city_full_name":"山*省长治市沁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140431,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"沁源县",
        "citysort":"279",
        "citycode":"140431",
        "citytype":"4",
        "city_full_name":"山*省长治市沁源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140481,
        "pcityid":"140400",
        "pcityids":"1,140000,140400,",
        "cityname":"潞城市",
        "citysort":"280",
        "citycode":"140481",
        "citytype":"4",
        "city_full_name":"山*省长治市潞城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140501,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"市辖区",
        "citysort":"282",
        "citycode":"140501",
        "citytype":"4",
        "city_full_name":"山*省*城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140502,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"城区",
        "citysort":"283",
        "citycode":"140502",
        "citytype":"4",
        "city_full_name":"山*省*城市城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140521,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"沁水县",
        "citysort":"284",
        "citycode":"140521",
        "citytype":"4",
        "city_full_name":"山*省*城市沁水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140522,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"阳城县",
        "citysort":"285",
        "citycode":"140522",
        "citytype":"4",
        "city_full_name":"山*省*城市阳城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140524,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"陵川县",
        "citysort":"286",
        "citycode":"140524",
        "citytype":"4",
        "city_full_name":"山*省*城市陵川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140525,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"泽州县",
        "citysort":"287",
        "citycode":"140525",
        "citytype":"4",
        "city_full_name":"山*省*城市泽州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140581,
        "pcityid":"140500",
        "pcityids":"1,140000,140500,",
        "cityname":"高*市",
        "citysort":"288",
        "citycode":"140581",
        "citytype":"4",
        "city_full_name":"山*省*城市高*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140601,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"市辖区",
        "citysort":"290",
        "citycode":"140601",
        "citytype":"4",
        "city_full_name":"山*省朔州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140602,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"朔城区",
        "citysort":"291",
        "citycode":"140602",
        "citytype":"4",
        "city_full_name":"山*省朔州市朔城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140603,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"*鲁区",
        "citysort":"292",
        "citycode":"140603",
        "citytype":"4",
        "city_full_name":"山*省朔州市*鲁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140621,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"山阴县",
        "citysort":"293",
        "citycode":"140621",
        "citytype":"4",
        "city_full_name":"山*省朔州市山阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140622,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"应县",
        "citysort":"294",
        "citycode":"140622",
        "citytype":"4",
        "city_full_name":"山*省朔州市应县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140623,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"右玉县",
        "citysort":"295",
        "citycode":"140623",
        "citytype":"4",
        "city_full_name":"山*省朔州市右玉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140624,
        "pcityid":"140600",
        "pcityids":"1,140000,140600,",
        "cityname":"怀仁县",
        "citysort":"296",
        "citycode":"140624",
        "citytype":"4",
        "city_full_name":"山*省朔州市怀仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140701,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"市辖区",
        "citysort":"298",
        "citycode":"140701",
        "citytype":"4",
        "city_full_name":"山*省*中市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140702,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"榆次区",
        "citysort":"299",
        "citycode":"140702",
        "citytype":"4",
        "city_full_name":"山*省*中市榆次区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140721,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"榆社县",
        "citysort":"300",
        "citycode":"140721",
        "citytype":"4",
        "city_full_name":"山*省*中市榆社县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140722,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"左权县",
        "citysort":"301",
        "citycode":"140722",
        "citytype":"4",
        "city_full_name":"山*省*中市左权县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140723,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"和顺县",
        "citysort":"302",
        "citycode":"140723",
        "citytype":"4",
        "city_full_name":"山*省*中市和顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140724,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"昔阳县",
        "citysort":"303",
        "citycode":"140724",
        "citytype":"4",
        "city_full_name":"山*省*中市昔阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140725,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"寿阳县",
        "citysort":"304",
        "citycode":"140725",
        "citytype":"4",
        "city_full_name":"山*省*中市寿阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140726,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"太谷县",
        "citysort":"305",
        "citycode":"140726",
        "citytype":"4",
        "city_full_name":"山*省*中市太谷县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140727,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"祁县",
        "citysort":"306",
        "citycode":"140727",
        "citytype":"4",
        "city_full_name":"山*省*中市祁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140728,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"*遥县",
        "citysort":"307",
        "citycode":"140728",
        "citytype":"4",
        "city_full_name":"山*省*中市*遥县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140729,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"灵石县",
        "citysort":"308",
        "citycode":"140729",
        "citytype":"4",
        "city_full_name":"山*省*中市灵石县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140781,
        "pcityid":"140700",
        "pcityids":"1,140000,140700,",
        "cityname":"介休市",
        "citysort":"309",
        "citycode":"140781",
        "citytype":"4",
        "city_full_name":"山*省*中市介休市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140801,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"市辖区",
        "citysort":"311",
        "citycode":"140801",
        "citytype":"4",
        "city_full_name":"山*省运城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140802,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"盐湖区",
        "citysort":"312",
        "citycode":"140802",
        "citytype":"4",
        "city_full_name":"山*省运城市盐湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140821,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"临猗县",
        "citysort":"313",
        "citycode":"140821",
        "citytype":"4",
        "city_full_name":"山*省运城市临猗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140822,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"万荣县",
        "citysort":"314",
        "citycode":"140822",
        "citytype":"4",
        "city_full_name":"山*省运城市万荣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140823,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"闻喜县",
        "citysort":"315",
        "citycode":"140823",
        "citytype":"4",
        "city_full_name":"山*省运城市闻喜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140824,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"稷山县",
        "citysort":"316",
        "citycode":"140824",
        "citytype":"4",
        "city_full_name":"山*省运城市稷山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140825,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"新绛县",
        "citysort":"317",
        "citycode":"140825",
        "citytype":"4",
        "city_full_name":"山*省运城市新绛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140826,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"绛县",
        "citysort":"318",
        "citycode":"140826",
        "citytype":"4",
        "city_full_name":"山*省运城市绛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140827,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"垣曲县",
        "citysort":"319",
        "citycode":"140827",
        "citytype":"4",
        "city_full_name":"山*省运城市垣曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140828,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"夏县",
        "citysort":"320",
        "citycode":"140828",
        "citytype":"4",
        "city_full_name":"山*省运城市夏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140829,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"*陆县",
        "citysort":"321",
        "citycode":"140829",
        "citytype":"4",
        "city_full_name":"山*省运城市*陆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140830,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"芮城县",
        "citysort":"322",
        "citycode":"140830",
        "citytype":"4",
        "city_full_name":"山*省运城市芮城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140881,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"永济市",
        "citysort":"323",
        "citycode":"140881",
        "citytype":"4",
        "city_full_name":"山*省运城市永济市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140882,
        "pcityid":"140800",
        "pcityids":"1,140000,140800,",
        "cityname":"河津市",
        "citysort":"324",
        "citycode":"140882",
        "citytype":"4",
        "city_full_name":"山*省运城市河津市",
        "is_virtual_region":"0"
    },
    {
        "cityid":140901,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"市辖区",
        "citysort":"326",
        "citycode":"140901",
        "citytype":"4",
        "city_full_name":"山*省忻州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140902,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"忻府区",
        "citysort":"327",
        "citycode":"140902",
        "citytype":"4",
        "city_full_name":"山*省忻州市忻府区",
        "is_virtual_region":"0"
    },
    {
        "cityid":140921,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"定襄县",
        "citysort":"328",
        "citycode":"140921",
        "citytype":"4",
        "city_full_name":"山*省忻州市定襄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140922,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"五台县",
        "citysort":"329",
        "citycode":"140922",
        "citytype":"4",
        "city_full_name":"山*省忻州市五台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140923,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"代县",
        "citysort":"330",
        "citycode":"140923",
        "citytype":"4",
        "city_full_name":"山*省忻州市代县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140924,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"繁峙县",
        "citysort":"331",
        "citycode":"140924",
        "citytype":"4",
        "city_full_name":"山*省忻州市繁峙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140925,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"宁武县",
        "citysort":"332",
        "citycode":"140925",
        "citytype":"4",
        "city_full_name":"山*省忻州市宁武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140926,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"静乐县",
        "citysort":"333",
        "citycode":"140926",
        "citytype":"4",
        "city_full_name":"山*省忻州市静乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140927,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"神池县",
        "citysort":"334",
        "citycode":"140927",
        "citytype":"4",
        "city_full_name":"山*省忻州市神池县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140928,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"五寨县",
        "citysort":"335",
        "citycode":"140928",
        "citytype":"4",
        "city_full_name":"山*省忻州市五寨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140929,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"岢岚县",
        "citysort":"336",
        "citycode":"140929",
        "citytype":"4",
        "city_full_name":"山*省忻州市岢岚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140930,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"河曲县",
        "citysort":"337",
        "citycode":"140930",
        "citytype":"4",
        "city_full_name":"山*省忻州市河曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140931,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"保德县",
        "citysort":"338",
        "citycode":"140931",
        "citytype":"4",
        "city_full_name":"山*省忻州市保德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140932,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"偏关县",
        "citysort":"339",
        "citycode":"140932",
        "citytype":"4",
        "city_full_name":"山*省忻州市偏关县",
        "is_virtual_region":"0"
    },
    {
        "cityid":140981,
        "pcityid":"140900",
        "pcityids":"1,140000,140900,",
        "cityname":"原*市",
        "citysort":"340",
        "citycode":"140981",
        "citytype":"4",
        "city_full_name":"山*省忻州市原*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141001,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"市辖区",
        "citysort":"342",
        "citycode":"141001",
        "citytype":"4",
        "city_full_name":"山*省临汾市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":141002,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"尧都区",
        "citysort":"343",
        "citycode":"141002",
        "citytype":"4",
        "city_full_name":"山*省临汾市尧都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":141021,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"曲沃县",
        "citysort":"344",
        "citycode":"141021",
        "citytype":"4",
        "city_full_name":"山*省临汾市曲沃县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141022,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"翼城县",
        "citysort":"345",
        "citycode":"141022",
        "citytype":"4",
        "city_full_name":"山*省临汾市翼城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141023,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"襄汾县",
        "citysort":"346",
        "citycode":"141023",
        "citytype":"4",
        "city_full_name":"山*省临汾市襄汾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141024,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"洪洞县",
        "citysort":"347",
        "citycode":"141024",
        "citytype":"4",
        "city_full_name":"山*省临汾市洪洞县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141025,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"古县",
        "citysort":"348",
        "citycode":"141025",
        "citytype":"4",
        "city_full_name":"山*省临汾市古县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141026,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"安泽县",
        "citysort":"349",
        "citycode":"141026",
        "citytype":"4",
        "city_full_name":"山*省临汾市安泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141027,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"浮山县",
        "citysort":"350",
        "citycode":"141027",
        "citytype":"4",
        "city_full_name":"山*省临汾市浮山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141028,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"吉县",
        "citysort":"351",
        "citycode":"141028",
        "citytype":"4",
        "city_full_name":"山*省临汾市吉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141029,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"乡宁县",
        "citysort":"352",
        "citycode":"141029",
        "citytype":"4",
        "city_full_name":"山*省临汾市乡宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141030,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"大宁县",
        "citysort":"353",
        "citycode":"141030",
        "citytype":"4",
        "city_full_name":"山*省临汾市大宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141031,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"隰县",
        "citysort":"354",
        "citycode":"141031",
        "citytype":"4",
        "city_full_name":"山*省临汾市隰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141032,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"永和县",
        "citysort":"355",
        "citycode":"141032",
        "citytype":"4",
        "city_full_name":"山*省临汾市永和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141033,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"蒲县",
        "citysort":"356",
        "citycode":"141033",
        "citytype":"4",
        "city_full_name":"山*省临汾市蒲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141034,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"汾*县",
        "citysort":"357",
        "citycode":"141034",
        "citytype":"4",
        "city_full_name":"山*省临汾市汾*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141081,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"侯马市",
        "citysort":"358",
        "citycode":"141081",
        "citytype":"4",
        "city_full_name":"山*省临汾市侯马市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141082,
        "pcityid":"141000",
        "pcityids":"1,140000,141000,",
        "cityname":"霍州市",
        "citysort":"359",
        "citycode":"141082",
        "citytype":"4",
        "city_full_name":"山*省临汾市霍州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141101,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"市辖区",
        "citysort":"361",
        "citycode":"141101",
        "citytype":"4",
        "city_full_name":"山*省吕梁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":141102,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"离石区",
        "citysort":"362",
        "citycode":"141102",
        "citytype":"4",
        "city_full_name":"山*省吕梁市离石区",
        "is_virtual_region":"0"
    },
    {
        "cityid":141121,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"文水县",
        "citysort":"363",
        "citycode":"141121",
        "citytype":"4",
        "city_full_name":"山*省吕梁市文水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141122,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"交城县",
        "citysort":"364",
        "citycode":"141122",
        "citytype":"4",
        "city_full_name":"山*省吕梁市交城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141123,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"兴县",
        "citysort":"365",
        "citycode":"141123",
        "citytype":"4",
        "city_full_name":"山*省吕梁市兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141124,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"临县",
        "citysort":"366",
        "citycode":"141124",
        "citytype":"4",
        "city_full_name":"山*省吕梁市临县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141125,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"柳林县",
        "citysort":"367",
        "citycode":"141125",
        "citytype":"4",
        "city_full_name":"山*省吕梁市柳林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141126,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"石楼县",
        "citysort":"368",
        "citycode":"141126",
        "citytype":"4",
        "city_full_name":"山*省吕梁市石楼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141127,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"岚县",
        "citysort":"369",
        "citycode":"141127",
        "citytype":"4",
        "city_full_name":"山*省吕梁市岚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141128,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"方山县",
        "citysort":"370",
        "citycode":"141128",
        "citytype":"4",
        "city_full_name":"山*省吕梁市方山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141129,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"中阳县",
        "citysort":"371",
        "citycode":"141129",
        "citytype":"4",
        "city_full_name":"山*省吕梁市中阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141130,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"交口县",
        "citysort":"372",
        "citycode":"141130",
        "citytype":"4",
        "city_full_name":"山*省吕梁市交口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":141181,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"孝义市",
        "citysort":"373",
        "citycode":"141181",
        "citytype":"4",
        "city_full_name":"山*省吕梁市孝义市",
        "is_virtual_region":"0"
    },
    {
        "cityid":141182,
        "pcityid":"141100",
        "pcityids":"1,140000,141100,",
        "cityname":"汾阳市",
        "citysort":"374",
        "citycode":"141182",
        "citytype":"4",
        "city_full_name":"山*省吕梁市汾阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150101,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"市辖区",
        "citysort":"377",
        "citycode":"150101",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150102,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"新城区",
        "citysort":"378",
        "citycode":"150102",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市新城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150103,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"回民区",
        "citysort":"379",
        "citycode":"150103",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市回民区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150104,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"玉泉区",
        "citysort":"380",
        "citycode":"150104",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市玉泉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150105,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"赛罕区",
        "citysort":"381",
        "citycode":"150105",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市赛罕区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150121,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"土默特左旗",
        "citysort":"382",
        "citycode":"150121",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市土默特左旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150122,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"托克托县",
        "citysort":"383",
        "citycode":"150122",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市托克托县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150123,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"和林格尔县",
        "citysort":"384",
        "citycode":"150123",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市和林格尔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150124,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"清水河县",
        "citysort":"385",
        "citycode":"150124",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市清水河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150125,
        "pcityid":"150100",
        "pcityids":"1,150000,150100,",
        "cityname":"武川县",
        "citysort":"386",
        "citycode":"150125",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼和浩特市武川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150201,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"市辖区",
        "citysort":"388",
        "citycode":"150201",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150202,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"东河区",
        "citysort":"389",
        "citycode":"150202",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市东河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150203,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"昆都仑区",
        "citysort":"390",
        "citycode":"150203",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市昆都仑区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150204,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"青山区",
        "citysort":"391",
        "citycode":"150204",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市青山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150205,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"石拐区",
        "citysort":"392",
        "citycode":"150205",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市石拐区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150206,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"白云鄂博矿区",
        "citysort":"393",
        "citycode":"150206",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市白云鄂博矿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150207,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"九原区",
        "citysort":"394",
        "citycode":"150207",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市九原区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150221,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"土默特右旗",
        "citysort":"395",
        "citycode":"150221",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市土默特右旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150222,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"固阳县",
        "citysort":"396",
        "citycode":"150222",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市固阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150223,
        "pcityid":"150200",
        "pcityids":"1,150000,150200,",
        "cityname":"达尔罕茂明安联合旗",
        "citysort":"397",
        "citycode":"150223",
        "citytype":"4",
        "city_full_name":"内蒙古自治区包头市达尔罕茂明安联合旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150301,
        "pcityid":"150300",
        "pcityids":"1,150000,150300,",
        "cityname":"市辖区",
        "citysort":"399",
        "citycode":"150301",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌海市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150302,
        "pcityid":"150300",
        "pcityids":"1,150000,150300,",
        "cityname":"海勃湾区",
        "citysort":"400",
        "citycode":"150302",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌海市海勃湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150303,
        "pcityid":"150300",
        "pcityids":"1,150000,150300,",
        "cityname":"海南区",
        "citysort":"401",
        "citycode":"150303",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌海市海南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150304,
        "pcityid":"150300",
        "pcityids":"1,150000,150300,",
        "cityname":"乌达区",
        "citysort":"402",
        "citycode":"150304",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌海市乌达区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150401,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"市辖区",
        "citysort":"404",
        "citycode":"150401",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150402,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"红山区",
        "citysort":"405",
        "citycode":"150402",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市红山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150403,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"元宝山区",
        "citysort":"406",
        "citycode":"150403",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市元宝山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150404,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"松山区",
        "citysort":"407",
        "citycode":"150404",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市松山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150421,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"阿鲁科尔沁旗",
        "citysort":"408",
        "citycode":"150421",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市阿鲁科尔沁旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150422,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"巴林左旗",
        "citysort":"409",
        "citycode":"150422",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市巴林左旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150423,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"巴林右旗",
        "citysort":"410",
        "citycode":"150423",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市巴林右旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150424,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"林*县",
        "citysort":"411",
        "citycode":"150424",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市林*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150425,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"克什克腾旗",
        "citysort":"412",
        "citycode":"150425",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市克什克腾旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150426,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"翁牛特旗",
        "citysort":"413",
        "citycode":"150426",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市翁牛特旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150428,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"喀喇沁旗",
        "citysort":"414",
        "citycode":"150428",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市喀喇沁旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150429,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"宁城县",
        "citysort":"415",
        "citycode":"150429",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市宁城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150430,
        "pcityid":"150400",
        "pcityids":"1,150000,150400,",
        "cityname":"敖汉旗",
        "citysort":"416",
        "citycode":"150430",
        "citytype":"4",
        "city_full_name":"内蒙古自治区赤峰市敖汉旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150501,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"市辖区",
        "citysort":"418",
        "citycode":"150501",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150502,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"科尔沁区",
        "citysort":"419",
        "citycode":"150502",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市科尔沁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150521,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"科尔沁左翼中旗",
        "citysort":"420",
        "citycode":"150521",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市科尔沁左翼中旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150522,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"科尔沁左翼后旗",
        "citysort":"421",
        "citycode":"150522",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市科尔沁左翼后旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150523,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"开鲁县",
        "citysort":"422",
        "citycode":"150523",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市开鲁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150524,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"库伦旗",
        "citysort":"423",
        "citycode":"150524",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市库伦旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150525,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"奈曼旗",
        "citysort":"424",
        "citycode":"150525",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市奈曼旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150526,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"扎鲁特旗",
        "citysort":"425",
        "citycode":"150526",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市扎鲁特旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150581,
        "pcityid":"150500",
        "pcityids":"1,150000,150500,",
        "cityname":"霍林郭勒市",
        "citysort":"426",
        "citycode":"150581",
        "citytype":"4",
        "city_full_name":"内蒙古自治区通辽市霍林郭勒市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150601,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"市辖区",
        "citysort":"428",
        "citycode":"150601",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150602,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"东胜区",
        "citysort":"429",
        "citycode":"150602",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市东胜区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150621,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"达拉特旗",
        "citysort":"430",
        "citycode":"150621",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市达拉特旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150622,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"准格尔旗",
        "citysort":"431",
        "citycode":"150622",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市准格尔旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150623,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"鄂托克前旗",
        "citysort":"432",
        "citycode":"150623",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市鄂托克前旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150624,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"鄂托克旗",
        "citysort":"433",
        "citycode":"150624",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市鄂托克旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150625,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"杭锦旗",
        "citysort":"434",
        "citycode":"150625",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市杭锦旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150626,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"乌审旗",
        "citysort":"435",
        "citycode":"150626",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市乌审旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150627,
        "pcityid":"150600",
        "pcityids":"1,150000,150600,",
        "cityname":"伊金霍洛旗",
        "citysort":"436",
        "citycode":"150627",
        "citytype":"4",
        "city_full_name":"内蒙古自治区鄂尔多斯市伊金霍洛旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150701,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"市辖区",
        "citysort":"438",
        "citycode":"150701",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150702,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"海拉尔区",
        "citysort":"439",
        "citycode":"150702",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市海拉尔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150703,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"扎赉诺尔区",
        "citysort":"440",
        "citycode":"150703",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市扎赉诺尔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150721,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"阿荣旗",
        "citysort":"441",
        "citycode":"150721",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市阿荣旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150722,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"莫力达瓦达斡尔族自治旗",
        "citysort":"442",
        "citycode":"150722",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市莫力达瓦达斡尔族自治旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150723,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"鄂伦春自治旗",
        "citysort":"443",
        "citycode":"150723",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市鄂伦春自治旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150724,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"鄂温克族自治旗",
        "citysort":"444",
        "citycode":"150724",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市鄂温克族自治旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150725,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"陈巴尔虎旗",
        "citysort":"445",
        "citycode":"150725",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市陈巴尔虎旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150726,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"新巴尔虎左旗",
        "citysort":"446",
        "citycode":"150726",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市新巴尔虎左旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150727,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"新巴尔虎右旗",
        "citysort":"447",
        "citycode":"150727",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市新巴尔虎右旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150781,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"满洲里市",
        "citysort":"448",
        "citycode":"150781",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市满洲里市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150782,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"牙克石市",
        "citysort":"449",
        "citycode":"150782",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市牙克石市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150783,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"扎兰屯市",
        "citysort":"450",
        "citycode":"150783",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市扎兰屯市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150784,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"额尔古纳市",
        "citysort":"451",
        "citycode":"150784",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市额尔古纳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150785,
        "pcityid":"150700",
        "pcityids":"1,150000,150700,",
        "cityname":"根河市",
        "citysort":"452",
        "citycode":"150785",
        "citytype":"4",
        "city_full_name":"内蒙古自治区呼伦贝尔市根河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":150801,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"市辖区",
        "citysort":"454",
        "citycode":"150801",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150802,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"临河区",
        "citysort":"455",
        "citycode":"150802",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市临河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150821,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"五原县",
        "citysort":"456",
        "citycode":"150821",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市五原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150822,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"磴口县",
        "citysort":"457",
        "citycode":"150822",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市磴口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150823,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"乌拉特前旗",
        "citysort":"458",
        "citycode":"150823",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市乌拉特前旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150824,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"乌拉特中旗",
        "citysort":"459",
        "citycode":"150824",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市乌拉特中旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150825,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"乌拉特后旗",
        "citysort":"460",
        "citycode":"150825",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市乌拉特后旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150826,
        "pcityid":"150800",
        "pcityids":"1,150000,150800,",
        "cityname":"杭锦后旗",
        "citysort":"461",
        "citycode":"150826",
        "citytype":"4",
        "city_full_name":"内蒙古自治区巴彦淖尔市杭锦后旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150901,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"市辖区",
        "citysort":"463",
        "citycode":"150901",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150902,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"集宁区",
        "citysort":"464",
        "citycode":"150902",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市集宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":150921,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"卓资县",
        "citysort":"465",
        "citycode":"150921",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市卓资县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150922,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"化德县",
        "citysort":"466",
        "citycode":"150922",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市化德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150923,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"商都县",
        "citysort":"467",
        "citycode":"150923",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市商都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150924,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"兴和县",
        "citysort":"468",
        "citycode":"150924",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市兴和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150925,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"凉城县",
        "citysort":"469",
        "citycode":"150925",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市凉城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":150926,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"察哈尔右翼前旗",
        "citysort":"470",
        "citycode":"150926",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市察哈尔右翼前旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150927,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"察哈尔右翼中旗",
        "citysort":"471",
        "citycode":"150927",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市察哈尔右翼中旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150928,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"察哈尔右翼后旗",
        "citysort":"472",
        "citycode":"150928",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市察哈尔右翼后旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150929,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"四子王旗",
        "citysort":"473",
        "citycode":"150929",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市四子王旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":150981,
        "pcityid":"150900",
        "pcityids":"1,150000,150900,",
        "cityname":"丰镇市",
        "citysort":"474",
        "citycode":"150981",
        "citytype":"4",
        "city_full_name":"内蒙古自治区乌兰察布市丰镇市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152201,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"乌兰浩特市",
        "citysort":"476",
        "citycode":"152201",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟乌兰浩特市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152202,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"阿尔山市",
        "citysort":"477",
        "citycode":"152202",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟阿尔山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152221,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"科尔沁右翼前旗",
        "citysort":"478",
        "citycode":"152221",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟科尔沁右翼前旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152222,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"科尔沁右翼中旗",
        "citysort":"479",
        "citycode":"152222",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟科尔沁右翼中旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152223,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"扎赉特旗",
        "citysort":"480",
        "citycode":"152223",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟扎赉特旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152224,
        "pcityid":"152200",
        "pcityids":"1,150000,152200,",
        "cityname":"突泉县",
        "citysort":"481",
        "citycode":"152224",
        "citytype":"4",
        "city_full_name":"内蒙古自治区兴安盟突泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":152501,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"二连浩特市",
        "citysort":"483",
        "citycode":"152501",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟二连浩特市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152502,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"锡林浩特市",
        "citysort":"484",
        "citycode":"152502",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟锡林浩特市",
        "is_virtual_region":"0"
    },
    {
        "cityid":152522,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"阿巴嘎旗",
        "citysort":"485",
        "citycode":"152522",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟阿巴嘎旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152523,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"苏尼特左旗",
        "citysort":"486",
        "citycode":"152523",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟苏尼特左旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152524,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"苏尼特右旗",
        "citysort":"487",
        "citycode":"152524",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟苏尼特右旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152525,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"东乌珠穆沁旗",
        "citysort":"488",
        "citycode":"152525",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟东乌珠穆沁旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152526,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"*乌珠穆沁旗",
        "citysort":"489",
        "citycode":"152526",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟*乌珠穆沁旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152527,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"太仆寺旗",
        "citysort":"490",
        "citycode":"152527",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟太仆寺旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152528,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"镶黄旗",
        "citysort":"491",
        "citycode":"152528",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟镶黄旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152529,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"正镶白旗",
        "citysort":"492",
        "citycode":"152529",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟正镶白旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152530,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"正蓝旗",
        "citysort":"493",
        "citycode":"152530",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟正蓝旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152531,
        "pcityid":"152500",
        "pcityids":"1,150000,152500,",
        "cityname":"多伦县",
        "citysort":"494",
        "citycode":"152531",
        "citytype":"4",
        "city_full_name":"内蒙古自治区锡林郭勒盟多伦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":152921,
        "pcityid":"152900",
        "pcityids":"1,150000,152900,",
        "cityname":"阿拉善左旗",
        "citysort":"496",
        "citycode":"152921",
        "citytype":"4",
        "city_full_name":"内蒙古自治区阿拉善盟阿拉善左旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152922,
        "pcityid":"152900",
        "pcityids":"1,150000,152900,",
        "cityname":"阿拉善右旗",
        "citysort":"497",
        "citycode":"152922",
        "citytype":"4",
        "city_full_name":"内蒙古自治区阿拉善盟阿拉善右旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":152923,
        "pcityid":"152900",
        "pcityids":"1,150000,152900,",
        "cityname":"额济纳旗",
        "citysort":"498",
        "citycode":"152923",
        "citytype":"4",
        "city_full_name":"内蒙古自治区阿拉善盟额济纳旗",
        "is_virtual_region":"0"
    },
    {
        "cityid":210101,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"市辖区",
        "citysort":"501",
        "citycode":"210101",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210102,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"和*区",
        "citysort":"502",
        "citycode":"210102",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市和*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210103,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"沈河区",
        "citysort":"503",
        "citycode":"210103",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市沈河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210104,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"大东区",
        "citysort":"504",
        "citycode":"210104",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市大东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210105,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"皇姑区",
        "citysort":"505",
        "citycode":"210105",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市皇姑区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210106,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"铁*区",
        "citysort":"506",
        "citycode":"210106",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市铁*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210111,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"苏家屯区",
        "citysort":"507",
        "citycode":"210111",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市苏家屯区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210112,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"浑南区",
        "citysort":"508",
        "citycode":"210112",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市浑南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210113,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"沈北新区",
        "citysort":"509",
        "citycode":"210113",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市沈北新区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210114,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"于洪区",
        "citysort":"510",
        "citycode":"210114",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市于洪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210122,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"辽中县",
        "citysort":"511",
        "citycode":"210122",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市辽中县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210123,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"康*县",
        "citysort":"512",
        "citycode":"210123",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市康*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210124,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"法库县",
        "citysort":"513",
        "citycode":"210124",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市法库县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210181,
        "pcityid":"210100",
        "pcityids":"1,210000,210100,",
        "cityname":"新民市",
        "citysort":"514",
        "citycode":"210181",
        "citytype":"4",
        "city_full_name":"辽宁省沈阳市新民市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210201,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"市辖区",
        "citysort":"516",
        "citycode":"210201",
        "citytype":"4",
        "city_full_name":"辽宁省大连市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210202,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"中山区",
        "citysort":"517",
        "citycode":"210202",
        "citytype":"4",
        "city_full_name":"辽宁省大连市中山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210203,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"*岗区",
        "citysort":"518",
        "citycode":"210203",
        "citytype":"4",
        "city_full_name":"辽宁省大连市*岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210204,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"沙河口区",
        "citysort":"519",
        "citycode":"210204",
        "citytype":"4",
        "city_full_name":"辽宁省大连市沙河口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210211,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"甘井子区",
        "citysort":"520",
        "citycode":"210211",
        "citytype":"4",
        "city_full_name":"辽宁省大连市甘井子区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210212,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"旅顺口区",
        "citysort":"521",
        "citycode":"210212",
        "citytype":"4",
        "city_full_name":"辽宁省大连市旅顺口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210213,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"金州区",
        "citysort":"522",
        "citycode":"210213",
        "citytype":"4",
        "city_full_name":"辽宁省大连市金州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210224,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"长海县",
        "citysort":"523",
        "citycode":"210224",
        "citytype":"4",
        "city_full_name":"辽宁省大连市长海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210281,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"瓦房店市",
        "citysort":"524",
        "citycode":"210281",
        "citytype":"4",
        "city_full_name":"辽宁省大连市瓦房店市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210282,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"普兰店市",
        "citysort":"525",
        "citycode":"210282",
        "citytype":"4",
        "city_full_name":"辽宁省大连市普兰店市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210283,
        "pcityid":"210200",
        "pcityids":"1,210000,210200,",
        "cityname":"庄河市",
        "citysort":"526",
        "citycode":"210283",
        "citytype":"4",
        "city_full_name":"辽宁省大连市庄河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210301,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"市辖区",
        "citysort":"528",
        "citycode":"210301",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210302,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"铁东区",
        "citysort":"529",
        "citycode":"210302",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市铁东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210303,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"铁*区",
        "citysort":"530",
        "citycode":"210303",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市铁*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210304,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"立山区",
        "citysort":"531",
        "citycode":"210304",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市立山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210311,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"千山区",
        "citysort":"532",
        "citycode":"210311",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市千山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210321,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"台安县",
        "citysort":"533",
        "citycode":"210321",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市台安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210323,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"岫岩满族自治县",
        "citysort":"534",
        "citycode":"210323",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市岫岩满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210381,
        "pcityid":"210300",
        "pcityids":"1,210000,210300,",
        "cityname":"海城市",
        "citysort":"535",
        "citycode":"210381",
        "citytype":"4",
        "city_full_name":"辽宁省鞍山市海城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210401,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"市辖区",
        "citysort":"537",
        "citycode":"210401",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210402,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"新抚区",
        "citysort":"538",
        "citycode":"210402",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市新抚区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210403,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"东洲区",
        "citysort":"539",
        "citycode":"210403",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市东洲区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210404,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"望花区",
        "citysort":"540",
        "citycode":"210404",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市望花区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210411,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"顺城区",
        "citysort":"541",
        "citycode":"210411",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市顺城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210421,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"抚顺县",
        "citysort":"542",
        "citycode":"210421",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市抚顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210422,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"新宾满族自治县",
        "citysort":"543",
        "citycode":"210422",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市新宾满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210423,
        "pcityid":"210400",
        "pcityids":"1,210000,210400,",
        "cityname":"清原满族自治县",
        "citysort":"544",
        "citycode":"210423",
        "citytype":"4",
        "city_full_name":"辽宁省抚顺市清原满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210501,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"市辖区",
        "citysort":"546",
        "citycode":"210501",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210502,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"*山区",
        "citysort":"547",
        "citycode":"210502",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市*山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210503,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"溪湖区",
        "citysort":"548",
        "citycode":"210503",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市溪湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210504,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"明山区",
        "citysort":"549",
        "citycode":"210504",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市明山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210505,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"南芬区",
        "citysort":"550",
        "citycode":"210505",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市南芬区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210521,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"本溪满族自治县",
        "citysort":"551",
        "citycode":"210521",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市本溪满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210522,
        "pcityid":"210500",
        "pcityids":"1,210000,210500,",
        "cityname":"桓仁满族自治县",
        "citysort":"552",
        "citycode":"210522",
        "citytype":"4",
        "city_full_name":"辽宁省本溪市桓仁满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210601,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"市辖区",
        "citysort":"554",
        "citycode":"210601",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210602,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"元宝区",
        "citysort":"555",
        "citycode":"210602",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市元宝区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210603,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"振兴区",
        "citysort":"556",
        "citycode":"210603",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市振兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210604,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"振安区",
        "citysort":"557",
        "citycode":"210604",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市振安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210624,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"宽甸满族自治县",
        "citysort":"558",
        "citycode":"210624",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市宽甸满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210681,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"东港市",
        "citysort":"559",
        "citycode":"210681",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市东港市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210682,
        "pcityid":"210600",
        "pcityids":"1,210000,210600,",
        "cityname":"凤城市",
        "citysort":"560",
        "citycode":"210682",
        "citytype":"4",
        "city_full_name":"辽宁省丹东市凤城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210701,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"市辖区",
        "citysort":"562",
        "citycode":"210701",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210702,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"古塔区",
        "citysort":"563",
        "citycode":"210702",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市古塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210703,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"凌河区",
        "citysort":"564",
        "citycode":"210703",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市凌河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210711,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"太和区",
        "citysort":"565",
        "citycode":"210711",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市太和区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210726,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"黑山县",
        "citysort":"566",
        "citycode":"210726",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市黑山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210727,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"义县",
        "citysort":"567",
        "citycode":"210727",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210781,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"凌海市",
        "citysort":"568",
        "citycode":"210781",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市凌海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210782,
        "pcityid":"210700",
        "pcityids":"1,210000,210700,",
        "cityname":"北镇市",
        "citysort":"569",
        "citycode":"210782",
        "citytype":"4",
        "city_full_name":"辽宁省锦州市北镇市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210801,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"市辖区",
        "citysort":"571",
        "citycode":"210801",
        "citytype":"4",
        "city_full_name":"辽宁省营口市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210802,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"站前区",
        "citysort":"572",
        "citycode":"210802",
        "citytype":"4",
        "city_full_name":"辽宁省营口市站前区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210803,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"*市区",
        "citysort":"573",
        "citycode":"210803",
        "citytype":"4",
        "city_full_name":"辽宁省营口市*市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210804,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"鲅鱼圈区",
        "citysort":"574",
        "citycode":"210804",
        "citytype":"4",
        "city_full_name":"辽宁省营口市鲅鱼圈区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210811,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"老边区",
        "citysort":"575",
        "citycode":"210811",
        "citytype":"4",
        "city_full_name":"辽宁省营口市老边区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210881,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"盖州市",
        "citysort":"576",
        "citycode":"210881",
        "citytype":"4",
        "city_full_name":"辽宁省营口市盖州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210882,
        "pcityid":"210800",
        "pcityids":"1,210000,210800,",
        "cityname":"大石桥市",
        "citysort":"577",
        "citycode":"210882",
        "citytype":"4",
        "city_full_name":"辽宁省营口市大石桥市",
        "is_virtual_region":"0"
    },
    {
        "cityid":210901,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"市辖区",
        "citysort":"579",
        "citycode":"210901",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210902,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"海州区",
        "citysort":"580",
        "citycode":"210902",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市海州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210903,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"新邱区",
        "citysort":"581",
        "citycode":"210903",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市新邱区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210904,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"太*区",
        "citysort":"582",
        "citycode":"210904",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市太*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210905,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"清河门区",
        "citysort":"583",
        "citycode":"210905",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市清河门区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210911,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"细河区",
        "citysort":"584",
        "citycode":"210911",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市细河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":210921,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"阜新蒙古族自治县",
        "citysort":"585",
        "citycode":"210921",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市阜新蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":210922,
        "pcityid":"210900",
        "pcityids":"1,210000,210900,",
        "cityname":"彰武县",
        "citysort":"586",
        "citycode":"210922",
        "citytype":"4",
        "city_full_name":"辽宁省阜新市彰武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211001,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"市辖区",
        "citysort":"588",
        "citycode":"211001",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211002,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"白塔区",
        "citysort":"589",
        "citycode":"211002",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市白塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211003,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"文圣区",
        "citysort":"590",
        "citycode":"211003",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市文圣区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211004,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"宏伟区",
        "citysort":"591",
        "citycode":"211004",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市宏伟区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211005,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"弓长岭区",
        "citysort":"592",
        "citycode":"211005",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市弓长岭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211011,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"太子河区",
        "citysort":"593",
        "citycode":"211011",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市太子河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211021,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"辽阳县",
        "citysort":"594",
        "citycode":"211021",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市辽阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211081,
        "pcityid":"211000",
        "pcityids":"1,210000,211000,",
        "cityname":"灯塔市",
        "citysort":"595",
        "citycode":"211081",
        "citytype":"4",
        "city_full_name":"辽宁省辽阳市灯塔市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211101,
        "pcityid":"211100",
        "pcityids":"1,210000,211100,",
        "cityname":"市辖区",
        "citysort":"597",
        "citycode":"211101",
        "citytype":"4",
        "city_full_name":"辽宁省盘锦市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211102,
        "pcityid":"211100",
        "pcityids":"1,210000,211100,",
        "cityname":"双台子区",
        "citysort":"598",
        "citycode":"211102",
        "citytype":"4",
        "city_full_name":"辽宁省盘锦市双台子区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211103,
        "pcityid":"211100",
        "pcityids":"1,210000,211100,",
        "cityname":"兴隆台区",
        "citysort":"599",
        "citycode":"211103",
        "citytype":"4",
        "city_full_name":"辽宁省盘锦市兴隆台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211121,
        "pcityid":"211100",
        "pcityids":"1,210000,211100,",
        "cityname":"大洼县",
        "citysort":"600",
        "citycode":"211121",
        "citytype":"4",
        "city_full_name":"辽宁省盘锦市大洼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211122,
        "pcityid":"211100",
        "pcityids":"1,210000,211100,",
        "cityname":"盘山县",
        "citysort":"601",
        "citycode":"211122",
        "citytype":"4",
        "city_full_name":"辽宁省盘锦市盘山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211201,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"市辖区",
        "citysort":"603",
        "citycode":"211201",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211202,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"银州区",
        "citysort":"604",
        "citycode":"211202",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市银州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211204,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"清河区",
        "citysort":"605",
        "citycode":"211204",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市清河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211221,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"铁岭县",
        "citysort":"606",
        "citycode":"211221",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市铁岭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211223,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"*丰县",
        "citysort":"607",
        "citycode":"211223",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市*丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211224,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"昌图县",
        "citysort":"608",
        "citycode":"211224",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市昌图县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211281,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"调兵山市",
        "citysort":"609",
        "citycode":"211281",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市调兵山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211282,
        "pcityid":"211200",
        "pcityids":"1,210000,211200,",
        "cityname":"开原市",
        "citysort":"610",
        "citycode":"211282",
        "citytype":"4",
        "city_full_name":"辽宁省铁岭市开原市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211301,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"市辖区",
        "citysort":"612",
        "citycode":"211301",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211302,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"双塔区",
        "citysort":"613",
        "citycode":"211302",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市双塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211303,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"龙城区",
        "citysort":"614",
        "citycode":"211303",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市龙城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211321,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"朝阳县",
        "citysort":"615",
        "citycode":"211321",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市朝阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211322,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"建*县",
        "citysort":"616",
        "citycode":"211322",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市建*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211324,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"喀喇沁左翼蒙古族自治县",
        "citysort":"617",
        "citycode":"211324",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市喀喇沁左翼蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211381,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"北票市",
        "citysort":"618",
        "citycode":"211381",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市北票市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211382,
        "pcityid":"211300",
        "pcityids":"1,210000,211300,",
        "cityname":"凌源市",
        "citysort":"619",
        "citycode":"211382",
        "citytype":"4",
        "city_full_name":"辽宁省朝阳市凌源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":211401,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"市辖区",
        "citysort":"621",
        "citycode":"211401",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211402,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"连山区",
        "citysort":"622",
        "citycode":"211402",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市连山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211403,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"龙港区",
        "citysort":"623",
        "citycode":"211403",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市龙港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211404,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"南票区",
        "citysort":"624",
        "citycode":"211404",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市南票区",
        "is_virtual_region":"0"
    },
    {
        "cityid":211421,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"绥中县",
        "citysort":"625",
        "citycode":"211421",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市绥中县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211422,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"建昌县",
        "citysort":"626",
        "citycode":"211422",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市建昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":211481,
        "pcityid":"211400",
        "pcityids":"1,210000,211400,",
        "cityname":"兴城市",
        "citysort":"627",
        "citycode":"211481",
        "citytype":"4",
        "city_full_name":"辽宁省葫芦岛市兴城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220101,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"市辖区",
        "citysort":"630",
        "citycode":"220101",
        "citytype":"4",
        "city_full_name":"吉林省长春市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220102,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"南关区",
        "citysort":"631",
        "citycode":"220102",
        "citytype":"4",
        "city_full_name":"吉林省长春市南关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220103,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"宽城区",
        "citysort":"632",
        "citycode":"220103",
        "citytype":"4",
        "city_full_name":"吉林省长春市宽城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220104,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"朝阳区",
        "citysort":"633",
        "citycode":"220104",
        "citytype":"4",
        "city_full_name":"吉林省长春市朝阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220105,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"二道区",
        "citysort":"634",
        "citycode":"220105",
        "citytype":"4",
        "city_full_name":"吉林省长春市二道区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220106,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"绿园区",
        "citysort":"635",
        "citycode":"220106",
        "citytype":"4",
        "city_full_name":"吉林省长春市绿园区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220112,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"双阳区",
        "citysort":"636",
        "citycode":"220112",
        "citytype":"4",
        "city_full_name":"吉林省长春市双阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220113,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"九台区",
        "citysort":"637",
        "citycode":"220113",
        "citytype":"4",
        "city_full_name":"吉林省长春市九台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220122,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"农安县",
        "citysort":"638",
        "citycode":"220122",
        "citytype":"4",
        "city_full_name":"吉林省长春市农安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220182,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"榆树市",
        "citysort":"639",
        "citycode":"220182",
        "citytype":"4",
        "city_full_name":"吉林省长春市榆树市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220183,
        "pcityid":"220100",
        "pcityids":"1,220000,220100,",
        "cityname":"德惠市",
        "citysort":"640",
        "citycode":"220183",
        "citytype":"4",
        "city_full_name":"吉林省长春市德惠市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220201,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"市辖区",
        "citysort":"642",
        "citycode":"220201",
        "citytype":"4",
        "city_full_name":"吉林省吉林市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220202,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"昌邑区",
        "citysort":"643",
        "citycode":"220202",
        "citytype":"4",
        "city_full_name":"吉林省吉林市昌邑区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220203,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"龙潭区",
        "citysort":"644",
        "citycode":"220203",
        "citytype":"4",
        "city_full_name":"吉林省吉林市龙潭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220204,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"船营区",
        "citysort":"645",
        "citycode":"220204",
        "citytype":"4",
        "city_full_name":"吉林省吉林市船营区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220211,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"丰满区",
        "citysort":"646",
        "citycode":"220211",
        "citytype":"4",
        "city_full_name":"吉林省吉林市丰满区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220221,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"永吉县",
        "citysort":"647",
        "citycode":"220221",
        "citytype":"4",
        "city_full_name":"吉林省吉林市永吉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220281,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"蛟河市",
        "citysort":"648",
        "citycode":"220281",
        "citytype":"4",
        "city_full_name":"吉林省吉林市蛟河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220282,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"桦甸市",
        "citysort":"649",
        "citycode":"220282",
        "citytype":"4",
        "city_full_name":"吉林省吉林市桦甸市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220283,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"舒兰市",
        "citysort":"650",
        "citycode":"220283",
        "citytype":"4",
        "city_full_name":"吉林省吉林市舒兰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220284,
        "pcityid":"220200",
        "pcityids":"1,220000,220200,",
        "cityname":"磐石市",
        "citysort":"651",
        "citycode":"220284",
        "citytype":"4",
        "city_full_name":"吉林省吉林市磐石市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220301,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"市辖区",
        "citysort":"653",
        "citycode":"220301",
        "citytype":"4",
        "city_full_name":"吉林省四*市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220302,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"铁*区",
        "citysort":"654",
        "citycode":"220302",
        "citytype":"4",
        "city_full_name":"吉林省四*市铁*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220303,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"铁东区",
        "citysort":"655",
        "citycode":"220303",
        "citytype":"4",
        "city_full_name":"吉林省四*市铁东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220322,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"梨树县",
        "citysort":"656",
        "citycode":"220322",
        "citytype":"4",
        "city_full_name":"吉林省四*市梨树县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220323,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"伊通满族自治县",
        "citysort":"657",
        "citycode":"220323",
        "citytype":"4",
        "city_full_name":"吉林省四*市伊通满族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220381,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"公主岭市",
        "citysort":"658",
        "citycode":"220381",
        "citytype":"4",
        "city_full_name":"吉林省四*市公主岭市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220382,
        "pcityid":"220300",
        "pcityids":"1,220000,220300,",
        "cityname":"双辽市",
        "citysort":"659",
        "citycode":"220382",
        "citytype":"4",
        "city_full_name":"吉林省四*市双辽市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220401,
        "pcityid":"220400",
        "pcityids":"1,220000,220400,",
        "cityname":"市辖区",
        "citysort":"661",
        "citycode":"220401",
        "citytype":"4",
        "city_full_name":"吉林省辽源市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220402,
        "pcityid":"220400",
        "pcityids":"1,220000,220400,",
        "cityname":"龙山区",
        "citysort":"662",
        "citycode":"220402",
        "citytype":"4",
        "city_full_name":"吉林省辽源市龙山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220403,
        "pcityid":"220400",
        "pcityids":"1,220000,220400,",
        "cityname":"*安区",
        "citysort":"663",
        "citycode":"220403",
        "citytype":"4",
        "city_full_name":"吉林省辽源市*安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220421,
        "pcityid":"220400",
        "pcityids":"1,220000,220400,",
        "cityname":"东丰县",
        "citysort":"664",
        "citycode":"220421",
        "citytype":"4",
        "city_full_name":"吉林省辽源市东丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220422,
        "pcityid":"220400",
        "pcityids":"1,220000,220400,",
        "cityname":"东辽县",
        "citysort":"665",
        "citycode":"220422",
        "citytype":"4",
        "city_full_name":"吉林省辽源市东辽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220501,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"市辖区",
        "citysort":"667",
        "citycode":"220501",
        "citytype":"4",
        "city_full_name":"吉林省通化市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220502,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"东昌区",
        "citysort":"668",
        "citycode":"220502",
        "citytype":"4",
        "city_full_name":"吉林省通化市东昌区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220503,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"二道江区",
        "citysort":"669",
        "citycode":"220503",
        "citytype":"4",
        "city_full_name":"吉林省通化市二道江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220521,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"通化县",
        "citysort":"670",
        "citycode":"220521",
        "citytype":"4",
        "city_full_name":"吉林省通化市通化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220523,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"辉南县",
        "citysort":"671",
        "citycode":"220523",
        "citytype":"4",
        "city_full_name":"吉林省通化市辉南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220524,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"柳河县",
        "citysort":"672",
        "citycode":"220524",
        "citytype":"4",
        "city_full_name":"吉林省通化市柳河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220581,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"梅河口市",
        "citysort":"673",
        "citycode":"220581",
        "citytype":"4",
        "city_full_name":"吉林省通化市梅河口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220582,
        "pcityid":"220500",
        "pcityids":"1,220000,220500,",
        "cityname":"集安市",
        "citysort":"674",
        "citycode":"220582",
        "citytype":"4",
        "city_full_name":"吉林省通化市集安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220601,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"市辖区",
        "citysort":"676",
        "citycode":"220601",
        "citytype":"4",
        "city_full_name":"吉林省白山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220602,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"浑江区",
        "citysort":"677",
        "citycode":"220602",
        "citytype":"4",
        "city_full_name":"吉林省白山市浑江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220605,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"江源区",
        "citysort":"678",
        "citycode":"220605",
        "citytype":"4",
        "city_full_name":"吉林省白山市江源区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220621,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"抚松县",
        "citysort":"679",
        "citycode":"220621",
        "citytype":"4",
        "city_full_name":"吉林省白山市抚松县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220622,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"靖宇县",
        "citysort":"680",
        "citycode":"220622",
        "citytype":"4",
        "city_full_name":"吉林省白山市靖宇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220623,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"长白朝鲜族自治县",
        "citysort":"681",
        "citycode":"220623",
        "citytype":"4",
        "city_full_name":"吉林省白山市长白朝鲜族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220681,
        "pcityid":"220600",
        "pcityids":"1,220000,220600,",
        "cityname":"临江市",
        "citysort":"682",
        "citycode":"220681",
        "citytype":"4",
        "city_full_name":"吉林省白山市临江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220701,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"市辖区",
        "citysort":"684",
        "citycode":"220701",
        "citytype":"4",
        "city_full_name":"吉林省松原市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220702,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"宁江区",
        "citysort":"685",
        "citycode":"220702",
        "citytype":"4",
        "city_full_name":"吉林省松原市宁江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220721,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"前郭尔罗斯蒙古族自治县",
        "citysort":"686",
        "citycode":"220721",
        "citytype":"4",
        "city_full_name":"吉林省松原市前郭尔罗斯蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220722,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"长岭县",
        "citysort":"687",
        "citycode":"220722",
        "citytype":"4",
        "city_full_name":"吉林省松原市长岭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220723,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"乾安县",
        "citysort":"688",
        "citycode":"220723",
        "citytype":"4",
        "city_full_name":"吉林省松原市乾安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220781,
        "pcityid":"220700",
        "pcityids":"1,220000,220700,",
        "cityname":"扶余市",
        "citysort":"689",
        "citycode":"220781",
        "citytype":"4",
        "city_full_name":"吉林省松原市扶余市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220801,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"市辖区",
        "citysort":"691",
        "citycode":"220801",
        "citytype":"4",
        "city_full_name":"吉林省白城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220802,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"洮北区",
        "citysort":"692",
        "citycode":"220802",
        "citytype":"4",
        "city_full_name":"吉林省白城市洮北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":220821,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"镇赉县",
        "citysort":"693",
        "citycode":"220821",
        "citytype":"4",
        "city_full_name":"吉林省白城市镇赉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220822,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"通榆县",
        "citysort":"694",
        "citycode":"220822",
        "citytype":"4",
        "city_full_name":"吉林省白城市通榆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":220881,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"洮南市",
        "citysort":"695",
        "citycode":"220881",
        "citytype":"4",
        "city_full_name":"吉林省白城市洮南市",
        "is_virtual_region":"0"
    },
    {
        "cityid":220882,
        "pcityid":"220800",
        "pcityids":"1,220000,220800,",
        "cityname":"大安市",
        "citysort":"696",
        "citycode":"220882",
        "citytype":"4",
        "city_full_name":"吉林省白城市大安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222401,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"延吉市",
        "citysort":"698",
        "citycode":"222401",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州延吉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222402,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"图们市",
        "citysort":"699",
        "citycode":"222402",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州图们市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222403,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"敦化市",
        "citysort":"700",
        "citycode":"222403",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州敦化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222404,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"珲春市",
        "citysort":"701",
        "citycode":"222404",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州珲春市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222405,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"龙井市",
        "citysort":"702",
        "citycode":"222405",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州龙井市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222406,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"和龙市",
        "citysort":"703",
        "citycode":"222406",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州和龙市",
        "is_virtual_region":"0"
    },
    {
        "cityid":222424,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"汪清县",
        "citysort":"704",
        "citycode":"222424",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州汪清县",
        "is_virtual_region":"0"
    },
    {
        "cityid":222426,
        "pcityid":"222400",
        "pcityids":"1,220000,222400,",
        "cityname":"安图县",
        "citysort":"705",
        "citycode":"222426",
        "citytype":"4",
        "city_full_name":"吉林省延边朝鲜族自治州安图县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230101,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"市辖区",
        "citysort":"708",
        "citycode":"230101",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230102,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"道里区",
        "citysort":"709",
        "citycode":"230102",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市道里区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230103,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"南岗区",
        "citysort":"710",
        "citycode":"230103",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市南岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230104,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"道外区",
        "citysort":"711",
        "citycode":"230104",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市道外区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230108,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"*房区",
        "citysort":"712",
        "citycode":"230108",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市*房区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230109,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"松北区",
        "citysort":"713",
        "citycode":"230109",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市松北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230110,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"香坊区",
        "citysort":"714",
        "citycode":"230110",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市香坊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230111,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"呼兰区",
        "citysort":"715",
        "citycode":"230111",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市呼兰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230112,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"阿城区",
        "citysort":"716",
        "citycode":"230112",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市阿城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230123,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"依兰县",
        "citysort":"717",
        "citycode":"230123",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市依兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230124,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"方正县",
        "citysort":"718",
        "citycode":"230124",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市方正县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230125,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"宾县",
        "citysort":"719",
        "citycode":"230125",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市宾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230126,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"巴彦县",
        "citysort":"720",
        "citycode":"230126",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市巴彦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230127,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"木兰县",
        "citysort":"721",
        "citycode":"230127",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市木兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230128,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"通河县",
        "citysort":"722",
        "citycode":"230128",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市通河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230129,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"延寿县",
        "citysort":"723",
        "citycode":"230129",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市延寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230182,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"双城市",
        "citysort":"724",
        "citycode":"230182",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市双城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230183,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"尚志市",
        "citysort":"725",
        "citycode":"230183",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市尚志市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230184,
        "pcityid":"230100",
        "pcityids":"1,230000,230100,",
        "cityname":"五常市",
        "citysort":"726",
        "citycode":"230184",
        "citytype":"4",
        "city_full_name":"黑龙江省哈尔滨市五常市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230201,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"市辖区",
        "citysort":"728",
        "citycode":"230201",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230202,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"龙沙区",
        "citysort":"729",
        "citycode":"230202",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市龙沙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230203,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"建华区",
        "citysort":"730",
        "citycode":"230203",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市建华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230204,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"铁锋区",
        "citysort":"731",
        "citycode":"230204",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市铁锋区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230205,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"昂昂溪区",
        "citysort":"732",
        "citycode":"230205",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市昂昂溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230206,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"富拉尔基区",
        "citysort":"733",
        "citycode":"230206",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市富拉尔基区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230207,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"碾子山区",
        "citysort":"734",
        "citycode":"230207",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市碾子山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230208,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"梅里斯达斡尔族区",
        "citysort":"735",
        "citycode":"230208",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市梅里斯达斡尔族区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230221,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"龙江县",
        "citysort":"736",
        "citycode":"230221",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市龙江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230223,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"依安县",
        "citysort":"737",
        "citycode":"230223",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市依安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230224,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"泰来县",
        "citysort":"738",
        "citycode":"230224",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市泰来县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230225,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"甘南县",
        "citysort":"739",
        "citycode":"230225",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市甘南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230227,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"富裕县",
        "citysort":"740",
        "citycode":"230227",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市富裕县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230229,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"克山县",
        "citysort":"741",
        "citycode":"230229",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市克山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230230,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"克东县",
        "citysort":"742",
        "citycode":"230230",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市克东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230231,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"拜泉县",
        "citysort":"743",
        "citycode":"230231",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市拜泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230281,
        "pcityid":"230200",
        "pcityids":"1,230000,230200,",
        "cityname":"讷河市",
        "citysort":"744",
        "citycode":"230281",
        "citytype":"4",
        "city_full_name":"黑龙江省齐齐哈尔市讷河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230301,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"市辖区",
        "citysort":"746",
        "citycode":"230301",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230302,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"鸡冠区",
        "citysort":"747",
        "citycode":"230302",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市鸡冠区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230303,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"恒山区",
        "citysort":"748",
        "citycode":"230303",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市恒山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230304,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"滴道区",
        "citysort":"749",
        "citycode":"230304",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市滴道区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230305,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"梨树区",
        "citysort":"750",
        "citycode":"230305",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市梨树区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230306,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"城子河区",
        "citysort":"751",
        "citycode":"230306",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市城子河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230307,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"麻山区",
        "citysort":"752",
        "citycode":"230307",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市麻山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230321,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"鸡东县",
        "citysort":"753",
        "citycode":"230321",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市鸡东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230381,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"虎林市",
        "citysort":"754",
        "citycode":"230381",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市虎林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230382,
        "pcityid":"230300",
        "pcityids":"1,230000,230300,",
        "cityname":"密山市",
        "citysort":"755",
        "citycode":"230382",
        "citytype":"4",
        "city_full_name":"黑龙江省鸡*市密山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230401,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"市辖区",
        "citysort":"757",
        "citycode":"230401",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230402,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"向阳区",
        "citysort":"758",
        "citycode":"230402",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市向阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230403,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"工农区",
        "citysort":"759",
        "citycode":"230403",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市工农区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230404,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"南山区",
        "citysort":"760",
        "citycode":"230404",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市南山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230405,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"兴安区",
        "citysort":"761",
        "citycode":"230405",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市兴安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230406,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"东山区",
        "citysort":"762",
        "citycode":"230406",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市东山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230407,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"兴山区",
        "citysort":"763",
        "citycode":"230407",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市兴山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230421,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"萝北县",
        "citysort":"764",
        "citycode":"230421",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市萝北县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230422,
        "pcityid":"230400",
        "pcityids":"1,230000,230400,",
        "cityname":"绥滨县",
        "citysort":"765",
        "citycode":"230422",
        "citytype":"4",
        "city_full_name":"黑龙江省鹤岗市绥滨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230501,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"市辖区",
        "citysort":"767",
        "citycode":"230501",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230502,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"尖山区",
        "citysort":"768",
        "citycode":"230502",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市尖山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230503,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"岭东区",
        "citysort":"769",
        "citycode":"230503",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市岭东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230505,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"四方台区",
        "citysort":"770",
        "citycode":"230505",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市四方台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230506,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"宝山区",
        "citysort":"771",
        "citycode":"230506",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市宝山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230521,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"集贤县",
        "citysort":"772",
        "citycode":"230521",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市集贤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230522,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"友谊县",
        "citysort":"773",
        "citycode":"230522",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市友谊县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230523,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"宝清县",
        "citysort":"774",
        "citycode":"230523",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市宝清县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230524,
        "pcityid":"230500",
        "pcityids":"1,230000,230500,",
        "cityname":"饶河县",
        "citysort":"775",
        "citycode":"230524",
        "citytype":"4",
        "city_full_name":"黑龙江省双鸭山市饶河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230601,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"市辖区",
        "citysort":"777",
        "citycode":"230601",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230602,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"萨尔图区",
        "citysort":"778",
        "citycode":"230602",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市萨尔图区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230603,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"龙凤区",
        "citysort":"779",
        "citycode":"230603",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市龙凤区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230604,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"让胡路区",
        "citysort":"780",
        "citycode":"230604",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市让胡路区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230605,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"红岗区",
        "citysort":"781",
        "citycode":"230605",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市红岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230606,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"大同区",
        "citysort":"782",
        "citycode":"230606",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市大同区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230621,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"肇州县",
        "citysort":"783",
        "citycode":"230621",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市肇州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230622,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"肇源县",
        "citysort":"784",
        "citycode":"230622",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市肇源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230623,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"林甸县",
        "citysort":"785",
        "citycode":"230623",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市林甸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230624,
        "pcityid":"230600",
        "pcityids":"1,230000,230600,",
        "cityname":"杜尔伯特蒙古族自治县",
        "citysort":"786",
        "citycode":"230624",
        "citytype":"4",
        "city_full_name":"黑龙江省大庆市杜尔伯特蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230701,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"市辖区",
        "citysort":"788",
        "citycode":"230701",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230702,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"伊春区",
        "citysort":"789",
        "citycode":"230702",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市伊春区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230703,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"南岔区",
        "citysort":"790",
        "citycode":"230703",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市南岔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230704,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"友好区",
        "citysort":"791",
        "citycode":"230704",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市友好区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230705,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"*林区",
        "citysort":"792",
        "citycode":"230705",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市*林区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230706,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"翠峦区",
        "citysort":"793",
        "citycode":"230706",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市翠峦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230707,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"新青区",
        "citysort":"794",
        "citycode":"230707",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市新青区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230708,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"美溪区",
        "citysort":"795",
        "citycode":"230708",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市美溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230709,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"金山屯区",
        "citysort":"796",
        "citycode":"230709",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市金山屯区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230710,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"五营区",
        "citysort":"797",
        "citycode":"230710",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市五营区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230711,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"乌马河区",
        "citysort":"798",
        "citycode":"230711",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市乌马河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230712,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"汤旺河区",
        "citysort":"799",
        "citycode":"230712",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市汤旺河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230713,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"带岭区",
        "citysort":"800",
        "citycode":"230713",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市带岭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230714,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"乌伊岭区",
        "citysort":"801",
        "citycode":"230714",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市乌伊岭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230715,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"红星区",
        "citysort":"802",
        "citycode":"230715",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市红星区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230716,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"上甘岭区",
        "citysort":"803",
        "citycode":"230716",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市上甘岭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230722,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"嘉荫县",
        "citysort":"804",
        "citycode":"230722",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市嘉荫县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230781,
        "pcityid":"230700",
        "pcityids":"1,230000,230700,",
        "cityname":"铁力市",
        "citysort":"805",
        "citycode":"230781",
        "citytype":"4",
        "city_full_name":"黑龙江省伊春市铁力市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230801,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"市辖区",
        "citysort":"807",
        "citycode":"230801",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230803,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"向阳区",
        "citysort":"808",
        "citycode":"230803",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市向阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230804,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"前进区",
        "citysort":"809",
        "citycode":"230804",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市前进区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230805,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"东风区",
        "citysort":"810",
        "citycode":"230805",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市东风区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230811,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"郊区",
        "citysort":"811",
        "citycode":"230811",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市郊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230822,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"桦南县",
        "citysort":"812",
        "citycode":"230822",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市桦南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230826,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"桦川县",
        "citysort":"813",
        "citycode":"230826",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市桦川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230828,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"汤原县",
        "citysort":"814",
        "citycode":"230828",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市汤原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230833,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"抚远县",
        "citysort":"815",
        "citycode":"230833",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市抚远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":230881,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"同江市",
        "citysort":"816",
        "citycode":"230881",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市同江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230882,
        "pcityid":"230800",
        "pcityids":"1,230000,230800,",
        "cityname":"富锦市",
        "citysort":"817",
        "citycode":"230882",
        "citytype":"4",
        "city_full_name":"黑龙江省佳木斯市富锦市",
        "is_virtual_region":"0"
    },
    {
        "cityid":230901,
        "pcityid":"230900",
        "pcityids":"1,230000,230900,",
        "cityname":"市辖区",
        "citysort":"819",
        "citycode":"230901",
        "citytype":"4",
        "city_full_name":"黑龙江省七台河市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230902,
        "pcityid":"230900",
        "pcityids":"1,230000,230900,",
        "cityname":"新兴区",
        "citysort":"820",
        "citycode":"230902",
        "citytype":"4",
        "city_full_name":"黑龙江省七台河市新兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230903,
        "pcityid":"230900",
        "pcityids":"1,230000,230900,",
        "cityname":"桃山区",
        "citysort":"821",
        "citycode":"230903",
        "citytype":"4",
        "city_full_name":"黑龙江省七台河市桃山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230904,
        "pcityid":"230900",
        "pcityids":"1,230000,230900,",
        "cityname":"茄子河区",
        "citysort":"822",
        "citycode":"230904",
        "citytype":"4",
        "city_full_name":"黑龙江省七台河市茄子河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":230921,
        "pcityid":"230900",
        "pcityids":"1,230000,230900,",
        "cityname":"勃利县",
        "citysort":"823",
        "citycode":"230921",
        "citytype":"4",
        "city_full_name":"黑龙江省七台河市勃利县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231001,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"市辖区",
        "citysort":"825",
        "citycode":"231001",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231002,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"东安区",
        "citysort":"826",
        "citycode":"231002",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市东安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231003,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"阳明区",
        "citysort":"827",
        "citycode":"231003",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市阳明区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231004,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"爱民区",
        "citysort":"828",
        "citycode":"231004",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市爱民区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231005,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"*安区",
        "citysort":"829",
        "citycode":"231005",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市*安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231024,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"东宁县",
        "citysort":"830",
        "citycode":"231024",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市东宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231025,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"林口县",
        "citysort":"831",
        "citycode":"231025",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市林口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231081,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"绥芬河市",
        "citysort":"832",
        "citycode":"231081",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市绥芬河市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231083,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"海林市",
        "citysort":"833",
        "citycode":"231083",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市海林市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231084,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"宁安市",
        "citysort":"834",
        "citycode":"231084",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市宁安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231085,
        "pcityid":"231000",
        "pcityids":"1,230000,231000,",
        "cityname":"穆棱市",
        "citysort":"835",
        "citycode":"231085",
        "citytype":"4",
        "city_full_name":"黑龙江省牡丹江市穆棱市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231101,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"市辖区",
        "citysort":"837",
        "citycode":"231101",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231102,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"爱辉区",
        "citysort":"838",
        "citycode":"231102",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市爱辉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231121,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"嫩江县",
        "citysort":"839",
        "citycode":"231121",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市嫩江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231123,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"逊克县",
        "citysort":"840",
        "citycode":"231123",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市逊克县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231124,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"孙吴县",
        "citysort":"841",
        "citycode":"231124",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市孙吴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231181,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"北安市",
        "citysort":"842",
        "citycode":"231181",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市北安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231182,
        "pcityid":"231100",
        "pcityids":"1,230000,231100,",
        "cityname":"五大连池市",
        "citysort":"843",
        "citycode":"231182",
        "citytype":"4",
        "city_full_name":"黑龙江省黑河市五大连池市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231201,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"市辖区",
        "citysort":"845",
        "citycode":"231201",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231202,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"北林区",
        "citysort":"846",
        "citycode":"231202",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市北林区",
        "is_virtual_region":"0"
    },
    {
        "cityid":231221,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"望奎县",
        "citysort":"847",
        "citycode":"231221",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市望奎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231222,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"兰*县",
        "citysort":"848",
        "citycode":"231222",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市兰*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231223,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"青冈县",
        "citysort":"849",
        "citycode":"231223",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市青冈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231224,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"庆安县",
        "citysort":"850",
        "citycode":"231224",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市庆安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231225,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"明水县",
        "citysort":"851",
        "citycode":"231225",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市明水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231226,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"绥棱县",
        "citysort":"852",
        "citycode":"231226",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市绥棱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":231281,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"安达市",
        "citysort":"853",
        "citycode":"231281",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市安达市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231282,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"肇东市",
        "citysort":"854",
        "citycode":"231282",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市肇东市",
        "is_virtual_region":"0"
    },
    {
        "cityid":231283,
        "pcityid":"231200",
        "pcityids":"1,230000,231200,",
        "cityname":"海伦市",
        "citysort":"855",
        "citycode":"231283",
        "citytype":"4",
        "city_full_name":"黑龙江省绥化市海伦市",
        "is_virtual_region":"0"
    },
    {
        "cityid":232721,
        "pcityid":"232700",
        "pcityids":"1,230000,232700,",
        "cityname":"呼玛县",
        "citysort":"857",
        "citycode":"232721",
        "citytype":"4",
        "city_full_name":"黑龙江省大兴安岭地区呼玛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":232722,
        "pcityid":"232700",
        "pcityids":"1,230000,232700,",
        "cityname":"塔河县",
        "citysort":"858",
        "citycode":"232722",
        "citytype":"4",
        "city_full_name":"黑龙江省大兴安岭地区塔河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":232723,
        "pcityid":"232700",
        "pcityids":"1,230000,232700,",
        "cityname":"漠河县",
        "citysort":"859",
        "citycode":"232723",
        "citytype":"4",
        "city_full_name":"黑龙江省大兴安岭地区漠河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":310101,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"黄浦区",
        "citysort":"862",
        "citycode":"310101",
        "citytype":"4",
        "city_full_name":"上海市黄浦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310104,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"徐汇区",
        "citysort":"863",
        "citycode":"310104",
        "citytype":"4",
        "city_full_name":"上海市徐汇区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310105,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"长宁区",
        "citysort":"864",
        "citycode":"310105",
        "citytype":"4",
        "city_full_name":"上海市长宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310106,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"静安区",
        "citysort":"865",
        "citycode":"310106",
        "citytype":"4",
        "city_full_name":"上海市静安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310107,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"普陀区",
        "citysort":"866",
        "citycode":"310107",
        "citytype":"4",
        "city_full_name":"上海市普陀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310108,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"闸北区",
        "citysort":"867",
        "citycode":"310108",
        "citytype":"4",
        "city_full_name":"上海市闸北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310109,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"虹口区",
        "citysort":"868",
        "citycode":"310109",
        "citytype":"4",
        "city_full_name":"上海市虹口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310110,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"杨浦区",
        "citysort":"869",
        "citycode":"310110",
        "citytype":"4",
        "city_full_name":"上海市杨浦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310112,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"闵行区",
        "citysort":"870",
        "citycode":"310112",
        "citytype":"4",
        "city_full_name":"上海市闵行区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310113,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"宝山区",
        "citysort":"871",
        "citycode":"310113",
        "citytype":"4",
        "city_full_name":"上海市宝山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310114,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"嘉定区",
        "citysort":"872",
        "citycode":"310114",
        "citytype":"4",
        "city_full_name":"上海市嘉定区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310115,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"浦东新区",
        "citysort":"873",
        "citycode":"310115",
        "citytype":"4",
        "city_full_name":"上海市浦东新区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310116,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"金山区",
        "citysort":"874",
        "citycode":"310116",
        "citytype":"4",
        "city_full_name":"上海市金山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310117,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"松江区",
        "citysort":"875",
        "citycode":"310117",
        "citytype":"4",
        "city_full_name":"上海市松江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310118,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"青浦区",
        "citysort":"876",
        "citycode":"310118",
        "citytype":"4",
        "city_full_name":"上海市青浦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310120,
        "pcityid":"310100",
        "pcityids":"1,310000,310100,",
        "cityname":"奉贤区",
        "citysort":"877",
        "citycode":"310120",
        "citytype":"4",
        "city_full_name":"上海市奉贤区",
        "is_virtual_region":"0"
    },
    {
        "cityid":310230,
        "pcityid":"310200",
        "pcityids":"1,310000,310200,",
        "cityname":"崇明县",
        "citysort":"879",
        "citycode":"310230",
        "citytype":"4",
        "city_full_name":"上海市崇明县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320101,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"市辖区",
        "citysort":"882",
        "citycode":"320101",
        "citytype":"4",
        "city_full_name":"江苏省南京市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320102,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"玄武区",
        "citysort":"883",
        "citycode":"320102",
        "citytype":"4",
        "city_full_name":"江苏省南京市玄武区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320104,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"秦淮区",
        "citysort":"884",
        "citycode":"320104",
        "citytype":"4",
        "city_full_name":"江苏省南京市秦淮区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320105,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"建邺区",
        "citysort":"885",
        "citycode":"320105",
        "citytype":"4",
        "city_full_name":"江苏省南京市建邺区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320106,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"鼓楼区",
        "citysort":"886",
        "citycode":"320106",
        "citytype":"4",
        "city_full_name":"江苏省南京市鼓楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320111,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"浦口区",
        "citysort":"887",
        "citycode":"320111",
        "citytype":"4",
        "city_full_name":"江苏省南京市浦口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320113,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"栖霞区",
        "citysort":"888",
        "citycode":"320113",
        "citytype":"4",
        "city_full_name":"江苏省南京市栖霞区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320114,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"雨花台区",
        "citysort":"889",
        "citycode":"320114",
        "citytype":"4",
        "city_full_name":"江苏省南京市雨花台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320115,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"江宁区",
        "citysort":"890",
        "citycode":"320115",
        "citytype":"4",
        "city_full_name":"江苏省南京市江宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320116,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"六合区",
        "citysort":"891",
        "citycode":"320116",
        "citytype":"4",
        "city_full_name":"江苏省南京市六合区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320117,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"溧水区",
        "citysort":"892",
        "citycode":"320117",
        "citytype":"4",
        "city_full_name":"江苏省南京市溧水区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320118,
        "pcityid":"320100",
        "pcityids":"1,320000,320100,",
        "cityname":"高淳区",
        "citysort":"893",
        "citycode":"320118",
        "citytype":"4",
        "city_full_name":"江苏省南京市高淳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320201,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"市辖区",
        "citysort":"895",
        "citycode":"320201",
        "citytype":"4",
        "city_full_name":"江苏省无锡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320202,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"崇安区",
        "citysort":"896",
        "citycode":"320202",
        "citytype":"4",
        "city_full_name":"江苏省无锡市崇安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320203,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"南长区",
        "citysort":"897",
        "citycode":"320203",
        "citytype":"4",
        "city_full_name":"江苏省无锡市南长区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320204,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"北塘区",
        "citysort":"898",
        "citycode":"320204",
        "citytype":"4",
        "city_full_name":"江苏省无锡市北塘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320205,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"锡山区",
        "citysort":"899",
        "citycode":"320205",
        "citytype":"4",
        "city_full_name":"江苏省无锡市锡山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320206,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"惠山区",
        "citysort":"900",
        "citycode":"320206",
        "citytype":"4",
        "city_full_name":"江苏省无锡市惠山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320211,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"滨湖区",
        "citysort":"901",
        "citycode":"320211",
        "citytype":"4",
        "city_full_name":"江苏省无锡市滨湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320281,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"江阴市",
        "citysort":"902",
        "citycode":"320281",
        "citytype":"4",
        "city_full_name":"江苏省无锡市江阴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320282,
        "pcityid":"320200",
        "pcityids":"1,320000,320200,",
        "cityname":"宜兴市",
        "citysort":"903",
        "citycode":"320282",
        "citytype":"4",
        "city_full_name":"江苏省无锡市宜兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320301,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"市辖区",
        "citysort":"905",
        "citycode":"320301",
        "citytype":"4",
        "city_full_name":"江苏省徐州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320302,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"鼓楼区",
        "citysort":"906",
        "citycode":"320302",
        "citytype":"4",
        "city_full_name":"江苏省徐州市鼓楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320303,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"云龙区",
        "citysort":"907",
        "citycode":"320303",
        "citytype":"4",
        "city_full_name":"江苏省徐州市云龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320305,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"贾汪区",
        "citysort":"908",
        "citycode":"320305",
        "citytype":"4",
        "city_full_name":"江苏省徐州市贾汪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320311,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"泉山区",
        "citysort":"909",
        "citycode":"320311",
        "citytype":"4",
        "city_full_name":"江苏省徐州市泉山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320312,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"铜山区",
        "citysort":"910",
        "citycode":"320312",
        "citytype":"4",
        "city_full_name":"江苏省徐州市铜山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320321,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"丰县",
        "citysort":"911",
        "citycode":"320321",
        "citytype":"4",
        "city_full_name":"江苏省徐州市丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320322,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"沛县",
        "citysort":"912",
        "citycode":"320322",
        "citytype":"4",
        "city_full_name":"江苏省徐州市沛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320324,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"睢宁县",
        "citysort":"913",
        "citycode":"320324",
        "citytype":"4",
        "city_full_name":"江苏省徐州市睢宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320381,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"新沂市",
        "citysort":"914",
        "citycode":"320381",
        "citytype":"4",
        "city_full_name":"江苏省徐州市新沂市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320382,
        "pcityid":"320300",
        "pcityids":"1,320000,320300,",
        "cityname":"邳州市",
        "citysort":"915",
        "citycode":"320382",
        "citytype":"4",
        "city_full_name":"江苏省徐州市邳州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320401,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"市辖区",
        "citysort":"917",
        "citycode":"320401",
        "citytype":"4",
        "city_full_name":"江苏省常州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320402,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"天宁区",
        "citysort":"918",
        "citycode":"320402",
        "citytype":"4",
        "city_full_name":"江苏省常州市天宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320404,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"钟楼区",
        "citysort":"919",
        "citycode":"320404",
        "citytype":"4",
        "city_full_name":"江苏省常州市钟楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320405,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"戚墅堰区",
        "citysort":"920",
        "citycode":"320405",
        "citytype":"4",
        "city_full_name":"江苏省常州市戚墅堰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320411,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"新北区",
        "citysort":"921",
        "citycode":"320411",
        "citytype":"4",
        "city_full_name":"江苏省常州市新北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320412,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"武进区",
        "citysort":"922",
        "citycode":"320412",
        "citytype":"4",
        "city_full_name":"江苏省常州市武进区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320481,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"溧阳市",
        "citysort":"923",
        "citycode":"320481",
        "citytype":"4",
        "city_full_name":"江苏省常州市溧阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320482,
        "pcityid":"320400",
        "pcityids":"1,320000,320400,",
        "cityname":"金坛市",
        "citysort":"924",
        "citycode":"320482",
        "citytype":"4",
        "city_full_name":"江苏省常州市金坛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320501,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"市辖区",
        "citysort":"926",
        "citycode":"320501",
        "citytype":"4",
        "city_full_name":"江苏省苏州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320505,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"虎丘区",
        "citysort":"927",
        "citycode":"320505",
        "citytype":"4",
        "city_full_name":"江苏省苏州市虎丘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320506,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"吴中区",
        "citysort":"928",
        "citycode":"320506",
        "citytype":"4",
        "city_full_name":"江苏省苏州市吴中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320507,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"相城区",
        "citysort":"929",
        "citycode":"320507",
        "citytype":"4",
        "city_full_name":"江苏省苏州市相城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320508,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"姑苏区",
        "citysort":"930",
        "citycode":"320508",
        "citytype":"4",
        "city_full_name":"江苏省苏州市姑苏区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320509,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"吴江区",
        "citysort":"931",
        "citycode":"320509",
        "citytype":"4",
        "city_full_name":"江苏省苏州市吴江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320581,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"常熟市",
        "citysort":"932",
        "citycode":"320581",
        "citytype":"4",
        "city_full_name":"江苏省苏州市常熟市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320582,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"张家港市",
        "citysort":"933",
        "citycode":"320582",
        "citytype":"4",
        "city_full_name":"江苏省苏州市张家港市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320583,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"昆山市",
        "citysort":"934",
        "citycode":"320583",
        "citytype":"4",
        "city_full_name":"江苏省苏州市昆山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320585,
        "pcityid":"320500",
        "pcityids":"1,320000,320500,",
        "cityname":"太仓市",
        "citysort":"935",
        "citycode":"320585",
        "citytype":"4",
        "city_full_name":"江苏省苏州市太仓市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320601,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"市辖区",
        "citysort":"937",
        "citycode":"320601",
        "citytype":"4",
        "city_full_name":"江苏省南通市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320602,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"崇川区",
        "citysort":"938",
        "citycode":"320602",
        "citytype":"4",
        "city_full_name":"江苏省南通市崇川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320611,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"港闸区",
        "citysort":"939",
        "citycode":"320611",
        "citytype":"4",
        "city_full_name":"江苏省南通市港闸区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320612,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"通州区",
        "citysort":"940",
        "citycode":"320612",
        "citytype":"4",
        "city_full_name":"江苏省南通市通州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320621,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"海安县",
        "citysort":"941",
        "citycode":"320621",
        "citytype":"4",
        "city_full_name":"江苏省南通市海安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320623,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"如东县",
        "citysort":"942",
        "citycode":"320623",
        "citytype":"4",
        "city_full_name":"江苏省南通市如东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320681,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"启东市",
        "citysort":"943",
        "citycode":"320681",
        "citytype":"4",
        "city_full_name":"江苏省南通市启东市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320682,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"如皋市",
        "citysort":"944",
        "citycode":"320682",
        "citytype":"4",
        "city_full_name":"江苏省南通市如皋市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320684,
        "pcityid":"320600",
        "pcityids":"1,320000,320600,",
        "cityname":"海门市",
        "citysort":"945",
        "citycode":"320684",
        "citytype":"4",
        "city_full_name":"江苏省南通市海门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320701,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"市辖区",
        "citysort":"947",
        "citycode":"320701",
        "citytype":"4",
        "city_full_name":"江苏省连云港市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320703,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"连云区",
        "citysort":"948",
        "citycode":"320703",
        "citytype":"4",
        "city_full_name":"江苏省连云港市连云区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320706,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"海州区",
        "citysort":"949",
        "citycode":"320706",
        "citytype":"4",
        "city_full_name":"江苏省连云港市海州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320707,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"赣榆区",
        "citysort":"950",
        "citycode":"320707",
        "citytype":"4",
        "city_full_name":"江苏省连云港市赣榆区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320722,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"东海县",
        "citysort":"951",
        "citycode":"320722",
        "citytype":"4",
        "city_full_name":"江苏省连云港市东海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320723,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"灌云县",
        "citysort":"952",
        "citycode":"320723",
        "citytype":"4",
        "city_full_name":"江苏省连云港市灌云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320724,
        "pcityid":"320700",
        "pcityids":"1,320000,320700,",
        "cityname":"灌南县",
        "citysort":"953",
        "citycode":"320724",
        "citytype":"4",
        "city_full_name":"江苏省连云港市灌南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320801,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"市辖区",
        "citysort":"955",
        "citycode":"320801",
        "citytype":"4",
        "city_full_name":"江苏省淮安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320802,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"清河区",
        "citysort":"956",
        "citycode":"320802",
        "citytype":"4",
        "city_full_name":"江苏省淮安市清河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320803,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"淮安区",
        "citysort":"957",
        "citycode":"320803",
        "citytype":"4",
        "city_full_name":"江苏省淮安市淮安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320804,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"淮阴区",
        "citysort":"958",
        "citycode":"320804",
        "citytype":"4",
        "city_full_name":"江苏省淮安市淮阴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320811,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"清浦区",
        "citysort":"959",
        "citycode":"320811",
        "citytype":"4",
        "city_full_name":"江苏省淮安市清浦区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320826,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"涟水县",
        "citysort":"960",
        "citycode":"320826",
        "citytype":"4",
        "city_full_name":"江苏省淮安市涟水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320829,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"洪泽县",
        "citysort":"961",
        "citycode":"320829",
        "citytype":"4",
        "city_full_name":"江苏省淮安市洪泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320830,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"盱眙县",
        "citysort":"962",
        "citycode":"320830",
        "citytype":"4",
        "city_full_name":"江苏省淮安市盱眙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320831,
        "pcityid":"320800",
        "pcityids":"1,320000,320800,",
        "cityname":"金湖县",
        "citysort":"963",
        "citycode":"320831",
        "citytype":"4",
        "city_full_name":"江苏省淮安市金湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320901,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"市辖区",
        "citysort":"965",
        "citycode":"320901",
        "citytype":"4",
        "city_full_name":"江苏省盐城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320902,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"亭湖区",
        "citysort":"966",
        "citycode":"320902",
        "citytype":"4",
        "city_full_name":"江苏省盐城市亭湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320903,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"盐都区",
        "citysort":"967",
        "citycode":"320903",
        "citytype":"4",
        "city_full_name":"江苏省盐城市盐都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":320921,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"响水县",
        "citysort":"968",
        "citycode":"320921",
        "citytype":"4",
        "city_full_name":"江苏省盐城市响水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320922,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"滨海县",
        "citysort":"969",
        "citycode":"320922",
        "citytype":"4",
        "city_full_name":"江苏省盐城市滨海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320923,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"阜宁县",
        "citysort":"970",
        "citycode":"320923",
        "citytype":"4",
        "city_full_name":"江苏省盐城市阜宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320924,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"射阳县",
        "citysort":"971",
        "citycode":"320924",
        "citytype":"4",
        "city_full_name":"江苏省盐城市射阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320925,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"建湖县",
        "citysort":"972",
        "citycode":"320925",
        "citytype":"4",
        "city_full_name":"江苏省盐城市建湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":320981,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"东台市",
        "citysort":"973",
        "citycode":"320981",
        "citytype":"4",
        "city_full_name":"江苏省盐城市东台市",
        "is_virtual_region":"0"
    },
    {
        "cityid":320982,
        "pcityid":"320900",
        "pcityids":"1,320000,320900,",
        "cityname":"大丰市",
        "citysort":"974",
        "citycode":"320982",
        "citytype":"4",
        "city_full_name":"江苏省盐城市大丰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321001,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"市辖区",
        "citysort":"976",
        "citycode":"321001",
        "citytype":"4",
        "city_full_name":"江苏省扬州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321002,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"广陵区",
        "citysort":"977",
        "citycode":"321002",
        "citytype":"4",
        "city_full_name":"江苏省扬州市广陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321003,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"邗江区",
        "citysort":"978",
        "citycode":"321003",
        "citytype":"4",
        "city_full_name":"江苏省扬州市邗江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321012,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"江都区",
        "citysort":"979",
        "citycode":"321012",
        "citytype":"4",
        "city_full_name":"江苏省扬州市江都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321023,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"宝应县",
        "citysort":"980",
        "citycode":"321023",
        "citytype":"4",
        "city_full_name":"江苏省扬州市宝应县",
        "is_virtual_region":"0"
    },
    {
        "cityid":321081,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"仪征市",
        "citysort":"981",
        "citycode":"321081",
        "citytype":"4",
        "city_full_name":"江苏省扬州市仪征市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321084,
        "pcityid":"321000",
        "pcityids":"1,320000,321000,",
        "cityname":"高邮市",
        "citysort":"982",
        "citycode":"321084",
        "citytype":"4",
        "city_full_name":"江苏省扬州市高邮市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321101,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"市辖区",
        "citysort":"984",
        "citycode":"321101",
        "citytype":"4",
        "city_full_name":"江苏省镇江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321102,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"京口区",
        "citysort":"985",
        "citycode":"321102",
        "citytype":"4",
        "city_full_name":"江苏省镇江市京口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321111,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"润州区",
        "citysort":"986",
        "citycode":"321111",
        "citytype":"4",
        "city_full_name":"江苏省镇江市润州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321112,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"丹徒区",
        "citysort":"987",
        "citycode":"321112",
        "citytype":"4",
        "city_full_name":"江苏省镇江市丹徒区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321181,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"丹阳市",
        "citysort":"988",
        "citycode":"321181",
        "citytype":"4",
        "city_full_name":"江苏省镇江市丹阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321182,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"扬中市",
        "citysort":"989",
        "citycode":"321182",
        "citytype":"4",
        "city_full_name":"江苏省镇江市扬中市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321183,
        "pcityid":"321100",
        "pcityids":"1,320000,321100,",
        "cityname":"句容市",
        "citysort":"990",
        "citycode":"321183",
        "citytype":"4",
        "city_full_name":"江苏省镇江市句容市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321201,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"市辖区",
        "citysort":"992",
        "citycode":"321201",
        "citytype":"4",
        "city_full_name":"江苏省泰州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321202,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"海陵区",
        "citysort":"993",
        "citycode":"321202",
        "citytype":"4",
        "city_full_name":"江苏省泰州市海陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321203,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"高港区",
        "citysort":"994",
        "citycode":"321203",
        "citytype":"4",
        "city_full_name":"江苏省泰州市高港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321204,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"姜堰区",
        "citysort":"995",
        "citycode":"321204",
        "citytype":"4",
        "city_full_name":"江苏省泰州市姜堰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321281,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"兴化市",
        "citysort":"996",
        "citycode":"321281",
        "citytype":"4",
        "city_full_name":"江苏省泰州市兴化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321282,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"靖江市",
        "citysort":"997",
        "citycode":"321282",
        "citytype":"4",
        "city_full_name":"江苏省泰州市靖江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321283,
        "pcityid":"321200",
        "pcityids":"1,320000,321200,",
        "cityname":"泰兴市",
        "citysort":"998",
        "citycode":"321283",
        "citytype":"4",
        "city_full_name":"江苏省泰州市泰兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":321301,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"市辖区",
        "citysort":"1000",
        "citycode":"321301",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321302,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"宿城区",
        "citysort":"1001",
        "citycode":"321302",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市宿城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321311,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"宿豫区",
        "citysort":"1002",
        "citycode":"321311",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市宿豫区",
        "is_virtual_region":"0"
    },
    {
        "cityid":321322,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"沭阳县",
        "citysort":"1003",
        "citycode":"321322",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市沭阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":321323,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"泗阳县",
        "citysort":"1004",
        "citycode":"321323",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市泗阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":321324,
        "pcityid":"321300",
        "pcityids":"1,320000,321300,",
        "cityname":"泗洪县",
        "citysort":"1005",
        "citycode":"321324",
        "citytype":"4",
        "city_full_name":"江苏省宿迁市泗洪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330101,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"市辖区",
        "citysort":"1008",
        "citycode":"330101",
        "citytype":"4",
        "city_full_name":"浙江省杭州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330102,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"上城区",
        "citysort":"1009",
        "citycode":"330102",
        "citytype":"4",
        "city_full_name":"浙江省杭州市上城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330103,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"下城区",
        "citysort":"1010",
        "citycode":"330103",
        "citytype":"4",
        "city_full_name":"浙江省杭州市下城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330104,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"江干区",
        "citysort":"1011",
        "citycode":"330104",
        "citytype":"4",
        "city_full_name":"浙江省杭州市江干区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330105,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"拱墅区",
        "citysort":"1012",
        "citycode":"330105",
        "citytype":"4",
        "city_full_name":"浙江省杭州市拱墅区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330106,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"*湖区",
        "citysort":"1013",
        "citycode":"330106",
        "citytype":"4",
        "city_full_name":"浙江省杭州市*湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330108,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"滨江区",
        "citysort":"1014",
        "citycode":"330108",
        "citytype":"4",
        "city_full_name":"浙江省杭州市滨江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330109,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"萧山区",
        "citysort":"1015",
        "citycode":"330109",
        "citytype":"4",
        "city_full_name":"浙江省杭州市萧山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330110,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"余杭区",
        "citysort":"1016",
        "citycode":"330110",
        "citytype":"4",
        "city_full_name":"浙江省杭州市余杭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330122,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"桐庐县",
        "citysort":"1017",
        "citycode":"330122",
        "citytype":"4",
        "city_full_name":"浙江省杭州市桐庐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330127,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"淳安县",
        "citysort":"1018",
        "citycode":"330127",
        "citytype":"4",
        "city_full_name":"浙江省杭州市淳安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330182,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"建德市",
        "citysort":"1019",
        "citycode":"330182",
        "citytype":"4",
        "city_full_name":"浙江省杭州市建德市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330183,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"富阳市",
        "citysort":"1020",
        "citycode":"330183",
        "citytype":"4",
        "city_full_name":"浙江省杭州市富阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330185,
        "pcityid":"330100",
        "pcityids":"1,330000,330100,",
        "cityname":"临安市",
        "citysort":"1021",
        "citycode":"330185",
        "citytype":"4",
        "city_full_name":"浙江省杭州市临安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330201,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"市辖区",
        "citysort":"1023",
        "citycode":"330201",
        "citytype":"4",
        "city_full_name":"浙江省宁波市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330203,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"海曙区",
        "citysort":"1024",
        "citycode":"330203",
        "citytype":"4",
        "city_full_name":"浙江省宁波市海曙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330204,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"江东区",
        "citysort":"1025",
        "citycode":"330204",
        "citytype":"4",
        "city_full_name":"浙江省宁波市江东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330205,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"江北区",
        "citysort":"1026",
        "citycode":"330205",
        "citytype":"4",
        "city_full_name":"浙江省宁波市江北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330206,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"北仑区",
        "citysort":"1027",
        "citycode":"330206",
        "citytype":"4",
        "city_full_name":"浙江省宁波市北仑区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330211,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"镇海区",
        "citysort":"1028",
        "citycode":"330211",
        "citytype":"4",
        "city_full_name":"浙江省宁波市镇海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330212,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"鄞州区",
        "citysort":"1029",
        "citycode":"330212",
        "citytype":"4",
        "city_full_name":"浙江省宁波市鄞州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330225,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"象山县",
        "citysort":"1030",
        "citycode":"330225",
        "citytype":"4",
        "city_full_name":"浙江省宁波市象山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330226,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"宁海县",
        "citysort":"1031",
        "citycode":"330226",
        "citytype":"4",
        "city_full_name":"浙江省宁波市宁海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330281,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"余姚市",
        "citysort":"1032",
        "citycode":"330281",
        "citytype":"4",
        "city_full_name":"浙江省宁波市余姚市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330282,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"慈溪市",
        "citysort":"1033",
        "citycode":"330282",
        "citytype":"4",
        "city_full_name":"浙江省宁波市慈溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330283,
        "pcityid":"330200",
        "pcityids":"1,330000,330200,",
        "cityname":"奉化市",
        "citysort":"1034",
        "citycode":"330283",
        "citytype":"4",
        "city_full_name":"浙江省宁波市奉化市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330301,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"市辖区",
        "citysort":"1036",
        "citycode":"330301",
        "citytype":"4",
        "city_full_name":"浙江省温州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330302,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"鹿城区",
        "citysort":"1037",
        "citycode":"330302",
        "citytype":"4",
        "city_full_name":"浙江省温州市鹿城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330303,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"龙湾区",
        "citysort":"1038",
        "citycode":"330303",
        "citytype":"4",
        "city_full_name":"浙江省温州市龙湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330304,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"瓯海区",
        "citysort":"1039",
        "citycode":"330304",
        "citytype":"4",
        "city_full_name":"浙江省温州市瓯海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330322,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"洞头县",
        "citysort":"1040",
        "citycode":"330322",
        "citytype":"4",
        "city_full_name":"浙江省温州市洞头县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330324,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"永嘉县",
        "citysort":"1041",
        "citycode":"330324",
        "citytype":"4",
        "city_full_name":"浙江省温州市永嘉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330326,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"*阳县",
        "citysort":"1042",
        "citycode":"330326",
        "citytype":"4",
        "city_full_name":"浙江省温州市*阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330327,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"苍南县",
        "citysort":"1043",
        "citycode":"330327",
        "citytype":"4",
        "city_full_name":"浙江省温州市苍南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330328,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"文成县",
        "citysort":"1044",
        "citycode":"330328",
        "citytype":"4",
        "city_full_name":"浙江省温州市文成县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330329,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"泰顺县",
        "citysort":"1045",
        "citycode":"330329",
        "citytype":"4",
        "city_full_name":"浙江省温州市泰顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330381,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"瑞安市",
        "citysort":"1046",
        "citycode":"330381",
        "citytype":"4",
        "city_full_name":"浙江省温州市瑞安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330382,
        "pcityid":"330300",
        "pcityids":"1,330000,330300,",
        "cityname":"乐清市",
        "citysort":"1047",
        "citycode":"330382",
        "citytype":"4",
        "city_full_name":"浙江省温州市乐清市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330401,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"市辖区",
        "citysort":"1049",
        "citycode":"330401",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330402,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"南湖区",
        "citysort":"1050",
        "citycode":"330402",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市南湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330411,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"秀洲区",
        "citysort":"1051",
        "citycode":"330411",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市秀洲区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330421,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"嘉善县",
        "citysort":"1052",
        "citycode":"330421",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市嘉善县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330424,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"海盐县",
        "citysort":"1053",
        "citycode":"330424",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市海盐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330481,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"海宁市",
        "citysort":"1054",
        "citycode":"330481",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市海宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330482,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"*湖市",
        "citysort":"1055",
        "citycode":"330482",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市*湖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330483,
        "pcityid":"330400",
        "pcityids":"1,330000,330400,",
        "cityname":"桐乡市",
        "citysort":"1056",
        "citycode":"330483",
        "citytype":"4",
        "city_full_name":"浙江省嘉兴市桐乡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330501,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"市辖区",
        "citysort":"1058",
        "citycode":"330501",
        "citytype":"4",
        "city_full_name":"浙江省湖州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330502,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"吴兴区",
        "citysort":"1059",
        "citycode":"330502",
        "citytype":"4",
        "city_full_name":"浙江省湖州市吴兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330503,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"南浔区",
        "citysort":"1060",
        "citycode":"330503",
        "citytype":"4",
        "city_full_name":"浙江省湖州市南浔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330521,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"德清县",
        "citysort":"1061",
        "citycode":"330521",
        "citytype":"4",
        "city_full_name":"浙江省湖州市德清县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330522,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"长兴县",
        "citysort":"1062",
        "citycode":"330522",
        "citytype":"4",
        "city_full_name":"浙江省湖州市长兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330523,
        "pcityid":"330500",
        "pcityids":"1,330000,330500,",
        "cityname":"安吉县",
        "citysort":"1063",
        "citycode":"330523",
        "citytype":"4",
        "city_full_name":"浙江省湖州市安吉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330601,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"市辖区",
        "citysort":"1065",
        "citycode":"330601",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330602,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"越城区",
        "citysort":"1066",
        "citycode":"330602",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市越城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330603,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"柯桥区",
        "citysort":"1067",
        "citycode":"330603",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市柯桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330604,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"上虞区",
        "citysort":"1068",
        "citycode":"330604",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市上虞区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330624,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"新昌县",
        "citysort":"1069",
        "citycode":"330624",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市新昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330681,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"诸暨市",
        "citysort":"1070",
        "citycode":"330681",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市诸暨市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330683,
        "pcityid":"330600",
        "pcityids":"1,330000,330600,",
        "cityname":"嵊州市",
        "citysort":"1071",
        "citycode":"330683",
        "citytype":"4",
        "city_full_name":"浙江省绍兴市嵊州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330701,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"市辖区",
        "citysort":"1073",
        "citycode":"330701",
        "citytype":"4",
        "city_full_name":"浙江省金华市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330702,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"婺城区",
        "citysort":"1074",
        "citycode":"330702",
        "citytype":"4",
        "city_full_name":"浙江省金华市婺城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330703,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"金东区",
        "citysort":"1075",
        "citycode":"330703",
        "citytype":"4",
        "city_full_name":"浙江省金华市金东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330723,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"武义县",
        "citysort":"1076",
        "citycode":"330723",
        "citytype":"4",
        "city_full_name":"浙江省金华市武义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330726,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"浦江县",
        "citysort":"1077",
        "citycode":"330726",
        "citytype":"4",
        "city_full_name":"浙江省金华市浦江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330727,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"磐安县",
        "citysort":"1078",
        "citycode":"330727",
        "citytype":"4",
        "city_full_name":"浙江省金华市磐安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330781,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"兰溪市",
        "citysort":"1079",
        "citycode":"330781",
        "citytype":"4",
        "city_full_name":"浙江省金华市兰溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330782,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"义乌市",
        "citysort":"1080",
        "citycode":"330782",
        "citytype":"4",
        "city_full_name":"浙江省金华市义乌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330783,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"东阳市",
        "citysort":"1081",
        "citycode":"330783",
        "citytype":"4",
        "city_full_name":"浙江省金华市东阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330784,
        "pcityid":"330700",
        "pcityids":"1,330000,330700,",
        "cityname":"永康市",
        "citysort":"1082",
        "citycode":"330784",
        "citytype":"4",
        "city_full_name":"浙江省金华市永康市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330801,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"市辖区",
        "citysort":"1084",
        "citycode":"330801",
        "citytype":"4",
        "city_full_name":"浙江省衢州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330802,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"柯城区",
        "citysort":"1085",
        "citycode":"330802",
        "citytype":"4",
        "city_full_name":"浙江省衢州市柯城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330803,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"衢江区",
        "citysort":"1086",
        "citycode":"330803",
        "citytype":"4",
        "city_full_name":"浙江省衢州市衢江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330822,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"常山县",
        "citysort":"1087",
        "citycode":"330822",
        "citytype":"4",
        "city_full_name":"浙江省衢州市常山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330824,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"开化县",
        "citysort":"1088",
        "citycode":"330824",
        "citytype":"4",
        "city_full_name":"浙江省衢州市开化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330825,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"龙游县",
        "citysort":"1089",
        "citycode":"330825",
        "citytype":"4",
        "city_full_name":"浙江省衢州市龙游县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330881,
        "pcityid":"330800",
        "pcityids":"1,330000,330800,",
        "cityname":"江山市",
        "citysort":"1090",
        "citycode":"330881",
        "citytype":"4",
        "city_full_name":"浙江省衢州市江山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":330901,
        "pcityid":"330900",
        "pcityids":"1,330000,330900,",
        "cityname":"市辖区",
        "citysort":"1092",
        "citycode":"330901",
        "citytype":"4",
        "city_full_name":"浙江省舟山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330902,
        "pcityid":"330900",
        "pcityids":"1,330000,330900,",
        "cityname":"定海区",
        "citysort":"1093",
        "citycode":"330902",
        "citytype":"4",
        "city_full_name":"浙江省舟山市定海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330903,
        "pcityid":"330900",
        "pcityids":"1,330000,330900,",
        "cityname":"普陀区",
        "citysort":"1094",
        "citycode":"330903",
        "citytype":"4",
        "city_full_name":"浙江省舟山市普陀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":330921,
        "pcityid":"330900",
        "pcityids":"1,330000,330900,",
        "cityname":"岱山县",
        "citysort":"1095",
        "citycode":"330921",
        "citytype":"4",
        "city_full_name":"浙江省舟山市岱山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":330922,
        "pcityid":"330900",
        "pcityids":"1,330000,330900,",
        "cityname":"嵊泗县",
        "citysort":"1096",
        "citycode":"330922",
        "citytype":"4",
        "city_full_name":"浙江省舟山市嵊泗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331001,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"市辖区",
        "citysort":"1098",
        "citycode":"331001",
        "citytype":"4",
        "city_full_name":"浙江省台州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331002,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"椒江区",
        "citysort":"1099",
        "citycode":"331002",
        "citytype":"4",
        "city_full_name":"浙江省台州市椒江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331003,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"黄岩区",
        "citysort":"1100",
        "citycode":"331003",
        "citytype":"4",
        "city_full_name":"浙江省台州市黄岩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331004,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"路桥区",
        "citysort":"1101",
        "citycode":"331004",
        "citytype":"4",
        "city_full_name":"浙江省台州市路桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331021,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"玉环县",
        "citysort":"1102",
        "citycode":"331021",
        "citytype":"4",
        "city_full_name":"浙江省台州市玉环县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331022,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"三门县",
        "citysort":"1103",
        "citycode":"331022",
        "citytype":"4",
        "city_full_name":"浙江省台州市三门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331023,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"天台县",
        "citysort":"1104",
        "citycode":"331023",
        "citytype":"4",
        "city_full_name":"浙江省台州市天台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331024,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"仙居县",
        "citysort":"1105",
        "citycode":"331024",
        "citytype":"4",
        "city_full_name":"浙江省台州市仙居县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331081,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"温岭市",
        "citysort":"1106",
        "citycode":"331081",
        "citytype":"4",
        "city_full_name":"浙江省台州市温岭市",
        "is_virtual_region":"0"
    },
    {
        "cityid":331082,
        "pcityid":"331000",
        "pcityids":"1,330000,331000,",
        "cityname":"临海市",
        "citysort":"1107",
        "citycode":"331082",
        "citytype":"4",
        "city_full_name":"浙江省台州市临海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":331101,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"市辖区",
        "citysort":"1109",
        "citycode":"331101",
        "citytype":"4",
        "city_full_name":"浙江省丽水市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331102,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"莲都区",
        "citysort":"1110",
        "citycode":"331102",
        "citytype":"4",
        "city_full_name":"浙江省丽水市莲都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":331121,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"青田县",
        "citysort":"1111",
        "citycode":"331121",
        "citytype":"4",
        "city_full_name":"浙江省丽水市青田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331122,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"缙云县",
        "citysort":"1112",
        "citycode":"331122",
        "citytype":"4",
        "city_full_name":"浙江省丽水市缙云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331123,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"遂昌县",
        "citysort":"1113",
        "citycode":"331123",
        "citytype":"4",
        "city_full_name":"浙江省丽水市遂昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331124,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"松阳县",
        "citysort":"1114",
        "citycode":"331124",
        "citytype":"4",
        "city_full_name":"浙江省丽水市松阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331125,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"云和县",
        "citysort":"1115",
        "citycode":"331125",
        "citytype":"4",
        "city_full_name":"浙江省丽水市云和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331126,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"庆元县",
        "citysort":"1116",
        "citycode":"331126",
        "citytype":"4",
        "city_full_name":"浙江省丽水市庆元县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331127,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"景宁畲族自治县",
        "citysort":"1117",
        "citycode":"331127",
        "citytype":"4",
        "city_full_name":"浙江省丽水市景宁畲族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":331181,
        "pcityid":"331100",
        "pcityids":"1,330000,331100,",
        "cityname":"龙泉市",
        "citysort":"1118",
        "citycode":"331181",
        "citytype":"4",
        "city_full_name":"浙江省丽水市龙泉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340101,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"市辖区",
        "citysort":"1121",
        "citycode":"340101",
        "citytype":"4",
        "city_full_name":"安徽省合肥市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340102,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"瑶海区",
        "citysort":"1122",
        "citycode":"340102",
        "citytype":"4",
        "city_full_name":"安徽省合肥市瑶海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340103,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"庐阳区",
        "citysort":"1123",
        "citycode":"340103",
        "citytype":"4",
        "city_full_name":"安徽省合肥市庐阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340104,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"蜀山区",
        "citysort":"1124",
        "citycode":"340104",
        "citytype":"4",
        "city_full_name":"安徽省合肥市蜀山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340111,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"包河区",
        "citysort":"1125",
        "citycode":"340111",
        "citytype":"4",
        "city_full_name":"安徽省合肥市包河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340121,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"长丰县",
        "citysort":"1126",
        "citycode":"340121",
        "citytype":"4",
        "city_full_name":"安徽省合肥市长丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340122,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"肥东县",
        "citysort":"1127",
        "citycode":"340122",
        "citytype":"4",
        "city_full_name":"安徽省合肥市肥东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340123,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"肥*县",
        "citysort":"1128",
        "citycode":"340123",
        "citytype":"4",
        "city_full_name":"安徽省合肥市肥*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340124,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"庐江县",
        "citysort":"1129",
        "citycode":"340124",
        "citytype":"4",
        "city_full_name":"安徽省合肥市庐江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340181,
        "pcityid":"340100",
        "pcityids":"1,340000,340100,",
        "cityname":"巢湖市",
        "citysort":"1130",
        "citycode":"340181",
        "citytype":"4",
        "city_full_name":"安徽省合肥市巢湖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":340201,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"市辖区",
        "citysort":"1132",
        "citycode":"340201",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340202,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"镜湖区",
        "citysort":"1133",
        "citycode":"340202",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市镜湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340203,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"弋江区",
        "citysort":"1134",
        "citycode":"340203",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市弋江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340207,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"鸠江区",
        "citysort":"1135",
        "citycode":"340207",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市鸠江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340208,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"三山区",
        "citysort":"1136",
        "citycode":"340208",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市三山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340221,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"芜湖县",
        "citysort":"1137",
        "citycode":"340221",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市芜湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340222,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"繁昌县",
        "citysort":"1138",
        "citycode":"340222",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市繁昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340223,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"南陵县",
        "citysort":"1139",
        "citycode":"340223",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市南陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340225,
        "pcityid":"340200",
        "pcityids":"1,340000,340200,",
        "cityname":"无为县",
        "citysort":"1140",
        "citycode":"340225",
        "citytype":"4",
        "city_full_name":"安徽省芜湖市无为县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340301,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"市辖区",
        "citysort":"1142",
        "citycode":"340301",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340302,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"龙子湖区",
        "citysort":"1143",
        "citycode":"340302",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市龙子湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340303,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"蚌山区",
        "citysort":"1144",
        "citycode":"340303",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市蚌山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340304,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"禹会区",
        "citysort":"1145",
        "citycode":"340304",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市禹会区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340311,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"淮上区",
        "citysort":"1146",
        "citycode":"340311",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市淮上区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340321,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"怀远县",
        "citysort":"1147",
        "citycode":"340321",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市怀远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340322,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"五河县",
        "citysort":"1148",
        "citycode":"340322",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市五河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340323,
        "pcityid":"340300",
        "pcityids":"1,340000,340300,",
        "cityname":"固镇县",
        "citysort":"1149",
        "citycode":"340323",
        "citytype":"4",
        "city_full_name":"安徽省蚌埠市固镇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340401,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"市辖区",
        "citysort":"1151",
        "citycode":"340401",
        "citytype":"4",
        "city_full_name":"安徽省淮南市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340402,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"大通区",
        "citysort":"1152",
        "citycode":"340402",
        "citytype":"4",
        "city_full_name":"安徽省淮南市大通区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340403,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"田家庵区",
        "citysort":"1153",
        "citycode":"340403",
        "citytype":"4",
        "city_full_name":"安徽省淮南市田家庵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340404,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"谢家集区",
        "citysort":"1154",
        "citycode":"340404",
        "citytype":"4",
        "city_full_name":"安徽省淮南市谢家集区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340405,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"八公山区",
        "citysort":"1155",
        "citycode":"340405",
        "citytype":"4",
        "city_full_name":"安徽省淮南市八公山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340406,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"潘集区",
        "citysort":"1156",
        "citycode":"340406",
        "citytype":"4",
        "city_full_name":"安徽省淮南市潘集区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340421,
        "pcityid":"340400",
        "pcityids":"1,340000,340400,",
        "cityname":"凤台县",
        "citysort":"1157",
        "citycode":"340421",
        "citytype":"4",
        "city_full_name":"安徽省淮南市凤台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340501,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"市辖区",
        "citysort":"1159",
        "citycode":"340501",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340503,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"花山区",
        "citysort":"1160",
        "citycode":"340503",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市花山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340504,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"雨山区",
        "citysort":"1161",
        "citycode":"340504",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市雨山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340506,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"博望区",
        "citysort":"1162",
        "citycode":"340506",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市博望区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340521,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"当涂县",
        "citysort":"1163",
        "citycode":"340521",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市当涂县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340522,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"含山县",
        "citysort":"1164",
        "citycode":"340522",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市含山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340523,
        "pcityid":"340500",
        "pcityids":"1,340000,340500,",
        "cityname":"和县",
        "citysort":"1165",
        "citycode":"340523",
        "citytype":"4",
        "city_full_name":"安徽省马鞍山市和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340601,
        "pcityid":"340600",
        "pcityids":"1,340000,340600,",
        "cityname":"市辖区",
        "citysort":"1167",
        "citycode":"340601",
        "citytype":"4",
        "city_full_name":"安徽省淮北市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340602,
        "pcityid":"340600",
        "pcityids":"1,340000,340600,",
        "cityname":"杜集区",
        "citysort":"1168",
        "citycode":"340602",
        "citytype":"4",
        "city_full_name":"安徽省淮北市杜集区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340603,
        "pcityid":"340600",
        "pcityids":"1,340000,340600,",
        "cityname":"相山区",
        "citysort":"1169",
        "citycode":"340603",
        "citytype":"4",
        "city_full_name":"安徽省淮北市相山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340604,
        "pcityid":"340600",
        "pcityids":"1,340000,340600,",
        "cityname":"烈山区",
        "citysort":"1170",
        "citycode":"340604",
        "citytype":"4",
        "city_full_name":"安徽省淮北市烈山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340621,
        "pcityid":"340600",
        "pcityids":"1,340000,340600,",
        "cityname":"濉溪县",
        "citysort":"1171",
        "citycode":"340621",
        "citytype":"4",
        "city_full_name":"安徽省淮北市濉溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340701,
        "pcityid":"340700",
        "pcityids":"1,340000,340700,",
        "cityname":"市辖区",
        "citysort":"1173",
        "citycode":"340701",
        "citytype":"4",
        "city_full_name":"安徽省铜陵市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340702,
        "pcityid":"340700",
        "pcityids":"1,340000,340700,",
        "cityname":"铜官山区",
        "citysort":"1174",
        "citycode":"340702",
        "citytype":"4",
        "city_full_name":"安徽省铜陵市铜官山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340703,
        "pcityid":"340700",
        "pcityids":"1,340000,340700,",
        "cityname":"狮子山区",
        "citysort":"1175",
        "citycode":"340703",
        "citytype":"4",
        "city_full_name":"安徽省铜陵市狮子山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340711,
        "pcityid":"340700",
        "pcityids":"1,340000,340700,",
        "cityname":"郊区",
        "citysort":"1176",
        "citycode":"340711",
        "citytype":"4",
        "city_full_name":"安徽省铜陵市郊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340721,
        "pcityid":"340700",
        "pcityids":"1,340000,340700,",
        "cityname":"铜陵县",
        "citysort":"1177",
        "citycode":"340721",
        "citytype":"4",
        "city_full_name":"安徽省铜陵市铜陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340801,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"市辖区",
        "citysort":"1179",
        "citycode":"340801",
        "citytype":"4",
        "city_full_name":"安徽省安庆市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340802,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"迎江区",
        "citysort":"1180",
        "citycode":"340802",
        "citytype":"4",
        "city_full_name":"安徽省安庆市迎江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340803,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"大观区",
        "citysort":"1181",
        "citycode":"340803",
        "citytype":"4",
        "city_full_name":"安徽省安庆市大观区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340811,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"宜秀区",
        "citysort":"1182",
        "citycode":"340811",
        "citytype":"4",
        "city_full_name":"安徽省安庆市宜秀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":340822,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"怀宁县",
        "citysort":"1183",
        "citycode":"340822",
        "citytype":"4",
        "city_full_name":"安徽省安庆市怀宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340823,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"枞阳县",
        "citysort":"1184",
        "citycode":"340823",
        "citytype":"4",
        "city_full_name":"安徽省安庆市枞阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340824,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"潜山县",
        "citysort":"1185",
        "citycode":"340824",
        "citytype":"4",
        "city_full_name":"安徽省安庆市潜山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340825,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"太湖县",
        "citysort":"1186",
        "citycode":"340825",
        "citytype":"4",
        "city_full_name":"安徽省安庆市太湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340826,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"宿松县",
        "citysort":"1187",
        "citycode":"340826",
        "citytype":"4",
        "city_full_name":"安徽省安庆市宿松县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340827,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"望江县",
        "citysort":"1188",
        "citycode":"340827",
        "citytype":"4",
        "city_full_name":"安徽省安庆市望江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340828,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"岳*县",
        "citysort":"1189",
        "citycode":"340828",
        "citytype":"4",
        "city_full_name":"安徽省安庆市岳*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":340881,
        "pcityid":"340800",
        "pcityids":"1,340000,340800,",
        "cityname":"桐城市",
        "citysort":"1190",
        "citycode":"340881",
        "citytype":"4",
        "city_full_name":"安徽省安庆市桐城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341001,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"市辖区",
        "citysort":"1192",
        "citycode":"341001",
        "citytype":"4",
        "city_full_name":"安徽省黄山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341002,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"屯溪区",
        "citysort":"1193",
        "citycode":"341002",
        "citytype":"4",
        "city_full_name":"安徽省黄山市屯溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341003,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"黄山区",
        "citysort":"1194",
        "citycode":"341003",
        "citytype":"4",
        "city_full_name":"安徽省黄山市黄山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341004,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"徽州区",
        "citysort":"1195",
        "citycode":"341004",
        "citytype":"4",
        "city_full_name":"安徽省黄山市徽州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341021,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"歙县",
        "citysort":"1196",
        "citycode":"341021",
        "citytype":"4",
        "city_full_name":"安徽省黄山市歙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341022,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"休宁县",
        "citysort":"1197",
        "citycode":"341022",
        "citytype":"4",
        "city_full_name":"安徽省黄山市休宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341023,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"黟县",
        "citysort":"1198",
        "citycode":"341023",
        "citytype":"4",
        "city_full_name":"安徽省黄山市黟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341024,
        "pcityid":"341000",
        "pcityids":"1,340000,341000,",
        "cityname":"祁门县",
        "citysort":"1199",
        "citycode":"341024",
        "citytype":"4",
        "city_full_name":"安徽省黄山市祁门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341101,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"市辖区",
        "citysort":"1201",
        "citycode":"341101",
        "citytype":"4",
        "city_full_name":"安徽省滁州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341102,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"琅琊区",
        "citysort":"1202",
        "citycode":"341102",
        "citytype":"4",
        "city_full_name":"安徽省滁州市琅琊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341103,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"南谯区",
        "citysort":"1203",
        "citycode":"341103",
        "citytype":"4",
        "city_full_name":"安徽省滁州市南谯区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341122,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"来安县",
        "citysort":"1204",
        "citycode":"341122",
        "citytype":"4",
        "city_full_name":"安徽省滁州市来安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341124,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"全椒县",
        "citysort":"1205",
        "citycode":"341124",
        "citytype":"4",
        "city_full_name":"安徽省滁州市全椒县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341125,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"定远县",
        "citysort":"1206",
        "citycode":"341125",
        "citytype":"4",
        "city_full_name":"安徽省滁州市定远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341126,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"凤阳县",
        "citysort":"1207",
        "citycode":"341126",
        "citytype":"4",
        "city_full_name":"安徽省滁州市凤阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341181,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"天长市",
        "citysort":"1208",
        "citycode":"341181",
        "citytype":"4",
        "city_full_name":"安徽省滁州市天长市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341182,
        "pcityid":"341100",
        "pcityids":"1,340000,341100,",
        "cityname":"明光市",
        "citysort":"1209",
        "citycode":"341182",
        "citytype":"4",
        "city_full_name":"安徽省滁州市明光市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341201,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"市辖区",
        "citysort":"1211",
        "citycode":"341201",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341202,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"颍州区",
        "citysort":"1212",
        "citycode":"341202",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市颍州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341203,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"颍东区",
        "citysort":"1213",
        "citycode":"341203",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市颍东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341204,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"颍泉区",
        "citysort":"1214",
        "citycode":"341204",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市颍泉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341221,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"临泉县",
        "citysort":"1215",
        "citycode":"341221",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市临泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341222,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"太和县",
        "citysort":"1216",
        "citycode":"341222",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市太和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341225,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"阜南县",
        "citysort":"1217",
        "citycode":"341225",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市阜南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341226,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"颍上县",
        "citysort":"1218",
        "citycode":"341226",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市颍上县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341282,
        "pcityid":"341200",
        "pcityids":"1,340000,341200,",
        "cityname":"界首市",
        "citysort":"1219",
        "citycode":"341282",
        "citytype":"4",
        "city_full_name":"安徽省阜阳市界首市",
        "is_virtual_region":"0"
    },
    {
        "cityid":341301,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"市辖区",
        "citysort":"1221",
        "citycode":"341301",
        "citytype":"4",
        "city_full_name":"安徽省宿州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341302,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"埇桥区",
        "citysort":"1222",
        "citycode":"341302",
        "citytype":"4",
        "city_full_name":"安徽省宿州市埇桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341321,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"砀山县",
        "citysort":"1223",
        "citycode":"341321",
        "citytype":"4",
        "city_full_name":"安徽省宿州市砀山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341322,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"萧县",
        "citysort":"1224",
        "citycode":"341322",
        "citytype":"4",
        "city_full_name":"安徽省宿州市萧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341323,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"灵璧县",
        "citysort":"1225",
        "citycode":"341323",
        "citytype":"4",
        "city_full_name":"安徽省宿州市灵璧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341324,
        "pcityid":"341300",
        "pcityids":"1,340000,341300,",
        "cityname":"泗县",
        "citysort":"1226",
        "citycode":"341324",
        "citytype":"4",
        "city_full_name":"安徽省宿州市泗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341501,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"市辖区",
        "citysort":"1228",
        "citycode":"341501",
        "citytype":"4",
        "city_full_name":"安徽省六安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341502,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"金安区",
        "citysort":"1229",
        "citycode":"341502",
        "citytype":"4",
        "city_full_name":"安徽省六安市金安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341503,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"裕安区",
        "citysort":"1230",
        "citycode":"341503",
        "citytype":"4",
        "city_full_name":"安徽省六安市裕安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341521,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"寿县",
        "citysort":"1231",
        "citycode":"341521",
        "citytype":"4",
        "city_full_name":"安徽省六安市寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341522,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"霍邱县",
        "citysort":"1232",
        "citycode":"341522",
        "citytype":"4",
        "city_full_name":"安徽省六安市霍邱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341523,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"舒城县",
        "citysort":"1233",
        "citycode":"341523",
        "citytype":"4",
        "city_full_name":"安徽省六安市舒城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341524,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"金寨县",
        "citysort":"1234",
        "citycode":"341524",
        "citytype":"4",
        "city_full_name":"安徽省六安市金寨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341525,
        "pcityid":"341500",
        "pcityids":"1,340000,341500,",
        "cityname":"霍山县",
        "citysort":"1235",
        "citycode":"341525",
        "citytype":"4",
        "city_full_name":"安徽省六安市霍山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341601,
        "pcityid":"341600",
        "pcityids":"1,340000,341600,",
        "cityname":"市辖区",
        "citysort":"1237",
        "citycode":"341601",
        "citytype":"4",
        "city_full_name":"安徽省亳州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341602,
        "pcityid":"341600",
        "pcityids":"1,340000,341600,",
        "cityname":"谯城区",
        "citysort":"1238",
        "citycode":"341602",
        "citytype":"4",
        "city_full_name":"安徽省亳州市谯城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341621,
        "pcityid":"341600",
        "pcityids":"1,340000,341600,",
        "cityname":"涡阳县",
        "citysort":"1239",
        "citycode":"341621",
        "citytype":"4",
        "city_full_name":"安徽省亳州市涡阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341622,
        "pcityid":"341600",
        "pcityids":"1,340000,341600,",
        "cityname":"蒙城县",
        "citysort":"1240",
        "citycode":"341622",
        "citytype":"4",
        "city_full_name":"安徽省亳州市蒙城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341623,
        "pcityid":"341600",
        "pcityids":"1,340000,341600,",
        "cityname":"利辛县",
        "citysort":"1241",
        "citycode":"341623",
        "citytype":"4",
        "city_full_name":"安徽省亳州市利辛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341701,
        "pcityid":"341700",
        "pcityids":"1,340000,341700,",
        "cityname":"市辖区",
        "citysort":"1243",
        "citycode":"341701",
        "citytype":"4",
        "city_full_name":"安徽省池州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341702,
        "pcityid":"341700",
        "pcityids":"1,340000,341700,",
        "cityname":"贵池区",
        "citysort":"1244",
        "citycode":"341702",
        "citytype":"4",
        "city_full_name":"安徽省池州市贵池区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341721,
        "pcityid":"341700",
        "pcityids":"1,340000,341700,",
        "cityname":"东至县",
        "citysort":"1245",
        "citycode":"341721",
        "citytype":"4",
        "city_full_name":"安徽省池州市东至县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341722,
        "pcityid":"341700",
        "pcityids":"1,340000,341700,",
        "cityname":"石台县",
        "citysort":"1246",
        "citycode":"341722",
        "citytype":"4",
        "city_full_name":"安徽省池州市石台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341723,
        "pcityid":"341700",
        "pcityids":"1,340000,341700,",
        "cityname":"青阳县",
        "citysort":"1247",
        "citycode":"341723",
        "citytype":"4",
        "city_full_name":"安徽省池州市青阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341801,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"市辖区",
        "citysort":"1249",
        "citycode":"341801",
        "citytype":"4",
        "city_full_name":"安徽省宣城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341802,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"宣州区",
        "citysort":"1250",
        "citycode":"341802",
        "citytype":"4",
        "city_full_name":"安徽省宣城市宣州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":341821,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"郎溪县",
        "citysort":"1251",
        "citycode":"341821",
        "citytype":"4",
        "city_full_name":"安徽省宣城市郎溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341822,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"广德县",
        "citysort":"1252",
        "citycode":"341822",
        "citytype":"4",
        "city_full_name":"安徽省宣城市广德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341823,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"泾县",
        "citysort":"1253",
        "citycode":"341823",
        "citytype":"4",
        "city_full_name":"安徽省宣城市泾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341824,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"绩溪县",
        "citysort":"1254",
        "citycode":"341824",
        "citytype":"4",
        "city_full_name":"安徽省宣城市绩溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341825,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"旌德县",
        "citysort":"1255",
        "citycode":"341825",
        "citytype":"4",
        "city_full_name":"安徽省宣城市旌德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":341881,
        "pcityid":"341800",
        "pcityids":"1,340000,341800,",
        "cityname":"宁国市",
        "citysort":"1256",
        "citycode":"341881",
        "citytype":"4",
        "city_full_name":"安徽省宣城市宁国市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350101,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"市辖区",
        "citysort":"1259",
        "citycode":"350101",
        "citytype":"4",
        "city_full_name":"福建省福州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350102,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"鼓楼区",
        "citysort":"1260",
        "citycode":"350102",
        "citytype":"4",
        "city_full_name":"福建省福州市鼓楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350103,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"台江区",
        "citysort":"1261",
        "citycode":"350103",
        "citytype":"4",
        "city_full_name":"福建省福州市台江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350104,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"仓山区",
        "citysort":"1262",
        "citycode":"350104",
        "citytype":"4",
        "city_full_name":"福建省福州市仓山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350105,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"马尾区",
        "citysort":"1263",
        "citycode":"350105",
        "citytype":"4",
        "city_full_name":"福建省福州市马尾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350111,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"*安区",
        "citysort":"1264",
        "citycode":"350111",
        "citytype":"4",
        "city_full_name":"福建省福州市*安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350121,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"闽侯县",
        "citysort":"1265",
        "citycode":"350121",
        "citytype":"4",
        "city_full_name":"福建省福州市闽侯县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350122,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"连江县",
        "citysort":"1266",
        "citycode":"350122",
        "citytype":"4",
        "city_full_name":"福建省福州市连江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350123,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"罗源县",
        "citysort":"1267",
        "citycode":"350123",
        "citytype":"4",
        "city_full_name":"福建省福州市罗源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350124,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"闽清县",
        "citysort":"1268",
        "citycode":"350124",
        "citytype":"4",
        "city_full_name":"福建省福州市闽清县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350125,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"永泰县",
        "citysort":"1269",
        "citycode":"350125",
        "citytype":"4",
        "city_full_name":"福建省福州市永泰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350128,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"*潭县",
        "citysort":"1270",
        "citycode":"350128",
        "citytype":"4",
        "city_full_name":"福建省福州市*潭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350181,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"福清市",
        "citysort":"1271",
        "citycode":"350181",
        "citytype":"4",
        "city_full_name":"福建省福州市福清市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350182,
        "pcityid":"350100",
        "pcityids":"1,350000,350100,",
        "cityname":"长乐市",
        "citysort":"1272",
        "citycode":"350182",
        "citytype":"4",
        "city_full_name":"福建省福州市长乐市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350201,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"市辖区",
        "citysort":"1274",
        "citycode":"350201",
        "citytype":"4",
        "city_full_name":"福建省厦门市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350203,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"思明区",
        "citysort":"1275",
        "citycode":"350203",
        "citytype":"4",
        "city_full_name":"福建省厦门市思明区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350205,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"海沧区",
        "citysort":"1276",
        "citycode":"350205",
        "citytype":"4",
        "city_full_name":"福建省厦门市海沧区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350206,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"湖里区",
        "citysort":"1277",
        "citycode":"350206",
        "citytype":"4",
        "city_full_name":"福建省厦门市湖里区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350211,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"集美区",
        "citysort":"1278",
        "citycode":"350211",
        "citytype":"4",
        "city_full_name":"福建省厦门市集美区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350212,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"同安区",
        "citysort":"1279",
        "citycode":"350212",
        "citytype":"4",
        "city_full_name":"福建省厦门市同安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350213,
        "pcityid":"350200",
        "pcityids":"1,350000,350200,",
        "cityname":"翔安区",
        "citysort":"1280",
        "citycode":"350213",
        "citytype":"4",
        "city_full_name":"福建省厦门市翔安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350301,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"市辖区",
        "citysort":"1282",
        "citycode":"350301",
        "citytype":"4",
        "city_full_name":"福建省莆田市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350302,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"城厢区",
        "citysort":"1283",
        "citycode":"350302",
        "citytype":"4",
        "city_full_name":"福建省莆田市城厢区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350303,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"涵江区",
        "citysort":"1284",
        "citycode":"350303",
        "citytype":"4",
        "city_full_name":"福建省莆田市涵江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350304,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"荔城区",
        "citysort":"1285",
        "citycode":"350304",
        "citytype":"4",
        "city_full_name":"福建省莆田市荔城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350305,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"秀屿区",
        "citysort":"1286",
        "citycode":"350305",
        "citytype":"4",
        "city_full_name":"福建省莆田市秀屿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350322,
        "pcityid":"350300",
        "pcityids":"1,350000,350300,",
        "cityname":"仙游县",
        "citysort":"1287",
        "citycode":"350322",
        "citytype":"4",
        "city_full_name":"福建省莆田市仙游县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350401,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"市辖区",
        "citysort":"1289",
        "citycode":"350401",
        "citytype":"4",
        "city_full_name":"福建省三明市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350402,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"梅列区",
        "citysort":"1290",
        "citycode":"350402",
        "citytype":"4",
        "city_full_name":"福建省三明市梅列区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350403,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"三元区",
        "citysort":"1291",
        "citycode":"350403",
        "citytype":"4",
        "city_full_name":"福建省三明市三元区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350421,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"明溪县",
        "citysort":"1292",
        "citycode":"350421",
        "citytype":"4",
        "city_full_name":"福建省三明市明溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350423,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"清流县",
        "citysort":"1293",
        "citycode":"350423",
        "citytype":"4",
        "city_full_name":"福建省三明市清流县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350424,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"宁化县",
        "citysort":"1294",
        "citycode":"350424",
        "citytype":"4",
        "city_full_name":"福建省三明市宁化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350425,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"大田县",
        "citysort":"1295",
        "citycode":"350425",
        "citytype":"4",
        "city_full_name":"福建省三明市大田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350426,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"尤溪县",
        "citysort":"1296",
        "citycode":"350426",
        "citytype":"4",
        "city_full_name":"福建省三明市尤溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350427,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"沙县",
        "citysort":"1297",
        "citycode":"350427",
        "citytype":"4",
        "city_full_name":"福建省三明市沙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350428,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"将乐县",
        "citysort":"1298",
        "citycode":"350428",
        "citytype":"4",
        "city_full_name":"福建省三明市将乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350429,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"泰宁县",
        "citysort":"1299",
        "citycode":"350429",
        "citytype":"4",
        "city_full_name":"福建省三明市泰宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350430,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"建宁县",
        "citysort":"1300",
        "citycode":"350430",
        "citytype":"4",
        "city_full_name":"福建省三明市建宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350481,
        "pcityid":"350400",
        "pcityids":"1,350000,350400,",
        "cityname":"永安市",
        "citysort":"1301",
        "citycode":"350481",
        "citytype":"4",
        "city_full_name":"福建省三明市永安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350501,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"市辖区",
        "citysort":"1303",
        "citycode":"350501",
        "citytype":"4",
        "city_full_name":"福建省泉州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350502,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"鲤城区",
        "citysort":"1304",
        "citycode":"350502",
        "citytype":"4",
        "city_full_name":"福建省泉州市鲤城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350503,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"丰泽区",
        "citysort":"1305",
        "citycode":"350503",
        "citytype":"4",
        "city_full_name":"福建省泉州市丰泽区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350504,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"洛江区",
        "citysort":"1306",
        "citycode":"350504",
        "citytype":"4",
        "city_full_name":"福建省泉州市洛江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350505,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"泉港区",
        "citysort":"1307",
        "citycode":"350505",
        "citytype":"4",
        "city_full_name":"福建省泉州市泉港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350521,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"惠安县",
        "citysort":"1308",
        "citycode":"350521",
        "citytype":"4",
        "city_full_name":"福建省泉州市惠安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350524,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"安溪县",
        "citysort":"1309",
        "citycode":"350524",
        "citytype":"4",
        "city_full_name":"福建省泉州市安溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350525,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"永春县",
        "citysort":"1310",
        "citycode":"350525",
        "citytype":"4",
        "city_full_name":"福建省泉州市永春县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350526,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"德化县",
        "citysort":"1311",
        "citycode":"350526",
        "citytype":"4",
        "city_full_name":"福建省泉州市德化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350527,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"金门县",
        "citysort":"1312",
        "citycode":"350527",
        "citytype":"4",
        "city_full_name":"福建省泉州市金门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350581,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"石狮市",
        "citysort":"1313",
        "citycode":"350581",
        "citytype":"4",
        "city_full_name":"福建省泉州市石狮市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350582,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"*江市",
        "citysort":"1314",
        "citycode":"350582",
        "citytype":"4",
        "city_full_name":"福建省泉州市*江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350583,
        "pcityid":"350500",
        "pcityids":"1,350000,350500,",
        "cityname":"南安市",
        "citysort":"1315",
        "citycode":"350583",
        "citytype":"4",
        "city_full_name":"福建省泉州市南安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350601,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"市辖区",
        "citysort":"1317",
        "citycode":"350601",
        "citytype":"4",
        "city_full_name":"福建省漳州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350602,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"芗城区",
        "citysort":"1318",
        "citycode":"350602",
        "citytype":"4",
        "city_full_name":"福建省漳州市芗城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350603,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"龙文区",
        "citysort":"1319",
        "citycode":"350603",
        "citytype":"4",
        "city_full_name":"福建省漳州市龙文区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350622,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"云霄县",
        "citysort":"1320",
        "citycode":"350622",
        "citytype":"4",
        "city_full_name":"福建省漳州市云霄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350623,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"漳浦县",
        "citysort":"1321",
        "citycode":"350623",
        "citytype":"4",
        "city_full_name":"福建省漳州市漳浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350624,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"诏安县",
        "citysort":"1322",
        "citycode":"350624",
        "citytype":"4",
        "city_full_name":"福建省漳州市诏安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350625,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"长泰县",
        "citysort":"1323",
        "citycode":"350625",
        "citytype":"4",
        "city_full_name":"福建省漳州市长泰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350626,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"东山县",
        "citysort":"1324",
        "citycode":"350626",
        "citytype":"4",
        "city_full_name":"福建省漳州市东山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350627,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"南靖县",
        "citysort":"1325",
        "citycode":"350627",
        "citytype":"4",
        "city_full_name":"福建省漳州市南靖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350628,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"*和县",
        "citysort":"1326",
        "citycode":"350628",
        "citytype":"4",
        "city_full_name":"福建省漳州市*和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350629,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"华安县",
        "citysort":"1327",
        "citycode":"350629",
        "citytype":"4",
        "city_full_name":"福建省漳州市华安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350681,
        "pcityid":"350600",
        "pcityids":"1,350000,350600,",
        "cityname":"龙海市",
        "citysort":"1328",
        "citycode":"350681",
        "citytype":"4",
        "city_full_name":"福建省漳州市龙海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350701,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"市辖区",
        "citysort":"1330",
        "citycode":"350701",
        "citytype":"4",
        "city_full_name":"福建省南*市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350702,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"延*区",
        "citysort":"1331",
        "citycode":"350702",
        "citytype":"4",
        "city_full_name":"福建省南*市延*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350721,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"顺昌县",
        "citysort":"1332",
        "citycode":"350721",
        "citytype":"4",
        "city_full_name":"福建省南*市顺昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350722,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"浦城县",
        "citysort":"1333",
        "citycode":"350722",
        "citytype":"4",
        "city_full_name":"福建省南*市浦城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350723,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"光泽县",
        "citysort":"1334",
        "citycode":"350723",
        "citytype":"4",
        "city_full_name":"福建省南*市光泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350724,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"松溪县",
        "citysort":"1335",
        "citycode":"350724",
        "citytype":"4",
        "city_full_name":"福建省南*市松溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350725,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"政和县",
        "citysort":"1336",
        "citycode":"350725",
        "citytype":"4",
        "city_full_name":"福建省南*市政和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350781,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"邵武市",
        "citysort":"1337",
        "citycode":"350781",
        "citytype":"4",
        "city_full_name":"福建省南*市邵武市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350782,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"武夷山市",
        "citysort":"1338",
        "citycode":"350782",
        "citytype":"4",
        "city_full_name":"福建省南*市武夷山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350783,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"建瓯市",
        "citysort":"1339",
        "citycode":"350783",
        "citytype":"4",
        "city_full_name":"福建省南*市建瓯市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350784,
        "pcityid":"350700",
        "pcityids":"1,350000,350700,",
        "cityname":"建阳市",
        "citysort":"1340",
        "citycode":"350784",
        "citytype":"4",
        "city_full_name":"福建省南*市建阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350801,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"市辖区",
        "citysort":"1342",
        "citycode":"350801",
        "citytype":"4",
        "city_full_name":"福建省龙岩市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350802,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"新罗区",
        "citysort":"1343",
        "citycode":"350802",
        "citytype":"4",
        "city_full_name":"福建省龙岩市新罗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350821,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"长汀县",
        "citysort":"1344",
        "citycode":"350821",
        "citytype":"4",
        "city_full_name":"福建省龙岩市长汀县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350822,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"永定县",
        "citysort":"1345",
        "citycode":"350822",
        "citytype":"4",
        "city_full_name":"福建省龙岩市永定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350823,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"上杭县",
        "citysort":"1346",
        "citycode":"350823",
        "citytype":"4",
        "city_full_name":"福建省龙岩市上杭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350824,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"武*县",
        "citysort":"1347",
        "citycode":"350824",
        "citytype":"4",
        "city_full_name":"福建省龙岩市武*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350825,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"连城县",
        "citysort":"1348",
        "citycode":"350825",
        "citytype":"4",
        "city_full_name":"福建省龙岩市连城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350881,
        "pcityid":"350800",
        "pcityids":"1,350000,350800,",
        "cityname":"漳*市",
        "citysort":"1349",
        "citycode":"350881",
        "citytype":"4",
        "city_full_name":"福建省龙岩市漳*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350901,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"市辖区",
        "citysort":"1351",
        "citycode":"350901",
        "citytype":"4",
        "city_full_name":"福建省宁德市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350902,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"蕉城区",
        "citysort":"1352",
        "citycode":"350902",
        "citytype":"4",
        "city_full_name":"福建省宁德市蕉城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":350921,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"霞浦县",
        "citysort":"1353",
        "citycode":"350921",
        "citytype":"4",
        "city_full_name":"福建省宁德市霞浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350922,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"古田县",
        "citysort":"1354",
        "citycode":"350922",
        "citytype":"4",
        "city_full_name":"福建省宁德市古田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350923,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"屏南县",
        "citysort":"1355",
        "citycode":"350923",
        "citytype":"4",
        "city_full_name":"福建省宁德市屏南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350924,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"寿宁县",
        "citysort":"1356",
        "citycode":"350924",
        "citytype":"4",
        "city_full_name":"福建省宁德市寿宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350925,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"周宁县",
        "citysort":"1357",
        "citycode":"350925",
        "citytype":"4",
        "city_full_name":"福建省宁德市周宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350926,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"柘荣县",
        "citysort":"1358",
        "citycode":"350926",
        "citytype":"4",
        "city_full_name":"福建省宁德市柘荣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":350981,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"福安市",
        "citysort":"1359",
        "citycode":"350981",
        "citytype":"4",
        "city_full_name":"福建省宁德市福安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":350982,
        "pcityid":"350900",
        "pcityids":"1,350000,350900,",
        "cityname":"福鼎市",
        "citysort":"1360",
        "citycode":"350982",
        "citytype":"4",
        "city_full_name":"福建省宁德市福鼎市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360101,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"市辖区",
        "citysort":"1363",
        "citycode":"360101",
        "citytype":"4",
        "city_full_name":"江*省南昌市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360102,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"东湖区",
        "citysort":"1364",
        "citycode":"360102",
        "citytype":"4",
        "city_full_name":"江*省南昌市东湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360103,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"*湖区",
        "citysort":"1365",
        "citycode":"360103",
        "citytype":"4",
        "city_full_name":"江*省南昌市*湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360104,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"青云谱区",
        "citysort":"1366",
        "citycode":"360104",
        "citytype":"4",
        "city_full_name":"江*省南昌市青云谱区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360105,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"湾里区",
        "citysort":"1367",
        "citycode":"360105",
        "citytype":"4",
        "city_full_name":"江*省南昌市湾里区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360111,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"青山湖区",
        "citysort":"1368",
        "citycode":"360111",
        "citytype":"4",
        "city_full_name":"江*省南昌市青山湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360121,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"南昌县",
        "citysort":"1369",
        "citycode":"360121",
        "citytype":"4",
        "city_full_name":"江*省南昌市南昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360122,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"新建县",
        "citysort":"1370",
        "citycode":"360122",
        "citytype":"4",
        "city_full_name":"江*省南昌市新建县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360123,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"安义县",
        "citysort":"1371",
        "citycode":"360123",
        "citytype":"4",
        "city_full_name":"江*省南昌市安义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360124,
        "pcityid":"360100",
        "pcityids":"1,360000,360100,",
        "cityname":"进贤县",
        "citysort":"1372",
        "citycode":"360124",
        "citytype":"4",
        "city_full_name":"江*省南昌市进贤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360201,
        "pcityid":"360200",
        "pcityids":"1,360000,360200,",
        "cityname":"市辖区",
        "citysort":"1374",
        "citycode":"360201",
        "citytype":"4",
        "city_full_name":"江*省景德镇市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360202,
        "pcityid":"360200",
        "pcityids":"1,360000,360200,",
        "cityname":"昌江区",
        "citysort":"1375",
        "citycode":"360202",
        "citytype":"4",
        "city_full_name":"江*省景德镇市昌江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360203,
        "pcityid":"360200",
        "pcityids":"1,360000,360200,",
        "cityname":"珠山区",
        "citysort":"1376",
        "citycode":"360203",
        "citytype":"4",
        "city_full_name":"江*省景德镇市珠山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360222,
        "pcityid":"360200",
        "pcityids":"1,360000,360200,",
        "cityname":"浮梁县",
        "citysort":"1377",
        "citycode":"360222",
        "citytype":"4",
        "city_full_name":"江*省景德镇市浮梁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360281,
        "pcityid":"360200",
        "pcityids":"1,360000,360200,",
        "cityname":"乐*市",
        "citysort":"1378",
        "citycode":"360281",
        "citytype":"4",
        "city_full_name":"江*省景德镇市乐*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360301,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"市辖区",
        "citysort":"1380",
        "citycode":"360301",
        "citytype":"4",
        "city_full_name":"江*省萍乡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360302,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"安源区",
        "citysort":"1381",
        "citycode":"360302",
        "citytype":"4",
        "city_full_name":"江*省萍乡市安源区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360313,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"湘东区",
        "citysort":"1382",
        "citycode":"360313",
        "citytype":"4",
        "city_full_name":"江*省萍乡市湘东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360321,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"莲花县",
        "citysort":"1383",
        "citycode":"360321",
        "citytype":"4",
        "city_full_name":"江*省萍乡市莲花县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360322,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"上栗县",
        "citysort":"1384",
        "citycode":"360322",
        "citytype":"4",
        "city_full_name":"江*省萍乡市上栗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360323,
        "pcityid":"360300",
        "pcityids":"1,360000,360300,",
        "cityname":"芦溪县",
        "citysort":"1385",
        "citycode":"360323",
        "citytype":"4",
        "city_full_name":"江*省萍乡市芦溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360401,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"市辖区",
        "citysort":"1387",
        "citycode":"360401",
        "citytype":"4",
        "city_full_name":"江*省九江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360402,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"庐山区",
        "citysort":"1388",
        "citycode":"360402",
        "citytype":"4",
        "city_full_name":"江*省九江市庐山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360403,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"浔阳区",
        "citysort":"1389",
        "citycode":"360403",
        "citytype":"4",
        "city_full_name":"江*省九江市浔阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360421,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"九江县",
        "citysort":"1390",
        "citycode":"360421",
        "citytype":"4",
        "city_full_name":"江*省九江市九江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360423,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"武宁县",
        "citysort":"1391",
        "citycode":"360423",
        "citytype":"4",
        "city_full_name":"江*省九江市武宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360424,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"修水县",
        "citysort":"1392",
        "citycode":"360424",
        "citytype":"4",
        "city_full_name":"江*省九江市修水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360425,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"永修县",
        "citysort":"1393",
        "citycode":"360425",
        "citytype":"4",
        "city_full_name":"江*省九江市永修县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360426,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"德安县",
        "citysort":"1394",
        "citycode":"360426",
        "citytype":"4",
        "city_full_name":"江*省九江市德安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360427,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"星子县",
        "citysort":"1395",
        "citycode":"360427",
        "citytype":"4",
        "city_full_name":"江*省九江市星子县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360428,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"都昌县",
        "citysort":"1396",
        "citycode":"360428",
        "citytype":"4",
        "city_full_name":"江*省九江市都昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360429,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"湖口县",
        "citysort":"1397",
        "citycode":"360429",
        "citytype":"4",
        "city_full_name":"江*省九江市湖口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360430,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"彭泽县",
        "citysort":"1398",
        "citycode":"360430",
        "citytype":"4",
        "city_full_name":"江*省九江市彭泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360481,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"瑞昌市",
        "citysort":"1399",
        "citycode":"360481",
        "citytype":"4",
        "city_full_name":"江*省九江市瑞昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360482,
        "pcityid":"360400",
        "pcityids":"1,360000,360400,",
        "cityname":"共青城市",
        "citysort":"1400",
        "citycode":"360482",
        "citytype":"4",
        "city_full_name":"江*省九江市共青城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360501,
        "pcityid":"360500",
        "pcityids":"1,360000,360500,",
        "cityname":"市辖区",
        "citysort":"1402",
        "citycode":"360501",
        "citytype":"4",
        "city_full_name":"江*省新余市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360502,
        "pcityid":"360500",
        "pcityids":"1,360000,360500,",
        "cityname":"渝水区",
        "citysort":"1403",
        "citycode":"360502",
        "citytype":"4",
        "city_full_name":"江*省新余市渝水区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360521,
        "pcityid":"360500",
        "pcityids":"1,360000,360500,",
        "cityname":"分宜县",
        "citysort":"1404",
        "citycode":"360521",
        "citytype":"4",
        "city_full_name":"江*省新余市分宜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360601,
        "pcityid":"360600",
        "pcityids":"1,360000,360600,",
        "cityname":"市辖区",
        "citysort":"1406",
        "citycode":"360601",
        "citytype":"4",
        "city_full_name":"江*省鹰潭市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360602,
        "pcityid":"360600",
        "pcityids":"1,360000,360600,",
        "cityname":"月湖区",
        "citysort":"1407",
        "citycode":"360602",
        "citytype":"4",
        "city_full_name":"江*省鹰潭市月湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360622,
        "pcityid":"360600",
        "pcityids":"1,360000,360600,",
        "cityname":"余江县",
        "citysort":"1408",
        "citycode":"360622",
        "citytype":"4",
        "city_full_name":"江*省鹰潭市余江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360681,
        "pcityid":"360600",
        "pcityids":"1,360000,360600,",
        "cityname":"贵溪市",
        "citysort":"1409",
        "citycode":"360681",
        "citytype":"4",
        "city_full_name":"江*省鹰潭市贵溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360701,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"市辖区",
        "citysort":"1411",
        "citycode":"360701",
        "citytype":"4",
        "city_full_name":"江*省赣州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360702,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"章贡区",
        "citysort":"1412",
        "citycode":"360702",
        "citytype":"4",
        "city_full_name":"江*省赣州市章贡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360703,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"南康区",
        "citysort":"1413",
        "citycode":"360703",
        "citytype":"4",
        "city_full_name":"江*省赣州市南康区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360721,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"赣县",
        "citysort":"1414",
        "citycode":"360721",
        "citytype":"4",
        "city_full_name":"江*省赣州市赣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360722,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"信丰县",
        "citysort":"1415",
        "citycode":"360722",
        "citytype":"4",
        "city_full_name":"江*省赣州市信丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360723,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"大余县",
        "citysort":"1416",
        "citycode":"360723",
        "citytype":"4",
        "city_full_name":"江*省赣州市大余县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360724,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"上犹县",
        "citysort":"1417",
        "citycode":"360724",
        "citytype":"4",
        "city_full_name":"江*省赣州市上犹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360725,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"崇义县",
        "citysort":"1418",
        "citycode":"360725",
        "citytype":"4",
        "city_full_name":"江*省赣州市崇义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360726,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"安远县",
        "citysort":"1419",
        "citycode":"360726",
        "citytype":"4",
        "city_full_name":"江*省赣州市安远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360727,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"龙南县",
        "citysort":"1420",
        "citycode":"360727",
        "citytype":"4",
        "city_full_name":"江*省赣州市龙南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360728,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"定南县",
        "citysort":"1421",
        "citycode":"360728",
        "citytype":"4",
        "city_full_name":"江*省赣州市定南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360729,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"全南县",
        "citysort":"1422",
        "citycode":"360729",
        "citytype":"4",
        "city_full_name":"江*省赣州市全南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360730,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"宁都县",
        "citysort":"1423",
        "citycode":"360730",
        "citytype":"4",
        "city_full_name":"江*省赣州市宁都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360731,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"于都县",
        "citysort":"1424",
        "citycode":"360731",
        "citytype":"4",
        "city_full_name":"江*省赣州市于都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360732,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"兴国县",
        "citysort":"1425",
        "citycode":"360732",
        "citytype":"4",
        "city_full_name":"江*省赣州市兴国县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360733,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"会昌县",
        "citysort":"1426",
        "citycode":"360733",
        "citytype":"4",
        "city_full_name":"江*省赣州市会昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360734,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"寻乌县",
        "citysort":"1427",
        "citycode":"360734",
        "citytype":"4",
        "city_full_name":"江*省赣州市寻乌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360735,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"石城县",
        "citysort":"1428",
        "citycode":"360735",
        "citytype":"4",
        "city_full_name":"江*省赣州市石城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360781,
        "pcityid":"360700",
        "pcityids":"1,360000,360700,",
        "cityname":"瑞金市",
        "citysort":"1429",
        "citycode":"360781",
        "citytype":"4",
        "city_full_name":"江*省赣州市瑞金市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360801,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"市辖区",
        "citysort":"1431",
        "citycode":"360801",
        "citytype":"4",
        "city_full_name":"江*省吉安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360802,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"吉州区",
        "citysort":"1432",
        "citycode":"360802",
        "citytype":"4",
        "city_full_name":"江*省吉安市吉州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360803,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"青原区",
        "citysort":"1433",
        "citycode":"360803",
        "citytype":"4",
        "city_full_name":"江*省吉安市青原区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360821,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"吉安县",
        "citysort":"1434",
        "citycode":"360821",
        "citytype":"4",
        "city_full_name":"江*省吉安市吉安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360822,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"吉水县",
        "citysort":"1435",
        "citycode":"360822",
        "citytype":"4",
        "city_full_name":"江*省吉安市吉水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360823,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"峡江县",
        "citysort":"1436",
        "citycode":"360823",
        "citytype":"4",
        "city_full_name":"江*省吉安市峡江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360824,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"新干县",
        "citysort":"1437",
        "citycode":"360824",
        "citytype":"4",
        "city_full_name":"江*省吉安市新干县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360825,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"永丰县",
        "citysort":"1438",
        "citycode":"360825",
        "citytype":"4",
        "city_full_name":"江*省吉安市永丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360826,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"泰和县",
        "citysort":"1439",
        "citycode":"360826",
        "citytype":"4",
        "city_full_name":"江*省吉安市泰和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360827,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"遂川县",
        "citysort":"1440",
        "citycode":"360827",
        "citytype":"4",
        "city_full_name":"江*省吉安市遂川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360828,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"万安县",
        "citysort":"1441",
        "citycode":"360828",
        "citytype":"4",
        "city_full_name":"江*省吉安市万安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360829,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"安福县",
        "citysort":"1442",
        "citycode":"360829",
        "citytype":"4",
        "city_full_name":"江*省吉安市安福县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360830,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"永新县",
        "citysort":"1443",
        "citycode":"360830",
        "citytype":"4",
        "city_full_name":"江*省吉安市永新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360881,
        "pcityid":"360800",
        "pcityids":"1,360000,360800,",
        "cityname":"井冈山市",
        "citysort":"1444",
        "citycode":"360881",
        "citytype":"4",
        "city_full_name":"江*省吉安市井冈山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360901,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"市辖区",
        "citysort":"1446",
        "citycode":"360901",
        "citytype":"4",
        "city_full_name":"江*省宜春市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360902,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"袁州区",
        "citysort":"1447",
        "citycode":"360902",
        "citytype":"4",
        "city_full_name":"江*省宜春市袁州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":360921,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"奉新县",
        "citysort":"1448",
        "citycode":"360921",
        "citytype":"4",
        "city_full_name":"江*省宜春市奉新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360922,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"万载县",
        "citysort":"1449",
        "citycode":"360922",
        "citytype":"4",
        "city_full_name":"江*省宜春市万载县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360923,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"上高县",
        "citysort":"1450",
        "citycode":"360923",
        "citytype":"4",
        "city_full_name":"江*省宜春市上高县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360924,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"宜丰县",
        "citysort":"1451",
        "citycode":"360924",
        "citytype":"4",
        "city_full_name":"江*省宜春市宜丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360925,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"靖安县",
        "citysort":"1452",
        "citycode":"360925",
        "citytype":"4",
        "city_full_name":"江*省宜春市靖安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360926,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"铜鼓县",
        "citysort":"1453",
        "citycode":"360926",
        "citytype":"4",
        "city_full_name":"江*省宜春市铜鼓县",
        "is_virtual_region":"0"
    },
    {
        "cityid":360981,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"丰城市",
        "citysort":"1454",
        "citycode":"360981",
        "citytype":"4",
        "city_full_name":"江*省宜春市丰城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360982,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"樟树市",
        "citysort":"1455",
        "citycode":"360982",
        "citytype":"4",
        "city_full_name":"江*省宜春市樟树市",
        "is_virtual_region":"0"
    },
    {
        "cityid":360983,
        "pcityid":"360900",
        "pcityids":"1,360000,360900,",
        "cityname":"高安市",
        "citysort":"1456",
        "citycode":"360983",
        "citytype":"4",
        "city_full_name":"江*省宜春市高安市",
        "is_virtual_region":"0"
    },
    {
        "cityid":361001,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"市辖区",
        "citysort":"1458",
        "citycode":"361001",
        "citytype":"4",
        "city_full_name":"江*省抚州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":361002,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"临川区",
        "citysort":"1459",
        "citycode":"361002",
        "citytype":"4",
        "city_full_name":"江*省抚州市临川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":361021,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"南城县",
        "citysort":"1460",
        "citycode":"361021",
        "citytype":"4",
        "city_full_name":"江*省抚州市南城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361022,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"黎川县",
        "citysort":"1461",
        "citycode":"361022",
        "citytype":"4",
        "city_full_name":"江*省抚州市黎川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361023,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"南丰县",
        "citysort":"1462",
        "citycode":"361023",
        "citytype":"4",
        "city_full_name":"江*省抚州市南丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361024,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"崇仁县",
        "citysort":"1463",
        "citycode":"361024",
        "citytype":"4",
        "city_full_name":"江*省抚州市崇仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361025,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"乐安县",
        "citysort":"1464",
        "citycode":"361025",
        "citytype":"4",
        "city_full_name":"江*省抚州市乐安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361026,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"宜黄县",
        "citysort":"1465",
        "citycode":"361026",
        "citytype":"4",
        "city_full_name":"江*省抚州市宜黄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361027,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"金溪县",
        "citysort":"1466",
        "citycode":"361027",
        "citytype":"4",
        "city_full_name":"江*省抚州市金溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361028,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"资溪县",
        "citysort":"1467",
        "citycode":"361028",
        "citytype":"4",
        "city_full_name":"江*省抚州市资溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361029,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"东乡县",
        "citysort":"1468",
        "citycode":"361029",
        "citytype":"4",
        "city_full_name":"江*省抚州市东乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361030,
        "pcityid":"361000",
        "pcityids":"1,360000,361000,",
        "cityname":"广昌县",
        "citysort":"1469",
        "citycode":"361030",
        "citytype":"4",
        "city_full_name":"江*省抚州市广昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361101,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"市辖区",
        "citysort":"1471",
        "citycode":"361101",
        "citytype":"4",
        "city_full_name":"江*省上饶市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":361102,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"信州区",
        "citysort":"1472",
        "citycode":"361102",
        "citytype":"4",
        "city_full_name":"江*省上饶市信州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":361121,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"上饶县",
        "citysort":"1473",
        "citycode":"361121",
        "citytype":"4",
        "city_full_name":"江*省上饶市上饶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361122,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"广丰县",
        "citysort":"1474",
        "citycode":"361122",
        "citytype":"4",
        "city_full_name":"江*省上饶市广丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361123,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"玉山县",
        "citysort":"1475",
        "citycode":"361123",
        "citytype":"4",
        "city_full_name":"江*省上饶市玉山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361124,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"铅山县",
        "citysort":"1476",
        "citycode":"361124",
        "citytype":"4",
        "city_full_name":"江*省上饶市铅山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361125,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"横峰县",
        "citysort":"1477",
        "citycode":"361125",
        "citytype":"4",
        "city_full_name":"江*省上饶市横峰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361126,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"弋阳县",
        "citysort":"1478",
        "citycode":"361126",
        "citytype":"4",
        "city_full_name":"江*省上饶市弋阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361127,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"余干县",
        "citysort":"1479",
        "citycode":"361127",
        "citytype":"4",
        "city_full_name":"江*省上饶市余干县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361128,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"鄱阳县",
        "citysort":"1480",
        "citycode":"361128",
        "citytype":"4",
        "city_full_name":"江*省上饶市鄱阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361129,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"万年县",
        "citysort":"1481",
        "citycode":"361129",
        "citytype":"4",
        "city_full_name":"江*省上饶市万年县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361130,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"婺源县",
        "citysort":"1482",
        "citycode":"361130",
        "citytype":"4",
        "city_full_name":"江*省上饶市婺源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":361181,
        "pcityid":"361100",
        "pcityids":"1,360000,361100,",
        "cityname":"德兴市",
        "citysort":"1483",
        "citycode":"361181",
        "citytype":"4",
        "city_full_name":"江*省上饶市德兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370101,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"市辖区",
        "citysort":"1486",
        "citycode":"370101",
        "citytype":"4",
        "city_full_name":"山东省济南市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370102,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"历下区",
        "citysort":"1487",
        "citycode":"370102",
        "citytype":"4",
        "city_full_name":"山东省济南市历下区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370103,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"市中区",
        "citysort":"1488",
        "citycode":"370103",
        "citytype":"4",
        "city_full_name":"山东省济南市市中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370104,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"槐荫区",
        "citysort":"1489",
        "citycode":"370104",
        "citytype":"4",
        "city_full_name":"山东省济南市槐荫区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370105,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"天桥区",
        "citysort":"1490",
        "citycode":"370105",
        "citytype":"4",
        "city_full_name":"山东省济南市天桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370112,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"历城区",
        "citysort":"1491",
        "citycode":"370112",
        "citytype":"4",
        "city_full_name":"山东省济南市历城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370113,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"长清区",
        "citysort":"1492",
        "citycode":"370113",
        "citytype":"4",
        "city_full_name":"山东省济南市长清区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370124,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"*阴县",
        "citysort":"1493",
        "citycode":"370124",
        "citytype":"4",
        "city_full_name":"山东省济南市*阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370125,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"济阳县",
        "citysort":"1494",
        "citycode":"370125",
        "citytype":"4",
        "city_full_name":"山东省济南市济阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370126,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"商河县",
        "citysort":"1495",
        "citycode":"370126",
        "citytype":"4",
        "city_full_name":"山东省济南市商河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370181,
        "pcityid":"370100",
        "pcityids":"1,370000,370100,",
        "cityname":"章丘市",
        "citysort":"1496",
        "citycode":"370181",
        "citytype":"4",
        "city_full_name":"山东省济南市章丘市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370201,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"市辖区",
        "citysort":"1498",
        "citycode":"370201",
        "citytype":"4",
        "city_full_name":"山东省青岛市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370202,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"市南区",
        "citysort":"1499",
        "citycode":"370202",
        "citytype":"4",
        "city_full_name":"山东省青岛市市南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370203,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"市北区",
        "citysort":"1500",
        "citycode":"370203",
        "citytype":"4",
        "city_full_name":"山东省青岛市市北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370211,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"黄岛区",
        "citysort":"1501",
        "citycode":"370211",
        "citytype":"4",
        "city_full_name":"山东省青岛市黄岛区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370212,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"崂山区",
        "citysort":"1502",
        "citycode":"370212",
        "citytype":"4",
        "city_full_name":"山东省青岛市崂山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370213,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"李沧区",
        "citysort":"1503",
        "citycode":"370213",
        "citytype":"4",
        "city_full_name":"山东省青岛市李沧区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370214,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"城阳区",
        "citysort":"1504",
        "citycode":"370214",
        "citytype":"4",
        "city_full_name":"山东省青岛市城阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370281,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"胶州市",
        "citysort":"1505",
        "citycode":"370281",
        "citytype":"4",
        "city_full_name":"山东省青岛市胶州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370282,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"即墨市",
        "citysort":"1506",
        "citycode":"370282",
        "citytype":"4",
        "city_full_name":"山东省青岛市即墨市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370283,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"*度市",
        "citysort":"1507",
        "citycode":"370283",
        "citytype":"4",
        "city_full_name":"山东省青岛市*度市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370285,
        "pcityid":"370200",
        "pcityids":"1,370000,370200,",
        "cityname":"莱*市",
        "citysort":"1508",
        "citycode":"370285",
        "citytype":"4",
        "city_full_name":"山东省青岛市莱*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370301,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"市辖区",
        "citysort":"1510",
        "citycode":"370301",
        "citytype":"4",
        "city_full_name":"山东省淄博市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370302,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"淄川区",
        "citysort":"1511",
        "citycode":"370302",
        "citytype":"4",
        "city_full_name":"山东省淄博市淄川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370303,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"张店区",
        "citysort":"1512",
        "citycode":"370303",
        "citytype":"4",
        "city_full_name":"山东省淄博市张店区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370304,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"博山区",
        "citysort":"1513",
        "citycode":"370304",
        "citytype":"4",
        "city_full_name":"山东省淄博市博山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370305,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"临淄区",
        "citysort":"1514",
        "citycode":"370305",
        "citytype":"4",
        "city_full_name":"山东省淄博市临淄区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370306,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"周村区",
        "citysort":"1515",
        "citycode":"370306",
        "citytype":"4",
        "city_full_name":"山东省淄博市周村区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370321,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"桓台县",
        "citysort":"1516",
        "citycode":"370321",
        "citytype":"4",
        "city_full_name":"山东省淄博市桓台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370322,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"高青县",
        "citysort":"1517",
        "citycode":"370322",
        "citytype":"4",
        "city_full_name":"山东省淄博市高青县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370323,
        "pcityid":"370300",
        "pcityids":"1,370000,370300,",
        "cityname":"沂源县",
        "citysort":"1518",
        "citycode":"370323",
        "citytype":"4",
        "city_full_name":"山东省淄博市沂源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370401,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"市辖区",
        "citysort":"1520",
        "citycode":"370401",
        "citytype":"4",
        "city_full_name":"山东省枣庄市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370402,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"市中区",
        "citysort":"1521",
        "citycode":"370402",
        "citytype":"4",
        "city_full_name":"山东省枣庄市市中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370403,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"薛城区",
        "citysort":"1522",
        "citycode":"370403",
        "citytype":"4",
        "city_full_name":"山东省枣庄市薛城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370404,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"峄城区",
        "citysort":"1523",
        "citycode":"370404",
        "citytype":"4",
        "city_full_name":"山东省枣庄市峄城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370405,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"台儿庄区",
        "citysort":"1524",
        "citycode":"370405",
        "citytype":"4",
        "city_full_name":"山东省枣庄市台儿庄区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370406,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"山亭区",
        "citysort":"1525",
        "citycode":"370406",
        "citytype":"4",
        "city_full_name":"山东省枣庄市山亭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370481,
        "pcityid":"370400",
        "pcityids":"1,370000,370400,",
        "cityname":"滕州市",
        "citysort":"1526",
        "citycode":"370481",
        "citytype":"4",
        "city_full_name":"山东省枣庄市滕州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370501,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"市辖区",
        "citysort":"1528",
        "citycode":"370501",
        "citytype":"4",
        "city_full_name":"山东省东营市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370502,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"东营区",
        "citysort":"1529",
        "citycode":"370502",
        "citytype":"4",
        "city_full_name":"山东省东营市东营区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370503,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"河口区",
        "citysort":"1530",
        "citycode":"370503",
        "citytype":"4",
        "city_full_name":"山东省东营市河口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370521,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"垦利县",
        "citysort":"1531",
        "citycode":"370521",
        "citytype":"4",
        "city_full_name":"山东省东营市垦利县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370522,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"利津县",
        "citysort":"1532",
        "citycode":"370522",
        "citytype":"4",
        "city_full_name":"山东省东营市利津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370523,
        "pcityid":"370500",
        "pcityids":"1,370000,370500,",
        "cityname":"广饶县",
        "citysort":"1533",
        "citycode":"370523",
        "citytype":"4",
        "city_full_name":"山东省东营市广饶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370601,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"市辖区",
        "citysort":"1535",
        "citycode":"370601",
        "citytype":"4",
        "city_full_name":"山东省烟台市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370602,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"芝罘区",
        "citysort":"1536",
        "citycode":"370602",
        "citytype":"4",
        "city_full_name":"山东省烟台市芝罘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370611,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"福山区",
        "citysort":"1537",
        "citycode":"370611",
        "citytype":"4",
        "city_full_name":"山东省烟台市福山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370612,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"牟*区",
        "citysort":"1538",
        "citycode":"370612",
        "citytype":"4",
        "city_full_name":"山东省烟台市牟*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370613,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"莱山区",
        "citysort":"1539",
        "citycode":"370613",
        "citytype":"4",
        "city_full_name":"山东省烟台市莱山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370634,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"长岛县",
        "citysort":"1540",
        "citycode":"370634",
        "citytype":"4",
        "city_full_name":"山东省烟台市长岛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370681,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"龙口市",
        "citysort":"1541",
        "citycode":"370681",
        "citytype":"4",
        "city_full_name":"山东省烟台市龙口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370682,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"莱阳市",
        "citysort":"1542",
        "citycode":"370682",
        "citytype":"4",
        "city_full_name":"山东省烟台市莱阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370683,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"莱州市",
        "citysort":"1543",
        "citycode":"370683",
        "citytype":"4",
        "city_full_name":"山东省烟台市莱州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370684,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"蓬莱市",
        "citysort":"1544",
        "citycode":"370684",
        "citytype":"4",
        "city_full_name":"山东省烟台市蓬莱市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370685,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"招远市",
        "citysort":"1545",
        "citycode":"370685",
        "citytype":"4",
        "city_full_name":"山东省烟台市招远市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370686,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"栖霞市",
        "citysort":"1546",
        "citycode":"370686",
        "citytype":"4",
        "city_full_name":"山东省烟台市栖霞市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370687,
        "pcityid":"370600",
        "pcityids":"1,370000,370600,",
        "cityname":"海阳市",
        "citysort":"1547",
        "citycode":"370687",
        "citytype":"4",
        "city_full_name":"山东省烟台市海阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370701,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"市辖区",
        "citysort":"1549",
        "citycode":"370701",
        "citytype":"4",
        "city_full_name":"山东省潍坊市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370702,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"潍城区",
        "citysort":"1550",
        "citycode":"370702",
        "citytype":"4",
        "city_full_name":"山东省潍坊市潍城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370703,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"寒亭区",
        "citysort":"1551",
        "citycode":"370703",
        "citytype":"4",
        "city_full_name":"山东省潍坊市寒亭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370704,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"坊子区",
        "citysort":"1552",
        "citycode":"370704",
        "citytype":"4",
        "city_full_name":"山东省潍坊市坊子区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370705,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"奎文区",
        "citysort":"1553",
        "citycode":"370705",
        "citytype":"4",
        "city_full_name":"山东省潍坊市奎文区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370724,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"临朐县",
        "citysort":"1554",
        "citycode":"370724",
        "citytype":"4",
        "city_full_name":"山东省潍坊市临朐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370725,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"昌乐县",
        "citysort":"1555",
        "citycode":"370725",
        "citytype":"4",
        "city_full_name":"山东省潍坊市昌乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370781,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"青州市",
        "citysort":"1556",
        "citycode":"370781",
        "citytype":"4",
        "city_full_name":"山东省潍坊市青州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370782,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"诸城市",
        "citysort":"1557",
        "citycode":"370782",
        "citytype":"4",
        "city_full_name":"山东省潍坊市诸城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370783,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"寿光市",
        "citysort":"1558",
        "citycode":"370783",
        "citytype":"4",
        "city_full_name":"山东省潍坊市寿光市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370784,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"安丘市",
        "citysort":"1559",
        "citycode":"370784",
        "citytype":"4",
        "city_full_name":"山东省潍坊市安丘市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370785,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"高密市",
        "citysort":"1560",
        "citycode":"370785",
        "citytype":"4",
        "city_full_name":"山东省潍坊市高密市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370786,
        "pcityid":"370700",
        "pcityids":"1,370000,370700,",
        "cityname":"昌邑市",
        "citysort":"1561",
        "citycode":"370786",
        "citytype":"4",
        "city_full_name":"山东省潍坊市昌邑市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370801,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"市辖区",
        "citysort":"1563",
        "citycode":"370801",
        "citytype":"4",
        "city_full_name":"山东省济宁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370811,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"任城区",
        "citysort":"1564",
        "citycode":"370811",
        "citytype":"4",
        "city_full_name":"山东省济宁市任城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370812,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"兖州区",
        "citysort":"1565",
        "citycode":"370812",
        "citytype":"4",
        "city_full_name":"山东省济宁市兖州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370826,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"微山县",
        "citysort":"1566",
        "citycode":"370826",
        "citytype":"4",
        "city_full_name":"山东省济宁市微山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370827,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"鱼台县",
        "citysort":"1567",
        "citycode":"370827",
        "citytype":"4",
        "city_full_name":"山东省济宁市鱼台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370828,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"金乡县",
        "citysort":"1568",
        "citycode":"370828",
        "citytype":"4",
        "city_full_name":"山东省济宁市金乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370829,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"嘉祥县",
        "citysort":"1569",
        "citycode":"370829",
        "citytype":"4",
        "city_full_name":"山东省济宁市嘉祥县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370830,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"汶上县",
        "citysort":"1570",
        "citycode":"370830",
        "citytype":"4",
        "city_full_name":"山东省济宁市汶上县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370831,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"泗水县",
        "citysort":"1571",
        "citycode":"370831",
        "citytype":"4",
        "city_full_name":"山东省济宁市泗水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370832,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"梁山县",
        "citysort":"1572",
        "citycode":"370832",
        "citytype":"4",
        "city_full_name":"山东省济宁市梁山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370881,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"曲阜市",
        "citysort":"1573",
        "citycode":"370881",
        "citytype":"4",
        "city_full_name":"山东省济宁市曲阜市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370883,
        "pcityid":"370800",
        "pcityids":"1,370000,370800,",
        "cityname":"邹城市",
        "citysort":"1574",
        "citycode":"370883",
        "citytype":"4",
        "city_full_name":"山东省济宁市邹城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370901,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"市辖区",
        "citysort":"1576",
        "citycode":"370901",
        "citytype":"4",
        "city_full_name":"山东省泰安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370902,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"泰山区",
        "citysort":"1577",
        "citycode":"370902",
        "citytype":"4",
        "city_full_name":"山东省泰安市泰山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370911,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"岱岳区",
        "citysort":"1578",
        "citycode":"370911",
        "citytype":"4",
        "city_full_name":"山东省泰安市岱岳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":370921,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"宁阳县",
        "citysort":"1579",
        "citycode":"370921",
        "citytype":"4",
        "city_full_name":"山东省泰安市宁阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370923,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"东*县",
        "citysort":"1580",
        "citycode":"370923",
        "citytype":"4",
        "city_full_name":"山东省泰安市东*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":370982,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"新泰市",
        "citysort":"1581",
        "citycode":"370982",
        "citytype":"4",
        "city_full_name":"山东省泰安市新泰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":370983,
        "pcityid":"370900",
        "pcityids":"1,370000,370900,",
        "cityname":"肥城市",
        "citysort":"1582",
        "citycode":"370983",
        "citytype":"4",
        "city_full_name":"山东省泰安市肥城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371001,
        "pcityid":"371000",
        "pcityids":"1,370000,371000,",
        "cityname":"市辖区",
        "citysort":"1584",
        "citycode":"371001",
        "citytype":"4",
        "city_full_name":"山东省威海市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371002,
        "pcityid":"371000",
        "pcityids":"1,370000,371000,",
        "cityname":"环翠区",
        "citysort":"1585",
        "citycode":"371002",
        "citytype":"4",
        "city_full_name":"山东省威海市环翠区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371003,
        "pcityid":"371000",
        "pcityids":"1,370000,371000,",
        "cityname":"文登区",
        "citysort":"1586",
        "citycode":"371003",
        "citytype":"4",
        "city_full_name":"山东省威海市文登区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371082,
        "pcityid":"371000",
        "pcityids":"1,370000,371000,",
        "cityname":"荣成市",
        "citysort":"1587",
        "citycode":"371082",
        "citytype":"4",
        "city_full_name":"山东省威海市荣成市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371083,
        "pcityid":"371000",
        "pcityids":"1,370000,371000,",
        "cityname":"乳山市",
        "citysort":"1588",
        "citycode":"371083",
        "citytype":"4",
        "city_full_name":"山东省威海市乳山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371101,
        "pcityid":"371100",
        "pcityids":"1,370000,371100,",
        "cityname":"市辖区",
        "citysort":"1590",
        "citycode":"371101",
        "citytype":"4",
        "city_full_name":"山东省日照市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371102,
        "pcityid":"371100",
        "pcityids":"1,370000,371100,",
        "cityname":"东港区",
        "citysort":"1591",
        "citycode":"371102",
        "citytype":"4",
        "city_full_name":"山东省日照市东港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371103,
        "pcityid":"371100",
        "pcityids":"1,370000,371100,",
        "cityname":"岚山区",
        "citysort":"1592",
        "citycode":"371103",
        "citytype":"4",
        "city_full_name":"山东省日照市岚山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371121,
        "pcityid":"371100",
        "pcityids":"1,370000,371100,",
        "cityname":"五莲县",
        "citysort":"1593",
        "citycode":"371121",
        "citytype":"4",
        "city_full_name":"山东省日照市五莲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371122,
        "pcityid":"371100",
        "pcityids":"1,370000,371100,",
        "cityname":"莒县",
        "citysort":"1594",
        "citycode":"371122",
        "citytype":"4",
        "city_full_name":"山东省日照市莒县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371201,
        "pcityid":"371200",
        "pcityids":"1,370000,371200,",
        "cityname":"市辖区",
        "citysort":"1596",
        "citycode":"371201",
        "citytype":"4",
        "city_full_name":"山东省莱芜市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371202,
        "pcityid":"371200",
        "pcityids":"1,370000,371200,",
        "cityname":"莱城区",
        "citysort":"1597",
        "citycode":"371202",
        "citytype":"4",
        "city_full_name":"山东省莱芜市莱城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371203,
        "pcityid":"371200",
        "pcityids":"1,370000,371200,",
        "cityname":"钢城区",
        "citysort":"1598",
        "citycode":"371203",
        "citytype":"4",
        "city_full_name":"山东省莱芜市钢城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371301,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"市辖区",
        "citysort":"1600",
        "citycode":"371301",
        "citytype":"4",
        "city_full_name":"山东省临沂市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371302,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"兰山区",
        "citysort":"1601",
        "citycode":"371302",
        "citytype":"4",
        "city_full_name":"山东省临沂市兰山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371311,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"罗庄区",
        "citysort":"1602",
        "citycode":"371311",
        "citytype":"4",
        "city_full_name":"山东省临沂市罗庄区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371312,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"河东区",
        "citysort":"1603",
        "citycode":"371312",
        "citytype":"4",
        "city_full_name":"山东省临沂市河东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371321,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"沂南县",
        "citysort":"1604",
        "citycode":"371321",
        "citytype":"4",
        "city_full_name":"山东省临沂市沂南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371322,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"郯城县",
        "citysort":"1605",
        "citycode":"371322",
        "citytype":"4",
        "city_full_name":"山东省临沂市郯城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371323,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"沂水县",
        "citysort":"1606",
        "citycode":"371323",
        "citytype":"4",
        "city_full_name":"山东省临沂市沂水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371324,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"兰陵县",
        "citysort":"1607",
        "citycode":"371324",
        "citytype":"4",
        "city_full_name":"山东省临沂市兰陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371325,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"费县",
        "citysort":"1608",
        "citycode":"371325",
        "citytype":"4",
        "city_full_name":"山东省临沂市费县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371326,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"*邑县",
        "citysort":"1609",
        "citycode":"371326",
        "citytype":"4",
        "city_full_name":"山东省临沂市*邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371327,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"莒南县",
        "citysort":"1610",
        "citycode":"371327",
        "citytype":"4",
        "city_full_name":"山东省临沂市莒南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371328,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"蒙阴县",
        "citysort":"1611",
        "citycode":"371328",
        "citytype":"4",
        "city_full_name":"山东省临沂市蒙阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371329,
        "pcityid":"371300",
        "pcityids":"1,370000,371300,",
        "cityname":"临沭县",
        "citysort":"1612",
        "citycode":"371329",
        "citytype":"4",
        "city_full_name":"山东省临沂市临沭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371401,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"市辖区",
        "citysort":"1614",
        "citycode":"371401",
        "citytype":"4",
        "city_full_name":"山东省德州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371402,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"德城区",
        "citysort":"1615",
        "citycode":"371402",
        "citytype":"4",
        "city_full_name":"山东省德州市德城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371403,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"陵城区",
        "citysort":"1616",
        "citycode":"371403",
        "citytype":"4",
        "city_full_name":"山东省德州市陵城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371422,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"宁津县",
        "citysort":"1617",
        "citycode":"371422",
        "citytype":"4",
        "city_full_name":"山东省德州市宁津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371423,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"庆云县",
        "citysort":"1618",
        "citycode":"371423",
        "citytype":"4",
        "city_full_name":"山东省德州市庆云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371424,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"临邑县",
        "citysort":"1619",
        "citycode":"371424",
        "citytype":"4",
        "city_full_name":"山东省德州市临邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371425,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"齐河县",
        "citysort":"1620",
        "citycode":"371425",
        "citytype":"4",
        "city_full_name":"山东省德州市齐河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371426,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"*原县",
        "citysort":"1621",
        "citycode":"371426",
        "citytype":"4",
        "city_full_name":"山东省德州市*原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371427,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"夏津县",
        "citysort":"1622",
        "citycode":"371427",
        "citytype":"4",
        "city_full_name":"山东省德州市夏津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371428,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"武城县",
        "citysort":"1623",
        "citycode":"371428",
        "citytype":"4",
        "city_full_name":"山东省德州市武城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371481,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"乐陵市",
        "citysort":"1624",
        "citycode":"371481",
        "citytype":"4",
        "city_full_name":"山东省德州市乐陵市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371482,
        "pcityid":"371400",
        "pcityids":"1,370000,371400,",
        "cityname":"禹城市",
        "citysort":"1625",
        "citycode":"371482",
        "citytype":"4",
        "city_full_name":"山东省德州市禹城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371501,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"市辖区",
        "citysort":"1627",
        "citycode":"371501",
        "citytype":"4",
        "city_full_name":"山东省聊城市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371502,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"东昌府区",
        "citysort":"1628",
        "citycode":"371502",
        "citytype":"4",
        "city_full_name":"山东省聊城市东昌府区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371521,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"阳谷县",
        "citysort":"1629",
        "citycode":"371521",
        "citytype":"4",
        "city_full_name":"山东省聊城市阳谷县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371522,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"莘县",
        "citysort":"1630",
        "citycode":"371522",
        "citytype":"4",
        "city_full_name":"山东省聊城市莘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371523,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"茌*县",
        "citysort":"1631",
        "citycode":"371523",
        "citytype":"4",
        "city_full_name":"山东省聊城市茌*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371524,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"东阿县",
        "citysort":"1632",
        "citycode":"371524",
        "citytype":"4",
        "city_full_name":"山东省聊城市东阿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371525,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"冠县",
        "citysort":"1633",
        "citycode":"371525",
        "citytype":"4",
        "city_full_name":"山东省聊城市冠县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371526,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"高唐县",
        "citysort":"1634",
        "citycode":"371526",
        "citytype":"4",
        "city_full_name":"山东省聊城市高唐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371581,
        "pcityid":"371500",
        "pcityids":"1,370000,371500,",
        "cityname":"临清市",
        "citysort":"1635",
        "citycode":"371581",
        "citytype":"4",
        "city_full_name":"山东省聊城市临清市",
        "is_virtual_region":"0"
    },
    {
        "cityid":371601,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"市辖区",
        "citysort":"1637",
        "citycode":"371601",
        "citytype":"4",
        "city_full_name":"山东省滨州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371602,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"滨城区",
        "citysort":"1638",
        "citycode":"371602",
        "citytype":"4",
        "city_full_name":"山东省滨州市滨城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371603,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"沾化区",
        "citysort":"1639",
        "citycode":"371603",
        "citytype":"4",
        "city_full_name":"山东省滨州市沾化区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371621,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"惠民县",
        "citysort":"1640",
        "citycode":"371621",
        "citytype":"4",
        "city_full_name":"山东省滨州市惠民县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371622,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"阳信县",
        "citysort":"1641",
        "citycode":"371622",
        "citytype":"4",
        "city_full_name":"山东省滨州市阳信县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371623,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"无棣县",
        "citysort":"1642",
        "citycode":"371623",
        "citytype":"4",
        "city_full_name":"山东省滨州市无棣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371625,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"博兴县",
        "citysort":"1643",
        "citycode":"371625",
        "citytype":"4",
        "city_full_name":"山东省滨州市博兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371626,
        "pcityid":"371600",
        "pcityids":"1,370000,371600,",
        "cityname":"邹*县",
        "citysort":"1644",
        "citycode":"371626",
        "citytype":"4",
        "city_full_name":"山东省滨州市邹*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371701,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"市辖区",
        "citysort":"1646",
        "citycode":"371701",
        "citytype":"4",
        "city_full_name":"山东省菏泽市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371702,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"牡丹区",
        "citysort":"1647",
        "citycode":"371702",
        "citytype":"4",
        "city_full_name":"山东省菏泽市牡丹区",
        "is_virtual_region":"0"
    },
    {
        "cityid":371721,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"曹县",
        "citysort":"1648",
        "citycode":"371721",
        "citytype":"4",
        "city_full_name":"山东省菏泽市曹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371722,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"单县",
        "citysort":"1649",
        "citycode":"371722",
        "citytype":"4",
        "city_full_name":"山东省菏泽市单县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371723,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"成武县",
        "citysort":"1650",
        "citycode":"371723",
        "citytype":"4",
        "city_full_name":"山东省菏泽市成武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371724,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"巨野县",
        "citysort":"1651",
        "citycode":"371724",
        "citytype":"4",
        "city_full_name":"山东省菏泽市巨野县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371725,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"郓城县",
        "citysort":"1652",
        "citycode":"371725",
        "citytype":"4",
        "city_full_name":"山东省菏泽市郓城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371726,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"鄄城县",
        "citysort":"1653",
        "citycode":"371726",
        "citytype":"4",
        "city_full_name":"山东省菏泽市鄄城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371727,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"定陶县",
        "citysort":"1654",
        "citycode":"371727",
        "citytype":"4",
        "city_full_name":"山东省菏泽市定陶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":371728,
        "pcityid":"371700",
        "pcityids":"1,370000,371700,",
        "cityname":"东明县",
        "citysort":"1655",
        "citycode":"371728",
        "citytype":"4",
        "city_full_name":"山东省菏泽市东明县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410101,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"市辖区",
        "citysort":"1658",
        "citycode":"410101",
        "citytype":"4",
        "city_full_name":"河南省郑州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410102,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"中原区",
        "citysort":"1659",
        "citycode":"410102",
        "citytype":"4",
        "city_full_name":"河南省郑州市中原区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410103,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"二七区",
        "citysort":"1660",
        "citycode":"410103",
        "citytype":"4",
        "city_full_name":"河南省郑州市二七区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410104,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"管城回族区",
        "citysort":"1661",
        "citycode":"410104",
        "citytype":"4",
        "city_full_name":"河南省郑州市管城回族区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410105,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"金水区",
        "citysort":"1662",
        "citycode":"410105",
        "citytype":"4",
        "city_full_name":"河南省郑州市金水区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410106,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"上街区",
        "citysort":"1663",
        "citycode":"410106",
        "citytype":"4",
        "city_full_name":"河南省郑州市上街区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410108,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"惠济区",
        "citysort":"1664",
        "citycode":"410108",
        "citytype":"4",
        "city_full_name":"河南省郑州市惠济区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410122,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"中牟县",
        "citysort":"1665",
        "citycode":"410122",
        "citytype":"4",
        "city_full_name":"河南省郑州市中牟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410181,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"巩义市",
        "citysort":"1666",
        "citycode":"410181",
        "citytype":"4",
        "city_full_name":"河南省郑州市巩义市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410182,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"荥阳市",
        "citysort":"1667",
        "citycode":"410182",
        "citytype":"4",
        "city_full_name":"河南省郑州市荥阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410183,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"新密市",
        "citysort":"1668",
        "citycode":"410183",
        "citytype":"4",
        "city_full_name":"河南省郑州市新密市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410184,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"新郑市",
        "citysort":"1669",
        "citycode":"410184",
        "citytype":"4",
        "city_full_name":"河南省郑州市新郑市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410185,
        "pcityid":"410100",
        "pcityids":"1,410000,410100,",
        "cityname":"登封市",
        "citysort":"1670",
        "citycode":"410185",
        "citytype":"4",
        "city_full_name":"河南省郑州市登封市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410201,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"市辖区",
        "citysort":"1672",
        "citycode":"410201",
        "citytype":"4",
        "city_full_name":"河南省开封市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410202,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"龙亭区",
        "citysort":"1673",
        "citycode":"410202",
        "citytype":"4",
        "city_full_name":"河南省开封市龙亭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410203,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"顺河回族区",
        "citysort":"1674",
        "citycode":"410203",
        "citytype":"4",
        "city_full_name":"河南省开封市顺河回族区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410204,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"鼓楼区",
        "citysort":"1675",
        "citycode":"410204",
        "citytype":"4",
        "city_full_name":"河南省开封市鼓楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410205,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"禹王台区",
        "citysort":"1676",
        "citycode":"410205",
        "citytype":"4",
        "city_full_name":"河南省开封市禹王台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410211,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"金明区",
        "citysort":"1677",
        "citycode":"410211",
        "citytype":"4",
        "city_full_name":"河南省开封市金明区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410221,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"杞县",
        "citysort":"1678",
        "citycode":"410221",
        "citytype":"4",
        "city_full_name":"河南省开封市杞县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410222,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"通许县",
        "citysort":"1679",
        "citycode":"410222",
        "citytype":"4",
        "city_full_name":"河南省开封市通许县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410223,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"尉氏县",
        "citysort":"1680",
        "citycode":"410223",
        "citytype":"4",
        "city_full_name":"河南省开封市尉氏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410224,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"开封县",
        "citysort":"1681",
        "citycode":"410224",
        "citytype":"4",
        "city_full_name":"河南省开封市开封县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410225,
        "pcityid":"410200",
        "pcityids":"1,410000,410200,",
        "cityname":"兰考县",
        "citysort":"1682",
        "citycode":"410225",
        "citytype":"4",
        "city_full_name":"河南省开封市兰考县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410301,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"市辖区",
        "citysort":"1684",
        "citycode":"410301",
        "citytype":"4",
        "city_full_name":"河南省洛阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410302,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"老城区",
        "citysort":"1685",
        "citycode":"410302",
        "citytype":"4",
        "city_full_name":"河南省洛阳市老城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410303,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"*工区",
        "citysort":"1686",
        "citycode":"410303",
        "citytype":"4",
        "city_full_name":"河南省洛阳市*工区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410304,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"瀍河回族区",
        "citysort":"1687",
        "citycode":"410304",
        "citytype":"4",
        "city_full_name":"河南省洛阳市瀍河回族区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410305,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"涧*区",
        "citysort":"1688",
        "citycode":"410305",
        "citytype":"4",
        "city_full_name":"河南省洛阳市涧*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410306,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"吉利区",
        "citysort":"1689",
        "citycode":"410306",
        "citytype":"4",
        "city_full_name":"河南省洛阳市吉利区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410311,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"洛龙区",
        "citysort":"1690",
        "citycode":"410311",
        "citytype":"4",
        "city_full_name":"河南省洛阳市洛龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410322,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"孟津县",
        "citysort":"1691",
        "citycode":"410322",
        "citytype":"4",
        "city_full_name":"河南省洛阳市孟津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410323,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"新安县",
        "citysort":"1692",
        "citycode":"410323",
        "citytype":"4",
        "city_full_name":"河南省洛阳市新安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410324,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"栾川县",
        "citysort":"1693",
        "citycode":"410324",
        "citytype":"4",
        "city_full_name":"河南省洛阳市栾川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410325,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"嵩县",
        "citysort":"1694",
        "citycode":"410325",
        "citytype":"4",
        "city_full_name":"河南省洛阳市嵩县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410326,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"汝阳县",
        "citysort":"1695",
        "citycode":"410326",
        "citytype":"4",
        "city_full_name":"河南省洛阳市汝阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410327,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"宜阳县",
        "citysort":"1696",
        "citycode":"410327",
        "citytype":"4",
        "city_full_name":"河南省洛阳市宜阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410328,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"洛宁县",
        "citysort":"1697",
        "citycode":"410328",
        "citytype":"4",
        "city_full_name":"河南省洛阳市洛宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410329,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"伊川县",
        "citysort":"1698",
        "citycode":"410329",
        "citytype":"4",
        "city_full_name":"河南省洛阳市伊川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410381,
        "pcityid":"410300",
        "pcityids":"1,410000,410300,",
        "cityname":"偃师市",
        "citysort":"1699",
        "citycode":"410381",
        "citytype":"4",
        "city_full_name":"河南省洛阳市偃师市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410401,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"市辖区",
        "citysort":"1701",
        "citycode":"410401",
        "citytype":"4",
        "city_full_name":"河南省*顶山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410402,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"新华区",
        "citysort":"1702",
        "citycode":"410402",
        "citytype":"4",
        "city_full_name":"河南省*顶山市新华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410403,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"卫东区",
        "citysort":"1703",
        "citycode":"410403",
        "citytype":"4",
        "city_full_name":"河南省*顶山市卫东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410404,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"石龙区",
        "citysort":"1704",
        "citycode":"410404",
        "citytype":"4",
        "city_full_name":"河南省*顶山市石龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410411,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"湛河区",
        "citysort":"1705",
        "citycode":"410411",
        "citytype":"4",
        "city_full_name":"河南省*顶山市湛河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410421,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"宝丰县",
        "citysort":"1706",
        "citycode":"410421",
        "citytype":"4",
        "city_full_name":"河南省*顶山市宝丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410422,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"叶县",
        "citysort":"1707",
        "citycode":"410422",
        "citytype":"4",
        "city_full_name":"河南省*顶山市叶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410423,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"鲁山县",
        "citysort":"1708",
        "citycode":"410423",
        "citytype":"4",
        "city_full_name":"河南省*顶山市鲁山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410425,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"郏县",
        "citysort":"1709",
        "citycode":"410425",
        "citytype":"4",
        "city_full_name":"河南省*顶山市郏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410481,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"舞钢市",
        "citysort":"1710",
        "citycode":"410481",
        "citytype":"4",
        "city_full_name":"河南省*顶山市舞钢市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410482,
        "pcityid":"410400",
        "pcityids":"1,410000,410400,",
        "cityname":"汝州市",
        "citysort":"1711",
        "citycode":"410482",
        "citytype":"4",
        "city_full_name":"河南省*顶山市汝州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410501,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"市辖区",
        "citysort":"1713",
        "citycode":"410501",
        "citytype":"4",
        "city_full_name":"河南省安阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410502,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"文峰区",
        "citysort":"1714",
        "citycode":"410502",
        "citytype":"4",
        "city_full_name":"河南省安阳市文峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410503,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"北关区",
        "citysort":"1715",
        "citycode":"410503",
        "citytype":"4",
        "city_full_name":"河南省安阳市北关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410505,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"殷都区",
        "citysort":"1716",
        "citycode":"410505",
        "citytype":"4",
        "city_full_name":"河南省安阳市殷都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410506,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"龙安区",
        "citysort":"1717",
        "citycode":"410506",
        "citytype":"4",
        "city_full_name":"河南省安阳市龙安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410522,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"安阳县",
        "citysort":"1718",
        "citycode":"410522",
        "citytype":"4",
        "city_full_name":"河南省安阳市安阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410523,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"汤阴县",
        "citysort":"1719",
        "citycode":"410523",
        "citytype":"4",
        "city_full_name":"河南省安阳市汤阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410526,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"滑县",
        "citysort":"1720",
        "citycode":"410526",
        "citytype":"4",
        "city_full_name":"河南省安阳市滑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410527,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"内黄县",
        "citysort":"1721",
        "citycode":"410527",
        "citytype":"4",
        "city_full_name":"河南省安阳市内黄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410581,
        "pcityid":"410500",
        "pcityids":"1,410000,410500,",
        "cityname":"林州市",
        "citysort":"1722",
        "citycode":"410581",
        "citytype":"4",
        "city_full_name":"河南省安阳市林州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410601,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"市辖区",
        "citysort":"1724",
        "citycode":"410601",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410602,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"鹤山区",
        "citysort":"1725",
        "citycode":"410602",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市鹤山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410603,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"山城区",
        "citysort":"1726",
        "citycode":"410603",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市山城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410611,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"淇滨区",
        "citysort":"1727",
        "citycode":"410611",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市淇滨区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410621,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"浚县",
        "citysort":"1728",
        "citycode":"410621",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市浚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410622,
        "pcityid":"410600",
        "pcityids":"1,410000,410600,",
        "cityname":"淇县",
        "citysort":"1729",
        "citycode":"410622",
        "citytype":"4",
        "city_full_name":"河南省鹤壁市淇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410701,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"市辖区",
        "citysort":"1731",
        "citycode":"410701",
        "citytype":"4",
        "city_full_name":"河南省新乡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410702,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"红旗区",
        "citysort":"1732",
        "citycode":"410702",
        "citytype":"4",
        "city_full_name":"河南省新乡市红旗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410703,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"卫滨区",
        "citysort":"1733",
        "citycode":"410703",
        "citytype":"4",
        "city_full_name":"河南省新乡市卫滨区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410704,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"凤泉区",
        "citysort":"1734",
        "citycode":"410704",
        "citytype":"4",
        "city_full_name":"河南省新乡市凤泉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410711,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"牧野区",
        "citysort":"1735",
        "citycode":"410711",
        "citytype":"4",
        "city_full_name":"河南省新乡市牧野区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410721,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"新乡县",
        "citysort":"1736",
        "citycode":"410721",
        "citytype":"4",
        "city_full_name":"河南省新乡市新乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410724,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"获嘉县",
        "citysort":"1737",
        "citycode":"410724",
        "citytype":"4",
        "city_full_name":"河南省新乡市获嘉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410725,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"原阳县",
        "citysort":"1738",
        "citycode":"410725",
        "citytype":"4",
        "city_full_name":"河南省新乡市原阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410726,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"延津县",
        "citysort":"1739",
        "citycode":"410726",
        "citytype":"4",
        "city_full_name":"河南省新乡市延津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410727,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"封丘县",
        "citysort":"1740",
        "citycode":"410727",
        "citytype":"4",
        "city_full_name":"河南省新乡市封丘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410728,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"长垣县",
        "citysort":"1741",
        "citycode":"410728",
        "citytype":"4",
        "city_full_name":"河南省新乡市长垣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410781,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"卫辉市",
        "citysort":"1742",
        "citycode":"410781",
        "citytype":"4",
        "city_full_name":"河南省新乡市卫辉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410782,
        "pcityid":"410700",
        "pcityids":"1,410000,410700,",
        "cityname":"辉县市",
        "citysort":"1743",
        "citycode":"410782",
        "citytype":"4",
        "city_full_name":"河南省新乡市辉县市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410801,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"市辖区",
        "citysort":"1745",
        "citycode":"410801",
        "citytype":"4",
        "city_full_name":"河南省焦作市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410802,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"解放区",
        "citysort":"1746",
        "citycode":"410802",
        "citytype":"4",
        "city_full_name":"河南省焦作市解放区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410803,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"中站区",
        "citysort":"1747",
        "citycode":"410803",
        "citytype":"4",
        "city_full_name":"河南省焦作市中站区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410804,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"马村区",
        "citysort":"1748",
        "citycode":"410804",
        "citytype":"4",
        "city_full_name":"河南省焦作市马村区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410811,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"山阳区",
        "citysort":"1749",
        "citycode":"410811",
        "citytype":"4",
        "city_full_name":"河南省焦作市山阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410821,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"修武县",
        "citysort":"1750",
        "citycode":"410821",
        "citytype":"4",
        "city_full_name":"河南省焦作市修武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410822,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"博爱县",
        "citysort":"1751",
        "citycode":"410822",
        "citytype":"4",
        "city_full_name":"河南省焦作市博爱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410823,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"武陟县",
        "citysort":"1752",
        "citycode":"410823",
        "citytype":"4",
        "city_full_name":"河南省焦作市武陟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410825,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"温县",
        "citysort":"1753",
        "citycode":"410825",
        "citytype":"4",
        "city_full_name":"河南省焦作市温县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410882,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"沁阳市",
        "citysort":"1754",
        "citycode":"410882",
        "citytype":"4",
        "city_full_name":"河南省焦作市沁阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410883,
        "pcityid":"410800",
        "pcityids":"1,410000,410800,",
        "cityname":"孟州市",
        "citysort":"1755",
        "citycode":"410883",
        "citytype":"4",
        "city_full_name":"河南省焦作市孟州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":410901,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"市辖区",
        "citysort":"1757",
        "citycode":"410901",
        "citytype":"4",
        "city_full_name":"河南省濮阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410902,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"华龙区",
        "citysort":"1758",
        "citycode":"410902",
        "citytype":"4",
        "city_full_name":"河南省濮阳市华龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":410922,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"清丰县",
        "citysort":"1759",
        "citycode":"410922",
        "citytype":"4",
        "city_full_name":"河南省濮阳市清丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410923,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"南乐县",
        "citysort":"1760",
        "citycode":"410923",
        "citytype":"4",
        "city_full_name":"河南省濮阳市南乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410926,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"范县",
        "citysort":"1761",
        "citycode":"410926",
        "citytype":"4",
        "city_full_name":"河南省濮阳市范县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410927,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"台前县",
        "citysort":"1762",
        "citycode":"410927",
        "citytype":"4",
        "city_full_name":"河南省濮阳市台前县",
        "is_virtual_region":"0"
    },
    {
        "cityid":410928,
        "pcityid":"410900",
        "pcityids":"1,410000,410900,",
        "cityname":"濮阳县",
        "citysort":"1763",
        "citycode":"410928",
        "citytype":"4",
        "city_full_name":"河南省濮阳市濮阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411001,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"市辖区",
        "citysort":"1765",
        "citycode":"411001",
        "citytype":"4",
        "city_full_name":"河南省许昌市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411002,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"魏都区",
        "citysort":"1766",
        "citycode":"411002",
        "citytype":"4",
        "city_full_name":"河南省许昌市魏都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411023,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"许昌县",
        "citysort":"1767",
        "citycode":"411023",
        "citytype":"4",
        "city_full_name":"河南省许昌市许昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411024,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"鄢陵县",
        "citysort":"1768",
        "citycode":"411024",
        "citytype":"4",
        "city_full_name":"河南省许昌市鄢陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411025,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"襄城县",
        "citysort":"1769",
        "citycode":"411025",
        "citytype":"4",
        "city_full_name":"河南省许昌市襄城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411081,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"禹州市",
        "citysort":"1770",
        "citycode":"411081",
        "citytype":"4",
        "city_full_name":"河南省许昌市禹州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411082,
        "pcityid":"411000",
        "pcityids":"1,410000,411000,",
        "cityname":"长葛市",
        "citysort":"1771",
        "citycode":"411082",
        "citytype":"4",
        "city_full_name":"河南省许昌市长葛市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411101,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"市辖区",
        "citysort":"1773",
        "citycode":"411101",
        "citytype":"4",
        "city_full_name":"河南省漯河市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411102,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"源汇区",
        "citysort":"1774",
        "citycode":"411102",
        "citytype":"4",
        "city_full_name":"河南省漯河市源汇区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411103,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"郾城区",
        "citysort":"1775",
        "citycode":"411103",
        "citytype":"4",
        "city_full_name":"河南省漯河市郾城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411104,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"召陵区",
        "citysort":"1776",
        "citycode":"411104",
        "citytype":"4",
        "city_full_name":"河南省漯河市召陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411121,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"舞阳县",
        "citysort":"1777",
        "citycode":"411121",
        "citytype":"4",
        "city_full_name":"河南省漯河市舞阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411122,
        "pcityid":"411100",
        "pcityids":"1,410000,411100,",
        "cityname":"临颍县",
        "citysort":"1778",
        "citycode":"411122",
        "citytype":"4",
        "city_full_name":"河南省漯河市临颍县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411201,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"市辖区",
        "citysort":"1780",
        "citycode":"411201",
        "citytype":"4",
        "city_full_name":"河南省三门峡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411202,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"湖滨区",
        "citysort":"1781",
        "citycode":"411202",
        "citytype":"4",
        "city_full_name":"河南省三门峡市湖滨区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411221,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"渑池县",
        "citysort":"1782",
        "citycode":"411221",
        "citytype":"4",
        "city_full_name":"河南省三门峡市渑池县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411222,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"陕县",
        "citysort":"1783",
        "citycode":"411222",
        "citytype":"4",
        "city_full_name":"河南省三门峡市陕县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411224,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"卢氏县",
        "citysort":"1784",
        "citycode":"411224",
        "citytype":"4",
        "city_full_name":"河南省三门峡市卢氏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411281,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"义马市",
        "citysort":"1785",
        "citycode":"411281",
        "citytype":"4",
        "city_full_name":"河南省三门峡市义马市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411282,
        "pcityid":"411200",
        "pcityids":"1,410000,411200,",
        "cityname":"灵宝市",
        "citysort":"1786",
        "citycode":"411282",
        "citytype":"4",
        "city_full_name":"河南省三门峡市灵宝市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411301,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"市辖区",
        "citysort":"1788",
        "citycode":"411301",
        "citytype":"4",
        "city_full_name":"河南省南阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411302,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"宛城区",
        "citysort":"1789",
        "citycode":"411302",
        "citytype":"4",
        "city_full_name":"河南省南阳市宛城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411303,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"卧龙区",
        "citysort":"1790",
        "citycode":"411303",
        "citytype":"4",
        "city_full_name":"河南省南阳市卧龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411321,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"南召县",
        "citysort":"1791",
        "citycode":"411321",
        "citytype":"4",
        "city_full_name":"河南省南阳市南召县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411322,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"方城县",
        "citysort":"1792",
        "citycode":"411322",
        "citytype":"4",
        "city_full_name":"河南省南阳市方城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411323,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"*峡县",
        "citysort":"1793",
        "citycode":"411323",
        "citytype":"4",
        "city_full_name":"河南省南阳市*峡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411324,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"镇*县",
        "citysort":"1794",
        "citycode":"411324",
        "citytype":"4",
        "city_full_name":"河南省南阳市镇*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411325,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"内乡县",
        "citysort":"1795",
        "citycode":"411325",
        "citytype":"4",
        "city_full_name":"河南省南阳市内乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411326,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"淅川县",
        "citysort":"1796",
        "citycode":"411326",
        "citytype":"4",
        "city_full_name":"河南省南阳市淅川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411327,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"社旗县",
        "citysort":"1797",
        "citycode":"411327",
        "citytype":"4",
        "city_full_name":"河南省南阳市社旗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411328,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"唐河县",
        "citysort":"1798",
        "citycode":"411328",
        "citytype":"4",
        "city_full_name":"河南省南阳市唐河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411329,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"新野县",
        "citysort":"1799",
        "citycode":"411329",
        "citytype":"4",
        "city_full_name":"河南省南阳市新野县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411330,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"桐柏县",
        "citysort":"1800",
        "citycode":"411330",
        "citytype":"4",
        "city_full_name":"河南省南阳市桐柏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411381,
        "pcityid":"411300",
        "pcityids":"1,410000,411300,",
        "cityname":"邓州市",
        "citysort":"1801",
        "citycode":"411381",
        "citytype":"4",
        "city_full_name":"河南省南阳市邓州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411401,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"市辖区",
        "citysort":"1803",
        "citycode":"411401",
        "citytype":"4",
        "city_full_name":"河南省商丘市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411402,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"梁园区",
        "citysort":"1804",
        "citycode":"411402",
        "citytype":"4",
        "city_full_name":"河南省商丘市梁园区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411403,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"睢阳区",
        "citysort":"1805",
        "citycode":"411403",
        "citytype":"4",
        "city_full_name":"河南省商丘市睢阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411421,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"民权县",
        "citysort":"1806",
        "citycode":"411421",
        "citytype":"4",
        "city_full_name":"河南省商丘市民权县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411422,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"睢县",
        "citysort":"1807",
        "citycode":"411422",
        "citytype":"4",
        "city_full_name":"河南省商丘市睢县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411423,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"宁陵县",
        "citysort":"1808",
        "citycode":"411423",
        "citytype":"4",
        "city_full_name":"河南省商丘市宁陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411424,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"柘城县",
        "citysort":"1809",
        "citycode":"411424",
        "citytype":"4",
        "city_full_name":"河南省商丘市柘城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411425,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"虞城县",
        "citysort":"1810",
        "citycode":"411425",
        "citytype":"4",
        "city_full_name":"河南省商丘市虞城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411426,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"夏邑县",
        "citysort":"1811",
        "citycode":"411426",
        "citytype":"4",
        "city_full_name":"河南省商丘市夏邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411481,
        "pcityid":"411400",
        "pcityids":"1,410000,411400,",
        "cityname":"永城市",
        "citysort":"1812",
        "citycode":"411481",
        "citytype":"4",
        "city_full_name":"河南省商丘市永城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411501,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"市辖区",
        "citysort":"1814",
        "citycode":"411501",
        "citytype":"4",
        "city_full_name":"河南省信阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411502,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"浉河区",
        "citysort":"1815",
        "citycode":"411502",
        "citytype":"4",
        "city_full_name":"河南省信阳市浉河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411503,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"*桥区",
        "citysort":"1816",
        "citycode":"411503",
        "citytype":"4",
        "city_full_name":"河南省信阳市*桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411521,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"罗山县",
        "citysort":"1817",
        "citycode":"411521",
        "citytype":"4",
        "city_full_name":"河南省信阳市罗山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411522,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"光山县",
        "citysort":"1818",
        "citycode":"411522",
        "citytype":"4",
        "city_full_name":"河南省信阳市光山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411523,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"新县",
        "citysort":"1819",
        "citycode":"411523",
        "citytype":"4",
        "city_full_name":"河南省信阳市新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411524,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"商城县",
        "citysort":"1820",
        "citycode":"411524",
        "citytype":"4",
        "city_full_name":"河南省信阳市商城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411525,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"固始县",
        "citysort":"1821",
        "citycode":"411525",
        "citytype":"4",
        "city_full_name":"河南省信阳市固始县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411526,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"潢川县",
        "citysort":"1822",
        "citycode":"411526",
        "citytype":"4",
        "city_full_name":"河南省信阳市潢川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411527,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"淮滨县",
        "citysort":"1823",
        "citycode":"411527",
        "citytype":"4",
        "city_full_name":"河南省信阳市淮滨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411528,
        "pcityid":"411500",
        "pcityids":"1,410000,411500,",
        "cityname":"息县",
        "citysort":"1824",
        "citycode":"411528",
        "citytype":"4",
        "city_full_name":"河南省信阳市息县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411601,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"市辖区",
        "citysort":"1826",
        "citycode":"411601",
        "citytype":"4",
        "city_full_name":"河南省周口市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411602,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"川汇区",
        "citysort":"1827",
        "citycode":"411602",
        "citytype":"4",
        "city_full_name":"河南省周口市川汇区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411621,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"扶沟县",
        "citysort":"1828",
        "citycode":"411621",
        "citytype":"4",
        "city_full_name":"河南省周口市扶沟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411622,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"*华县",
        "citysort":"1829",
        "citycode":"411622",
        "citytype":"4",
        "city_full_name":"河南省周口市*华县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411623,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"商水县",
        "citysort":"1830",
        "citycode":"411623",
        "citytype":"4",
        "city_full_name":"河南省周口市商水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411624,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"沈丘县",
        "citysort":"1831",
        "citycode":"411624",
        "citytype":"4",
        "city_full_name":"河南省周口市沈丘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411625,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"郸城县",
        "citysort":"1832",
        "citycode":"411625",
        "citytype":"4",
        "city_full_name":"河南省周口市郸城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411626,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"淮阳县",
        "citysort":"1833",
        "citycode":"411626",
        "citytype":"4",
        "city_full_name":"河南省周口市淮阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411627,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"太康县",
        "citysort":"1834",
        "citycode":"411627",
        "citytype":"4",
        "city_full_name":"河南省周口市太康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411628,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"鹿邑县",
        "citysort":"1835",
        "citycode":"411628",
        "citytype":"4",
        "city_full_name":"河南省周口市鹿邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411681,
        "pcityid":"411600",
        "pcityids":"1,410000,411600,",
        "cityname":"项城市",
        "citysort":"1836",
        "citycode":"411681",
        "citytype":"4",
        "city_full_name":"河南省周口市项城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":411701,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"市辖区",
        "citysort":"1838",
        "citycode":"411701",
        "citytype":"4",
        "city_full_name":"河南省驻马店市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411702,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"驿城区",
        "citysort":"1839",
        "citycode":"411702",
        "citytype":"4",
        "city_full_name":"河南省驻马店市驿城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":411721,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"**县",
        "citysort":"1840",
        "citycode":"411721",
        "citytype":"4",
        "city_full_name":"河南省驻马店市**县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411722,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"上蔡县",
        "citysort":"1841",
        "citycode":"411722",
        "citytype":"4",
        "city_full_name":"河南省驻马店市上蔡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411723,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"*舆县",
        "citysort":"1842",
        "citycode":"411723",
        "citytype":"4",
        "city_full_name":"河南省驻马店市*舆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411724,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"正阳县",
        "citysort":"1843",
        "citycode":"411724",
        "citytype":"4",
        "city_full_name":"河南省驻马店市正阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411725,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"确山县",
        "citysort":"1844",
        "citycode":"411725",
        "citytype":"4",
        "city_full_name":"河南省驻马店市确山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411726,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"泌阳县",
        "citysort":"1845",
        "citycode":"411726",
        "citytype":"4",
        "city_full_name":"河南省驻马店市泌阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411727,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"汝南县",
        "citysort":"1846",
        "citycode":"411727",
        "citytype":"4",
        "city_full_name":"河南省驻马店市汝南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411728,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"遂*县",
        "citysort":"1847",
        "citycode":"411728",
        "citytype":"4",
        "city_full_name":"河南省驻马店市遂*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":411729,
        "pcityid":"411700",
        "pcityids":"1,410000,411700,",
        "cityname":"新蔡县",
        "citysort":"1848",
        "citycode":"411729",
        "citytype":"4",
        "city_full_name":"河南省驻马店市新蔡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":419001,
        "pcityid":"419000",
        "pcityids":"1,410000,419000,",
        "cityname":"济源市",
        "citysort":"1850",
        "citycode":"419001",
        "citytype":"4",
        "city_full_name":"河南省省直辖县级行政区划济源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420101,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"市辖区",
        "citysort":"1853",
        "citycode":"420101",
        "citytype":"4",
        "city_full_name":"湖北省武汉市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420102,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"江岸区",
        "citysort":"1854",
        "citycode":"420102",
        "citytype":"4",
        "city_full_name":"湖北省武汉市江岸区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420103,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"江汉区",
        "citysort":"1855",
        "citycode":"420103",
        "citytype":"4",
        "city_full_name":"湖北省武汉市江汉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420104,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"硚口区",
        "citysort":"1856",
        "citycode":"420104",
        "citytype":"4",
        "city_full_name":"湖北省武汉市硚口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420105,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"汉阳区",
        "citysort":"1857",
        "citycode":"420105",
        "citytype":"4",
        "city_full_name":"湖北省武汉市汉阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420106,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"武昌区",
        "citysort":"1858",
        "citycode":"420106",
        "citytype":"4",
        "city_full_name":"湖北省武汉市武昌区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420107,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"青山区",
        "citysort":"1859",
        "citycode":"420107",
        "citytype":"4",
        "city_full_name":"湖北省武汉市青山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420111,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"洪山区",
        "citysort":"1860",
        "citycode":"420111",
        "citytype":"4",
        "city_full_name":"湖北省武汉市洪山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420112,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"东*湖区",
        "citysort":"1861",
        "citycode":"420112",
        "citytype":"4",
        "city_full_name":"湖北省武汉市东*湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420113,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"汉南区",
        "citysort":"1862",
        "citycode":"420113",
        "citytype":"4",
        "city_full_name":"湖北省武汉市汉南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420114,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"蔡甸区",
        "citysort":"1863",
        "citycode":"420114",
        "citytype":"4",
        "city_full_name":"湖北省武汉市蔡甸区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420115,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"江夏区",
        "citysort":"1864",
        "citycode":"420115",
        "citytype":"4",
        "city_full_name":"湖北省武汉市江夏区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420116,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"黄陂区",
        "citysort":"1865",
        "citycode":"420116",
        "citytype":"4",
        "city_full_name":"湖北省武汉市黄陂区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420117,
        "pcityid":"420100",
        "pcityids":"1,420000,420100,",
        "cityname":"新洲区",
        "citysort":"1866",
        "citycode":"420117",
        "citytype":"4",
        "city_full_name":"湖北省武汉市新洲区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420201,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"市辖区",
        "citysort":"1868",
        "citycode":"420201",
        "citytype":"4",
        "city_full_name":"湖北省黄石市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420202,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"黄石港区",
        "citysort":"1869",
        "citycode":"420202",
        "citytype":"4",
        "city_full_name":"湖北省黄石市黄石港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420203,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"*塞山区",
        "citysort":"1870",
        "citycode":"420203",
        "citytype":"4",
        "city_full_name":"湖北省黄石市*塞山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420204,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"下陆区",
        "citysort":"1871",
        "citycode":"420204",
        "citytype":"4",
        "city_full_name":"湖北省黄石市下陆区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420205,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"铁山区",
        "citysort":"1872",
        "citycode":"420205",
        "citytype":"4",
        "city_full_name":"湖北省黄石市铁山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420222,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"阳新县",
        "citysort":"1873",
        "citycode":"420222",
        "citytype":"4",
        "city_full_name":"湖北省黄石市阳新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420281,
        "pcityid":"420200",
        "pcityids":"1,420000,420200,",
        "cityname":"大冶市",
        "citysort":"1874",
        "citycode":"420281",
        "citytype":"4",
        "city_full_name":"湖北省黄石市大冶市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420301,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"市辖区",
        "citysort":"1876",
        "citycode":"420301",
        "citytype":"4",
        "city_full_name":"湖北省十堰市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420302,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"茅箭区",
        "citysort":"1877",
        "citycode":"420302",
        "citytype":"4",
        "city_full_name":"湖北省十堰市茅箭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420303,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"张湾区",
        "citysort":"1878",
        "citycode":"420303",
        "citytype":"4",
        "city_full_name":"湖北省十堰市张湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420304,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"郧阳区",
        "citysort":"1879",
        "citycode":"420304",
        "citytype":"4",
        "city_full_name":"湖北省十堰市郧阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420322,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"郧*县",
        "citysort":"1880",
        "citycode":"420322",
        "citytype":"4",
        "city_full_name":"湖北省十堰市郧*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420323,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"竹山县",
        "citysort":"1881",
        "citycode":"420323",
        "citytype":"4",
        "city_full_name":"湖北省十堰市竹山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420324,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"竹溪县",
        "citysort":"1882",
        "citycode":"420324",
        "citytype":"4",
        "city_full_name":"湖北省十堰市竹溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420325,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"房县",
        "citysort":"1883",
        "citycode":"420325",
        "citytype":"4",
        "city_full_name":"湖北省十堰市房县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420381,
        "pcityid":"420300",
        "pcityids":"1,420000,420300,",
        "cityname":"丹江口市",
        "citysort":"1884",
        "citycode":"420381",
        "citytype":"4",
        "city_full_name":"湖北省十堰市丹江口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420501,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"市辖区",
        "citysort":"1886",
        "citycode":"420501",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420502,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"*陵区",
        "citysort":"1887",
        "citycode":"420502",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市*陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420503,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"伍家岗区",
        "citysort":"1888",
        "citycode":"420503",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市伍家岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420504,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"点军区",
        "citysort":"1889",
        "citycode":"420504",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市点军区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420505,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"猇亭区",
        "citysort":"1890",
        "citycode":"420505",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市猇亭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420506,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"夷陵区",
        "citysort":"1891",
        "citycode":"420506",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市夷陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420525,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"远安县",
        "citysort":"1892",
        "citycode":"420525",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市远安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420526,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"兴山县",
        "citysort":"1893",
        "citycode":"420526",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市兴山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420527,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"秭归县",
        "citysort":"1894",
        "citycode":"420527",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市秭归县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420528,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"长阳土家族自治县",
        "citysort":"1895",
        "citycode":"420528",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市长阳土家族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420529,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"五峰土家族自治县",
        "citysort":"1896",
        "citycode":"420529",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市五峰土家族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420581,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"宜都市",
        "citysort":"1897",
        "citycode":"420581",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市宜都市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420582,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"当阳市",
        "citysort":"1898",
        "citycode":"420582",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市当阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420583,
        "pcityid":"420500",
        "pcityids":"1,420000,420500,",
        "cityname":"枝江市",
        "citysort":"1899",
        "citycode":"420583",
        "citytype":"4",
        "city_full_name":"湖北省宜昌市枝江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420601,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"市辖区",
        "citysort":"1901",
        "citycode":"420601",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420602,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"襄城区",
        "citysort":"1902",
        "citycode":"420602",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市襄城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420606,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"樊城区",
        "citysort":"1903",
        "citycode":"420606",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市樊城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420607,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"襄州区",
        "citysort":"1904",
        "citycode":"420607",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市襄州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420624,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"南漳县",
        "citysort":"1905",
        "citycode":"420624",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市南漳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420625,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"谷城县",
        "citysort":"1906",
        "citycode":"420625",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市谷城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420626,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"保康县",
        "citysort":"1907",
        "citycode":"420626",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市保康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420682,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"老河口市",
        "citysort":"1908",
        "citycode":"420682",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市老河口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420683,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"枣阳市",
        "citysort":"1909",
        "citycode":"420683",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市枣阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420684,
        "pcityid":"420600",
        "pcityids":"1,420000,420600,",
        "cityname":"宜城市",
        "citysort":"1910",
        "citycode":"420684",
        "citytype":"4",
        "city_full_name":"湖北省襄阳市宜城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420701,
        "pcityid":"420700",
        "pcityids":"1,420000,420700,",
        "cityname":"市辖区",
        "citysort":"1912",
        "citycode":"420701",
        "citytype":"4",
        "city_full_name":"湖北省鄂州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420702,
        "pcityid":"420700",
        "pcityids":"1,420000,420700,",
        "cityname":"梁子湖区",
        "citysort":"1913",
        "citycode":"420702",
        "citytype":"4",
        "city_full_name":"湖北省鄂州市梁子湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420703,
        "pcityid":"420700",
        "pcityids":"1,420000,420700,",
        "cityname":"华容区",
        "citysort":"1914",
        "citycode":"420703",
        "citytype":"4",
        "city_full_name":"湖北省鄂州市华容区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420704,
        "pcityid":"420700",
        "pcityids":"1,420000,420700,",
        "cityname":"鄂城区",
        "citysort":"1915",
        "citycode":"420704",
        "citytype":"4",
        "city_full_name":"湖北省鄂州市鄂城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420801,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"市辖区",
        "citysort":"1917",
        "citycode":"420801",
        "citytype":"4",
        "city_full_name":"湖北省荆门市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420802,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"东宝区",
        "citysort":"1918",
        "citycode":"420802",
        "citytype":"4",
        "city_full_name":"湖北省荆门市东宝区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420804,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"掇刀区",
        "citysort":"1919",
        "citycode":"420804",
        "citytype":"4",
        "city_full_name":"湖北省荆门市掇刀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420821,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"京山县",
        "citysort":"1920",
        "citycode":"420821",
        "citytype":"4",
        "city_full_name":"湖北省荆门市京山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420822,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"沙洋县",
        "citysort":"1921",
        "citycode":"420822",
        "citytype":"4",
        "city_full_name":"湖北省荆门市沙洋县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420881,
        "pcityid":"420800",
        "pcityids":"1,420000,420800,",
        "cityname":"钟祥市",
        "citysort":"1922",
        "citycode":"420881",
        "citytype":"4",
        "city_full_name":"湖北省荆门市钟祥市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420901,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"市辖区",
        "citysort":"1924",
        "citycode":"420901",
        "citytype":"4",
        "city_full_name":"湖北省孝感市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420902,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"孝南区",
        "citysort":"1925",
        "citycode":"420902",
        "citytype":"4",
        "city_full_name":"湖北省孝感市孝南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":420921,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"孝昌县",
        "citysort":"1926",
        "citycode":"420921",
        "citytype":"4",
        "city_full_name":"湖北省孝感市孝昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420922,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"大悟县",
        "citysort":"1927",
        "citycode":"420922",
        "citytype":"4",
        "city_full_name":"湖北省孝感市大悟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420923,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"云梦县",
        "citysort":"1928",
        "citycode":"420923",
        "citytype":"4",
        "city_full_name":"湖北省孝感市云梦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":420981,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"应城市",
        "citysort":"1929",
        "citycode":"420981",
        "citytype":"4",
        "city_full_name":"湖北省孝感市应城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420982,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"安陆市",
        "citysort":"1930",
        "citycode":"420982",
        "citytype":"4",
        "city_full_name":"湖北省孝感市安陆市",
        "is_virtual_region":"0"
    },
    {
        "cityid":420984,
        "pcityid":"420900",
        "pcityids":"1,420000,420900,",
        "cityname":"汉川市",
        "citysort":"1931",
        "citycode":"420984",
        "citytype":"4",
        "city_full_name":"湖北省孝感市汉川市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421001,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"市辖区",
        "citysort":"1933",
        "citycode":"421001",
        "citytype":"4",
        "city_full_name":"湖北省荆州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421002,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"沙市区",
        "citysort":"1934",
        "citycode":"421002",
        "citytype":"4",
        "city_full_name":"湖北省荆州市沙市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421003,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"荆州区",
        "citysort":"1935",
        "citycode":"421003",
        "citytype":"4",
        "city_full_name":"湖北省荆州市荆州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421022,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"公安县",
        "citysort":"1936",
        "citycode":"421022",
        "citytype":"4",
        "city_full_name":"湖北省荆州市公安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421023,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"监利县",
        "citysort":"1937",
        "citycode":"421023",
        "citytype":"4",
        "city_full_name":"湖北省荆州市监利县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421024,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"江陵县",
        "citysort":"1938",
        "citycode":"421024",
        "citytype":"4",
        "city_full_name":"湖北省荆州市江陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421081,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"石首市",
        "citysort":"1939",
        "citycode":"421081",
        "citytype":"4",
        "city_full_name":"湖北省荆州市石首市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421083,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"洪湖市",
        "citysort":"1940",
        "citycode":"421083",
        "citytype":"4",
        "city_full_name":"湖北省荆州市洪湖市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421087,
        "pcityid":"421000",
        "pcityids":"1,420000,421000,",
        "cityname":"松滋市",
        "citysort":"1941",
        "citycode":"421087",
        "citytype":"4",
        "city_full_name":"湖北省荆州市松滋市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421101,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"市辖区",
        "citysort":"1943",
        "citycode":"421101",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421102,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"黄州区",
        "citysort":"1944",
        "citycode":"421102",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市黄州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421121,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"团风县",
        "citysort":"1945",
        "citycode":"421121",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市团风县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421122,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"红安县",
        "citysort":"1946",
        "citycode":"421122",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市红安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421123,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"罗田县",
        "citysort":"1947",
        "citycode":"421123",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市罗田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421124,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"英山县",
        "citysort":"1948",
        "citycode":"421124",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市英山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421125,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"浠水县",
        "citysort":"1949",
        "citycode":"421125",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市浠水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421126,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"蕲春县",
        "citysort":"1950",
        "citycode":"421126",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市蕲春县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421127,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"黄梅县",
        "citysort":"1951",
        "citycode":"421127",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市黄梅县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421181,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"麻城市",
        "citysort":"1952",
        "citycode":"421181",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市麻城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421182,
        "pcityid":"421100",
        "pcityids":"1,420000,421100,",
        "cityname":"武穴市",
        "citysort":"1953",
        "citycode":"421182",
        "citytype":"4",
        "city_full_name":"湖北省黄冈市武穴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421201,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"市辖区",
        "citysort":"1955",
        "citycode":"421201",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421202,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"咸安区",
        "citysort":"1956",
        "citycode":"421202",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市咸安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421221,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"嘉鱼县",
        "citysort":"1957",
        "citycode":"421221",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市嘉鱼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421222,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"通城县",
        "citysort":"1958",
        "citycode":"421222",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市通城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421223,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"崇阳县",
        "citysort":"1959",
        "citycode":"421223",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市崇阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421224,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"通山县",
        "citysort":"1960",
        "citycode":"421224",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市通山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421281,
        "pcityid":"421200",
        "pcityids":"1,420000,421200,",
        "cityname":"赤壁市",
        "citysort":"1961",
        "citycode":"421281",
        "citytype":"4",
        "city_full_name":"湖北省咸宁市赤壁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":421301,
        "pcityid":"421300",
        "pcityids":"1,420000,421300,",
        "cityname":"市辖区",
        "citysort":"1963",
        "citycode":"421301",
        "citytype":"4",
        "city_full_name":"湖北省随州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421303,
        "pcityid":"421300",
        "pcityids":"1,420000,421300,",
        "cityname":"曾都区",
        "citysort":"1964",
        "citycode":"421303",
        "citytype":"4",
        "city_full_name":"湖北省随州市曾都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":421321,
        "pcityid":"421300",
        "pcityids":"1,420000,421300,",
        "cityname":"随县",
        "citysort":"1965",
        "citycode":"421321",
        "citytype":"4",
        "city_full_name":"湖北省随州市随县",
        "is_virtual_region":"0"
    },
    {
        "cityid":421381,
        "pcityid":"421300",
        "pcityids":"1,420000,421300,",
        "cityname":"广水市",
        "citysort":"1966",
        "citycode":"421381",
        "citytype":"4",
        "city_full_name":"湖北省随州市广水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":422801,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"恩施市",
        "citysort":"1968",
        "citycode":"422801",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州恩施市",
        "is_virtual_region":"0"
    },
    {
        "cityid":422802,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"利川市",
        "citysort":"1969",
        "citycode":"422802",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州利川市",
        "is_virtual_region":"0"
    },
    {
        "cityid":422822,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"建始县",
        "citysort":"1970",
        "citycode":"422822",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州建始县",
        "is_virtual_region":"0"
    },
    {
        "cityid":422823,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"巴东县",
        "citysort":"1971",
        "citycode":"422823",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州巴东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":422825,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"宣恩县",
        "citysort":"1972",
        "citycode":"422825",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州宣恩县",
        "is_virtual_region":"0"
    },
    {
        "cityid":422826,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"咸丰县",
        "citysort":"1973",
        "citycode":"422826",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州咸丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":422827,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"来凤县",
        "citysort":"1974",
        "citycode":"422827",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州来凤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":422828,
        "pcityid":"422800",
        "pcityids":"1,420000,422800,",
        "cityname":"鹤峰县",
        "citysort":"1975",
        "citycode":"422828",
        "citytype":"4",
        "city_full_name":"湖北省恩施土家族苗族自治州鹤峰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":429004,
        "pcityid":"429000",
        "pcityids":"1,420000,429000,",
        "cityname":"仙桃市",
        "citysort":"1977",
        "citycode":"429004",
        "citytype":"4",
        "city_full_name":"湖北省省直辖县级行政区划仙桃市",
        "is_virtual_region":"0"
    },
    {
        "cityid":429005,
        "pcityid":"429000",
        "pcityids":"1,420000,429000,",
        "cityname":"潜江市",
        "citysort":"1978",
        "citycode":"429005",
        "citytype":"4",
        "city_full_name":"湖北省省直辖县级行政区划潜江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":429006,
        "pcityid":"429000",
        "pcityids":"1,420000,429000,",
        "cityname":"天门市",
        "citysort":"1979",
        "citycode":"429006",
        "citytype":"4",
        "city_full_name":"湖北省省直辖县级行政区划天门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":429021,
        "pcityid":"429000",
        "pcityids":"1,420000,429000,",
        "cityname":"神农架林区",
        "citysort":"1980",
        "citycode":"429021",
        "citytype":"4",
        "city_full_name":"湖北省省直辖县级行政区划神农架林区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430101,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"市辖区",
        "citysort":"1983",
        "citycode":"430101",
        "citytype":"4",
        "city_full_name":"湖南省长沙市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430102,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"芙蓉区",
        "citysort":"1984",
        "citycode":"430102",
        "citytype":"4",
        "city_full_name":"湖南省长沙市芙蓉区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430103,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"天心区",
        "citysort":"1985",
        "citycode":"430103",
        "citytype":"4",
        "city_full_name":"湖南省长沙市天心区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430104,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"岳麓区",
        "citysort":"1986",
        "citycode":"430104",
        "citytype":"4",
        "city_full_name":"湖南省长沙市岳麓区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430105,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"开福区",
        "citysort":"1987",
        "citycode":"430105",
        "citytype":"4",
        "city_full_name":"湖南省长沙市开福区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430111,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"雨花区",
        "citysort":"1988",
        "citycode":"430111",
        "citytype":"4",
        "city_full_name":"湖南省长沙市雨花区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430112,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"望城区",
        "citysort":"1989",
        "citycode":"430112",
        "citytype":"4",
        "city_full_name":"湖南省长沙市望城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430121,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"长沙县",
        "citysort":"1990",
        "citycode":"430121",
        "citytype":"4",
        "city_full_name":"湖南省长沙市长沙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430124,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"宁乡县",
        "citysort":"1991",
        "citycode":"430124",
        "citytype":"4",
        "city_full_name":"湖南省长沙市宁乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430181,
        "pcityid":"430100",
        "pcityids":"1,430000,430100,",
        "cityname":"浏阳市",
        "citysort":"1992",
        "citycode":"430181",
        "citytype":"4",
        "city_full_name":"湖南省长沙市浏阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430201,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"市辖区",
        "citysort":"1994",
        "citycode":"430201",
        "citytype":"4",
        "city_full_name":"湖南省株洲市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430202,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"荷塘区",
        "citysort":"1995",
        "citycode":"430202",
        "citytype":"4",
        "city_full_name":"湖南省株洲市荷塘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430203,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"芦淞区",
        "citysort":"1996",
        "citycode":"430203",
        "citytype":"4",
        "city_full_name":"湖南省株洲市芦淞区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430204,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"石峰区",
        "citysort":"1997",
        "citycode":"430204",
        "citytype":"4",
        "city_full_name":"湖南省株洲市石峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430211,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"天元区",
        "citysort":"1998",
        "citycode":"430211",
        "citytype":"4",
        "city_full_name":"湖南省株洲市天元区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430221,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"株洲县",
        "citysort":"1999",
        "citycode":"430221",
        "citytype":"4",
        "city_full_name":"湖南省株洲市株洲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430223,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"攸县",
        "citysort":"2000",
        "citycode":"430223",
        "citytype":"4",
        "city_full_name":"湖南省株洲市攸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430224,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"茶陵县",
        "citysort":"2001",
        "citycode":"430224",
        "citytype":"4",
        "city_full_name":"湖南省株洲市茶陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430225,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"炎陵县",
        "citysort":"2002",
        "citycode":"430225",
        "citytype":"4",
        "city_full_name":"湖南省株洲市炎陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430281,
        "pcityid":"430200",
        "pcityids":"1,430000,430200,",
        "cityname":"醴陵市",
        "citysort":"2003",
        "citycode":"430281",
        "citytype":"4",
        "city_full_name":"湖南省株洲市醴陵市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430301,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"市辖区",
        "citysort":"2005",
        "citycode":"430301",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430302,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"雨湖区",
        "citysort":"2006",
        "citycode":"430302",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市雨湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430304,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"岳塘区",
        "citysort":"2007",
        "citycode":"430304",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市岳塘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430321,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"湘潭县",
        "citysort":"2008",
        "citycode":"430321",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市湘潭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430381,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"湘乡市",
        "citysort":"2009",
        "citycode":"430381",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市湘乡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430382,
        "pcityid":"430300",
        "pcityids":"1,430000,430300,",
        "cityname":"韶山市",
        "citysort":"2010",
        "citycode":"430382",
        "citytype":"4",
        "city_full_name":"湖南省湘潭市韶山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430401,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"市辖区",
        "citysort":"2012",
        "citycode":"430401",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430405,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"珠晖区",
        "citysort":"2013",
        "citycode":"430405",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市珠晖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430406,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"雁峰区",
        "citysort":"2014",
        "citycode":"430406",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市雁峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430407,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"石鼓区",
        "citysort":"2015",
        "citycode":"430407",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市石鼓区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430408,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"蒸湘区",
        "citysort":"2016",
        "citycode":"430408",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市蒸湘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430412,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"南岳区",
        "citysort":"2017",
        "citycode":"430412",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市南岳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430421,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"衡阳县",
        "citysort":"2018",
        "citycode":"430421",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市衡阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430422,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"衡南县",
        "citysort":"2019",
        "citycode":"430422",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市衡南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430423,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"衡山县",
        "citysort":"2020",
        "citycode":"430423",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市衡山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430424,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"衡东县",
        "citysort":"2021",
        "citycode":"430424",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市衡东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430426,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"祁东县",
        "citysort":"2022",
        "citycode":"430426",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市祁东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430481,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"耒阳市",
        "citysort":"2023",
        "citycode":"430481",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市耒阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430482,
        "pcityid":"430400",
        "pcityids":"1,430000,430400,",
        "cityname":"常宁市",
        "citysort":"2024",
        "citycode":"430482",
        "citytype":"4",
        "city_full_name":"湖南省衡阳市常宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430501,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"市辖区",
        "citysort":"2026",
        "citycode":"430501",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430502,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"双清区",
        "citysort":"2027",
        "citycode":"430502",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市双清区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430503,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"大祥区",
        "citysort":"2028",
        "citycode":"430503",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市大祥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430511,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"北塔区",
        "citysort":"2029",
        "citycode":"430511",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市北塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430521,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"邵东县",
        "citysort":"2030",
        "citycode":"430521",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市邵东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430522,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"新邵县",
        "citysort":"2031",
        "citycode":"430522",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市新邵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430523,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"邵阳县",
        "citysort":"2032",
        "citycode":"430523",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市邵阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430524,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"隆回县",
        "citysort":"2033",
        "citycode":"430524",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市隆回县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430525,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"洞口县",
        "citysort":"2034",
        "citycode":"430525",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市洞口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430527,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"绥宁县",
        "citysort":"2035",
        "citycode":"430527",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市绥宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430528,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"新宁县",
        "citysort":"2036",
        "citycode":"430528",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市新宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430529,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"城步苗族自治县",
        "citysort":"2037",
        "citycode":"430529",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市城步苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430581,
        "pcityid":"430500",
        "pcityids":"1,430000,430500,",
        "cityname":"武冈市",
        "citysort":"2038",
        "citycode":"430581",
        "citytype":"4",
        "city_full_name":"湖南省邵阳市武冈市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430601,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"市辖区",
        "citysort":"2040",
        "citycode":"430601",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430602,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"岳阳楼区",
        "citysort":"2041",
        "citycode":"430602",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市岳阳楼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430603,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"云溪区",
        "citysort":"2042",
        "citycode":"430603",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市云溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430611,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"君山区",
        "citysort":"2043",
        "citycode":"430611",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市君山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430621,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"岳阳县",
        "citysort":"2044",
        "citycode":"430621",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市岳阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430623,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"华容县",
        "citysort":"2045",
        "citycode":"430623",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市华容县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430624,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"湘阴县",
        "citysort":"2046",
        "citycode":"430624",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市湘阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430626,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"*江县",
        "citysort":"2047",
        "citycode":"430626",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市*江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430681,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"汨罗市",
        "citysort":"2048",
        "citycode":"430681",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市汨罗市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430682,
        "pcityid":"430600",
        "pcityids":"1,430000,430600,",
        "cityname":"临湘市",
        "citysort":"2049",
        "citycode":"430682",
        "citytype":"4",
        "city_full_name":"湖南省岳阳市临湘市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430701,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"市辖区",
        "citysort":"2051",
        "citycode":"430701",
        "citytype":"4",
        "city_full_name":"湖南省常德市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430702,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"武陵区",
        "citysort":"2052",
        "citycode":"430702",
        "citytype":"4",
        "city_full_name":"湖南省常德市武陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430703,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"鼎城区",
        "citysort":"2053",
        "citycode":"430703",
        "citytype":"4",
        "city_full_name":"湖南省常德市鼎城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430721,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"安乡县",
        "citysort":"2054",
        "citycode":"430721",
        "citytype":"4",
        "city_full_name":"湖南省常德市安乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430722,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"汉寿县",
        "citysort":"2055",
        "citycode":"430722",
        "citytype":"4",
        "city_full_name":"湖南省常德市汉寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430723,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"澧县",
        "citysort":"2056",
        "citycode":"430723",
        "citytype":"4",
        "city_full_name":"湖南省常德市澧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430724,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"临澧县",
        "citysort":"2057",
        "citycode":"430724",
        "citytype":"4",
        "city_full_name":"湖南省常德市临澧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430725,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"桃源县",
        "citysort":"2058",
        "citycode":"430725",
        "citytype":"4",
        "city_full_name":"湖南省常德市桃源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430726,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"石门县",
        "citysort":"2059",
        "citycode":"430726",
        "citytype":"4",
        "city_full_name":"湖南省常德市石门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430781,
        "pcityid":"430700",
        "pcityids":"1,430000,430700,",
        "cityname":"津市市",
        "citysort":"2060",
        "citycode":"430781",
        "citytype":"4",
        "city_full_name":"湖南省常德市津市市",
        "is_virtual_region":"0"
    },
    {
        "cityid":430801,
        "pcityid":"430800",
        "pcityids":"1,430000,430800,",
        "cityname":"市辖区",
        "citysort":"2062",
        "citycode":"430801",
        "citytype":"4",
        "city_full_name":"湖南省张家界市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430802,
        "pcityid":"430800",
        "pcityids":"1,430000,430800,",
        "cityname":"永定区",
        "citysort":"2063",
        "citycode":"430802",
        "citytype":"4",
        "city_full_name":"湖南省张家界市永定区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430811,
        "pcityid":"430800",
        "pcityids":"1,430000,430800,",
        "cityname":"武陵源区",
        "citysort":"2064",
        "citycode":"430811",
        "citytype":"4",
        "city_full_name":"湖南省张家界市武陵源区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430821,
        "pcityid":"430800",
        "pcityids":"1,430000,430800,",
        "cityname":"慈利县",
        "citysort":"2065",
        "citycode":"430821",
        "citytype":"4",
        "city_full_name":"湖南省张家界市慈利县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430822,
        "pcityid":"430800",
        "pcityids":"1,430000,430800,",
        "cityname":"桑植县",
        "citysort":"2066",
        "citycode":"430822",
        "citytype":"4",
        "city_full_name":"湖南省张家界市桑植县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430901,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"市辖区",
        "citysort":"2068",
        "citycode":"430901",
        "citytype":"4",
        "city_full_name":"湖南省益阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430902,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"资阳区",
        "citysort":"2069",
        "citycode":"430902",
        "citytype":"4",
        "city_full_name":"湖南省益阳市资阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430903,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"赫山区",
        "citysort":"2070",
        "citycode":"430903",
        "citytype":"4",
        "city_full_name":"湖南省益阳市赫山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":430921,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"南县",
        "citysort":"2071",
        "citycode":"430921",
        "citytype":"4",
        "city_full_name":"湖南省益阳市南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430922,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"桃江县",
        "citysort":"2072",
        "citycode":"430922",
        "citytype":"4",
        "city_full_name":"湖南省益阳市桃江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430923,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"安化县",
        "citysort":"2073",
        "citycode":"430923",
        "citytype":"4",
        "city_full_name":"湖南省益阳市安化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":430981,
        "pcityid":"430900",
        "pcityids":"1,430000,430900,",
        "cityname":"沅江市",
        "citysort":"2074",
        "citycode":"430981",
        "citytype":"4",
        "city_full_name":"湖南省益阳市沅江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431001,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"市辖区",
        "citysort":"2076",
        "citycode":"431001",
        "citytype":"4",
        "city_full_name":"湖南省郴州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431002,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"北湖区",
        "citysort":"2077",
        "citycode":"431002",
        "citytype":"4",
        "city_full_name":"湖南省郴州市北湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431003,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"苏仙区",
        "citysort":"2078",
        "citycode":"431003",
        "citytype":"4",
        "city_full_name":"湖南省郴州市苏仙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431021,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"桂阳县",
        "citysort":"2079",
        "citycode":"431021",
        "citytype":"4",
        "city_full_name":"湖南省郴州市桂阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431022,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"宜章县",
        "citysort":"2080",
        "citycode":"431022",
        "citytype":"4",
        "city_full_name":"湖南省郴州市宜章县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431023,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"永兴县",
        "citysort":"2081",
        "citycode":"431023",
        "citytype":"4",
        "city_full_name":"湖南省郴州市永兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431024,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"嘉禾县",
        "citysort":"2082",
        "citycode":"431024",
        "citytype":"4",
        "city_full_name":"湖南省郴州市嘉禾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431025,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"临武县",
        "citysort":"2083",
        "citycode":"431025",
        "citytype":"4",
        "city_full_name":"湖南省郴州市临武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431026,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"汝城县",
        "citysort":"2084",
        "citycode":"431026",
        "citytype":"4",
        "city_full_name":"湖南省郴州市汝城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431027,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"桂东县",
        "citysort":"2085",
        "citycode":"431027",
        "citytype":"4",
        "city_full_name":"湖南省郴州市桂东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431028,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"安仁县",
        "citysort":"2086",
        "citycode":"431028",
        "citytype":"4",
        "city_full_name":"湖南省郴州市安仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431081,
        "pcityid":"431000",
        "pcityids":"1,430000,431000,",
        "cityname":"资兴市",
        "citysort":"2087",
        "citycode":"431081",
        "citytype":"4",
        "city_full_name":"湖南省郴州市资兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431101,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"市辖区",
        "citysort":"2089",
        "citycode":"431101",
        "citytype":"4",
        "city_full_name":"湖南省永州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431102,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"零陵区",
        "citysort":"2090",
        "citycode":"431102",
        "citytype":"4",
        "city_full_name":"湖南省永州市零陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431103,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"冷水滩区",
        "citysort":"2091",
        "citycode":"431103",
        "citytype":"4",
        "city_full_name":"湖南省永州市冷水滩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431121,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"祁阳县",
        "citysort":"2092",
        "citycode":"431121",
        "citytype":"4",
        "city_full_name":"湖南省永州市祁阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431122,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"东安县",
        "citysort":"2093",
        "citycode":"431122",
        "citytype":"4",
        "city_full_name":"湖南省永州市东安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431123,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"双牌县",
        "citysort":"2094",
        "citycode":"431123",
        "citytype":"4",
        "city_full_name":"湖南省永州市双牌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431124,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"道县",
        "citysort":"2095",
        "citycode":"431124",
        "citytype":"4",
        "city_full_name":"湖南省永州市道县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431125,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"江永县",
        "citysort":"2096",
        "citycode":"431125",
        "citytype":"4",
        "city_full_name":"湖南省永州市江永县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431126,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"宁远县",
        "citysort":"2097",
        "citycode":"431126",
        "citytype":"4",
        "city_full_name":"湖南省永州市宁远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431127,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"蓝山县",
        "citysort":"2098",
        "citycode":"431127",
        "citytype":"4",
        "city_full_name":"湖南省永州市蓝山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431128,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"新田县",
        "citysort":"2099",
        "citycode":"431128",
        "citytype":"4",
        "city_full_name":"湖南省永州市新田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431129,
        "pcityid":"431100",
        "pcityids":"1,430000,431100,",
        "cityname":"江华瑶族自治县",
        "citysort":"2100",
        "citycode":"431129",
        "citytype":"4",
        "city_full_name":"湖南省永州市江华瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431201,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"市辖区",
        "citysort":"2102",
        "citycode":"431201",
        "citytype":"4",
        "city_full_name":"湖南省怀化市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431202,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"鹤城区",
        "citysort":"2103",
        "citycode":"431202",
        "citytype":"4",
        "city_full_name":"湖南省怀化市鹤城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431221,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"中方县",
        "citysort":"2104",
        "citycode":"431221",
        "citytype":"4",
        "city_full_name":"湖南省怀化市中方县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431222,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"沅陵县",
        "citysort":"2105",
        "citycode":"431222",
        "citytype":"4",
        "city_full_name":"湖南省怀化市沅陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431223,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"辰溪县",
        "citysort":"2106",
        "citycode":"431223",
        "citytype":"4",
        "city_full_name":"湖南省怀化市辰溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431224,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"溆浦县",
        "citysort":"2107",
        "citycode":"431224",
        "citytype":"4",
        "city_full_name":"湖南省怀化市溆浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431225,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"会同县",
        "citysort":"2108",
        "citycode":"431225",
        "citytype":"4",
        "city_full_name":"湖南省怀化市会同县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431226,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"麻阳苗族自治县",
        "citysort":"2109",
        "citycode":"431226",
        "citytype":"4",
        "city_full_name":"湖南省怀化市麻阳苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431227,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"新晃侗族自治县",
        "citysort":"2110",
        "citycode":"431227",
        "citytype":"4",
        "city_full_name":"湖南省怀化市新晃侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431228,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"芷江侗族自治县",
        "citysort":"2111",
        "citycode":"431228",
        "citytype":"4",
        "city_full_name":"湖南省怀化市芷江侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431229,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"靖州苗族侗族自治县",
        "citysort":"2112",
        "citycode":"431229",
        "citytype":"4",
        "city_full_name":"湖南省怀化市靖州苗族侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431230,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"通道侗族自治县",
        "citysort":"2113",
        "citycode":"431230",
        "citytype":"4",
        "city_full_name":"湖南省怀化市通道侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431281,
        "pcityid":"431200",
        "pcityids":"1,430000,431200,",
        "cityname":"洪江市",
        "citysort":"2114",
        "citycode":"431281",
        "citytype":"4",
        "city_full_name":"湖南省怀化市洪江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431301,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"市辖区",
        "citysort":"2116",
        "citycode":"431301",
        "citytype":"4",
        "city_full_name":"湖南省娄底市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431302,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"娄星区",
        "citysort":"2117",
        "citycode":"431302",
        "citytype":"4",
        "city_full_name":"湖南省娄底市娄星区",
        "is_virtual_region":"0"
    },
    {
        "cityid":431321,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"双峰县",
        "citysort":"2118",
        "citycode":"431321",
        "citytype":"4",
        "city_full_name":"湖南省娄底市双峰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431322,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"新化县",
        "citysort":"2119",
        "citycode":"431322",
        "citytype":"4",
        "city_full_name":"湖南省娄底市新化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":431381,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"冷水江市",
        "citysort":"2120",
        "citycode":"431381",
        "citytype":"4",
        "city_full_name":"湖南省娄底市冷水江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":431382,
        "pcityid":"431300",
        "pcityids":"1,430000,431300,",
        "cityname":"涟源市",
        "citysort":"2121",
        "citycode":"431382",
        "citytype":"4",
        "city_full_name":"湖南省娄底市涟源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":433101,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"吉首市",
        "citysort":"2123",
        "citycode":"433101",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州吉首市",
        "is_virtual_region":"0"
    },
    {
        "cityid":433122,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"泸溪县",
        "citysort":"2124",
        "citycode":"433122",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州泸溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433123,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"凤凰县",
        "citysort":"2125",
        "citycode":"433123",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州凤凰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433124,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"花垣县",
        "citysort":"2126",
        "citycode":"433124",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州花垣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433125,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"保靖县",
        "citysort":"2127",
        "citycode":"433125",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州保靖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433126,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"古丈县",
        "citysort":"2128",
        "citycode":"433126",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州古丈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433127,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"永顺县",
        "citysort":"2129",
        "citycode":"433127",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州永顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":433130,
        "pcityid":"433100",
        "pcityids":"1,430000,433100,",
        "cityname":"龙山县",
        "citysort":"2130",
        "citycode":"433130",
        "citytype":"4",
        "city_full_name":"湖南省湘*土家族苗族自治州龙山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440101,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"市辖区",
        "citysort":"2133",
        "citycode":"440101",
        "citytype":"4",
        "city_full_name":"广东省广州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440103,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"荔湾区",
        "citysort":"2134",
        "citycode":"440103",
        "citytype":"4",
        "city_full_name":"广东省广州市荔湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440104,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"越秀区",
        "citysort":"2135",
        "citycode":"440104",
        "citytype":"4",
        "city_full_name":"广东省广州市越秀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440105,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"海珠区",
        "citysort":"2136",
        "citycode":"440105",
        "citytype":"4",
        "city_full_name":"广东省广州市海珠区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440106,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"天河区",
        "citysort":"2137",
        "citycode":"440106",
        "citytype":"4",
        "city_full_name":"广东省广州市天河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440111,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"白云区",
        "citysort":"2138",
        "citycode":"440111",
        "citytype":"4",
        "city_full_name":"广东省广州市白云区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440112,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"黄埔区",
        "citysort":"2139",
        "citycode":"440112",
        "citytype":"4",
        "city_full_name":"广东省广州市黄埔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440113,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"番禺区",
        "citysort":"2140",
        "citycode":"440113",
        "citytype":"4",
        "city_full_name":"广东省广州市番禺区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440114,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"花都区",
        "citysort":"2141",
        "citycode":"440114",
        "citytype":"4",
        "city_full_name":"广东省广州市花都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440115,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"南沙区",
        "citysort":"2142",
        "citycode":"440115",
        "citytype":"4",
        "city_full_name":"广东省广州市南沙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440116,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"萝岗区",
        "citysort":"2143",
        "citycode":"440116",
        "citytype":"4",
        "city_full_name":"广东省广州市萝岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440117,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"从化区",
        "citysort":"2144",
        "citycode":"440117",
        "citytype":"4",
        "city_full_name":"广东省广州市从化区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440118,
        "pcityid":"440100",
        "pcityids":"1,440000,440100,",
        "cityname":"增城区",
        "citysort":"2145",
        "citycode":"440118",
        "citytype":"4",
        "city_full_name":"广东省广州市增城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440201,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"市辖区",
        "citysort":"2147",
        "citycode":"440201",
        "citytype":"4",
        "city_full_name":"广东省韶关市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440203,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"武江区",
        "citysort":"2148",
        "citycode":"440203",
        "citytype":"4",
        "city_full_name":"广东省韶关市武江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440204,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"浈江区",
        "citysort":"2149",
        "citycode":"440204",
        "citytype":"4",
        "city_full_name":"广东省韶关市浈江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440205,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"曲江区",
        "citysort":"2150",
        "citycode":"440205",
        "citytype":"4",
        "city_full_name":"广东省韶关市曲江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440222,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"始兴县",
        "citysort":"2151",
        "citycode":"440222",
        "citytype":"4",
        "city_full_name":"广东省韶关市始兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440224,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"仁化县",
        "citysort":"2152",
        "citycode":"440224",
        "citytype":"4",
        "city_full_name":"广东省韶关市仁化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440229,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"翁源县",
        "citysort":"2153",
        "citycode":"440229",
        "citytype":"4",
        "city_full_name":"广东省韶关市翁源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440232,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"乳源瑶族自治县",
        "citysort":"2154",
        "citycode":"440232",
        "citytype":"4",
        "city_full_name":"广东省韶关市乳源瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440233,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"新丰县",
        "citysort":"2155",
        "citycode":"440233",
        "citytype":"4",
        "city_full_name":"广东省韶关市新丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440281,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"乐昌市",
        "citysort":"2156",
        "citycode":"440281",
        "citytype":"4",
        "city_full_name":"广东省韶关市乐昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440282,
        "pcityid":"440200",
        "pcityids":"1,440000,440200,",
        "cityname":"南雄市",
        "citysort":"2157",
        "citycode":"440282",
        "citytype":"4",
        "city_full_name":"广东省韶关市南雄市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440301,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"市辖区",
        "citysort":"2159",
        "citycode":"440301",
        "citytype":"4",
        "city_full_name":"广东省深圳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440303,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"罗湖区",
        "citysort":"2160",
        "citycode":"440303",
        "citytype":"4",
        "city_full_name":"广东省深圳市罗湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440304,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"福田区",
        "citysort":"2161",
        "citycode":"440304",
        "citytype":"4",
        "city_full_name":"广东省深圳市福田区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440305,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"南山区",
        "citysort":"2162",
        "citycode":"440305",
        "citytype":"4",
        "city_full_name":"广东省深圳市南山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440306,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"宝安区",
        "citysort":"2163",
        "citycode":"440306",
        "citytype":"4",
        "city_full_name":"广东省深圳市宝安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440307,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"龙岗区",
        "citysort":"2164",
        "citycode":"440307",
        "citytype":"4",
        "city_full_name":"广东省深圳市龙岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440308,
        "pcityid":"440300",
        "pcityids":"1,440000,440300,",
        "cityname":"盐田区",
        "citysort":"2165",
        "citycode":"440308",
        "citytype":"4",
        "city_full_name":"广东省深圳市盐田区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440401,
        "pcityid":"440400",
        "pcityids":"1,440000,440400,",
        "cityname":"市辖区",
        "citysort":"2167",
        "citycode":"440401",
        "citytype":"4",
        "city_full_name":"广东省珠海市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440402,
        "pcityid":"440400",
        "pcityids":"1,440000,440400,",
        "cityname":"香洲区",
        "citysort":"2168",
        "citycode":"440402",
        "citytype":"4",
        "city_full_name":"广东省珠海市香洲区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440403,
        "pcityid":"440400",
        "pcityids":"1,440000,440400,",
        "cityname":"斗门区",
        "citysort":"2169",
        "citycode":"440403",
        "citytype":"4",
        "city_full_name":"广东省珠海市斗门区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440404,
        "pcityid":"440400",
        "pcityids":"1,440000,440400,",
        "cityname":"金湾区",
        "citysort":"2170",
        "citycode":"440404",
        "citytype":"4",
        "city_full_name":"广东省珠海市金湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440501,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"市辖区",
        "citysort":"2172",
        "citycode":"440501",
        "citytype":"4",
        "city_full_name":"广东省汕头市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440507,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"龙湖区",
        "citysort":"2173",
        "citycode":"440507",
        "citytype":"4",
        "city_full_name":"广东省汕头市龙湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440511,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"金*区",
        "citysort":"2174",
        "citycode":"440511",
        "citytype":"4",
        "city_full_name":"广东省汕头市金*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440512,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"濠江区",
        "citysort":"2175",
        "citycode":"440512",
        "citytype":"4",
        "city_full_name":"广东省汕头市濠江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440513,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"潮阳区",
        "citysort":"2176",
        "citycode":"440513",
        "citytype":"4",
        "city_full_name":"广东省汕头市潮阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440514,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"潮南区",
        "citysort":"2177",
        "citycode":"440514",
        "citytype":"4",
        "city_full_name":"广东省汕头市潮南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440515,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"澄海区",
        "citysort":"2178",
        "citycode":"440515",
        "citytype":"4",
        "city_full_name":"广东省汕头市澄海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440523,
        "pcityid":"440500",
        "pcityids":"1,440000,440500,",
        "cityname":"南澳县",
        "citysort":"2179",
        "citycode":"440523",
        "citytype":"4",
        "city_full_name":"广东省汕头市南澳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440601,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"市辖区",
        "citysort":"2181",
        "citycode":"440601",
        "citytype":"4",
        "city_full_name":"广东省佛山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440604,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"禅城区",
        "citysort":"2182",
        "citycode":"440604",
        "citytype":"4",
        "city_full_name":"广东省佛山市禅城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440605,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"南海区",
        "citysort":"2183",
        "citycode":"440605",
        "citytype":"4",
        "city_full_name":"广东省佛山市南海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440606,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"顺德区",
        "citysort":"2184",
        "citycode":"440606",
        "citytype":"4",
        "city_full_name":"广东省佛山市顺德区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440607,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"三水区",
        "citysort":"2185",
        "citycode":"440607",
        "citytype":"4",
        "city_full_name":"广东省佛山市三水区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440608,
        "pcityid":"440600",
        "pcityids":"1,440000,440600,",
        "cityname":"高明区",
        "citysort":"2186",
        "citycode":"440608",
        "citytype":"4",
        "city_full_name":"广东省佛山市高明区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440701,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"市辖区",
        "citysort":"2188",
        "citycode":"440701",
        "citytype":"4",
        "city_full_name":"广东省江门市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440703,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"蓬江区",
        "citysort":"2189",
        "citycode":"440703",
        "citytype":"4",
        "city_full_name":"广东省江门市蓬江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440704,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"江海区",
        "citysort":"2190",
        "citycode":"440704",
        "citytype":"4",
        "city_full_name":"广东省江门市江海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440705,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"新会区",
        "citysort":"2191",
        "citycode":"440705",
        "citytype":"4",
        "city_full_name":"广东省江门市新会区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440781,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"台山市",
        "citysort":"2192",
        "citycode":"440781",
        "citytype":"4",
        "city_full_name":"广东省江门市台山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440783,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"开*市",
        "citysort":"2193",
        "citycode":"440783",
        "citytype":"4",
        "city_full_name":"广东省江门市开*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440784,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"鹤山市",
        "citysort":"2194",
        "citycode":"440784",
        "citytype":"4",
        "city_full_name":"广东省江门市鹤山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440785,
        "pcityid":"440700",
        "pcityids":"1,440000,440700,",
        "cityname":"恩*市",
        "citysort":"2195",
        "citycode":"440785",
        "citytype":"4",
        "city_full_name":"广东省江门市恩*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440801,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"市辖区",
        "citysort":"2197",
        "citycode":"440801",
        "citytype":"4",
        "city_full_name":"广东省湛江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440802,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"赤坎区",
        "citysort":"2198",
        "citycode":"440802",
        "citytype":"4",
        "city_full_name":"广东省湛江市赤坎区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440803,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"霞山区",
        "citysort":"2199",
        "citycode":"440803",
        "citytype":"4",
        "city_full_name":"广东省湛江市霞山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440804,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"坡头区",
        "citysort":"2200",
        "citycode":"440804",
        "citytype":"4",
        "city_full_name":"广东省湛江市坡头区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440811,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"麻章区",
        "citysort":"2201",
        "citycode":"440811",
        "citytype":"4",
        "city_full_name":"广东省湛江市麻章区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440823,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"遂溪县",
        "citysort":"2202",
        "citycode":"440823",
        "citytype":"4",
        "city_full_name":"广东省湛江市遂溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440825,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"徐闻县",
        "citysort":"2203",
        "citycode":"440825",
        "citytype":"4",
        "city_full_name":"广东省湛江市徐闻县",
        "is_virtual_region":"0"
    },
    {
        "cityid":440881,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"廉江市",
        "citysort":"2204",
        "citycode":"440881",
        "citytype":"4",
        "city_full_name":"广东省湛江市廉江市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440882,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"雷州市",
        "citysort":"2205",
        "citycode":"440882",
        "citytype":"4",
        "city_full_name":"广东省湛江市雷州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440883,
        "pcityid":"440800",
        "pcityids":"1,440000,440800,",
        "cityname":"吴川市",
        "citysort":"2206",
        "citycode":"440883",
        "citytype":"4",
        "city_full_name":"广东省湛江市吴川市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440901,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"市辖区",
        "citysort":"2208",
        "citycode":"440901",
        "citytype":"4",
        "city_full_name":"广东省茂名市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440902,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"茂南区",
        "citysort":"2209",
        "citycode":"440902",
        "citytype":"4",
        "city_full_name":"广东省茂名市茂南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440904,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"电白区",
        "citysort":"2210",
        "citycode":"440904",
        "citytype":"4",
        "city_full_name":"广东省茂名市电白区",
        "is_virtual_region":"0"
    },
    {
        "cityid":440981,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"高州市",
        "citysort":"2211",
        "citycode":"440981",
        "citytype":"4",
        "city_full_name":"广东省茂名市高州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440982,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"化州市",
        "citysort":"2212",
        "citycode":"440982",
        "citytype":"4",
        "city_full_name":"广东省茂名市化州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":440983,
        "pcityid":"440900",
        "pcityids":"1,440000,440900,",
        "cityname":"信宜市",
        "citysort":"2213",
        "citycode":"440983",
        "citytype":"4",
        "city_full_name":"广东省茂名市信宜市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441201,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"市辖区",
        "citysort":"2215",
        "citycode":"441201",
        "citytype":"4",
        "city_full_name":"广东省肇庆市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441202,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"端州区",
        "citysort":"2216",
        "citycode":"441202",
        "citytype":"4",
        "city_full_name":"广东省肇庆市端州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441203,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"鼎湖区",
        "citysort":"2217",
        "citycode":"441203",
        "citytype":"4",
        "city_full_name":"广东省肇庆市鼎湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441223,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"广宁县",
        "citysort":"2218",
        "citycode":"441223",
        "citytype":"4",
        "city_full_name":"广东省肇庆市广宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441224,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"怀集县",
        "citysort":"2219",
        "citycode":"441224",
        "citytype":"4",
        "city_full_name":"广东省肇庆市怀集县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441225,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"封开县",
        "citysort":"2220",
        "citycode":"441225",
        "citytype":"4",
        "city_full_name":"广东省肇庆市封开县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441226,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"德庆县",
        "citysort":"2221",
        "citycode":"441226",
        "citytype":"4",
        "city_full_name":"广东省肇庆市德庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441283,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"高要市",
        "citysort":"2222",
        "citycode":"441283",
        "citytype":"4",
        "city_full_name":"广东省肇庆市高要市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441284,
        "pcityid":"441200",
        "pcityids":"1,440000,441200,",
        "cityname":"四会市",
        "citysort":"2223",
        "citycode":"441284",
        "citytype":"4",
        "city_full_name":"广东省肇庆市四会市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441301,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"市辖区",
        "citysort":"2225",
        "citycode":"441301",
        "citytype":"4",
        "city_full_name":"广东省惠州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441302,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"惠城区",
        "citysort":"2226",
        "citycode":"441302",
        "citytype":"4",
        "city_full_name":"广东省惠州市惠城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441303,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"惠阳区",
        "citysort":"2227",
        "citycode":"441303",
        "citytype":"4",
        "city_full_name":"广东省惠州市惠阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441322,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"博罗县",
        "citysort":"2228",
        "citycode":"441322",
        "citytype":"4",
        "city_full_name":"广东省惠州市博罗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441323,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"惠东县",
        "citysort":"2229",
        "citycode":"441323",
        "citytype":"4",
        "city_full_name":"广东省惠州市惠东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441324,
        "pcityid":"441300",
        "pcityids":"1,440000,441300,",
        "cityname":"龙门县",
        "citysort":"2230",
        "citycode":"441324",
        "citytype":"4",
        "city_full_name":"广东省惠州市龙门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441401,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"市辖区",
        "citysort":"2232",
        "citycode":"441401",
        "citytype":"4",
        "city_full_name":"广东省梅州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441402,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"梅江区",
        "citysort":"2233",
        "citycode":"441402",
        "citytype":"4",
        "city_full_name":"广东省梅州市梅江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441403,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"梅县区",
        "citysort":"2234",
        "citycode":"441403",
        "citytype":"4",
        "city_full_name":"广东省梅州市梅县区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441422,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"大埔县",
        "citysort":"2235",
        "citycode":"441422",
        "citytype":"4",
        "city_full_name":"广东省梅州市大埔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441423,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"丰顺县",
        "citysort":"2236",
        "citycode":"441423",
        "citytype":"4",
        "city_full_name":"广东省梅州市丰顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441424,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"五华县",
        "citysort":"2237",
        "citycode":"441424",
        "citytype":"4",
        "city_full_name":"广东省梅州市五华县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441426,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"*远县",
        "citysort":"2238",
        "citycode":"441426",
        "citytype":"4",
        "city_full_name":"广东省梅州市*远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441427,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"蕉岭县",
        "citysort":"2239",
        "citycode":"441427",
        "citytype":"4",
        "city_full_name":"广东省梅州市蕉岭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441481,
        "pcityid":"441400",
        "pcityids":"1,440000,441400,",
        "cityname":"兴宁市",
        "citysort":"2240",
        "citycode":"441481",
        "citytype":"4",
        "city_full_name":"广东省梅州市兴宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441501,
        "pcityid":"441500",
        "pcityids":"1,440000,441500,",
        "cityname":"市辖区",
        "citysort":"2242",
        "citycode":"441501",
        "citytype":"4",
        "city_full_name":"广东省汕尾市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441502,
        "pcityid":"441500",
        "pcityids":"1,440000,441500,",
        "cityname":"城区",
        "citysort":"2243",
        "citycode":"441502",
        "citytype":"4",
        "city_full_name":"广东省汕尾市城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441521,
        "pcityid":"441500",
        "pcityids":"1,440000,441500,",
        "cityname":"海丰县",
        "citysort":"2244",
        "citycode":"441521",
        "citytype":"4",
        "city_full_name":"广东省汕尾市海丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441523,
        "pcityid":"441500",
        "pcityids":"1,440000,441500,",
        "cityname":"陆河县",
        "citysort":"2245",
        "citycode":"441523",
        "citytype":"4",
        "city_full_name":"广东省汕尾市陆河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441581,
        "pcityid":"441500",
        "pcityids":"1,440000,441500,",
        "cityname":"陆丰市",
        "citysort":"2246",
        "citycode":"441581",
        "citytype":"4",
        "city_full_name":"广东省汕尾市陆丰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441601,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"市辖区",
        "citysort":"2248",
        "citycode":"441601",
        "citytype":"4",
        "city_full_name":"广东省河源市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441602,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"源城区",
        "citysort":"2249",
        "citycode":"441602",
        "citytype":"4",
        "city_full_name":"广东省河源市源城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441621,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"紫金县",
        "citysort":"2250",
        "citycode":"441621",
        "citytype":"4",
        "city_full_name":"广东省河源市紫金县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441622,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"龙川县",
        "citysort":"2251",
        "citycode":"441622",
        "citytype":"4",
        "city_full_name":"广东省河源市龙川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441623,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"连*县",
        "citysort":"2252",
        "citycode":"441623",
        "citytype":"4",
        "city_full_name":"广东省河源市连*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441624,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"和*县",
        "citysort":"2253",
        "citycode":"441624",
        "citytype":"4",
        "city_full_name":"广东省河源市和*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441625,
        "pcityid":"441600",
        "pcityids":"1,440000,441600,",
        "cityname":"东源县",
        "citysort":"2254",
        "citycode":"441625",
        "citytype":"4",
        "city_full_name":"广东省河源市东源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441701,
        "pcityid":"441700",
        "pcityids":"1,440000,441700,",
        "cityname":"市辖区",
        "citysort":"2256",
        "citycode":"441701",
        "citytype":"4",
        "city_full_name":"广东省阳江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441702,
        "pcityid":"441700",
        "pcityids":"1,440000,441700,",
        "cityname":"江城区",
        "citysort":"2257",
        "citycode":"441702",
        "citytype":"4",
        "city_full_name":"广东省阳江市江城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441721,
        "pcityid":"441700",
        "pcityids":"1,440000,441700,",
        "cityname":"阳*县",
        "citysort":"2258",
        "citycode":"441721",
        "citytype":"4",
        "city_full_name":"广东省阳江市阳*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441723,
        "pcityid":"441700",
        "pcityids":"1,440000,441700,",
        "cityname":"阳东县",
        "citysort":"2259",
        "citycode":"441723",
        "citytype":"4",
        "city_full_name":"广东省阳江市阳东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441781,
        "pcityid":"441700",
        "pcityids":"1,440000,441700,",
        "cityname":"阳春市",
        "citysort":"2260",
        "citycode":"441781",
        "citytype":"4",
        "city_full_name":"广东省阳江市阳春市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441801,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"市辖区",
        "citysort":"2262",
        "citycode":"441801",
        "citytype":"4",
        "city_full_name":"广东省清远市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441802,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"清城区",
        "citysort":"2263",
        "citycode":"441802",
        "citytype":"4",
        "city_full_name":"广东省清远市清城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441803,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"清新区",
        "citysort":"2264",
        "citycode":"441803",
        "citytype":"4",
        "city_full_name":"广东省清远市清新区",
        "is_virtual_region":"0"
    },
    {
        "cityid":441821,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"佛冈县",
        "citysort":"2265",
        "citycode":"441821",
        "citytype":"4",
        "city_full_name":"广东省清远市佛冈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441823,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"阳山县",
        "citysort":"2266",
        "citycode":"441823",
        "citytype":"4",
        "city_full_name":"广东省清远市阳山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441825,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"连山壮族瑶族自治县",
        "citysort":"2267",
        "citycode":"441825",
        "citytype":"4",
        "city_full_name":"广东省清远市连山壮族瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441826,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"连南瑶族自治县",
        "citysort":"2268",
        "citycode":"441826",
        "citytype":"4",
        "city_full_name":"广东省清远市连南瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":441881,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"英德市",
        "citysort":"2269",
        "citycode":"441881",
        "citytype":"4",
        "city_full_name":"广东省清远市英德市",
        "is_virtual_region":"0"
    },
    {
        "cityid":441882,
        "pcityid":"441800",
        "pcityids":"1,440000,441800,",
        "cityname":"连州市",
        "citysort":"2270",
        "citycode":"441882",
        "citytype":"4",
        "city_full_name":"广东省清远市连州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":445101,
        "pcityid":"445100",
        "pcityids":"1,440000,445100,",
        "cityname":"市辖区",
        "citysort":"2274",
        "citycode":"445101",
        "citytype":"4",
        "city_full_name":"广东省潮州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445102,
        "pcityid":"445100",
        "pcityids":"1,440000,445100,",
        "cityname":"湘桥区",
        "citysort":"2275",
        "citycode":"445102",
        "citytype":"4",
        "city_full_name":"广东省潮州市湘桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445103,
        "pcityid":"445100",
        "pcityids":"1,440000,445100,",
        "cityname":"潮安区",
        "citysort":"2276",
        "citycode":"445103",
        "citytype":"4",
        "city_full_name":"广东省潮州市潮安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445122,
        "pcityid":"445100",
        "pcityids":"1,440000,445100,",
        "cityname":"饶*县",
        "citysort":"2277",
        "citycode":"445122",
        "citytype":"4",
        "city_full_name":"广东省潮州市饶*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":445201,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"市辖区",
        "citysort":"2279",
        "citycode":"445201",
        "citytype":"4",
        "city_full_name":"广东省揭阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445202,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"榕城区",
        "citysort":"2280",
        "citycode":"445202",
        "citytype":"4",
        "city_full_name":"广东省揭阳市榕城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445203,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"揭东区",
        "citysort":"2281",
        "citycode":"445203",
        "citytype":"4",
        "city_full_name":"广东省揭阳市揭东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445222,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"揭*县",
        "citysort":"2282",
        "citycode":"445222",
        "citytype":"4",
        "city_full_name":"广东省揭阳市揭*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":445224,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"惠来县",
        "citysort":"2283",
        "citycode":"445224",
        "citytype":"4",
        "city_full_name":"广东省揭阳市惠来县",
        "is_virtual_region":"0"
    },
    {
        "cityid":445281,
        "pcityid":"445200",
        "pcityids":"1,440000,445200,",
        "cityname":"普宁市",
        "citysort":"2284",
        "citycode":"445281",
        "citytype":"4",
        "city_full_name":"广东省揭阳市普宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":445301,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"市辖区",
        "citysort":"2286",
        "citycode":"445301",
        "citytype":"4",
        "city_full_name":"广东省云浮市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445302,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"云城区",
        "citysort":"2287",
        "citycode":"445302",
        "citytype":"4",
        "city_full_name":"广东省云浮市云城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445303,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"云安区",
        "citysort":"2288",
        "citycode":"445303",
        "citytype":"4",
        "city_full_name":"广东省云浮市云安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":445321,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"新兴县",
        "citysort":"2289",
        "citycode":"445321",
        "citytype":"4",
        "city_full_name":"广东省云浮市新兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":445322,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"郁南县",
        "citysort":"2290",
        "citycode":"445322",
        "citytype":"4",
        "city_full_name":"广东省云浮市郁南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":445381,
        "pcityid":"445300",
        "pcityids":"1,440000,445300,",
        "cityname":"罗定市",
        "citysort":"2291",
        "citycode":"445381",
        "citytype":"4",
        "city_full_name":"广东省云浮市罗定市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450101,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"市辖区",
        "citysort":"2294",
        "citycode":"450101",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450102,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"兴宁区",
        "citysort":"2295",
        "citycode":"450102",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市兴宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450103,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"青秀区",
        "citysort":"2296",
        "citycode":"450103",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市青秀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450105,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"江南区",
        "citysort":"2297",
        "citycode":"450105",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市江南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450107,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"*乡塘区",
        "citysort":"2298",
        "citycode":"450107",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市*乡塘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450108,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"良庆区",
        "citysort":"2299",
        "citycode":"450108",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市良庆区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450109,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"邕宁区",
        "citysort":"2300",
        "citycode":"450109",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市邕宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450122,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"武鸣县",
        "citysort":"2301",
        "citycode":"450122",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市武鸣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450123,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"隆安县",
        "citysort":"2302",
        "citycode":"450123",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市隆安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450124,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"马山县",
        "citysort":"2303",
        "citycode":"450124",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市马山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450125,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"上林县",
        "citysort":"2304",
        "citycode":"450125",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市上林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450126,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"宾阳县",
        "citysort":"2305",
        "citycode":"450126",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市宾阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450127,
        "pcityid":"450100",
        "pcityids":"1,450000,450100,",
        "cityname":"横县",
        "citysort":"2306",
        "citycode":"450127",
        "citytype":"4",
        "city_full_name":"广*壮族自治区南宁市横县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450201,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"市辖区",
        "citysort":"2308",
        "citycode":"450201",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450202,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"城中区",
        "citysort":"2309",
        "citycode":"450202",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市城中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450203,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"鱼峰区",
        "citysort":"2310",
        "citycode":"450203",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市鱼峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450204,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"柳南区",
        "citysort":"2311",
        "citycode":"450204",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市柳南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450205,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"柳北区",
        "citysort":"2312",
        "citycode":"450205",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市柳北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450221,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"柳江县",
        "citysort":"2313",
        "citycode":"450221",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市柳江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450222,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"柳城县",
        "citysort":"2314",
        "citycode":"450222",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市柳城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450223,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"鹿寨县",
        "citysort":"2315",
        "citycode":"450223",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市鹿寨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450224,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"融安县",
        "citysort":"2316",
        "citycode":"450224",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市融安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450225,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"融水苗族自治县",
        "citysort":"2317",
        "citycode":"450225",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市融水苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450226,
        "pcityid":"450200",
        "pcityids":"1,450000,450200,",
        "cityname":"三江侗族自治县",
        "citysort":"2318",
        "citycode":"450226",
        "citytype":"4",
        "city_full_name":"广*壮族自治区柳州市三江侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450301,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"市辖区",
        "citysort":"2320",
        "citycode":"450301",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450302,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"秀峰区",
        "citysort":"2321",
        "citycode":"450302",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市秀峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450303,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"叠彩区",
        "citysort":"2322",
        "citycode":"450303",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市叠彩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450304,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"象山区",
        "citysort":"2323",
        "citycode":"450304",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市象山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450305,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"七星区",
        "citysort":"2324",
        "citycode":"450305",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市七星区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450311,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"雁山区",
        "citysort":"2325",
        "citycode":"450311",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市雁山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450312,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"临桂区",
        "citysort":"2326",
        "citycode":"450312",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市临桂区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450321,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"阳朔县",
        "citysort":"2327",
        "citycode":"450321",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市阳朔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450323,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"灵川县",
        "citysort":"2328",
        "citycode":"450323",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市灵川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450324,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"全州县",
        "citysort":"2329",
        "citycode":"450324",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市全州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450325,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"兴安县",
        "citysort":"2330",
        "citycode":"450325",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市兴安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450326,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"永福县",
        "citysort":"2331",
        "citycode":"450326",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市永福县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450327,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"灌阳县",
        "citysort":"2332",
        "citycode":"450327",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市灌阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450328,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"龙胜各族自治县",
        "citysort":"2333",
        "citycode":"450328",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市龙胜各族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450329,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"资源县",
        "citysort":"2334",
        "citycode":"450329",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市资源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450330,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"*乐县",
        "citysort":"2335",
        "citycode":"450330",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市*乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450331,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"荔浦县",
        "citysort":"2336",
        "citycode":"450331",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市荔浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450332,
        "pcityid":"450300",
        "pcityids":"1,450000,450300,",
        "cityname":"恭城瑶族自治县",
        "citysort":"2337",
        "citycode":"450332",
        "citytype":"4",
        "city_full_name":"广*壮族自治区桂林市恭城瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450401,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"市辖区",
        "citysort":"2339",
        "citycode":"450401",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450403,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"万秀区",
        "citysort":"2340",
        "citycode":"450403",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市万秀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450405,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"长洲区",
        "citysort":"2341",
        "citycode":"450405",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市长洲区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450406,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"龙圩区",
        "citysort":"2342",
        "citycode":"450406",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市龙圩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450421,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"苍梧县",
        "citysort":"2343",
        "citycode":"450421",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市苍梧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450422,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"藤县",
        "citysort":"2344",
        "citycode":"450422",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市藤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450423,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"蒙山县",
        "citysort":"2345",
        "citycode":"450423",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市蒙山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450481,
        "pcityid":"450400",
        "pcityids":"1,450000,450400,",
        "cityname":"岑溪市",
        "citysort":"2346",
        "citycode":"450481",
        "citytype":"4",
        "city_full_name":"广*壮族自治区梧州市岑溪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450501,
        "pcityid":"450500",
        "pcityids":"1,450000,450500,",
        "cityname":"市辖区",
        "citysort":"2348",
        "citycode":"450501",
        "citytype":"4",
        "city_full_name":"广*壮族自治区北海市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450502,
        "pcityid":"450500",
        "pcityids":"1,450000,450500,",
        "cityname":"海城区",
        "citysort":"2349",
        "citycode":"450502",
        "citytype":"4",
        "city_full_name":"广*壮族自治区北海市海城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450503,
        "pcityid":"450500",
        "pcityids":"1,450000,450500,",
        "cityname":"银海区",
        "citysort":"2350",
        "citycode":"450503",
        "citytype":"4",
        "city_full_name":"广*壮族自治区北海市银海区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450512,
        "pcityid":"450500",
        "pcityids":"1,450000,450500,",
        "cityname":"铁山港区",
        "citysort":"2351",
        "citycode":"450512",
        "citytype":"4",
        "city_full_name":"广*壮族自治区北海市铁山港区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450521,
        "pcityid":"450500",
        "pcityids":"1,450000,450500,",
        "cityname":"合浦县",
        "citysort":"2352",
        "citycode":"450521",
        "citytype":"4",
        "city_full_name":"广*壮族自治区北海市合浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450601,
        "pcityid":"450600",
        "pcityids":"1,450000,450600,",
        "cityname":"市辖区",
        "citysort":"2354",
        "citycode":"450601",
        "citytype":"4",
        "city_full_name":"广*壮族自治区防城港市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450602,
        "pcityid":"450600",
        "pcityids":"1,450000,450600,",
        "cityname":"港口区",
        "citysort":"2355",
        "citycode":"450602",
        "citytype":"4",
        "city_full_name":"广*壮族自治区防城港市港口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450603,
        "pcityid":"450600",
        "pcityids":"1,450000,450600,",
        "cityname":"防城区",
        "citysort":"2356",
        "citycode":"450603",
        "citytype":"4",
        "city_full_name":"广*壮族自治区防城港市防城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450621,
        "pcityid":"450600",
        "pcityids":"1,450000,450600,",
        "cityname":"上思县",
        "citysort":"2357",
        "citycode":"450621",
        "citytype":"4",
        "city_full_name":"广*壮族自治区防城港市上思县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450681,
        "pcityid":"450600",
        "pcityids":"1,450000,450600,",
        "cityname":"东兴市",
        "citysort":"2358",
        "citycode":"450681",
        "citytype":"4",
        "city_full_name":"广*壮族自治区防城港市东兴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450701,
        "pcityid":"450700",
        "pcityids":"1,450000,450700,",
        "cityname":"市辖区",
        "citysort":"2360",
        "citycode":"450701",
        "citytype":"4",
        "city_full_name":"广*壮族自治区钦州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450702,
        "pcityid":"450700",
        "pcityids":"1,450000,450700,",
        "cityname":"钦南区",
        "citysort":"2361",
        "citycode":"450702",
        "citytype":"4",
        "city_full_name":"广*壮族自治区钦州市钦南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450703,
        "pcityid":"450700",
        "pcityids":"1,450000,450700,",
        "cityname":"钦北区",
        "citysort":"2362",
        "citycode":"450703",
        "citytype":"4",
        "city_full_name":"广*壮族自治区钦州市钦北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450721,
        "pcityid":"450700",
        "pcityids":"1,450000,450700,",
        "cityname":"灵山县",
        "citysort":"2363",
        "citycode":"450721",
        "citytype":"4",
        "city_full_name":"广*壮族自治区钦州市灵山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450722,
        "pcityid":"450700",
        "pcityids":"1,450000,450700,",
        "cityname":"浦北县",
        "citysort":"2364",
        "citycode":"450722",
        "citytype":"4",
        "city_full_name":"广*壮族自治区钦州市浦北县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450801,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"市辖区",
        "citysort":"2366",
        "citycode":"450801",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450802,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"港北区",
        "citysort":"2367",
        "citycode":"450802",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市港北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450803,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"港南区",
        "citysort":"2368",
        "citycode":"450803",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市港南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450804,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"覃塘区",
        "citysort":"2369",
        "citycode":"450804",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市覃塘区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450821,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"*南县",
        "citysort":"2370",
        "citycode":"450821",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市*南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450881,
        "pcityid":"450800",
        "pcityids":"1,450000,450800,",
        "cityname":"桂*市",
        "citysort":"2371",
        "citycode":"450881",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贵港市桂*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":450901,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"市辖区",
        "citysort":"2373",
        "citycode":"450901",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450902,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"玉州区",
        "citysort":"2374",
        "citycode":"450902",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市玉州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450903,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"福绵区",
        "citysort":"2375",
        "citycode":"450903",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市福绵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":450921,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"容县",
        "citysort":"2376",
        "citycode":"450921",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市容县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450922,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"陆川县",
        "citysort":"2377",
        "citycode":"450922",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市陆川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450923,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"博白县",
        "citysort":"2378",
        "citycode":"450923",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市博白县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450924,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"兴业县",
        "citysort":"2379",
        "citycode":"450924",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市兴业县",
        "is_virtual_region":"0"
    },
    {
        "cityid":450981,
        "pcityid":"450900",
        "pcityids":"1,450000,450900,",
        "cityname":"北流市",
        "citysort":"2380",
        "citycode":"450981",
        "citytype":"4",
        "city_full_name":"广*壮族自治区玉林市北流市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451001,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"市辖区",
        "citysort":"2382",
        "citycode":"451001",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451002,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"右江区",
        "citysort":"2383",
        "citycode":"451002",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市右江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451021,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"田阳县",
        "citysort":"2384",
        "citycode":"451021",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市田阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451022,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"田东县",
        "citysort":"2385",
        "citycode":"451022",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市田东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451023,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"*果县",
        "citysort":"2386",
        "citycode":"451023",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市*果县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451024,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"德保县",
        "citysort":"2387",
        "citycode":"451024",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市德保县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451025,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"靖*县",
        "citysort":"2388",
        "citycode":"451025",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市靖*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451026,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"那坡县",
        "citysort":"2389",
        "citycode":"451026",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市那坡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451027,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"凌云县",
        "citysort":"2390",
        "citycode":"451027",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市凌云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451028,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"乐业县",
        "citysort":"2391",
        "citycode":"451028",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市乐业县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451029,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"田林县",
        "citysort":"2392",
        "citycode":"451029",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市田林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451030,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"*林县",
        "citysort":"2393",
        "citycode":"451030",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市*林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451031,
        "pcityid":"451000",
        "pcityids":"1,450000,451000,",
        "cityname":"隆林各族自治县",
        "citysort":"2394",
        "citycode":"451031",
        "citytype":"4",
        "city_full_name":"广*壮族自治区百色市隆林各族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451101,
        "pcityid":"451100",
        "pcityids":"1,450000,451100,",
        "cityname":"市辖区",
        "citysort":"2396",
        "citycode":"451101",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贺州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451102,
        "pcityid":"451100",
        "pcityids":"1,450000,451100,",
        "cityname":"八步区",
        "citysort":"2397",
        "citycode":"451102",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贺州市八步区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451121,
        "pcityid":"451100",
        "pcityids":"1,450000,451100,",
        "cityname":"昭*县",
        "citysort":"2398",
        "citycode":"451121",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贺州市昭*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451122,
        "pcityid":"451100",
        "pcityids":"1,450000,451100,",
        "cityname":"钟山县",
        "citysort":"2399",
        "citycode":"451122",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贺州市钟山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451123,
        "pcityid":"451100",
        "pcityids":"1,450000,451100,",
        "cityname":"富川瑶族自治县",
        "citysort":"2400",
        "citycode":"451123",
        "citytype":"4",
        "city_full_name":"广*壮族自治区贺州市富川瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451201,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"市辖区",
        "citysort":"2402",
        "citycode":"451201",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451202,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"金城江区",
        "citysort":"2403",
        "citycode":"451202",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市金城江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451221,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"南丹县",
        "citysort":"2404",
        "citycode":"451221",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市南丹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451222,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"天峨县",
        "citysort":"2405",
        "citycode":"451222",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市天峨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451223,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"凤山县",
        "citysort":"2406",
        "citycode":"451223",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市凤山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451224,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"东兰县",
        "citysort":"2407",
        "citycode":"451224",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市东兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451225,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"罗城仫佬族自治县",
        "citysort":"2408",
        "citycode":"451225",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市罗城仫佬族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451226,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"环江毛南族自治县",
        "citysort":"2409",
        "citycode":"451226",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市环江毛南族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451227,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"巴马瑶族自治县",
        "citysort":"2410",
        "citycode":"451227",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市巴马瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451228,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"都安瑶族自治县",
        "citysort":"2411",
        "citycode":"451228",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市都安瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451229,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"大化瑶族自治县",
        "citysort":"2412",
        "citycode":"451229",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市大化瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451281,
        "pcityid":"451200",
        "pcityids":"1,450000,451200,",
        "cityname":"宜州市",
        "citysort":"2413",
        "citycode":"451281",
        "citytype":"4",
        "city_full_name":"广*壮族自治区河池市宜州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451301,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"市辖区",
        "citysort":"2415",
        "citycode":"451301",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451302,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"兴宾区",
        "citysort":"2416",
        "citycode":"451302",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市兴宾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451321,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"忻城县",
        "citysort":"2417",
        "citycode":"451321",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市忻城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451322,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"象州县",
        "citysort":"2418",
        "citycode":"451322",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市象州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451323,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"武宣县",
        "citysort":"2419",
        "citycode":"451323",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市武宣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451324,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"金秀瑶族自治县",
        "citysort":"2420",
        "citycode":"451324",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市金秀瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451381,
        "pcityid":"451300",
        "pcityids":"1,450000,451300,",
        "cityname":"合山市",
        "citysort":"2421",
        "citycode":"451381",
        "citytype":"4",
        "city_full_name":"广*壮族自治区来宾市合山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":451401,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"市辖区",
        "citysort":"2423",
        "citycode":"451401",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451402,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"江州区",
        "citysort":"2424",
        "citycode":"451402",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市江州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":451421,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"扶绥县",
        "citysort":"2425",
        "citycode":"451421",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市扶绥县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451422,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"宁明县",
        "citysort":"2426",
        "citycode":"451422",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市宁明县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451423,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"龙州县",
        "citysort":"2427",
        "citycode":"451423",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市龙州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451424,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"大新县",
        "citysort":"2428",
        "citycode":"451424",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市大新县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451425,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"天等县",
        "citysort":"2429",
        "citycode":"451425",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市天等县",
        "is_virtual_region":"0"
    },
    {
        "cityid":451481,
        "pcityid":"451400",
        "pcityids":"1,450000,451400,",
        "cityname":"凭祥市",
        "citysort":"2430",
        "citycode":"451481",
        "citytype":"4",
        "city_full_name":"广*壮族自治区崇左市凭祥市",
        "is_virtual_region":"0"
    },
    {
        "cityid":460101,
        "pcityid":"460100",
        "pcityids":"1,460000,460100,",
        "cityname":"市辖区",
        "citysort":"2433",
        "citycode":"460101",
        "citytype":"4",
        "city_full_name":"海南省海口市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460105,
        "pcityid":"460100",
        "pcityids":"1,460000,460100,",
        "cityname":"秀英区",
        "citysort":"2434",
        "citycode":"460105",
        "citytype":"4",
        "city_full_name":"海南省海口市秀英区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460106,
        "pcityid":"460100",
        "pcityids":"1,460000,460100,",
        "cityname":"龙华区",
        "citysort":"2435",
        "citycode":"460106",
        "citytype":"4",
        "city_full_name":"海南省海口市龙华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460107,
        "pcityid":"460100",
        "pcityids":"1,460000,460100,",
        "cityname":"琼山区",
        "citysort":"2436",
        "citycode":"460107",
        "citytype":"4",
        "city_full_name":"海南省海口市琼山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460108,
        "pcityid":"460100",
        "pcityids":"1,460000,460100,",
        "cityname":"美兰区",
        "citysort":"2437",
        "citycode":"460108",
        "citytype":"4",
        "city_full_name":"海南省海口市美兰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460201,
        "pcityid":"460200",
        "pcityids":"1,460000,460200,",
        "cityname":"市辖区",
        "citysort":"2439",
        "citycode":"460201",
        "citytype":"4",
        "city_full_name":"海南省三亚市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460202,
        "pcityid":"460200",
        "pcityids":"1,460000,460200,",
        "cityname":"海棠区",
        "citysort":"2440",
        "citycode":"460202",
        "citytype":"4",
        "city_full_name":"海南省三亚市海棠区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460203,
        "pcityid":"460200",
        "pcityids":"1,460000,460200,",
        "cityname":"吉阳区",
        "citysort":"2441",
        "citycode":"460203",
        "citytype":"4",
        "city_full_name":"海南省三亚市吉阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460204,
        "pcityid":"460200",
        "pcityids":"1,460000,460200,",
        "cityname":"天涯区",
        "citysort":"2442",
        "citycode":"460204",
        "citytype":"4",
        "city_full_name":"海南省三亚市天涯区",
        "is_virtual_region":"0"
    },
    {
        "cityid":460205,
        "pcityid":"460200",
        "pcityids":"1,460000,460200,",
        "cityname":"崖州区",
        "citysort":"2443",
        "citycode":"460205",
        "citytype":"4",
        "city_full_name":"海南省三亚市崖州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":469001,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"五指山市",
        "citysort":"2446",
        "citycode":"469001",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划五指山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469002,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"琼海市",
        "citysort":"2447",
        "citycode":"469002",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划琼海市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469003,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"儋州市",
        "citysort":"2448",
        "citycode":"469003",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划儋州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469005,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"文昌市",
        "citysort":"2449",
        "citycode":"469005",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划文昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469006,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"万宁市",
        "citysort":"2450",
        "citycode":"469006",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划万宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469007,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"东方市",
        "citysort":"2451",
        "citycode":"469007",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划东方市",
        "is_virtual_region":"0"
    },
    {
        "cityid":469021,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"定安县",
        "citysort":"2452",
        "citycode":"469021",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划定安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469022,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"屯昌县",
        "citysort":"2453",
        "citycode":"469022",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划屯昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469023,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"澄迈县",
        "citysort":"2454",
        "citycode":"469023",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划澄迈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469024,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"临高县",
        "citysort":"2455",
        "citycode":"469024",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划临高县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469025,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"白沙黎族自治县",
        "citysort":"2456",
        "citycode":"469025",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划白沙黎族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469026,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"昌江黎族自治县",
        "citysort":"2457",
        "citycode":"469026",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划昌江黎族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469027,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"乐东黎族自治县",
        "citysort":"2458",
        "citycode":"469027",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划乐东黎族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469028,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"陵水黎族自治县",
        "citysort":"2459",
        "citycode":"469028",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划陵水黎族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469029,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"保亭黎族苗族自治县",
        "citysort":"2460",
        "citycode":"469029",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划保亭黎族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":469030,
        "pcityid":"469000",
        "pcityids":"1,460000,469000,",
        "cityname":"琼中黎族苗族自治县",
        "citysort":"2461",
        "citycode":"469030",
        "citytype":"4",
        "city_full_name":"海南省省直辖县级行政区划琼中黎族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500101,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"万州区",
        "citysort":"2464",
        "citycode":"500101",
        "citytype":"4",
        "city_full_name":"重庆市万州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500102,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"涪陵区",
        "citysort":"2465",
        "citycode":"500102",
        "citytype":"4",
        "city_full_name":"重庆市涪陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500103,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"渝中区",
        "citysort":"2466",
        "citycode":"500103",
        "citytype":"4",
        "city_full_name":"重庆市渝中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500104,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"大渡口区",
        "citysort":"2467",
        "citycode":"500104",
        "citytype":"4",
        "city_full_name":"重庆市大渡口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500105,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"江北区",
        "citysort":"2468",
        "citycode":"500105",
        "citytype":"4",
        "city_full_name":"重庆市江北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500106,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"沙坪坝区",
        "citysort":"2469",
        "citycode":"500106",
        "citytype":"4",
        "city_full_name":"重庆市沙坪坝区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500107,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"九龙坡区",
        "citysort":"2470",
        "citycode":"500107",
        "citytype":"4",
        "city_full_name":"重庆市九龙坡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500108,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"南岸区",
        "citysort":"2471",
        "citycode":"500108",
        "citytype":"4",
        "city_full_name":"重庆市南岸区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500109,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"北碚区",
        "citysort":"2472",
        "citycode":"500109",
        "citytype":"4",
        "city_full_name":"重庆市北碚区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500110,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"綦江区",
        "citysort":"2473",
        "citycode":"500110",
        "citytype":"4",
        "city_full_name":"重庆市綦江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500111,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"大足区",
        "citysort":"2474",
        "citycode":"500111",
        "citytype":"4",
        "city_full_name":"重庆市大足区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500112,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"渝北区",
        "citysort":"2475",
        "citycode":"500112",
        "citytype":"4",
        "city_full_name":"重庆市渝北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500113,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"巴南区",
        "citysort":"2476",
        "citycode":"500113",
        "citytype":"4",
        "city_full_name":"重庆市巴南区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500114,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"黔江区",
        "citysort":"2477",
        "citycode":"500114",
        "citytype":"4",
        "city_full_name":"重庆市黔江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500115,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"长寿区",
        "citysort":"2478",
        "citycode":"500115",
        "citytype":"4",
        "city_full_name":"重庆市长寿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500116,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"江津区",
        "citysort":"2479",
        "citycode":"500116",
        "citytype":"4",
        "city_full_name":"重庆市江津区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500117,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"合川区",
        "citysort":"2480",
        "citycode":"500117",
        "citytype":"4",
        "city_full_name":"重庆市合川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500118,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"永川区",
        "citysort":"2481",
        "citycode":"500118",
        "citytype":"4",
        "city_full_name":"重庆市永川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500119,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"南川区",
        "citysort":"2482",
        "citycode":"500119",
        "citytype":"4",
        "city_full_name":"重庆市南川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500120,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"璧山区",
        "citysort":"2483",
        "citycode":"500120",
        "citytype":"4",
        "city_full_name":"重庆市璧山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500151,
        "pcityid":"500100",
        "pcityids":"1,500000,500100,",
        "cityname":"铜梁区",
        "citysort":"2484",
        "citycode":"500151",
        "citytype":"4",
        "city_full_name":"重庆市铜梁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":500223,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"潼南县",
        "citysort":"2486",
        "citycode":"500223",
        "citytype":"4",
        "city_full_name":"重庆市潼南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500226,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"荣昌县",
        "citysort":"2487",
        "citycode":"500226",
        "citytype":"4",
        "city_full_name":"重庆市荣昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500228,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"梁*县",
        "citysort":"2488",
        "citycode":"500228",
        "citytype":"4",
        "city_full_name":"重庆市梁*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500229,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"城口县",
        "citysort":"2489",
        "citycode":"500229",
        "citytype":"4",
        "city_full_name":"重庆市城口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500230,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"丰都县",
        "citysort":"2490",
        "citycode":"500230",
        "citytype":"4",
        "city_full_name":"重庆市丰都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500231,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"垫江县",
        "citysort":"2491",
        "citycode":"500231",
        "citytype":"4",
        "city_full_name":"重庆市垫江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500232,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"武隆县",
        "citysort":"2492",
        "citycode":"500232",
        "citytype":"4",
        "city_full_name":"重庆市武隆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500233,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"忠县",
        "citysort":"2493",
        "citycode":"500233",
        "citytype":"4",
        "city_full_name":"重庆市忠县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500234,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"开县",
        "citysort":"2494",
        "citycode":"500234",
        "citytype":"4",
        "city_full_name":"重庆市开县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500235,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"云阳县",
        "citysort":"2495",
        "citycode":"500235",
        "citytype":"4",
        "city_full_name":"重庆市云阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500236,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"奉节县",
        "citysort":"2496",
        "citycode":"500236",
        "citytype":"4",
        "city_full_name":"重庆市奉节县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500237,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"巫山县",
        "citysort":"2497",
        "citycode":"500237",
        "citytype":"4",
        "city_full_name":"重庆市巫山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500238,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"巫溪县",
        "citysort":"2498",
        "citycode":"500238",
        "citytype":"4",
        "city_full_name":"重庆市巫溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500240,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"石柱土家族自治县",
        "citysort":"2499",
        "citycode":"500240",
        "citytype":"4",
        "city_full_name":"重庆市石柱土家族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500241,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"秀山土家族苗族自治县",
        "citysort":"2500",
        "citycode":"500241",
        "citytype":"4",
        "city_full_name":"重庆市秀山土家族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500242,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"酉阳土家族苗族自治县",
        "citysort":"2501",
        "citycode":"500242",
        "citytype":"4",
        "city_full_name":"重庆市酉阳土家族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":500243,
        "pcityid":"500200",
        "pcityids":"1,500000,500200,",
        "cityname":"彭水苗族土家族自治县",
        "citysort":"2502",
        "citycode":"500243",
        "citytype":"4",
        "city_full_name":"重庆市彭水苗族土家族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510101,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"市辖区",
        "citysort":"2505",
        "citycode":"510101",
        "citytype":"4",
        "city_full_name":"四川省成都市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510104,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"锦江区",
        "citysort":"2506",
        "citycode":"510104",
        "citytype":"4",
        "city_full_name":"四川省成都市锦江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510105,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"青羊区",
        "citysort":"2507",
        "citycode":"510105",
        "citytype":"4",
        "city_full_name":"四川省成都市青羊区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510106,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"金牛区",
        "citysort":"2508",
        "citycode":"510106",
        "citytype":"4",
        "city_full_name":"四川省成都市金牛区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510107,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"武侯区",
        "citysort":"2509",
        "citycode":"510107",
        "citytype":"4",
        "city_full_name":"四川省成都市武侯区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510108,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"成华区",
        "citysort":"2510",
        "citycode":"510108",
        "citytype":"4",
        "city_full_name":"四川省成都市成华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510112,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"龙泉驿区",
        "citysort":"2511",
        "citycode":"510112",
        "citytype":"4",
        "city_full_name":"四川省成都市龙泉驿区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510113,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"青白江区",
        "citysort":"2512",
        "citycode":"510113",
        "citytype":"4",
        "city_full_name":"四川省成都市青白江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510114,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"新都区",
        "citysort":"2513",
        "citycode":"510114",
        "citytype":"4",
        "city_full_name":"四川省成都市新都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510115,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"温江区",
        "citysort":"2514",
        "citycode":"510115",
        "citytype":"4",
        "city_full_name":"四川省成都市温江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510121,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"金堂县",
        "citysort":"2515",
        "citycode":"510121",
        "citytype":"4",
        "city_full_name":"四川省成都市金堂县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510122,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"双流县",
        "citysort":"2516",
        "citycode":"510122",
        "citytype":"4",
        "city_full_name":"四川省成都市双流县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510124,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"郫县",
        "citysort":"2517",
        "citycode":"510124",
        "citytype":"4",
        "city_full_name":"四川省成都市郫县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510129,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"大邑县",
        "citysort":"2518",
        "citycode":"510129",
        "citytype":"4",
        "city_full_name":"四川省成都市大邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510131,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"蒲江县",
        "citysort":"2519",
        "citycode":"510131",
        "citytype":"4",
        "city_full_name":"四川省成都市蒲江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510132,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"新津县",
        "citysort":"2520",
        "citycode":"510132",
        "citytype":"4",
        "city_full_name":"四川省成都市新津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510181,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"都江堰市",
        "citysort":"2521",
        "citycode":"510181",
        "citytype":"4",
        "city_full_name":"四川省成都市都江堰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510182,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"彭州市",
        "citysort":"2522",
        "citycode":"510182",
        "citytype":"4",
        "city_full_name":"四川省成都市彭州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510183,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"邛崃市",
        "citysort":"2523",
        "citycode":"510183",
        "citytype":"4",
        "city_full_name":"四川省成都市邛崃市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510184,
        "pcityid":"510100",
        "pcityids":"1,510000,510100,",
        "cityname":"崇州市",
        "citysort":"2524",
        "citycode":"510184",
        "citytype":"4",
        "city_full_name":"四川省成都市崇州市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510301,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"市辖区",
        "citysort":"2526",
        "citycode":"510301",
        "citytype":"4",
        "city_full_name":"四川省自贡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510302,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"自流井区",
        "citysort":"2527",
        "citycode":"510302",
        "citytype":"4",
        "city_full_name":"四川省自贡市自流井区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510303,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"贡井区",
        "citysort":"2528",
        "citycode":"510303",
        "citytype":"4",
        "city_full_name":"四川省自贡市贡井区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510304,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"大安区",
        "citysort":"2529",
        "citycode":"510304",
        "citytype":"4",
        "city_full_name":"四川省自贡市大安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510311,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"沿滩区",
        "citysort":"2530",
        "citycode":"510311",
        "citytype":"4",
        "city_full_name":"四川省自贡市沿滩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510321,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"荣县",
        "citysort":"2531",
        "citycode":"510321",
        "citytype":"4",
        "city_full_name":"四川省自贡市荣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510322,
        "pcityid":"510300",
        "pcityids":"1,510000,510300,",
        "cityname":"富顺县",
        "citysort":"2532",
        "citycode":"510322",
        "citytype":"4",
        "city_full_name":"四川省自贡市富顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510401,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"市辖区",
        "citysort":"2534",
        "citycode":"510401",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510402,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"东区",
        "citysort":"2535",
        "citycode":"510402",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510403,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"*区",
        "citysort":"2536",
        "citycode":"510403",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510411,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"仁和区",
        "citysort":"2537",
        "citycode":"510411",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市仁和区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510421,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"米易县",
        "citysort":"2538",
        "citycode":"510421",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市米易县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510422,
        "pcityid":"510400",
        "pcityids":"1,510000,510400,",
        "cityname":"盐边县",
        "citysort":"2539",
        "citycode":"510422",
        "citytype":"4",
        "city_full_name":"四川省攀枝花市盐边县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510501,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"市辖区",
        "citysort":"2541",
        "citycode":"510501",
        "citytype":"4",
        "city_full_name":"四川省泸州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510502,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"江阳区",
        "citysort":"2542",
        "citycode":"510502",
        "citytype":"4",
        "city_full_name":"四川省泸州市江阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510503,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"纳溪区",
        "citysort":"2543",
        "citycode":"510503",
        "citytype":"4",
        "city_full_name":"四川省泸州市纳溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510504,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"龙马潭区",
        "citysort":"2544",
        "citycode":"510504",
        "citytype":"4",
        "city_full_name":"四川省泸州市龙马潭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510521,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"泸县",
        "citysort":"2545",
        "citycode":"510521",
        "citytype":"4",
        "city_full_name":"四川省泸州市泸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510522,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"合江县",
        "citysort":"2546",
        "citycode":"510522",
        "citytype":"4",
        "city_full_name":"四川省泸州市合江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510524,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"叙永县",
        "citysort":"2547",
        "citycode":"510524",
        "citytype":"4",
        "city_full_name":"四川省泸州市叙永县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510525,
        "pcityid":"510500",
        "pcityids":"1,510000,510500,",
        "cityname":"古蔺县",
        "citysort":"2548",
        "citycode":"510525",
        "citytype":"4",
        "city_full_name":"四川省泸州市古蔺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510601,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"市辖区",
        "citysort":"2550",
        "citycode":"510601",
        "citytype":"4",
        "city_full_name":"四川省德阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510603,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"旌阳区",
        "citysort":"2551",
        "citycode":"510603",
        "citytype":"4",
        "city_full_name":"四川省德阳市旌阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510623,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"中江县",
        "citysort":"2552",
        "citycode":"510623",
        "citytype":"4",
        "city_full_name":"四川省德阳市中江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510626,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"罗江县",
        "citysort":"2553",
        "citycode":"510626",
        "citytype":"4",
        "city_full_name":"四川省德阳市罗江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510681,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"广汉市",
        "citysort":"2554",
        "citycode":"510681",
        "citytype":"4",
        "city_full_name":"四川省德阳市广汉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510682,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"什邡市",
        "citysort":"2555",
        "citycode":"510682",
        "citytype":"4",
        "city_full_name":"四川省德阳市什邡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510683,
        "pcityid":"510600",
        "pcityids":"1,510000,510600,",
        "cityname":"绵竹市",
        "citysort":"2556",
        "citycode":"510683",
        "citytype":"4",
        "city_full_name":"四川省德阳市绵竹市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510701,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"市辖区",
        "citysort":"2558",
        "citycode":"510701",
        "citytype":"4",
        "city_full_name":"四川省绵阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510703,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"涪城区",
        "citysort":"2559",
        "citycode":"510703",
        "citytype":"4",
        "city_full_name":"四川省绵阳市涪城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510704,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"游仙区",
        "citysort":"2560",
        "citycode":"510704",
        "citytype":"4",
        "city_full_name":"四川省绵阳市游仙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510722,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"三台县",
        "citysort":"2561",
        "citycode":"510722",
        "citytype":"4",
        "city_full_name":"四川省绵阳市三台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510723,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"盐亭县",
        "citysort":"2562",
        "citycode":"510723",
        "citytype":"4",
        "city_full_name":"四川省绵阳市盐亭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510724,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"安县",
        "citysort":"2563",
        "citycode":"510724",
        "citytype":"4",
        "city_full_name":"四川省绵阳市安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510725,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"梓潼县",
        "citysort":"2564",
        "citycode":"510725",
        "citytype":"4",
        "city_full_name":"四川省绵阳市梓潼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510726,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"北川羌族自治县",
        "citysort":"2565",
        "citycode":"510726",
        "citytype":"4",
        "city_full_name":"四川省绵阳市北川羌族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510727,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"*武县",
        "citysort":"2566",
        "citycode":"510727",
        "citytype":"4",
        "city_full_name":"四川省绵阳市*武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510781,
        "pcityid":"510700",
        "pcityids":"1,510000,510700,",
        "cityname":"江油市",
        "citysort":"2567",
        "citycode":"510781",
        "citytype":"4",
        "city_full_name":"四川省绵阳市江油市",
        "is_virtual_region":"0"
    },
    {
        "cityid":510801,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"市辖区",
        "citysort":"2569",
        "citycode":"510801",
        "citytype":"4",
        "city_full_name":"四川省广元市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510802,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"利州区",
        "citysort":"2570",
        "citycode":"510802",
        "citytype":"4",
        "city_full_name":"四川省广元市利州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510811,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"昭化区",
        "citysort":"2571",
        "citycode":"510811",
        "citytype":"4",
        "city_full_name":"四川省广元市昭化区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510812,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"朝天区",
        "citysort":"2572",
        "citycode":"510812",
        "citytype":"4",
        "city_full_name":"四川省广元市朝天区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510821,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"旺苍县",
        "citysort":"2573",
        "citycode":"510821",
        "citytype":"4",
        "city_full_name":"四川省广元市旺苍县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510822,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"青川县",
        "citysort":"2574",
        "citycode":"510822",
        "citytype":"4",
        "city_full_name":"四川省广元市青川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510823,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"剑阁县",
        "citysort":"2575",
        "citycode":"510823",
        "citytype":"4",
        "city_full_name":"四川省广元市剑阁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510824,
        "pcityid":"510800",
        "pcityids":"1,510000,510800,",
        "cityname":"苍溪县",
        "citysort":"2576",
        "citycode":"510824",
        "citytype":"4",
        "city_full_name":"四川省广元市苍溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510901,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"市辖区",
        "citysort":"2578",
        "citycode":"510901",
        "citytype":"4",
        "city_full_name":"四川省遂宁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510903,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"船山区",
        "citysort":"2579",
        "citycode":"510903",
        "citytype":"4",
        "city_full_name":"四川省遂宁市船山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510904,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"安居区",
        "citysort":"2580",
        "citycode":"510904",
        "citytype":"4",
        "city_full_name":"四川省遂宁市安居区",
        "is_virtual_region":"0"
    },
    {
        "cityid":510921,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"蓬溪县",
        "citysort":"2581",
        "citycode":"510921",
        "citytype":"4",
        "city_full_name":"四川省遂宁市蓬溪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510922,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"射洪县",
        "citysort":"2582",
        "citycode":"510922",
        "citytype":"4",
        "city_full_name":"四川省遂宁市射洪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":510923,
        "pcityid":"510900",
        "pcityids":"1,510000,510900,",
        "cityname":"大英县",
        "citysort":"2583",
        "citycode":"510923",
        "citytype":"4",
        "city_full_name":"四川省遂宁市大英县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511001,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"市辖区",
        "citysort":"2585",
        "citycode":"511001",
        "citytype":"4",
        "city_full_name":"四川省内江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511002,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"市中区",
        "citysort":"2586",
        "citycode":"511002",
        "citytype":"4",
        "city_full_name":"四川省内江市市中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511011,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"东兴区",
        "citysort":"2587",
        "citycode":"511011",
        "citytype":"4",
        "city_full_name":"四川省内江市东兴区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511024,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"威远县",
        "citysort":"2588",
        "citycode":"511024",
        "citytype":"4",
        "city_full_name":"四川省内江市威远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511025,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"资中县",
        "citysort":"2589",
        "citycode":"511025",
        "citytype":"4",
        "city_full_name":"四川省内江市资中县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511028,
        "pcityid":"511000",
        "pcityids":"1,510000,511000,",
        "cityname":"隆昌县",
        "citysort":"2590",
        "citycode":"511028",
        "citytype":"4",
        "city_full_name":"四川省内江市隆昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511101,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"市辖区",
        "citysort":"2592",
        "citycode":"511101",
        "citytype":"4",
        "city_full_name":"四川省乐山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511102,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"市中区",
        "citysort":"2593",
        "citycode":"511102",
        "citytype":"4",
        "city_full_name":"四川省乐山市市中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511111,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"沙湾区",
        "citysort":"2594",
        "citycode":"511111",
        "citytype":"4",
        "city_full_name":"四川省乐山市沙湾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511112,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"五通桥区",
        "citysort":"2595",
        "citycode":"511112",
        "citytype":"4",
        "city_full_name":"四川省乐山市五通桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511113,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"金口河区",
        "citysort":"2596",
        "citycode":"511113",
        "citytype":"4",
        "city_full_name":"四川省乐山市金口河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511123,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"犍为县",
        "citysort":"2597",
        "citycode":"511123",
        "citytype":"4",
        "city_full_name":"四川省乐山市犍为县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511124,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"井研县",
        "citysort":"2598",
        "citycode":"511124",
        "citytype":"4",
        "city_full_name":"四川省乐山市井研县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511126,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"夹江县",
        "citysort":"2599",
        "citycode":"511126",
        "citytype":"4",
        "city_full_name":"四川省乐山市夹江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511129,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"沐川县",
        "citysort":"2600",
        "citycode":"511129",
        "citytype":"4",
        "city_full_name":"四川省乐山市沐川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511132,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"峨边彝族自治县",
        "citysort":"2601",
        "citycode":"511132",
        "citytype":"4",
        "city_full_name":"四川省乐山市峨边彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511133,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"马边彝族自治县",
        "citysort":"2602",
        "citycode":"511133",
        "citytype":"4",
        "city_full_name":"四川省乐山市马边彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511181,
        "pcityid":"511100",
        "pcityids":"1,510000,511100,",
        "cityname":"峨眉山市",
        "citysort":"2603",
        "citycode":"511181",
        "citytype":"4",
        "city_full_name":"四川省乐山市峨眉山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511301,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"市辖区",
        "citysort":"2605",
        "citycode":"511301",
        "citytype":"4",
        "city_full_name":"四川省南充市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511302,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"顺庆区",
        "citysort":"2606",
        "citycode":"511302",
        "citytype":"4",
        "city_full_name":"四川省南充市顺庆区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511303,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"高坪区",
        "citysort":"2607",
        "citycode":"511303",
        "citytype":"4",
        "city_full_name":"四川省南充市高坪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511304,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"嘉陵区",
        "citysort":"2608",
        "citycode":"511304",
        "citytype":"4",
        "city_full_name":"四川省南充市嘉陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511321,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"南部县",
        "citysort":"2609",
        "citycode":"511321",
        "citytype":"4",
        "city_full_name":"四川省南充市南部县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511322,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"营山县",
        "citysort":"2610",
        "citycode":"511322",
        "citytype":"4",
        "city_full_name":"四川省南充市营山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511323,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"蓬安县",
        "citysort":"2611",
        "citycode":"511323",
        "citytype":"4",
        "city_full_name":"四川省南充市蓬安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511324,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"仪陇县",
        "citysort":"2612",
        "citycode":"511324",
        "citytype":"4",
        "city_full_name":"四川省南充市仪陇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511325,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"*充县",
        "citysort":"2613",
        "citycode":"511325",
        "citytype":"4",
        "city_full_name":"四川省南充市*充县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511381,
        "pcityid":"511300",
        "pcityids":"1,510000,511300,",
        "cityname":"阆中市",
        "citysort":"2614",
        "citycode":"511381",
        "citytype":"4",
        "city_full_name":"四川省南充市阆中市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511401,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"市辖区",
        "citysort":"2616",
        "citycode":"511401",
        "citytype":"4",
        "city_full_name":"四川省眉山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511402,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"东坡区",
        "citysort":"2617",
        "citycode":"511402",
        "citytype":"4",
        "city_full_name":"四川省眉山市东坡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511421,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"仁寿县",
        "citysort":"2618",
        "citycode":"511421",
        "citytype":"4",
        "city_full_name":"四川省眉山市仁寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511422,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"彭山县",
        "citysort":"2619",
        "citycode":"511422",
        "citytype":"4",
        "city_full_name":"四川省眉山市彭山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511423,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"洪雅县",
        "citysort":"2620",
        "citycode":"511423",
        "citytype":"4",
        "city_full_name":"四川省眉山市洪雅县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511424,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"丹棱县",
        "citysort":"2621",
        "citycode":"511424",
        "citytype":"4",
        "city_full_name":"四川省眉山市丹棱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511425,
        "pcityid":"511400",
        "pcityids":"1,510000,511400,",
        "cityname":"青神县",
        "citysort":"2622",
        "citycode":"511425",
        "citytype":"4",
        "city_full_name":"四川省眉山市青神县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511501,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"市辖区",
        "citysort":"2624",
        "citycode":"511501",
        "citytype":"4",
        "city_full_name":"四川省宜宾市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511502,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"翠屏区",
        "citysort":"2625",
        "citycode":"511502",
        "citytype":"4",
        "city_full_name":"四川省宜宾市翠屏区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511503,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"南溪区",
        "citysort":"2626",
        "citycode":"511503",
        "citytype":"4",
        "city_full_name":"四川省宜宾市南溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511521,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"宜宾县",
        "citysort":"2627",
        "citycode":"511521",
        "citytype":"4",
        "city_full_name":"四川省宜宾市宜宾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511523,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"江安县",
        "citysort":"2628",
        "citycode":"511523",
        "citytype":"4",
        "city_full_name":"四川省宜宾市江安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511524,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"长宁县",
        "citysort":"2629",
        "citycode":"511524",
        "citytype":"4",
        "city_full_name":"四川省宜宾市长宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511525,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"高县",
        "citysort":"2630",
        "citycode":"511525",
        "citytype":"4",
        "city_full_name":"四川省宜宾市高县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511526,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"珙县",
        "citysort":"2631",
        "citycode":"511526",
        "citytype":"4",
        "city_full_name":"四川省宜宾市珙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511527,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"筠连县",
        "citysort":"2632",
        "citycode":"511527",
        "citytype":"4",
        "city_full_name":"四川省宜宾市筠连县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511528,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"兴文县",
        "citysort":"2633",
        "citycode":"511528",
        "citytype":"4",
        "city_full_name":"四川省宜宾市兴文县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511529,
        "pcityid":"511500",
        "pcityids":"1,510000,511500,",
        "cityname":"屏山县",
        "citysort":"2634",
        "citycode":"511529",
        "citytype":"4",
        "city_full_name":"四川省宜宾市屏山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511601,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"市辖区",
        "citysort":"2636",
        "citycode":"511601",
        "citytype":"4",
        "city_full_name":"四川省广安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511602,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"广安区",
        "citysort":"2637",
        "citycode":"511602",
        "citytype":"4",
        "city_full_name":"四川省广安市广安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511603,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"前锋区",
        "citysort":"2638",
        "citycode":"511603",
        "citytype":"4",
        "city_full_name":"四川省广安市前锋区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511621,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"岳池县",
        "citysort":"2639",
        "citycode":"511621",
        "citytype":"4",
        "city_full_name":"四川省广安市岳池县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511622,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"武胜县",
        "citysort":"2640",
        "citycode":"511622",
        "citytype":"4",
        "city_full_name":"四川省广安市武胜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511623,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"邻水县",
        "citysort":"2641",
        "citycode":"511623",
        "citytype":"4",
        "city_full_name":"四川省广安市邻水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511681,
        "pcityid":"511600",
        "pcityids":"1,510000,511600,",
        "cityname":"华蓥市",
        "citysort":"2642",
        "citycode":"511681",
        "citytype":"4",
        "city_full_name":"四川省广安市华蓥市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511701,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"市辖区",
        "citysort":"2644",
        "citycode":"511701",
        "citytype":"4",
        "city_full_name":"四川省达州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511702,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"通川区",
        "citysort":"2645",
        "citycode":"511702",
        "citytype":"4",
        "city_full_name":"四川省达州市通川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511703,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"达川区",
        "citysort":"2646",
        "citycode":"511703",
        "citytype":"4",
        "city_full_name":"四川省达州市达川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511722,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"宣汉县",
        "citysort":"2647",
        "citycode":"511722",
        "citytype":"4",
        "city_full_name":"四川省达州市宣汉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511723,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"开江县",
        "citysort":"2648",
        "citycode":"511723",
        "citytype":"4",
        "city_full_name":"四川省达州市开江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511724,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"大竹县",
        "citysort":"2649",
        "citycode":"511724",
        "citytype":"4",
        "city_full_name":"四川省达州市大竹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511725,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"渠县",
        "citysort":"2650",
        "citycode":"511725",
        "citytype":"4",
        "city_full_name":"四川省达州市渠县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511781,
        "pcityid":"511700",
        "pcityids":"1,510000,511700,",
        "cityname":"万源市",
        "citysort":"2651",
        "citycode":"511781",
        "citytype":"4",
        "city_full_name":"四川省达州市万源市",
        "is_virtual_region":"0"
    },
    {
        "cityid":511801,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"市辖区",
        "citysort":"2653",
        "citycode":"511801",
        "citytype":"4",
        "city_full_name":"四川省雅安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511802,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"雨城区",
        "citysort":"2654",
        "citycode":"511802",
        "citytype":"4",
        "city_full_name":"四川省雅安市雨城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511803,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"名山区",
        "citysort":"2655",
        "citycode":"511803",
        "citytype":"4",
        "city_full_name":"四川省雅安市名山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511822,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"荥经县",
        "citysort":"2656",
        "citycode":"511822",
        "citytype":"4",
        "city_full_name":"四川省雅安市荥经县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511823,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"汉源县",
        "citysort":"2657",
        "citycode":"511823",
        "citytype":"4",
        "city_full_name":"四川省雅安市汉源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511824,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"石棉县",
        "citysort":"2658",
        "citycode":"511824",
        "citytype":"4",
        "city_full_name":"四川省雅安市石棉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511825,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"天全县",
        "citysort":"2659",
        "citycode":"511825",
        "citytype":"4",
        "city_full_name":"四川省雅安市天全县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511826,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"芦山县",
        "citysort":"2660",
        "citycode":"511826",
        "citytype":"4",
        "city_full_name":"四川省雅安市芦山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511827,
        "pcityid":"511800",
        "pcityids":"1,510000,511800,",
        "cityname":"宝兴县",
        "citysort":"2661",
        "citycode":"511827",
        "citytype":"4",
        "city_full_name":"四川省雅安市宝兴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511901,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"市辖区",
        "citysort":"2663",
        "citycode":"511901",
        "citytype":"4",
        "city_full_name":"四川省巴中市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511902,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"巴州区",
        "citysort":"2664",
        "citycode":"511902",
        "citytype":"4",
        "city_full_name":"四川省巴中市巴州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511903,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"恩阳区",
        "citysort":"2665",
        "citycode":"511903",
        "citytype":"4",
        "city_full_name":"四川省巴中市恩阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":511921,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"通江县",
        "citysort":"2666",
        "citycode":"511921",
        "citytype":"4",
        "city_full_name":"四川省巴中市通江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511922,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"南江县",
        "citysort":"2667",
        "citycode":"511922",
        "citytype":"4",
        "city_full_name":"四川省巴中市南江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":511923,
        "pcityid":"511900",
        "pcityids":"1,510000,511900,",
        "cityname":"*昌县",
        "citysort":"2668",
        "citycode":"511923",
        "citytype":"4",
        "city_full_name":"四川省巴中市*昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":512001,
        "pcityid":"512000",
        "pcityids":"1,510000,512000,",
        "cityname":"市辖区",
        "citysort":"2670",
        "citycode":"512001",
        "citytype":"4",
        "city_full_name":"四川省资阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":512002,
        "pcityid":"512000",
        "pcityids":"1,510000,512000,",
        "cityname":"雁江区",
        "citysort":"2671",
        "citycode":"512002",
        "citytype":"4",
        "city_full_name":"四川省资阳市雁江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":512021,
        "pcityid":"512000",
        "pcityids":"1,510000,512000,",
        "cityname":"安岳县",
        "citysort":"2672",
        "citycode":"512021",
        "citytype":"4",
        "city_full_name":"四川省资阳市安岳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":512022,
        "pcityid":"512000",
        "pcityids":"1,510000,512000,",
        "cityname":"乐至县",
        "citysort":"2673",
        "citycode":"512022",
        "citytype":"4",
        "city_full_name":"四川省资阳市乐至县",
        "is_virtual_region":"0"
    },
    {
        "cityid":512081,
        "pcityid":"512000",
        "pcityids":"1,510000,512000,",
        "cityname":"简阳市",
        "citysort":"2674",
        "citycode":"512081",
        "citytype":"4",
        "city_full_name":"四川省资阳市简阳市",
        "is_virtual_region":"0"
    },
    {
        "cityid":513221,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"汶川县",
        "citysort":"2676",
        "citycode":"513221",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州汶川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513222,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"理县",
        "citysort":"2677",
        "citycode":"513222",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州理县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513223,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"茂县",
        "citysort":"2678",
        "citycode":"513223",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州茂县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513224,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"松潘县",
        "citysort":"2679",
        "citycode":"513224",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州松潘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513225,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"九寨沟县",
        "citysort":"2680",
        "citycode":"513225",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州九寨沟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513226,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"金川县",
        "citysort":"2681",
        "citycode":"513226",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州金川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513227,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"小金县",
        "citysort":"2682",
        "citycode":"513227",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州小金县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513228,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"黑水县",
        "citysort":"2683",
        "citycode":"513228",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州黑水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513229,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"马尔康县",
        "citysort":"2684",
        "citycode":"513229",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州马尔康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513230,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"壤塘县",
        "citysort":"2685",
        "citycode":"513230",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州壤塘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513231,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"阿坝县",
        "citysort":"2686",
        "citycode":"513231",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州阿坝县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513232,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"若尔盖县",
        "citysort":"2687",
        "citycode":"513232",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州若尔盖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513233,
        "pcityid":"513200",
        "pcityids":"1,510000,513200,",
        "cityname":"红原县",
        "citysort":"2688",
        "citycode":"513233",
        "citytype":"4",
        "city_full_name":"四川省阿坝藏族羌族自治州红原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513321,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"康定县",
        "citysort":"2690",
        "citycode":"513321",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州康定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513322,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"泸定县",
        "citysort":"2691",
        "citycode":"513322",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州泸定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513323,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"丹巴县",
        "citysort":"2692",
        "citycode":"513323",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州丹巴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513324,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"九龙县",
        "citysort":"2693",
        "citycode":"513324",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州九龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513325,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"雅江县",
        "citysort":"2694",
        "citycode":"513325",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州雅江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513326,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"道孚县",
        "citysort":"2695",
        "citycode":"513326",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州道孚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513327,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"炉霍县",
        "citysort":"2696",
        "citycode":"513327",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州炉霍县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513328,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"甘孜县",
        "citysort":"2697",
        "citycode":"513328",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州甘孜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513329,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"新龙县",
        "citysort":"2698",
        "citycode":"513329",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州新龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513330,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"德格县",
        "citysort":"2699",
        "citycode":"513330",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州德格县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513331,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"白玉县",
        "citysort":"2700",
        "citycode":"513331",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州白玉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513332,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"石渠县",
        "citysort":"2701",
        "citycode":"513332",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州石渠县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513333,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"色达县",
        "citysort":"2702",
        "citycode":"513333",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州色达县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513334,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"理塘县",
        "citysort":"2703",
        "citycode":"513334",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州理塘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513335,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"巴塘县",
        "citysort":"2704",
        "citycode":"513335",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州巴塘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513336,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"乡城县",
        "citysort":"2705",
        "citycode":"513336",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州乡城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513337,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"稻城县",
        "citysort":"2706",
        "citycode":"513337",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州稻城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513338,
        "pcityid":"513300",
        "pcityids":"1,510000,513300,",
        "cityname":"得荣县",
        "citysort":"2707",
        "citycode":"513338",
        "citytype":"4",
        "city_full_name":"四川省甘孜藏族自治州得荣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513401,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"*昌市",
        "citysort":"2709",
        "citycode":"513401",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州*昌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":513422,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"木里藏族自治县",
        "citysort":"2710",
        "citycode":"513422",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州木里藏族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513423,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"盐源县",
        "citysort":"2711",
        "citycode":"513423",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州盐源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513424,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"德昌县",
        "citysort":"2712",
        "citycode":"513424",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州德昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513425,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"会理县",
        "citysort":"2713",
        "citycode":"513425",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州会理县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513426,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"会东县",
        "citysort":"2714",
        "citycode":"513426",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州会东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513427,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"宁南县",
        "citysort":"2715",
        "citycode":"513427",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州宁南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513428,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"普格县",
        "citysort":"2716",
        "citycode":"513428",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州普格县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513429,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"布拖县",
        "citysort":"2717",
        "citycode":"513429",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州布拖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513430,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"金阳县",
        "citysort":"2718",
        "citycode":"513430",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州金阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513431,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"昭觉县",
        "citysort":"2719",
        "citycode":"513431",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州昭觉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513432,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"喜德县",
        "citysort":"2720",
        "citycode":"513432",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州喜德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513433,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"冕宁县",
        "citysort":"2721",
        "citycode":"513433",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州冕宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513434,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"越*县",
        "citysort":"2722",
        "citycode":"513434",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州越*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513435,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"甘洛县",
        "citysort":"2723",
        "citycode":"513435",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州甘洛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513436,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"美姑县",
        "citysort":"2724",
        "citycode":"513436",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州美姑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":513437,
        "pcityid":"513400",
        "pcityids":"1,510000,513400,",
        "cityname":"雷波县",
        "citysort":"2725",
        "citycode":"513437",
        "citytype":"4",
        "city_full_name":"四川省凉山彝族自治州雷波县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520101,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"市辖区",
        "citysort":"2728",
        "citycode":"520101",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520102,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"南明区",
        "citysort":"2729",
        "citycode":"520102",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市南明区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520103,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"云岩区",
        "citysort":"2730",
        "citycode":"520103",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市云岩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520111,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"花溪区",
        "citysort":"2731",
        "citycode":"520111",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市花溪区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520112,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"乌当区",
        "citysort":"2732",
        "citycode":"520112",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市乌当区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520113,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"白云区",
        "citysort":"2733",
        "citycode":"520113",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市白云区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520115,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"观山湖区",
        "citysort":"2734",
        "citycode":"520115",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市观山湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520121,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"开阳县",
        "citysort":"2735",
        "citycode":"520121",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市开阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520122,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"息烽县",
        "citysort":"2736",
        "citycode":"520122",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市息烽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520123,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"修文县",
        "citysort":"2737",
        "citycode":"520123",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市修文县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520181,
        "pcityid":"520100",
        "pcityids":"1,520000,520100,",
        "cityname":"清镇市",
        "citysort":"2738",
        "citycode":"520181",
        "citytype":"4",
        "city_full_name":"贵州省贵阳市清镇市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520201,
        "pcityid":"520200",
        "pcityids":"1,520000,520200,",
        "cityname":"钟山区",
        "citysort":"2740",
        "citycode":"520201",
        "citytype":"4",
        "city_full_name":"贵州省六盘水市钟山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520203,
        "pcityid":"520200",
        "pcityids":"1,520000,520200,",
        "cityname":"六枝特区",
        "citysort":"2741",
        "citycode":"520203",
        "citytype":"4",
        "city_full_name":"贵州省六盘水市六枝特区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520221,
        "pcityid":"520200",
        "pcityids":"1,520000,520200,",
        "cityname":"水城县",
        "citysort":"2742",
        "citycode":"520221",
        "citytype":"4",
        "city_full_name":"贵州省六盘水市水城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520222,
        "pcityid":"520200",
        "pcityids":"1,520000,520200,",
        "cityname":"盘县",
        "citysort":"2743",
        "citycode":"520222",
        "citytype":"4",
        "city_full_name":"贵州省六盘水市盘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520301,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"市辖区",
        "citysort":"2745",
        "citycode":"520301",
        "citytype":"4",
        "city_full_name":"贵州省遵义市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520302,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"红花岗区",
        "citysort":"2746",
        "citycode":"520302",
        "citytype":"4",
        "city_full_name":"贵州省遵义市红花岗区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520303,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"汇川区",
        "citysort":"2747",
        "citycode":"520303",
        "citytype":"4",
        "city_full_name":"贵州省遵义市汇川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520321,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"遵义县",
        "citysort":"2748",
        "citycode":"520321",
        "citytype":"4",
        "city_full_name":"贵州省遵义市遵义县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520322,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"桐梓县",
        "citysort":"2749",
        "citycode":"520322",
        "citytype":"4",
        "city_full_name":"贵州省遵义市桐梓县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520323,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"绥阳县",
        "citysort":"2750",
        "citycode":"520323",
        "citytype":"4",
        "city_full_name":"贵州省遵义市绥阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520324,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"正安县",
        "citysort":"2751",
        "citycode":"520324",
        "citytype":"4",
        "city_full_name":"贵州省遵义市正安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520325,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"道真仡佬族苗族自治县",
        "citysort":"2752",
        "citycode":"520325",
        "citytype":"4",
        "city_full_name":"贵州省遵义市道真仡佬族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520326,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"务川仡佬族苗族自治县",
        "citysort":"2753",
        "citycode":"520326",
        "citytype":"4",
        "city_full_name":"贵州省遵义市务川仡佬族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520327,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"凤冈县",
        "citysort":"2754",
        "citycode":"520327",
        "citytype":"4",
        "city_full_name":"贵州省遵义市凤冈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520328,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"湄潭县",
        "citysort":"2755",
        "citycode":"520328",
        "citytype":"4",
        "city_full_name":"贵州省遵义市湄潭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520329,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"余庆县",
        "citysort":"2756",
        "citycode":"520329",
        "citytype":"4",
        "city_full_name":"贵州省遵义市余庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520330,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"习水县",
        "citysort":"2757",
        "citycode":"520330",
        "citytype":"4",
        "city_full_name":"贵州省遵义市习水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520381,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"赤水市",
        "citysort":"2758",
        "citycode":"520381",
        "citytype":"4",
        "city_full_name":"贵州省遵义市赤水市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520382,
        "pcityid":"520300",
        "pcityids":"1,520000,520300,",
        "cityname":"仁怀市",
        "citysort":"2759",
        "citycode":"520382",
        "citytype":"4",
        "city_full_name":"贵州省遵义市仁怀市",
        "is_virtual_region":"0"
    },
    {
        "cityid":520401,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"市辖区",
        "citysort":"2761",
        "citycode":"520401",
        "citytype":"4",
        "city_full_name":"贵州省安顺市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520402,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"*秀区",
        "citysort":"2762",
        "citycode":"520402",
        "citytype":"4",
        "city_full_name":"贵州省安顺市*秀区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520421,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"*坝县",
        "citysort":"2763",
        "citycode":"520421",
        "citytype":"4",
        "city_full_name":"贵州省安顺市*坝县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520422,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"普定县",
        "citysort":"2764",
        "citycode":"520422",
        "citytype":"4",
        "city_full_name":"贵州省安顺市普定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520423,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"镇宁布依族苗族自治县",
        "citysort":"2765",
        "citycode":"520423",
        "citytype":"4",
        "city_full_name":"贵州省安顺市镇宁布依族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520424,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"关岭布依族苗族自治县",
        "citysort":"2766",
        "citycode":"520424",
        "citytype":"4",
        "city_full_name":"贵州省安顺市关岭布依族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520425,
        "pcityid":"520400",
        "pcityids":"1,520000,520400,",
        "cityname":"紫云苗族布依族自治县",
        "citysort":"2767",
        "citycode":"520425",
        "citytype":"4",
        "city_full_name":"贵州省安顺市紫云苗族布依族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520501,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"市辖区",
        "citysort":"2769",
        "citycode":"520501",
        "citytype":"4",
        "city_full_name":"贵州省毕节市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520502,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"七星关区",
        "citysort":"2770",
        "citycode":"520502",
        "citytype":"4",
        "city_full_name":"贵州省毕节市七星关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520521,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"大方县",
        "citysort":"2771",
        "citycode":"520521",
        "citytype":"4",
        "city_full_name":"贵州省毕节市大方县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520522,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"黔*县",
        "citysort":"2772",
        "citycode":"520522",
        "citytype":"4",
        "city_full_name":"贵州省毕节市黔*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520523,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"金沙县",
        "citysort":"2773",
        "citycode":"520523",
        "citytype":"4",
        "city_full_name":"贵州省毕节市金沙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520524,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"织金县",
        "citysort":"2774",
        "citycode":"520524",
        "citytype":"4",
        "city_full_name":"贵州省毕节市织金县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520525,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"纳雍县",
        "citysort":"2775",
        "citycode":"520525",
        "citytype":"4",
        "city_full_name":"贵州省毕节市纳雍县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520526,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"威宁彝族回族苗族自治县",
        "citysort":"2776",
        "citycode":"520526",
        "citytype":"4",
        "city_full_name":"贵州省毕节市威宁彝族回族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520527,
        "pcityid":"520500",
        "pcityids":"1,520000,520500,",
        "cityname":"赫章县",
        "citysort":"2777",
        "citycode":"520527",
        "citytype":"4",
        "city_full_name":"贵州省毕节市赫章县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520601,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"市辖区",
        "citysort":"2779",
        "citycode":"520601",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520602,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"碧江区",
        "citysort":"2780",
        "citycode":"520602",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市碧江区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520603,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"万山区",
        "citysort":"2781",
        "citycode":"520603",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市万山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":520621,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"江口县",
        "citysort":"2782",
        "citycode":"520621",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市江口县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520622,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"玉屏侗族自治县",
        "citysort":"2783",
        "citycode":"520622",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市玉屏侗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520623,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"石阡县",
        "citysort":"2784",
        "citycode":"520623",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市石阡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520624,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"思南县",
        "citysort":"2785",
        "citycode":"520624",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市思南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520625,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"印江土家族苗族自治县",
        "citysort":"2786",
        "citycode":"520625",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市印江土家族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520626,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"德江县",
        "citysort":"2787",
        "citycode":"520626",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市德江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520627,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"沿河土家族自治县",
        "citysort":"2788",
        "citycode":"520627",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市沿河土家族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":520628,
        "pcityid":"520600",
        "pcityids":"1,520000,520600,",
        "cityname":"松桃苗族自治县",
        "citysort":"2789",
        "citycode":"520628",
        "citytype":"4",
        "city_full_name":"贵州省铜仁市松桃苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522301,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"兴义市",
        "citysort":"2791",
        "citycode":"522301",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州兴义市",
        "is_virtual_region":"0"
    },
    {
        "cityid":522322,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"兴仁县",
        "citysort":"2792",
        "citycode":"522322",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州兴仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522323,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"普安县",
        "citysort":"2793",
        "citycode":"522323",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州普安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522324,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"晴隆县",
        "citysort":"2794",
        "citycode":"522324",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州晴隆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522325,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"贞丰县",
        "citysort":"2795",
        "citycode":"522325",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州贞丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522326,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"望谟县",
        "citysort":"2796",
        "citycode":"522326",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州望谟县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522327,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"册亨县",
        "citysort":"2797",
        "citycode":"522327",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州册亨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522328,
        "pcityid":"522300",
        "pcityids":"1,520000,522300,",
        "cityname":"安龙县",
        "citysort":"2798",
        "citycode":"522328",
        "citytype":"4",
        "city_full_name":"贵州省黔*南布依族苗族自治州安龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522601,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"凯里市",
        "citysort":"2800",
        "citycode":"522601",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州凯里市",
        "is_virtual_region":"0"
    },
    {
        "cityid":522622,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"黄*县",
        "citysort":"2801",
        "citycode":"522622",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州黄*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522623,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"施秉县",
        "citysort":"2802",
        "citycode":"522623",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州施秉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522624,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"三穗县",
        "citysort":"2803",
        "citycode":"522624",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州三穗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522625,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"镇远县",
        "citysort":"2804",
        "citycode":"522625",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州镇远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522626,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"岑巩县",
        "citysort":"2805",
        "citycode":"522626",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州岑巩县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522627,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"天柱县",
        "citysort":"2806",
        "citycode":"522627",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州天柱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522628,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"锦屏县",
        "citysort":"2807",
        "citycode":"522628",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州锦屏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522629,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"剑河县",
        "citysort":"2808",
        "citycode":"522629",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州剑河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522630,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"台江县",
        "citysort":"2809",
        "citycode":"522630",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州台江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522631,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"黎*县",
        "citysort":"2810",
        "citycode":"522631",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州黎*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522632,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"榕江县",
        "citysort":"2811",
        "citycode":"522632",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州榕江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522633,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"从江县",
        "citysort":"2812",
        "citycode":"522633",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州从江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522634,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"雷山县",
        "citysort":"2813",
        "citycode":"522634",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州雷山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522635,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"麻江县",
        "citysort":"2814",
        "citycode":"522635",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州麻江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522636,
        "pcityid":"522600",
        "pcityids":"1,520000,522600,",
        "cityname":"丹寨县",
        "citysort":"2815",
        "citycode":"522636",
        "citytype":"4",
        "city_full_name":"贵州省黔东南苗族侗族自治州丹寨县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522701,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"都匀市",
        "citysort":"2817",
        "citycode":"522701",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州都匀市",
        "is_virtual_region":"0"
    },
    {
        "cityid":522702,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"福泉市",
        "citysort":"2818",
        "citycode":"522702",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州福泉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":522722,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"荔波县",
        "citysort":"2819",
        "citycode":"522722",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州荔波县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522723,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"贵定县",
        "citysort":"2820",
        "citycode":"522723",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州贵定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522725,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"瓮安县",
        "citysort":"2821",
        "citycode":"522725",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州瓮安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522726,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"独山县",
        "citysort":"2822",
        "citycode":"522726",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州独山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522727,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"*塘县",
        "citysort":"2823",
        "citycode":"522727",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州*塘县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522728,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"罗甸县",
        "citysort":"2824",
        "citycode":"522728",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州罗甸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522729,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"长顺县",
        "citysort":"2825",
        "citycode":"522729",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州长顺县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522730,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"龙里县",
        "citysort":"2826",
        "citycode":"522730",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州龙里县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522731,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"惠水县",
        "citysort":"2827",
        "citycode":"522731",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州惠水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":522732,
        "pcityid":"522700",
        "pcityids":"1,520000,522700,",
        "cityname":"三都水族自治县",
        "citysort":"2828",
        "citycode":"522732",
        "citytype":"4",
        "city_full_name":"贵州省黔南布依族苗族自治州三都水族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530101,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"市辖区",
        "citysort":"2831",
        "citycode":"530101",
        "citytype":"4",
        "city_full_name":"云南省昆明市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530102,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"五华区",
        "citysort":"2832",
        "citycode":"530102",
        "citytype":"4",
        "city_full_name":"云南省昆明市五华区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530103,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"盘龙区",
        "citysort":"2833",
        "citycode":"530103",
        "citytype":"4",
        "city_full_name":"云南省昆明市盘龙区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530111,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"官渡区",
        "citysort":"2834",
        "citycode":"530111",
        "citytype":"4",
        "city_full_name":"云南省昆明市官渡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530112,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"*山区",
        "citysort":"2835",
        "citycode":"530112",
        "citytype":"4",
        "city_full_name":"云南省昆明市*山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530113,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"东川区",
        "citysort":"2836",
        "citycode":"530113",
        "citytype":"4",
        "city_full_name":"云南省昆明市东川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530114,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"呈贡区",
        "citysort":"2837",
        "citycode":"530114",
        "citytype":"4",
        "city_full_name":"云南省昆明市呈贡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530122,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"*宁县",
        "citysort":"2838",
        "citycode":"530122",
        "citytype":"4",
        "city_full_name":"云南省昆明市*宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530124,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"富民县",
        "citysort":"2839",
        "citycode":"530124",
        "citytype":"4",
        "city_full_name":"云南省昆明市富民县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530125,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"宜良县",
        "citysort":"2840",
        "citycode":"530125",
        "citytype":"4",
        "city_full_name":"云南省昆明市宜良县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530126,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"石林彝族自治县",
        "citysort":"2841",
        "citycode":"530126",
        "citytype":"4",
        "city_full_name":"云南省昆明市石林彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530127,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"嵩明县",
        "citysort":"2842",
        "citycode":"530127",
        "citytype":"4",
        "city_full_name":"云南省昆明市嵩明县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530128,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"禄劝彝族苗族自治县",
        "citysort":"2843",
        "citycode":"530128",
        "citytype":"4",
        "city_full_name":"云南省昆明市禄劝彝族苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530129,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"寻甸回族彝族自治县",
        "citysort":"2844",
        "citycode":"530129",
        "citytype":"4",
        "city_full_name":"云南省昆明市寻甸回族彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530181,
        "pcityid":"530100",
        "pcityids":"1,530000,530100,",
        "cityname":"安宁市",
        "citysort":"2845",
        "citycode":"530181",
        "citytype":"4",
        "city_full_name":"云南省昆明市安宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530301,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"市辖区",
        "citysort":"2847",
        "citycode":"530301",
        "citytype":"4",
        "city_full_name":"云南省曲靖市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530302,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"麒麟区",
        "citysort":"2848",
        "citycode":"530302",
        "citytype":"4",
        "city_full_name":"云南省曲靖市麒麟区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530321,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"马龙县",
        "citysort":"2849",
        "citycode":"530321",
        "citytype":"4",
        "city_full_name":"云南省曲靖市马龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530322,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"陆良县",
        "citysort":"2850",
        "citycode":"530322",
        "citytype":"4",
        "city_full_name":"云南省曲靖市陆良县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530323,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"师宗县",
        "citysort":"2851",
        "citycode":"530323",
        "citytype":"4",
        "city_full_name":"云南省曲靖市师宗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530324,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"罗*县",
        "citysort":"2852",
        "citycode":"530324",
        "citytype":"4",
        "city_full_name":"云南省曲靖市罗*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530325,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"富源县",
        "citysort":"2853",
        "citycode":"530325",
        "citytype":"4",
        "city_full_name":"云南省曲靖市富源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530326,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"会泽县",
        "citysort":"2854",
        "citycode":"530326",
        "citytype":"4",
        "city_full_name":"云南省曲靖市会泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530328,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"沾益县",
        "citysort":"2855",
        "citycode":"530328",
        "citytype":"4",
        "city_full_name":"云南省曲靖市沾益县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530381,
        "pcityid":"530300",
        "pcityids":"1,530000,530300,",
        "cityname":"宣威市",
        "citysort":"2856",
        "citycode":"530381",
        "citytype":"4",
        "city_full_name":"云南省曲靖市宣威市",
        "is_virtual_region":"0"
    },
    {
        "cityid":530401,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"市辖区",
        "citysort":"2858",
        "citycode":"530401",
        "citytype":"4",
        "city_full_name":"云南省玉溪市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530402,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"红塔区",
        "citysort":"2859",
        "citycode":"530402",
        "citytype":"4",
        "city_full_name":"云南省玉溪市红塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530421,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"江川县",
        "citysort":"2860",
        "citycode":"530421",
        "citytype":"4",
        "city_full_name":"云南省玉溪市江川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530422,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"澄江县",
        "citysort":"2861",
        "citycode":"530422",
        "citytype":"4",
        "city_full_name":"云南省玉溪市澄江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530423,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"通海县",
        "citysort":"2862",
        "citycode":"530423",
        "citytype":"4",
        "city_full_name":"云南省玉溪市通海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530424,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"华宁县",
        "citysort":"2863",
        "citycode":"530424",
        "citytype":"4",
        "city_full_name":"云南省玉溪市华宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530425,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"易门县",
        "citysort":"2864",
        "citycode":"530425",
        "citytype":"4",
        "city_full_name":"云南省玉溪市易门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530426,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"峨山彝族自治县",
        "citysort":"2865",
        "citycode":"530426",
        "citytype":"4",
        "city_full_name":"云南省玉溪市峨山彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530427,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"新*彝族傣族自治县",
        "citysort":"2866",
        "citycode":"530427",
        "citytype":"4",
        "city_full_name":"云南省玉溪市新*彝族傣族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530428,
        "pcityid":"530400",
        "pcityids":"1,530000,530400,",
        "cityname":"元江哈尼族彝族傣族自治县",
        "citysort":"2867",
        "citycode":"530428",
        "citytype":"4",
        "city_full_name":"云南省玉溪市元江哈尼族彝族傣族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530501,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"市辖区",
        "citysort":"2869",
        "citycode":"530501",
        "citytype":"4",
        "city_full_name":"云南省保山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530502,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"隆阳区",
        "citysort":"2870",
        "citycode":"530502",
        "citytype":"4",
        "city_full_name":"云南省保山市隆阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530521,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"施甸县",
        "citysort":"2871",
        "citycode":"530521",
        "citytype":"4",
        "city_full_name":"云南省保山市施甸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530522,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"腾冲县",
        "citysort":"2872",
        "citycode":"530522",
        "citytype":"4",
        "city_full_name":"云南省保山市腾冲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530523,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"龙陵县",
        "citysort":"2873",
        "citycode":"530523",
        "citytype":"4",
        "city_full_name":"云南省保山市龙陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530524,
        "pcityid":"530500",
        "pcityids":"1,530000,530500,",
        "cityname":"昌宁县",
        "citysort":"2874",
        "citycode":"530524",
        "citytype":"4",
        "city_full_name":"云南省保山市昌宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530601,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"市辖区",
        "citysort":"2876",
        "citycode":"530601",
        "citytype":"4",
        "city_full_name":"云南省昭通市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530602,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"昭阳区",
        "citysort":"2877",
        "citycode":"530602",
        "citytype":"4",
        "city_full_name":"云南省昭通市昭阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530621,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"鲁甸县",
        "citysort":"2878",
        "citycode":"530621",
        "citytype":"4",
        "city_full_name":"云南省昭通市鲁甸县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530622,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"巧家县",
        "citysort":"2879",
        "citycode":"530622",
        "citytype":"4",
        "city_full_name":"云南省昭通市巧家县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530623,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"盐津县",
        "citysort":"2880",
        "citycode":"530623",
        "citytype":"4",
        "city_full_name":"云南省昭通市盐津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530624,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"大关县",
        "citysort":"2881",
        "citycode":"530624",
        "citytype":"4",
        "city_full_name":"云南省昭通市大关县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530625,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"永善县",
        "citysort":"2882",
        "citycode":"530625",
        "citytype":"4",
        "city_full_name":"云南省昭通市永善县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530626,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"绥江县",
        "citysort":"2883",
        "citycode":"530626",
        "citytype":"4",
        "city_full_name":"云南省昭通市绥江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530627,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"镇雄县",
        "citysort":"2884",
        "citycode":"530627",
        "citytype":"4",
        "city_full_name":"云南省昭通市镇雄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530628,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"彝良县",
        "citysort":"2885",
        "citycode":"530628",
        "citytype":"4",
        "city_full_name":"云南省昭通市彝良县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530629,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"威信县",
        "citysort":"2886",
        "citycode":"530629",
        "citytype":"4",
        "city_full_name":"云南省昭通市威信县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530630,
        "pcityid":"530600",
        "pcityids":"1,530000,530600,",
        "cityname":"水富县",
        "citysort":"2887",
        "citycode":"530630",
        "citytype":"4",
        "city_full_name":"云南省昭通市水富县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530701,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"市辖区",
        "citysort":"2889",
        "citycode":"530701",
        "citytype":"4",
        "city_full_name":"云南省丽江市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530702,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"古城区",
        "citysort":"2890",
        "citycode":"530702",
        "citytype":"4",
        "city_full_name":"云南省丽江市古城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530721,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"玉龙纳*族自治县",
        "citysort":"2891",
        "citycode":"530721",
        "citytype":"4",
        "city_full_name":"云南省丽江市玉龙纳*族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530722,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"永胜县",
        "citysort":"2892",
        "citycode":"530722",
        "citytype":"4",
        "city_full_name":"云南省丽江市永胜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530723,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"华坪县",
        "citysort":"2893",
        "citycode":"530723",
        "citytype":"4",
        "city_full_name":"云南省丽江市华坪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530724,
        "pcityid":"530700",
        "pcityids":"1,530000,530700,",
        "cityname":"宁蒗彝族自治县",
        "citysort":"2894",
        "citycode":"530724",
        "citytype":"4",
        "city_full_name":"云南省丽江市宁蒗彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530801,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"市辖区",
        "citysort":"2896",
        "citycode":"530801",
        "citytype":"4",
        "city_full_name":"云南省普洱市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530802,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"思茅区",
        "citysort":"2897",
        "citycode":"530802",
        "citytype":"4",
        "city_full_name":"云南省普洱市思茅区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530821,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"宁洱哈尼族彝族自治县",
        "citysort":"2898",
        "citycode":"530821",
        "citytype":"4",
        "city_full_name":"云南省普洱市宁洱哈尼族彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530822,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"墨江哈尼族自治县",
        "citysort":"2899",
        "citycode":"530822",
        "citytype":"4",
        "city_full_name":"云南省普洱市墨江哈尼族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530823,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"景东彝族自治县",
        "citysort":"2900",
        "citycode":"530823",
        "citytype":"4",
        "city_full_name":"云南省普洱市景东彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530824,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"景谷傣族彝族自治县",
        "citysort":"2901",
        "citycode":"530824",
        "citytype":"4",
        "city_full_name":"云南省普洱市景谷傣族彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530825,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"镇沅彝族哈尼族拉祜族自治县",
        "citysort":"2902",
        "citycode":"530825",
        "citytype":"4",
        "city_full_name":"云南省普洱市镇沅彝族哈尼族拉祜族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530826,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"江城哈尼族彝族自治县",
        "citysort":"2903",
        "citycode":"530826",
        "citytype":"4",
        "city_full_name":"云南省普洱市江城哈尼族彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530827,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"孟连傣族拉祜族佤族自治县",
        "citysort":"2904",
        "citycode":"530827",
        "citytype":"4",
        "city_full_name":"云南省普洱市孟连傣族拉祜族佤族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530828,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"澜沧拉祜族自治县",
        "citysort":"2905",
        "citycode":"530828",
        "citytype":"4",
        "city_full_name":"云南省普洱市澜沧拉祜族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530829,
        "pcityid":"530800",
        "pcityids":"1,530000,530800,",
        "cityname":"*盟佤族自治县",
        "citysort":"2906",
        "citycode":"530829",
        "citytype":"4",
        "city_full_name":"云南省普洱市*盟佤族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530901,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"市辖区",
        "citysort":"2908",
        "citycode":"530901",
        "citytype":"4",
        "city_full_name":"云南省临沧市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530902,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"临翔区",
        "citysort":"2909",
        "citycode":"530902",
        "citytype":"4",
        "city_full_name":"云南省临沧市临翔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":530921,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"凤庆县",
        "citysort":"2910",
        "citycode":"530921",
        "citytype":"4",
        "city_full_name":"云南省临沧市凤庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530922,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"云县",
        "citysort":"2911",
        "citycode":"530922",
        "citytype":"4",
        "city_full_name":"云南省临沧市云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530923,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"永德县",
        "citysort":"2912",
        "citycode":"530923",
        "citytype":"4",
        "city_full_name":"云南省临沧市永德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530924,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"镇康县",
        "citysort":"2913",
        "citycode":"530924",
        "citytype":"4",
        "city_full_name":"云南省临沧市镇康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530925,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"双江拉祜族佤族布朗族傣族自治县",
        "citysort":"2914",
        "citycode":"530925",
        "citytype":"4",
        "city_full_name":"云南省临沧市双江拉祜族佤族布朗族傣族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530926,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"耿马傣族佤族自治县",
        "citysort":"2915",
        "citycode":"530926",
        "citytype":"4",
        "city_full_name":"云南省临沧市耿马傣族佤族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":530927,
        "pcityid":"530900",
        "pcityids":"1,530000,530900,",
        "cityname":"沧源佤族自治县",
        "citysort":"2916",
        "citycode":"530927",
        "citytype":"4",
        "city_full_name":"云南省临沧市沧源佤族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532301,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"楚雄市",
        "citysort":"2918",
        "citycode":"532301",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州楚雄市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532322,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"双柏县",
        "citysort":"2919",
        "citycode":"532322",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州双柏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532323,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"牟定县",
        "citysort":"2920",
        "citycode":"532323",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州牟定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532324,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"南华县",
        "citysort":"2921",
        "citycode":"532324",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州南华县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532325,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"姚安县",
        "citysort":"2922",
        "citycode":"532325",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州姚安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532326,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"大姚县",
        "citysort":"2923",
        "citycode":"532326",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州大姚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532327,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"永仁县",
        "citysort":"2924",
        "citycode":"532327",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州永仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532328,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"元谋县",
        "citysort":"2925",
        "citycode":"532328",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州元谋县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532329,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"武定县",
        "citysort":"2926",
        "citycode":"532329",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州武定县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532331,
        "pcityid":"532300",
        "pcityids":"1,530000,532300,",
        "cityname":"禄丰县",
        "citysort":"2927",
        "citycode":"532331",
        "citytype":"4",
        "city_full_name":"云南省楚雄彝族自治州禄丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532501,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"个旧市",
        "citysort":"2929",
        "citycode":"532501",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州个旧市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532502,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"开远市",
        "citysort":"2930",
        "citycode":"532502",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州开远市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532503,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"蒙自市",
        "citysort":"2931",
        "citycode":"532503",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州蒙自市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532504,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"弥勒市",
        "citysort":"2932",
        "citycode":"532504",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州弥勒市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532523,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"屏边苗族自治县",
        "citysort":"2933",
        "citycode":"532523",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州屏边苗族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532524,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"建水县",
        "citysort":"2934",
        "citycode":"532524",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州建水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532525,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"石屏县",
        "citysort":"2935",
        "citycode":"532525",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州石屏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532527,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"泸*县",
        "citysort":"2936",
        "citycode":"532527",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州泸*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532528,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"元阳县",
        "citysort":"2937",
        "citycode":"532528",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州元阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532529,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"红河县",
        "citysort":"2938",
        "citycode":"532529",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州红河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532530,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"金*苗族瑶族傣族自治县",
        "citysort":"2939",
        "citycode":"532530",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州金*苗族瑶族傣族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532531,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"绿春县",
        "citysort":"2940",
        "citycode":"532531",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州绿春县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532532,
        "pcityid":"532500",
        "pcityids":"1,530000,532500,",
        "cityname":"河口瑶族自治县",
        "citysort":"2941",
        "citycode":"532532",
        "citytype":"4",
        "city_full_name":"云南省红河哈尼族彝族自治州河口瑶族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532601,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"文山市",
        "citysort":"2943",
        "citycode":"532601",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州文山市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532622,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"砚山县",
        "citysort":"2944",
        "citycode":"532622",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州砚山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532623,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"*畴县",
        "citysort":"2945",
        "citycode":"532623",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州*畴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532624,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"麻栗坡县",
        "citysort":"2946",
        "citycode":"532624",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州麻栗坡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532625,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"马关县",
        "citysort":"2947",
        "citycode":"532625",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州马关县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532626,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"丘北县",
        "citysort":"2948",
        "citycode":"532626",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州丘北县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532627,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"广南县",
        "citysort":"2949",
        "citycode":"532627",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州广南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532628,
        "pcityid":"532600",
        "pcityids":"1,530000,532600,",
        "cityname":"富宁县",
        "citysort":"2950",
        "citycode":"532628",
        "citytype":"4",
        "city_full_name":"云南省文山壮族苗族自治州富宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532801,
        "pcityid":"532800",
        "pcityids":"1,530000,532800,",
        "cityname":"景洪市",
        "citysort":"2952",
        "citycode":"532801",
        "citytype":"4",
        "city_full_name":"云南省*双版纳傣族自治州景洪市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532822,
        "pcityid":"532800",
        "pcityids":"1,530000,532800,",
        "cityname":"勐海县",
        "citysort":"2953",
        "citycode":"532822",
        "citytype":"4",
        "city_full_name":"云南省*双版纳傣族自治州勐海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532823,
        "pcityid":"532800",
        "pcityids":"1,530000,532800,",
        "cityname":"勐腊县",
        "citysort":"2954",
        "citycode":"532823",
        "citytype":"4",
        "city_full_name":"云南省*双版纳傣族自治州勐腊县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532901,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"大理市",
        "citysort":"2956",
        "citycode":"532901",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州大理市",
        "is_virtual_region":"0"
    },
    {
        "cityid":532922,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"漾濞彝族自治县",
        "citysort":"2957",
        "citycode":"532922",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州漾濞彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532923,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"祥云县",
        "citysort":"2958",
        "citycode":"532923",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州祥云县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532924,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"宾川县",
        "citysort":"2959",
        "citycode":"532924",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州宾川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532925,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"弥渡县",
        "citysort":"2960",
        "citycode":"532925",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州弥渡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532926,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"南涧彝族自治县",
        "citysort":"2961",
        "citycode":"532926",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州南涧彝族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532927,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"巍山彝族回族自治县",
        "citysort":"2962",
        "citycode":"532927",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州巍山彝族回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532928,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"永*县",
        "citysort":"2963",
        "citycode":"532928",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州永*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532929,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"云龙县",
        "citysort":"2964",
        "citycode":"532929",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州云龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532930,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"洱源县",
        "citysort":"2965",
        "citycode":"532930",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州洱源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532931,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"剑川县",
        "citysort":"2966",
        "citycode":"532931",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州剑川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":532932,
        "pcityid":"532900",
        "pcityids":"1,530000,532900,",
        "cityname":"鹤庆县",
        "citysort":"2967",
        "citycode":"532932",
        "citytype":"4",
        "city_full_name":"云南省大理白族自治州鹤庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533102,
        "pcityid":"533100",
        "pcityids":"1,530000,533100,",
        "cityname":"瑞丽市",
        "citysort":"2969",
        "citycode":"533102",
        "citytype":"4",
        "city_full_name":"云南省德宏傣族景颇族自治州瑞丽市",
        "is_virtual_region":"0"
    },
    {
        "cityid":533103,
        "pcityid":"533100",
        "pcityids":"1,530000,533100,",
        "cityname":"芒市",
        "citysort":"2970",
        "citycode":"533103",
        "citytype":"4",
        "city_full_name":"云南省德宏傣族景颇族自治州芒市",
        "is_virtual_region":"0"
    },
    {
        "cityid":533122,
        "pcityid":"533100",
        "pcityids":"1,530000,533100,",
        "cityname":"梁河县",
        "citysort":"2971",
        "citycode":"533122",
        "citytype":"4",
        "city_full_name":"云南省德宏傣族景颇族自治州梁河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533123,
        "pcityid":"533100",
        "pcityids":"1,530000,533100,",
        "cityname":"盈江县",
        "citysort":"2972",
        "citycode":"533123",
        "citytype":"4",
        "city_full_name":"云南省德宏傣族景颇族自治州盈江县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533124,
        "pcityid":"533100",
        "pcityids":"1,530000,533100,",
        "cityname":"陇川县",
        "citysort":"2973",
        "citycode":"533124",
        "citytype":"4",
        "city_full_name":"云南省德宏傣族景颇族自治州陇川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533321,
        "pcityid":"533300",
        "pcityids":"1,530000,533300,",
        "cityname":"泸水县",
        "citysort":"2975",
        "citycode":"533321",
        "citytype":"4",
        "city_full_name":"云南省怒江傈僳族自治州泸水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533323,
        "pcityid":"533300",
        "pcityids":"1,530000,533300,",
        "cityname":"福贡县",
        "citysort":"2976",
        "citycode":"533323",
        "citytype":"4",
        "city_full_name":"云南省怒江傈僳族自治州福贡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533324,
        "pcityid":"533300",
        "pcityids":"1,530000,533300,",
        "cityname":"贡山独龙族怒族自治县",
        "citysort":"2977",
        "citycode":"533324",
        "citytype":"4",
        "city_full_name":"云南省怒江傈僳族自治州贡山独龙族怒族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533325,
        "pcityid":"533300",
        "pcityids":"1,530000,533300,",
        "cityname":"兰坪白族普米族自治县",
        "citysort":"2978",
        "citycode":"533325",
        "citytype":"4",
        "city_full_name":"云南省怒江傈僳族自治州兰坪白族普米族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533421,
        "pcityid":"533400",
        "pcityids":"1,530000,533400,",
        "cityname":"香格里拉县",
        "citysort":"2980",
        "citycode":"533421",
        "citytype":"4",
        "city_full_name":"云南省迪庆藏族自治州香格里拉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533422,
        "pcityid":"533400",
        "pcityids":"1,530000,533400,",
        "cityname":"德钦县",
        "citysort":"2981",
        "citycode":"533422",
        "citytype":"4",
        "city_full_name":"云南省迪庆藏族自治州德钦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":533423,
        "pcityid":"533400",
        "pcityids":"1,530000,533400,",
        "cityname":"维*傈僳族自治县",
        "citysort":"2982",
        "citycode":"533423",
        "citytype":"4",
        "city_full_name":"云南省迪庆藏族自治州维*傈僳族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540101,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"市辖区",
        "citysort":"2985",
        "citycode":"540101",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":540102,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"城关区",
        "citysort":"2986",
        "citycode":"540102",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市城关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":540121,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"林周县",
        "citysort":"2987",
        "citycode":"540121",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市林周县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540122,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"当雄县",
        "citysort":"2988",
        "citycode":"540122",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市当雄县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540123,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"尼木县",
        "citysort":"2989",
        "citycode":"540123",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市尼木县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540124,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"曲水县",
        "citysort":"2990",
        "citycode":"540124",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市曲水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540125,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"堆龙德庆县",
        "citysort":"2991",
        "citycode":"540125",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市堆龙德庆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540126,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"达孜县",
        "citysort":"2992",
        "citycode":"540126",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市达孜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540127,
        "pcityid":"540100",
        "pcityids":"1,540000,540100,",
        "cityname":"墨竹工卡县",
        "citysort":"2993",
        "citycode":"540127",
        "citytype":"4",
        "city_full_name":"*藏自治区拉萨市墨竹工卡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540202,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"桑珠孜区",
        "citysort":"2995",
        "citycode":"540202",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市桑珠孜区",
        "is_virtual_region":"0"
    },
    {
        "cityid":540221,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"南木林县",
        "citysort":"2996",
        "citycode":"540221",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市南木林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540222,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"江孜县",
        "citysort":"2997",
        "citycode":"540222",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市江孜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540223,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"定日县",
        "citysort":"2998",
        "citycode":"540223",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市定日县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540224,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"萨迦县",
        "citysort":"2999",
        "citycode":"540224",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市萨迦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540225,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"拉孜县",
        "citysort":"3000",
        "citycode":"540225",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市拉孜县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540226,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"昂仁县",
        "citysort":"3001",
        "citycode":"540226",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市昂仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540227,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"谢通门县",
        "citysort":"3002",
        "citycode":"540227",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市谢通门县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540228,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"白朗县",
        "citysort":"3003",
        "citycode":"540228",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市白朗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540229,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"仁布县",
        "citysort":"3004",
        "citycode":"540229",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市仁布县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540230,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"康马县",
        "citysort":"3005",
        "citycode":"540230",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市康马县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540231,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"定结县",
        "citysort":"3006",
        "citycode":"540231",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市定结县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540232,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"仲巴县",
        "citysort":"3007",
        "citycode":"540232",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市仲巴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540233,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"亚东县",
        "citysort":"3008",
        "citycode":"540233",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市亚东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540234,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"吉隆县",
        "citysort":"3009",
        "citycode":"540234",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市吉隆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540235,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"聂拉木县",
        "citysort":"3010",
        "citycode":"540235",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市聂拉木县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540236,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"萨嘎县",
        "citysort":"3011",
        "citycode":"540236",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市萨嘎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":540237,
        "pcityid":"540200",
        "pcityids":"1,540000,540200,",
        "cityname":"岗巴县",
        "citysort":"3012",
        "citycode":"540237",
        "citytype":"4",
        "city_full_name":"*藏自治区日喀则市岗巴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542121,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"昌都县",
        "citysort":"3014",
        "citycode":"542121",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区昌都县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542122,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"江达县",
        "citysort":"3015",
        "citycode":"542122",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区江达县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542123,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"贡觉县",
        "citysort":"3016",
        "citycode":"542123",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区贡觉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542124,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"类乌齐县",
        "citysort":"3017",
        "citycode":"542124",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区类乌齐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542125,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"丁青县",
        "citysort":"3018",
        "citycode":"542125",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区丁青县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542126,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"察雅县",
        "citysort":"3019",
        "citycode":"542126",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区察雅县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542127,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"八宿县",
        "citysort":"3020",
        "citycode":"542127",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区八宿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542128,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"左贡县",
        "citysort":"3021",
        "citycode":"542128",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区左贡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542129,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"芒康县",
        "citysort":"3022",
        "citycode":"542129",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区芒康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542132,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"洛隆县",
        "citysort":"3023",
        "citycode":"542132",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区洛隆县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542133,
        "pcityid":"542100",
        "pcityids":"1,540000,542100,",
        "cityname":"边坝县",
        "citysort":"3024",
        "citycode":"542133",
        "citytype":"4",
        "city_full_name":"*藏自治区昌都地区边坝县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542221,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"乃东县",
        "citysort":"3026",
        "citycode":"542221",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区乃东县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542222,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"扎囊县",
        "citysort":"3027",
        "citycode":"542222",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区扎囊县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542223,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"贡嘎县",
        "citysort":"3028",
        "citycode":"542223",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区贡嘎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542224,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"桑日县",
        "citysort":"3029",
        "citycode":"542224",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区桑日县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542225,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"琼结县",
        "citysort":"3030",
        "citycode":"542225",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区琼结县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542226,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"曲松县",
        "citysort":"3031",
        "citycode":"542226",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区曲松县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542227,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"措美县",
        "citysort":"3032",
        "citycode":"542227",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区措美县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542228,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"洛扎县",
        "citysort":"3033",
        "citycode":"542228",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区洛扎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542229,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"加查县",
        "citysort":"3034",
        "citycode":"542229",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区加查县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542231,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"隆子县",
        "citysort":"3035",
        "citycode":"542231",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区隆子县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542232,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"错那县",
        "citysort":"3036",
        "citycode":"542232",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区错那县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542233,
        "pcityid":"542200",
        "pcityids":"1,540000,542200,",
        "cityname":"浪卡子县",
        "citysort":"3037",
        "citycode":"542233",
        "citytype":"4",
        "city_full_name":"*藏自治区山南地区浪卡子县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542421,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"那曲县",
        "citysort":"3039",
        "citycode":"542421",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区那曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542422,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"嘉黎县",
        "citysort":"3040",
        "citycode":"542422",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区嘉黎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542423,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"比如县",
        "citysort":"3041",
        "citycode":"542423",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区比如县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542424,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"聂荣县",
        "citysort":"3042",
        "citycode":"542424",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区聂荣县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542425,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"安多县",
        "citysort":"3043",
        "citycode":"542425",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区安多县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542426,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"申扎县",
        "citysort":"3044",
        "citycode":"542426",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区申扎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542427,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"索县",
        "citysort":"3045",
        "citycode":"542427",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区索县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542428,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"班戈县",
        "citysort":"3046",
        "citycode":"542428",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区班戈县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542429,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"巴青县",
        "citysort":"3047",
        "citycode":"542429",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区巴青县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542430,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"尼玛县",
        "citysort":"3048",
        "citycode":"542430",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区尼玛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542431,
        "pcityid":"542400",
        "pcityids":"1,540000,542400,",
        "cityname":"双湖县",
        "citysort":"3049",
        "citycode":"542431",
        "citytype":"4",
        "city_full_name":"*藏自治区那曲地区双湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542521,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"普兰县",
        "citysort":"3051",
        "citycode":"542521",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区普兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542522,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"札达县",
        "citysort":"3052",
        "citycode":"542522",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区札达县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542523,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"噶尔县",
        "citysort":"3053",
        "citycode":"542523",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区噶尔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542524,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"日土县",
        "citysort":"3054",
        "citycode":"542524",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区日土县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542525,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"革吉县",
        "citysort":"3055",
        "citycode":"542525",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区革吉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542526,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"改则县",
        "citysort":"3056",
        "citycode":"542526",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区改则县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542527,
        "pcityid":"542500",
        "pcityids":"1,540000,542500,",
        "cityname":"措勤县",
        "citysort":"3057",
        "citycode":"542527",
        "citytype":"4",
        "city_full_name":"*藏自治区阿里地区措勤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542621,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"林芝县",
        "citysort":"3059",
        "citycode":"542621",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区林芝县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542622,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"工布江达县",
        "citysort":"3060",
        "citycode":"542622",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区工布江达县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542623,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"米林县",
        "citysort":"3061",
        "citycode":"542623",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区米林县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542624,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"墨脱县",
        "citysort":"3062",
        "citycode":"542624",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区墨脱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542625,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"波密县",
        "citysort":"3063",
        "citycode":"542625",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区波密县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542626,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"察隅县",
        "citysort":"3064",
        "citycode":"542626",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区察隅县",
        "is_virtual_region":"0"
    },
    {
        "cityid":542627,
        "pcityid":"542600",
        "pcityids":"1,540000,542600,",
        "cityname":"朗县",
        "citysort":"3065",
        "citycode":"542627",
        "citytype":"4",
        "city_full_name":"*藏自治区林芝地区朗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610101,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"市辖区",
        "citysort":"3068",
        "citycode":"610101",
        "citytype":"4",
        "city_full_name":"陕*省*安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610102,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"新城区",
        "citysort":"3069",
        "citycode":"610102",
        "citytype":"4",
        "city_full_name":"陕*省*安市新城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610103,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"碑林区",
        "citysort":"3070",
        "citycode":"610103",
        "citytype":"4",
        "city_full_name":"陕*省*安市碑林区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610104,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"莲湖区",
        "citysort":"3071",
        "citycode":"610104",
        "citytype":"4",
        "city_full_name":"陕*省*安市莲湖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610111,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"灞桥区",
        "citysort":"3072",
        "citycode":"610111",
        "citytype":"4",
        "city_full_name":"陕*省*安市灞桥区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610112,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"未央区",
        "citysort":"3073",
        "citycode":"610112",
        "citytype":"4",
        "city_full_name":"陕*省*安市未央区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610113,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"雁塔区",
        "citysort":"3074",
        "citycode":"610113",
        "citytype":"4",
        "city_full_name":"陕*省*安市雁塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610114,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"阎良区",
        "citysort":"3075",
        "citycode":"610114",
        "citytype":"4",
        "city_full_name":"陕*省*安市阎良区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610115,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"临潼区",
        "citysort":"3076",
        "citycode":"610115",
        "citytype":"4",
        "city_full_name":"陕*省*安市临潼区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610116,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"长安区",
        "citysort":"3077",
        "citycode":"610116",
        "citytype":"4",
        "city_full_name":"陕*省*安市长安区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610122,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"蓝田县",
        "citysort":"3078",
        "citycode":"610122",
        "citytype":"4",
        "city_full_name":"陕*省*安市蓝田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610124,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"周至县",
        "citysort":"3079",
        "citycode":"610124",
        "citytype":"4",
        "city_full_name":"陕*省*安市周至县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610125,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"户县",
        "citysort":"3080",
        "citycode":"610125",
        "citytype":"4",
        "city_full_name":"陕*省*安市户县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610126,
        "pcityid":"610100",
        "pcityids":"1,610000,610100,",
        "cityname":"高陵县",
        "citysort":"3081",
        "citycode":"610126",
        "citytype":"4",
        "city_full_name":"陕*省*安市高陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610201,
        "pcityid":"610200",
        "pcityids":"1,610000,610200,",
        "cityname":"市辖区",
        "citysort":"3083",
        "citycode":"610201",
        "citytype":"4",
        "city_full_name":"陕*省铜川市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610202,
        "pcityid":"610200",
        "pcityids":"1,610000,610200,",
        "cityname":"王益区",
        "citysort":"3084",
        "citycode":"610202",
        "citytype":"4",
        "city_full_name":"陕*省铜川市王益区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610203,
        "pcityid":"610200",
        "pcityids":"1,610000,610200,",
        "cityname":"印台区",
        "citysort":"3085",
        "citycode":"610203",
        "citytype":"4",
        "city_full_name":"陕*省铜川市印台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610204,
        "pcityid":"610200",
        "pcityids":"1,610000,610200,",
        "cityname":"耀州区",
        "citysort":"3086",
        "citycode":"610204",
        "citytype":"4",
        "city_full_name":"陕*省铜川市耀州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610222,
        "pcityid":"610200",
        "pcityids":"1,610000,610200,",
        "cityname":"宜君县",
        "citysort":"3087",
        "citycode":"610222",
        "citytype":"4",
        "city_full_name":"陕*省铜川市宜君县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610301,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"市辖区",
        "citysort":"3089",
        "citycode":"610301",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610302,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"渭滨区",
        "citysort":"3090",
        "citycode":"610302",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市渭滨区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610303,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"金台区",
        "citysort":"3091",
        "citycode":"610303",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市金台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610304,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"陈仓区",
        "citysort":"3092",
        "citycode":"610304",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市陈仓区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610322,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"凤翔县",
        "citysort":"3093",
        "citycode":"610322",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市凤翔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610323,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"岐山县",
        "citysort":"3094",
        "citycode":"610323",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市岐山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610324,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"扶风县",
        "citysort":"3095",
        "citycode":"610324",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市扶风县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610326,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"眉县",
        "citysort":"3096",
        "citycode":"610326",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市眉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610327,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"陇县",
        "citysort":"3097",
        "citycode":"610327",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市陇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610328,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"千阳县",
        "citysort":"3098",
        "citycode":"610328",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市千阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610329,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"麟游县",
        "citysort":"3099",
        "citycode":"610329",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市麟游县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610330,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"凤县",
        "citysort":"3100",
        "citycode":"610330",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市凤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610331,
        "pcityid":"610300",
        "pcityids":"1,610000,610300,",
        "cityname":"太白县",
        "citysort":"3101",
        "citycode":"610331",
        "citytype":"4",
        "city_full_name":"陕*省宝鸡市太白县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610401,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"市辖区",
        "citysort":"3103",
        "citycode":"610401",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610402,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"秦都区",
        "citysort":"3104",
        "citycode":"610402",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市秦都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610403,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"杨陵区",
        "citysort":"3105",
        "citycode":"610403",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市杨陵区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610404,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"渭城区",
        "citysort":"3106",
        "citycode":"610404",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市渭城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610422,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"三原县",
        "citysort":"3107",
        "citycode":"610422",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市三原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610423,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"泾阳县",
        "citysort":"3108",
        "citycode":"610423",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市泾阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610424,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"乾县",
        "citysort":"3109",
        "citycode":"610424",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市乾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610425,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"礼泉县",
        "citysort":"3110",
        "citycode":"610425",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市礼泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610426,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"永寿县",
        "citysort":"3111",
        "citycode":"610426",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市永寿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610427,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"彬县",
        "citysort":"3112",
        "citycode":"610427",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市彬县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610428,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"长武县",
        "citysort":"3113",
        "citycode":"610428",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市长武县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610429,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"旬邑县",
        "citysort":"3114",
        "citycode":"610429",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市旬邑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610430,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"淳化县",
        "citysort":"3115",
        "citycode":"610430",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市淳化县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610431,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"武功县",
        "citysort":"3116",
        "citycode":"610431",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市武功县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610481,
        "pcityid":"610400",
        "pcityids":"1,610000,610400,",
        "cityname":"兴*市",
        "citysort":"3117",
        "citycode":"610481",
        "citytype":"4",
        "city_full_name":"陕*省咸阳市兴*市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610501,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"市辖区",
        "citysort":"3119",
        "citycode":"610501",
        "citytype":"4",
        "city_full_name":"陕*省渭南市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610502,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"临渭区",
        "citysort":"3120",
        "citycode":"610502",
        "citytype":"4",
        "city_full_name":"陕*省渭南市临渭区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610521,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"华县",
        "citysort":"3121",
        "citycode":"610521",
        "citytype":"4",
        "city_full_name":"陕*省渭南市华县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610522,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"潼关县",
        "citysort":"3122",
        "citycode":"610522",
        "citytype":"4",
        "city_full_name":"陕*省渭南市潼关县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610523,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"大荔县",
        "citysort":"3123",
        "citycode":"610523",
        "citytype":"4",
        "city_full_name":"陕*省渭南市大荔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610524,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"合阳县",
        "citysort":"3124",
        "citycode":"610524",
        "citytype":"4",
        "city_full_name":"陕*省渭南市合阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610525,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"澄城县",
        "citysort":"3125",
        "citycode":"610525",
        "citytype":"4",
        "city_full_name":"陕*省渭南市澄城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610526,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"蒲城县",
        "citysort":"3126",
        "citycode":"610526",
        "citytype":"4",
        "city_full_name":"陕*省渭南市蒲城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610527,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"白水县",
        "citysort":"3127",
        "citycode":"610527",
        "citytype":"4",
        "city_full_name":"陕*省渭南市白水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610528,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"富*县",
        "citysort":"3128",
        "citycode":"610528",
        "citytype":"4",
        "city_full_name":"陕*省渭南市富*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610581,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"韩城市",
        "citysort":"3129",
        "citycode":"610581",
        "citytype":"4",
        "city_full_name":"陕*省渭南市韩城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610582,
        "pcityid":"610500",
        "pcityids":"1,610000,610500,",
        "cityname":"华阴市",
        "citysort":"3130",
        "citycode":"610582",
        "citytype":"4",
        "city_full_name":"陕*省渭南市华阴市",
        "is_virtual_region":"0"
    },
    {
        "cityid":610601,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"市辖区",
        "citysort":"3132",
        "citycode":"610601",
        "citytype":"4",
        "city_full_name":"陕*省延安市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610602,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"宝塔区",
        "citysort":"3133",
        "citycode":"610602",
        "citytype":"4",
        "city_full_name":"陕*省延安市宝塔区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610621,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"延长县",
        "citysort":"3134",
        "citycode":"610621",
        "citytype":"4",
        "city_full_name":"陕*省延安市延长县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610622,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"延川县",
        "citysort":"3135",
        "citycode":"610622",
        "citytype":"4",
        "city_full_name":"陕*省延安市延川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610623,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"子长县",
        "citysort":"3136",
        "citycode":"610623",
        "citytype":"4",
        "city_full_name":"陕*省延安市子长县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610624,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"安塞县",
        "citysort":"3137",
        "citycode":"610624",
        "citytype":"4",
        "city_full_name":"陕*省延安市安塞县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610625,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"志丹县",
        "citysort":"3138",
        "citycode":"610625",
        "citytype":"4",
        "city_full_name":"陕*省延安市志丹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610626,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"吴起县",
        "citysort":"3139",
        "citycode":"610626",
        "citytype":"4",
        "city_full_name":"陕*省延安市吴起县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610627,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"甘泉县",
        "citysort":"3140",
        "citycode":"610627",
        "citytype":"4",
        "city_full_name":"陕*省延安市甘泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610628,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"富县",
        "citysort":"3141",
        "citycode":"610628",
        "citytype":"4",
        "city_full_name":"陕*省延安市富县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610629,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"洛川县",
        "citysort":"3142",
        "citycode":"610629",
        "citytype":"4",
        "city_full_name":"陕*省延安市洛川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610630,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"宜川县",
        "citysort":"3143",
        "citycode":"610630",
        "citytype":"4",
        "city_full_name":"陕*省延安市宜川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610631,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"黄龙县",
        "citysort":"3144",
        "citycode":"610631",
        "citytype":"4",
        "city_full_name":"陕*省延安市黄龙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610632,
        "pcityid":"610600",
        "pcityids":"1,610000,610600,",
        "cityname":"黄陵县",
        "citysort":"3145",
        "citycode":"610632",
        "citytype":"4",
        "city_full_name":"陕*省延安市黄陵县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610701,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"市辖区",
        "citysort":"3147",
        "citycode":"610701",
        "citytype":"4",
        "city_full_name":"陕*省汉中市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610702,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"汉台区",
        "citysort":"3148",
        "citycode":"610702",
        "citytype":"4",
        "city_full_name":"陕*省汉中市汉台区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610721,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"南郑县",
        "citysort":"3149",
        "citycode":"610721",
        "citytype":"4",
        "city_full_name":"陕*省汉中市南郑县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610722,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"城固县",
        "citysort":"3150",
        "citycode":"610722",
        "citytype":"4",
        "city_full_name":"陕*省汉中市城固县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610723,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"洋县",
        "citysort":"3151",
        "citycode":"610723",
        "citytype":"4",
        "city_full_name":"陕*省汉中市洋县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610724,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"*乡县",
        "citysort":"3152",
        "citycode":"610724",
        "citytype":"4",
        "city_full_name":"陕*省汉中市*乡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610725,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"勉县",
        "citysort":"3153",
        "citycode":"610725",
        "citytype":"4",
        "city_full_name":"陕*省汉中市勉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610726,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"宁强县",
        "citysort":"3154",
        "citycode":"610726",
        "citytype":"4",
        "city_full_name":"陕*省汉中市宁强县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610727,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"略阳县",
        "citysort":"3155",
        "citycode":"610727",
        "citytype":"4",
        "city_full_name":"陕*省汉中市略阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610728,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"镇巴县",
        "citysort":"3156",
        "citycode":"610728",
        "citytype":"4",
        "city_full_name":"陕*省汉中市镇巴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610729,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"留坝县",
        "citysort":"3157",
        "citycode":"610729",
        "citytype":"4",
        "city_full_name":"陕*省汉中市留坝县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610730,
        "pcityid":"610700",
        "pcityids":"1,610000,610700,",
        "cityname":"佛坪县",
        "citysort":"3158",
        "citycode":"610730",
        "citytype":"4",
        "city_full_name":"陕*省汉中市佛坪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610801,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"市辖区",
        "citysort":"3160",
        "citycode":"610801",
        "citytype":"4",
        "city_full_name":"陕*省榆林市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610802,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"榆阳区",
        "citysort":"3161",
        "citycode":"610802",
        "citytype":"4",
        "city_full_name":"陕*省榆林市榆阳区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610821,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"神木县",
        "citysort":"3162",
        "citycode":"610821",
        "citytype":"4",
        "city_full_name":"陕*省榆林市神木县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610822,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"府谷县",
        "citysort":"3163",
        "citycode":"610822",
        "citytype":"4",
        "city_full_name":"陕*省榆林市府谷县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610823,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"横山县",
        "citysort":"3164",
        "citycode":"610823",
        "citytype":"4",
        "city_full_name":"陕*省榆林市横山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610824,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"靖边县",
        "citysort":"3165",
        "citycode":"610824",
        "citytype":"4",
        "city_full_name":"陕*省榆林市靖边县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610825,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"定边县",
        "citysort":"3166",
        "citycode":"610825",
        "citytype":"4",
        "city_full_name":"陕*省榆林市定边县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610826,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"绥德县",
        "citysort":"3167",
        "citycode":"610826",
        "citytype":"4",
        "city_full_name":"陕*省榆林市绥德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610827,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"米脂县",
        "citysort":"3168",
        "citycode":"610827",
        "citytype":"4",
        "city_full_name":"陕*省榆林市米脂县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610828,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"佳县",
        "citysort":"3169",
        "citycode":"610828",
        "citytype":"4",
        "city_full_name":"陕*省榆林市佳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610829,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"吴堡县",
        "citysort":"3170",
        "citycode":"610829",
        "citytype":"4",
        "city_full_name":"陕*省榆林市吴堡县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610830,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"清涧县",
        "citysort":"3171",
        "citycode":"610830",
        "citytype":"4",
        "city_full_name":"陕*省榆林市清涧县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610831,
        "pcityid":"610800",
        "pcityids":"1,610000,610800,",
        "cityname":"子洲县",
        "citysort":"3172",
        "citycode":"610831",
        "citytype":"4",
        "city_full_name":"陕*省榆林市子洲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610901,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"市辖区",
        "citysort":"3174",
        "citycode":"610901",
        "citytype":"4",
        "city_full_name":"陕*省安康市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610902,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"汉滨区",
        "citysort":"3175",
        "citycode":"610902",
        "citytype":"4",
        "city_full_name":"陕*省安康市汉滨区",
        "is_virtual_region":"0"
    },
    {
        "cityid":610921,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"汉阴县",
        "citysort":"3176",
        "citycode":"610921",
        "citytype":"4",
        "city_full_name":"陕*省安康市汉阴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610922,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"石泉县",
        "citysort":"3177",
        "citycode":"610922",
        "citytype":"4",
        "city_full_name":"陕*省安康市石泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610923,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"宁陕县",
        "citysort":"3178",
        "citycode":"610923",
        "citytype":"4",
        "city_full_name":"陕*省安康市宁陕县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610924,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"紫阳县",
        "citysort":"3179",
        "citycode":"610924",
        "citytype":"4",
        "city_full_name":"陕*省安康市紫阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610925,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"岚皋县",
        "citysort":"3180",
        "citycode":"610925",
        "citytype":"4",
        "city_full_name":"陕*省安康市岚皋县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610926,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"*利县",
        "citysort":"3181",
        "citycode":"610926",
        "citytype":"4",
        "city_full_name":"陕*省安康市*利县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610927,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"镇坪县",
        "citysort":"3182",
        "citycode":"610927",
        "citytype":"4",
        "city_full_name":"陕*省安康市镇坪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610928,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"旬阳县",
        "citysort":"3183",
        "citycode":"610928",
        "citytype":"4",
        "city_full_name":"陕*省安康市旬阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":610929,
        "pcityid":"610900",
        "pcityids":"1,610000,610900,",
        "cityname":"白河县",
        "citysort":"3184",
        "citycode":"610929",
        "citytype":"4",
        "city_full_name":"陕*省安康市白河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611001,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"市辖区",
        "citysort":"3186",
        "citycode":"611001",
        "citytype":"4",
        "city_full_name":"陕*省商洛市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":611002,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"商州区",
        "citysort":"3187",
        "citycode":"611002",
        "citytype":"4",
        "city_full_name":"陕*省商洛市商州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":611021,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"洛南县",
        "citysort":"3188",
        "citycode":"611021",
        "citytype":"4",
        "city_full_name":"陕*省商洛市洛南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611022,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"丹凤县",
        "citysort":"3189",
        "citycode":"611022",
        "citytype":"4",
        "city_full_name":"陕*省商洛市丹凤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611023,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"商南县",
        "citysort":"3190",
        "citycode":"611023",
        "citytype":"4",
        "city_full_name":"陕*省商洛市商南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611024,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"山阳县",
        "citysort":"3191",
        "citycode":"611024",
        "citytype":"4",
        "city_full_name":"陕*省商洛市山阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611025,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"镇安县",
        "citysort":"3192",
        "citycode":"611025",
        "citytype":"4",
        "city_full_name":"陕*省商洛市镇安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":611026,
        "pcityid":"611000",
        "pcityids":"1,610000,611000,",
        "cityname":"柞水县",
        "citysort":"3193",
        "citycode":"611026",
        "citytype":"4",
        "city_full_name":"陕*省商洛市柞水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620101,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"市辖区",
        "citysort":"3196",
        "citycode":"620101",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620102,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"城关区",
        "citysort":"3197",
        "citycode":"620102",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市城关区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620103,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"七里河区",
        "citysort":"3198",
        "citycode":"620103",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市七里河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620104,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"*固区",
        "citysort":"3199",
        "citycode":"620104",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市*固区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620105,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"安宁区",
        "citysort":"3200",
        "citycode":"620105",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市安宁区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620111,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"红古区",
        "citysort":"3201",
        "citycode":"620111",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市红古区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620121,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"永登县",
        "citysort":"3202",
        "citycode":"620121",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市永登县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620122,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"皋兰县",
        "citysort":"3203",
        "citycode":"620122",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市皋兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620123,
        "pcityid":"620100",
        "pcityids":"1,620000,620100,",
        "cityname":"榆中县",
        "citysort":"3204",
        "citycode":"620123",
        "citytype":"4",
        "city_full_name":"甘肃省兰州市榆中县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620201,
        "pcityid":"620200",
        "pcityids":"1,620000,620200,",
        "cityname":"市辖区",
        "citysort":"3206",
        "citycode":"620201",
        "citytype":"4",
        "city_full_name":"甘肃省嘉峪关市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620301,
        "pcityid":"620300",
        "pcityids":"1,620000,620300,",
        "cityname":"市辖区",
        "citysort":"3208",
        "citycode":"620301",
        "citytype":"4",
        "city_full_name":"甘肃省金昌市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620302,
        "pcityid":"620300",
        "pcityids":"1,620000,620300,",
        "cityname":"金川区",
        "citysort":"3209",
        "citycode":"620302",
        "citytype":"4",
        "city_full_name":"甘肃省金昌市金川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620321,
        "pcityid":"620300",
        "pcityids":"1,620000,620300,",
        "cityname":"永昌县",
        "citysort":"3210",
        "citycode":"620321",
        "citytype":"4",
        "city_full_name":"甘肃省金昌市永昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620401,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"市辖区",
        "citysort":"3212",
        "citycode":"620401",
        "citytype":"4",
        "city_full_name":"甘肃省白银市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620402,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"白银区",
        "citysort":"3213",
        "citycode":"620402",
        "citytype":"4",
        "city_full_name":"甘肃省白银市白银区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620403,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"*川区",
        "citysort":"3214",
        "citycode":"620403",
        "citytype":"4",
        "city_full_name":"甘肃省白银市*川区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620421,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"靖远县",
        "citysort":"3215",
        "citycode":"620421",
        "citytype":"4",
        "city_full_name":"甘肃省白银市靖远县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620422,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"会宁县",
        "citysort":"3216",
        "citycode":"620422",
        "citytype":"4",
        "city_full_name":"甘肃省白银市会宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620423,
        "pcityid":"620400",
        "pcityids":"1,620000,620400,",
        "cityname":"景泰县",
        "citysort":"3217",
        "citycode":"620423",
        "citytype":"4",
        "city_full_name":"甘肃省白银市景泰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620501,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"市辖区",
        "citysort":"3219",
        "citycode":"620501",
        "citytype":"4",
        "city_full_name":"甘肃省天水市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620502,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"秦州区",
        "citysort":"3220",
        "citycode":"620502",
        "citytype":"4",
        "city_full_name":"甘肃省天水市秦州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620503,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"麦积区",
        "citysort":"3221",
        "citycode":"620503",
        "citytype":"4",
        "city_full_name":"甘肃省天水市麦积区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620521,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"清水县",
        "citysort":"3222",
        "citycode":"620521",
        "citytype":"4",
        "city_full_name":"甘肃省天水市清水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620522,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"秦安县",
        "citysort":"3223",
        "citycode":"620522",
        "citytype":"4",
        "city_full_name":"甘肃省天水市秦安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620523,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"甘谷县",
        "citysort":"3224",
        "citycode":"620523",
        "citytype":"4",
        "city_full_name":"甘肃省天水市甘谷县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620524,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"武山县",
        "citysort":"3225",
        "citycode":"620524",
        "citytype":"4",
        "city_full_name":"甘肃省天水市武山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620525,
        "pcityid":"620500",
        "pcityids":"1,620000,620500,",
        "cityname":"张家川回族自治县",
        "citysort":"3226",
        "citycode":"620525",
        "citytype":"4",
        "city_full_name":"甘肃省天水市张家川回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620601,
        "pcityid":"620600",
        "pcityids":"1,620000,620600,",
        "cityname":"市辖区",
        "citysort":"3228",
        "citycode":"620601",
        "citytype":"4",
        "city_full_name":"甘肃省武威市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620602,
        "pcityid":"620600",
        "pcityids":"1,620000,620600,",
        "cityname":"凉州区",
        "citysort":"3229",
        "citycode":"620602",
        "citytype":"4",
        "city_full_name":"甘肃省武威市凉州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620621,
        "pcityid":"620600",
        "pcityids":"1,620000,620600,",
        "cityname":"民勤县",
        "citysort":"3230",
        "citycode":"620621",
        "citytype":"4",
        "city_full_name":"甘肃省武威市民勤县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620622,
        "pcityid":"620600",
        "pcityids":"1,620000,620600,",
        "cityname":"古浪县",
        "citysort":"3231",
        "citycode":"620622",
        "citytype":"4",
        "city_full_name":"甘肃省武威市古浪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620623,
        "pcityid":"620600",
        "pcityids":"1,620000,620600,",
        "cityname":"天祝藏族自治县",
        "citysort":"3232",
        "citycode":"620623",
        "citytype":"4",
        "city_full_name":"甘肃省武威市天祝藏族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620701,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"市辖区",
        "citysort":"3234",
        "citycode":"620701",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620702,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"甘州区",
        "citysort":"3235",
        "citycode":"620702",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市甘州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620721,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"肃南裕固族自治县",
        "citysort":"3236",
        "citycode":"620721",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市肃南裕固族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620722,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"民乐县",
        "citysort":"3237",
        "citycode":"620722",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市民乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620723,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"临泽县",
        "citysort":"3238",
        "citycode":"620723",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市临泽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620724,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"高台县",
        "citysort":"3239",
        "citycode":"620724",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市高台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620725,
        "pcityid":"620700",
        "pcityids":"1,620000,620700,",
        "cityname":"山丹县",
        "citysort":"3240",
        "citycode":"620725",
        "citytype":"4",
        "city_full_name":"甘肃省张掖市山丹县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620801,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"市辖区",
        "citysort":"3242",
        "citycode":"620801",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620802,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"崆峒区",
        "citysort":"3243",
        "citycode":"620802",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市崆峒区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620821,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"泾川县",
        "citysort":"3244",
        "citycode":"620821",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市泾川县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620822,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"灵台县",
        "citysort":"3245",
        "citycode":"620822",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市灵台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620823,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"崇信县",
        "citysort":"3246",
        "citycode":"620823",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市崇信县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620824,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"华亭县",
        "citysort":"3247",
        "citycode":"620824",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市华亭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620825,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"庄浪县",
        "citysort":"3248",
        "citycode":"620825",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市庄浪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620826,
        "pcityid":"620800",
        "pcityids":"1,620000,620800,",
        "cityname":"静宁县",
        "citysort":"3249",
        "citycode":"620826",
        "citytype":"4",
        "city_full_name":"甘肃省*凉市静宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620901,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"市辖区",
        "citysort":"3251",
        "citycode":"620901",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620902,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"肃州区",
        "citysort":"3252",
        "citycode":"620902",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市肃州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":620921,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"金塔县",
        "citysort":"3253",
        "citycode":"620921",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市金塔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620922,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"瓜州县",
        "citysort":"3254",
        "citycode":"620922",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市瓜州县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620923,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"肃北蒙古族自治县",
        "citysort":"3255",
        "citycode":"620923",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市肃北蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620924,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"阿克塞哈萨克族自治县",
        "citysort":"3256",
        "citycode":"620924",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市阿克塞哈萨克族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":620981,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"玉门市",
        "citysort":"3257",
        "citycode":"620981",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市玉门市",
        "is_virtual_region":"0"
    },
    {
        "cityid":620982,
        "pcityid":"620900",
        "pcityids":"1,620000,620900,",
        "cityname":"敦煌市",
        "citysort":"3258",
        "citycode":"620982",
        "citytype":"4",
        "city_full_name":"甘肃省酒泉市敦煌市",
        "is_virtual_region":"0"
    },
    {
        "cityid":621001,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"市辖区",
        "citysort":"3260",
        "citycode":"621001",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621002,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"*峰区",
        "citysort":"3261",
        "citycode":"621002",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市*峰区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621021,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"庆城县",
        "citysort":"3262",
        "citycode":"621021",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市庆城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621022,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"环县",
        "citysort":"3263",
        "citycode":"621022",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市环县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621023,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"华池县",
        "citysort":"3264",
        "citycode":"621023",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市华池县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621024,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"合水县",
        "citysort":"3265",
        "citycode":"621024",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市合水县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621025,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"正宁县",
        "citysort":"3266",
        "citycode":"621025",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市正宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621026,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"宁县",
        "citysort":"3267",
        "citycode":"621026",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621027,
        "pcityid":"621000",
        "pcityids":"1,620000,621000,",
        "cityname":"镇原县",
        "citysort":"3268",
        "citycode":"621027",
        "citytype":"4",
        "city_full_name":"甘肃省庆阳市镇原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621101,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"市辖区",
        "citysort":"3270",
        "citycode":"621101",
        "citytype":"4",
        "city_full_name":"甘肃省定*市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621102,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"安定区",
        "citysort":"3271",
        "citycode":"621102",
        "citytype":"4",
        "city_full_name":"甘肃省定*市安定区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621121,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"通渭县",
        "citysort":"3272",
        "citycode":"621121",
        "citytype":"4",
        "city_full_name":"甘肃省定*市通渭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621122,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"陇*县",
        "citysort":"3273",
        "citycode":"621122",
        "citytype":"4",
        "city_full_name":"甘肃省定*市陇*县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621123,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"渭源县",
        "citysort":"3274",
        "citycode":"621123",
        "citytype":"4",
        "city_full_name":"甘肃省定*市渭源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621124,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"临洮县",
        "citysort":"3275",
        "citycode":"621124",
        "citytype":"4",
        "city_full_name":"甘肃省定*市临洮县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621125,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"漳县",
        "citysort":"3276",
        "citycode":"621125",
        "citytype":"4",
        "city_full_name":"甘肃省定*市漳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621126,
        "pcityid":"621100",
        "pcityids":"1,620000,621100,",
        "cityname":"岷县",
        "citysort":"3277",
        "citycode":"621126",
        "citytype":"4",
        "city_full_name":"甘肃省定*市岷县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621201,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"市辖区",
        "citysort":"3279",
        "citycode":"621201",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621202,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"武都区",
        "citysort":"3280",
        "citycode":"621202",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市武都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":621221,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"成县",
        "citysort":"3281",
        "citycode":"621221",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市成县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621222,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"文县",
        "citysort":"3282",
        "citycode":"621222",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市文县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621223,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"宕昌县",
        "citysort":"3283",
        "citycode":"621223",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市宕昌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621224,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"康县",
        "citysort":"3284",
        "citycode":"621224",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市康县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621225,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"*和县",
        "citysort":"3285",
        "citycode":"621225",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市*和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621226,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"礼县",
        "citysort":"3286",
        "citycode":"621226",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市礼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621227,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"徽县",
        "citysort":"3287",
        "citycode":"621227",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市徽县",
        "is_virtual_region":"0"
    },
    {
        "cityid":621228,
        "pcityid":"621200",
        "pcityids":"1,620000,621200,",
        "cityname":"两当县",
        "citysort":"3288",
        "citycode":"621228",
        "citytype":"4",
        "city_full_name":"甘肃省陇南市两当县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622901,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"临夏市",
        "citysort":"3290",
        "citycode":"622901",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州临夏市",
        "is_virtual_region":"0"
    },
    {
        "cityid":622921,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"临夏县",
        "citysort":"3291",
        "citycode":"622921",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州临夏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622922,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"康乐县",
        "citysort":"3292",
        "citycode":"622922",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州康乐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622923,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"永靖县",
        "citysort":"3293",
        "citycode":"622923",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州永靖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622924,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"广河县",
        "citysort":"3294",
        "citycode":"622924",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州广河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622925,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"和政县",
        "citysort":"3295",
        "citycode":"622925",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州和政县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622926,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"东乡族自治县",
        "citysort":"3296",
        "citycode":"622926",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州东乡族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":622927,
        "pcityid":"622900",
        "pcityids":"1,620000,622900,",
        "cityname":"积石山保安族东乡族撒拉族自治县",
        "citysort":"3297",
        "citycode":"622927",
        "citytype":"4",
        "city_full_name":"甘肃省临夏回族自治州积石山保安族东乡族撒拉族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623001,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"合作市",
        "citysort":"3299",
        "citycode":"623001",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州合作市",
        "is_virtual_region":"0"
    },
    {
        "cityid":623021,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"临潭县",
        "citysort":"3300",
        "citycode":"623021",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州临潭县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623022,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"卓尼县",
        "citysort":"3301",
        "citycode":"623022",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州卓尼县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623023,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"舟曲县",
        "citysort":"3302",
        "citycode":"623023",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州舟曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623024,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"迭部县",
        "citysort":"3303",
        "citycode":"623024",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州迭部县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623025,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"玛曲县",
        "citysort":"3304",
        "citycode":"623025",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州玛曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623026,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"碌曲县",
        "citysort":"3305",
        "citycode":"623026",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州碌曲县",
        "is_virtual_region":"0"
    },
    {
        "cityid":623027,
        "pcityid":"623000",
        "pcityids":"1,620000,623000,",
        "cityname":"夏河县",
        "citysort":"3306",
        "citycode":"623027",
        "citytype":"4",
        "city_full_name":"甘肃省甘南藏族自治州夏河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630101,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"市辖区",
        "citysort":"3309",
        "citycode":"630101",
        "citytype":"4",
        "city_full_name":"青海省*宁市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630102,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"城东区",
        "citysort":"3310",
        "citycode":"630102",
        "citytype":"4",
        "city_full_name":"青海省*宁市城东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630103,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"城中区",
        "citysort":"3311",
        "citycode":"630103",
        "citytype":"4",
        "city_full_name":"青海省*宁市城中区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630104,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"城*区",
        "citysort":"3312",
        "citycode":"630104",
        "citytype":"4",
        "city_full_name":"青海省*宁市城*区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630105,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"城北区",
        "citysort":"3313",
        "citycode":"630105",
        "citytype":"4",
        "city_full_name":"青海省*宁市城北区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630121,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"大通回族土族自治县",
        "citysort":"3314",
        "citycode":"630121",
        "citytype":"4",
        "city_full_name":"青海省*宁市大通回族土族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630122,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"湟中县",
        "citysort":"3315",
        "citycode":"630122",
        "citytype":"4",
        "city_full_name":"青海省*宁市湟中县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630123,
        "pcityid":"630100",
        "pcityids":"1,630000,630100,",
        "cityname":"湟源县",
        "citysort":"3316",
        "citycode":"630123",
        "citytype":"4",
        "city_full_name":"青海省*宁市湟源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630202,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"乐都区",
        "citysort":"3318",
        "citycode":"630202",
        "citytype":"4",
        "city_full_name":"青海省海东市乐都区",
        "is_virtual_region":"0"
    },
    {
        "cityid":630221,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"*安县",
        "citysort":"3319",
        "citycode":"630221",
        "citytype":"4",
        "city_full_name":"青海省海东市*安县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630222,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"民和回族土族自治县",
        "citysort":"3320",
        "citycode":"630222",
        "citytype":"4",
        "city_full_name":"青海省海东市民和回族土族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630223,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"互助土族自治县",
        "citysort":"3321",
        "citycode":"630223",
        "citytype":"4",
        "city_full_name":"青海省海东市互助土族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630224,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"化隆回族自治县",
        "citysort":"3322",
        "citycode":"630224",
        "citytype":"4",
        "city_full_name":"青海省海东市化隆回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":630225,
        "pcityid":"630200",
        "pcityids":"1,630000,630200,",
        "cityname":"循化撒拉族自治县",
        "citysort":"3323",
        "citycode":"630225",
        "citytype":"4",
        "city_full_name":"青海省海东市循化撒拉族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632221,
        "pcityid":"632200",
        "pcityids":"1,630000,632200,",
        "cityname":"门源回族自治县",
        "citysort":"3325",
        "citycode":"632221",
        "citytype":"4",
        "city_full_name":"青海省海北藏族自治州门源回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632222,
        "pcityid":"632200",
        "pcityids":"1,630000,632200,",
        "cityname":"祁连县",
        "citysort":"3326",
        "citycode":"632222",
        "citytype":"4",
        "city_full_name":"青海省海北藏族自治州祁连县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632223,
        "pcityid":"632200",
        "pcityids":"1,630000,632200,",
        "cityname":"海晏县",
        "citysort":"3327",
        "citycode":"632223",
        "citytype":"4",
        "city_full_name":"青海省海北藏族自治州海晏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632224,
        "pcityid":"632200",
        "pcityids":"1,630000,632200,",
        "cityname":"刚察县",
        "citysort":"3328",
        "citycode":"632224",
        "citytype":"4",
        "city_full_name":"青海省海北藏族自治州刚察县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632321,
        "pcityid":"632300",
        "pcityids":"1,630000,632300,",
        "cityname":"同仁县",
        "citysort":"3330",
        "citycode":"632321",
        "citytype":"4",
        "city_full_name":"青海省黄南藏族自治州同仁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632322,
        "pcityid":"632300",
        "pcityids":"1,630000,632300,",
        "cityname":"尖扎县",
        "citysort":"3331",
        "citycode":"632322",
        "citytype":"4",
        "city_full_name":"青海省黄南藏族自治州尖扎县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632323,
        "pcityid":"632300",
        "pcityids":"1,630000,632300,",
        "cityname":"泽库县",
        "citysort":"3332",
        "citycode":"632323",
        "citytype":"4",
        "city_full_name":"青海省黄南藏族自治州泽库县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632324,
        "pcityid":"632300",
        "pcityids":"1,630000,632300,",
        "cityname":"河南蒙古族自治县",
        "citysort":"3333",
        "citycode":"632324",
        "citytype":"4",
        "city_full_name":"青海省黄南藏族自治州河南蒙古族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632521,
        "pcityid":"632500",
        "pcityids":"1,630000,632500,",
        "cityname":"共和县",
        "citysort":"3335",
        "citycode":"632521",
        "citytype":"4",
        "city_full_name":"青海省海南藏族自治州共和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632522,
        "pcityid":"632500",
        "pcityids":"1,630000,632500,",
        "cityname":"同德县",
        "citysort":"3336",
        "citycode":"632522",
        "citytype":"4",
        "city_full_name":"青海省海南藏族自治州同德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632523,
        "pcityid":"632500",
        "pcityids":"1,630000,632500,",
        "cityname":"贵德县",
        "citysort":"3337",
        "citycode":"632523",
        "citytype":"4",
        "city_full_name":"青海省海南藏族自治州贵德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632524,
        "pcityid":"632500",
        "pcityids":"1,630000,632500,",
        "cityname":"兴海县",
        "citysort":"3338",
        "citycode":"632524",
        "citytype":"4",
        "city_full_name":"青海省海南藏族自治州兴海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632525,
        "pcityid":"632500",
        "pcityids":"1,630000,632500,",
        "cityname":"贵南县",
        "citysort":"3339",
        "citycode":"632525",
        "citytype":"4",
        "city_full_name":"青海省海南藏族自治州贵南县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632621,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"玛沁县",
        "citysort":"3341",
        "citycode":"632621",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州玛沁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632622,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"班玛县",
        "citysort":"3342",
        "citycode":"632622",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州班玛县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632623,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"甘德县",
        "citysort":"3343",
        "citycode":"632623",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州甘德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632624,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"达日县",
        "citysort":"3344",
        "citycode":"632624",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州达日县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632625,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"久治县",
        "citysort":"3345",
        "citycode":"632625",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州久治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632626,
        "pcityid":"632600",
        "pcityids":"1,630000,632600,",
        "cityname":"玛多县",
        "citysort":"3346",
        "citycode":"632626",
        "citytype":"4",
        "city_full_name":"青海省果洛藏族自治州玛多县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632701,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"玉树市",
        "citysort":"3348",
        "citycode":"632701",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州玉树市",
        "is_virtual_region":"0"
    },
    {
        "cityid":632722,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"杂多县",
        "citysort":"3349",
        "citycode":"632722",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州杂多县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632723,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"称多县",
        "citysort":"3350",
        "citycode":"632723",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州称多县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632724,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"治多县",
        "citysort":"3351",
        "citycode":"632724",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州治多县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632725,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"囊谦县",
        "citysort":"3352",
        "citycode":"632725",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州囊谦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632726,
        "pcityid":"632700",
        "pcityids":"1,630000,632700,",
        "cityname":"曲麻莱县",
        "citysort":"3353",
        "citycode":"632726",
        "citytype":"4",
        "city_full_name":"青海省玉树藏族自治州曲麻莱县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632801,
        "pcityid":"632800",
        "pcityids":"1,630000,632800,",
        "cityname":"格尔木市",
        "citysort":"3355",
        "citycode":"632801",
        "citytype":"4",
        "city_full_name":"青海省海*蒙古族藏族自治州格尔木市",
        "is_virtual_region":"0"
    },
    {
        "cityid":632802,
        "pcityid":"632800",
        "pcityids":"1,630000,632800,",
        "cityname":"德令哈市",
        "citysort":"3356",
        "citycode":"632802",
        "citytype":"4",
        "city_full_name":"青海省海*蒙古族藏族自治州德令哈市",
        "is_virtual_region":"0"
    },
    {
        "cityid":632821,
        "pcityid":"632800",
        "pcityids":"1,630000,632800,",
        "cityname":"乌兰县",
        "citysort":"3357",
        "citycode":"632821",
        "citytype":"4",
        "city_full_name":"青海省海*蒙古族藏族自治州乌兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632822,
        "pcityid":"632800",
        "pcityids":"1,630000,632800,",
        "cityname":"都兰县",
        "citysort":"3358",
        "citycode":"632822",
        "citytype":"4",
        "city_full_name":"青海省海*蒙古族藏族自治州都兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":632823,
        "pcityid":"632800",
        "pcityids":"1,630000,632800,",
        "cityname":"天峻县",
        "citysort":"3359",
        "citycode":"632823",
        "citytype":"4",
        "city_full_name":"青海省海*蒙古族藏族自治州天峻县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640101,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"市辖区",
        "citysort":"3362",
        "citycode":"640101",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640104,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"兴庆区",
        "citysort":"3363",
        "citycode":"640104",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市兴庆区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640105,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"*夏区",
        "citysort":"3364",
        "citycode":"640105",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市*夏区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640106,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"金凤区",
        "citysort":"3365",
        "citycode":"640106",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市金凤区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640121,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"永宁县",
        "citysort":"3366",
        "citycode":"640121",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市永宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640122,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"贺兰县",
        "citysort":"3367",
        "citycode":"640122",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市贺兰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640181,
        "pcityid":"640100",
        "pcityids":"1,640000,640100,",
        "cityname":"灵武市",
        "citysort":"3368",
        "citycode":"640181",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区银川市灵武市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640201,
        "pcityid":"640200",
        "pcityids":"1,640000,640200,",
        "cityname":"市辖区",
        "citysort":"3370",
        "citycode":"640201",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区石嘴山市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640202,
        "pcityid":"640200",
        "pcityids":"1,640000,640200,",
        "cityname":"大武口区",
        "citysort":"3371",
        "citycode":"640202",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区石嘴山市大武口区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640205,
        "pcityid":"640200",
        "pcityids":"1,640000,640200,",
        "cityname":"惠农区",
        "citysort":"3372",
        "citycode":"640205",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区石嘴山市惠农区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640221,
        "pcityid":"640200",
        "pcityids":"1,640000,640200,",
        "cityname":"*罗县",
        "citysort":"3373",
        "citycode":"640221",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区石嘴山市*罗县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640301,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"市辖区",
        "citysort":"3375",
        "citycode":"640301",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640302,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"利通区",
        "citysort":"3376",
        "citycode":"640302",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市利通区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640303,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"红寺堡区",
        "citysort":"3377",
        "citycode":"640303",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市红寺堡区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640323,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"盐池县",
        "citysort":"3378",
        "citycode":"640323",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市盐池县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640324,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"同心县",
        "citysort":"3379",
        "citycode":"640324",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市同心县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640381,
        "pcityid":"640300",
        "pcityids":"1,640000,640300,",
        "cityname":"青铜峡市",
        "citysort":"3380",
        "citycode":"640381",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区吴忠市青铜峡市",
        "is_virtual_region":"0"
    },
    {
        "cityid":640401,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"市辖区",
        "citysort":"3382",
        "citycode":"640401",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640402,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"原州区",
        "citysort":"3383",
        "citycode":"640402",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市原州区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640422,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"*吉县",
        "citysort":"3384",
        "citycode":"640422",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市*吉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640423,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"隆德县",
        "citysort":"3385",
        "citycode":"640423",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市隆德县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640424,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"泾源县",
        "citysort":"3386",
        "citycode":"640424",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市泾源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640425,
        "pcityid":"640400",
        "pcityids":"1,640000,640400,",
        "cityname":"彭阳县",
        "citysort":"3387",
        "citycode":"640425",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区固原市彭阳县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640501,
        "pcityid":"640500",
        "pcityids":"1,640000,640500,",
        "cityname":"市辖区",
        "citysort":"3389",
        "citycode":"640501",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区中卫市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640502,
        "pcityid":"640500",
        "pcityids":"1,640000,640500,",
        "cityname":"沙坡头区",
        "citysort":"3390",
        "citycode":"640502",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区中卫市沙坡头区",
        "is_virtual_region":"0"
    },
    {
        "cityid":640521,
        "pcityid":"640500",
        "pcityids":"1,640000,640500,",
        "cityname":"中宁县",
        "citysort":"3391",
        "citycode":"640521",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区中卫市中宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":640522,
        "pcityid":"640500",
        "pcityids":"1,640000,640500,",
        "cityname":"海原县",
        "citysort":"3392",
        "citycode":"640522",
        "citytype":"4",
        "city_full_name":"宁夏回族自治区中卫市海原县",
        "is_virtual_region":"0"
    },
    {
        "cityid":650101,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"市辖区",
        "citysort":"3395",
        "citycode":"650101",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650102,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"天山区",
        "citysort":"3396",
        "citycode":"650102",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市天山区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650103,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"沙依巴克区",
        "citysort":"3397",
        "citycode":"650103",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市沙依巴克区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650104,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"新市区",
        "citysort":"3398",
        "citycode":"650104",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市新市区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650105,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"水磨沟区",
        "citysort":"3399",
        "citycode":"650105",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市水磨沟区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650106,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"头屯河区",
        "citysort":"3400",
        "citycode":"650106",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市头屯河区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650107,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"达坂城区",
        "citysort":"3401",
        "citycode":"650107",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市达坂城区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650109,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"米东区",
        "citysort":"3402",
        "citycode":"650109",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市米东区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650121,
        "pcityid":"650100",
        "pcityids":"1,650000,650100,",
        "cityname":"乌鲁木齐县",
        "citysort":"3403",
        "citycode":"650121",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区乌鲁木齐市乌鲁木齐县",
        "is_virtual_region":"0"
    },
    {
        "cityid":650201,
        "pcityid":"650200",
        "pcityids":"1,650000,650200,",
        "cityname":"市辖区",
        "citysort":"3405",
        "citycode":"650201",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克拉玛依市市辖区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650202,
        "pcityid":"650200",
        "pcityids":"1,650000,650200,",
        "cityname":"独山子区",
        "citysort":"3406",
        "citycode":"650202",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克拉玛依市独山子区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650203,
        "pcityid":"650200",
        "pcityids":"1,650000,650200,",
        "cityname":"克拉玛依区",
        "citysort":"3407",
        "citycode":"650203",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克拉玛依市克拉玛依区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650204,
        "pcityid":"650200",
        "pcityids":"1,650000,650200,",
        "cityname":"白碱滩区",
        "citysort":"3408",
        "citycode":"650204",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克拉玛依市白碱滩区",
        "is_virtual_region":"0"
    },
    {
        "cityid":650205,
        "pcityid":"650200",
        "pcityids":"1,650000,650200,",
        "cityname":"乌尔禾区",
        "citysort":"3409",
        "citycode":"650205",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克拉玛依市乌尔禾区",
        "is_virtual_region":"0"
    },
    {
        "cityid":652101,
        "pcityid":"652100",
        "pcityids":"1,650000,652100,",
        "cityname":"吐鲁番市",
        "citysort":"3411",
        "citycode":"652101",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区吐鲁番地区吐鲁番市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652122,
        "pcityid":"652100",
        "pcityids":"1,650000,652100,",
        "cityname":"鄯善县",
        "citysort":"3412",
        "citycode":"652122",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区吐鲁番地区鄯善县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652123,
        "pcityid":"652100",
        "pcityids":"1,650000,652100,",
        "cityname":"托克逊县",
        "citysort":"3413",
        "citycode":"652123",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区吐鲁番地区托克逊县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652201,
        "pcityid":"652200",
        "pcityids":"1,650000,652200,",
        "cityname":"哈密市",
        "citysort":"3415",
        "citycode":"652201",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区哈密地区哈密市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652222,
        "pcityid":"652200",
        "pcityids":"1,650000,652200,",
        "cityname":"巴里坤哈萨克自治县",
        "citysort":"3416",
        "citycode":"652222",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区哈密地区巴里坤哈萨克自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652223,
        "pcityid":"652200",
        "pcityids":"1,650000,652200,",
        "cityname":"伊吾县",
        "citysort":"3417",
        "citycode":"652223",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区哈密地区伊吾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652301,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"昌吉市",
        "citysort":"3419",
        "citycode":"652301",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州昌吉市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652302,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"阜康市",
        "citysort":"3420",
        "citycode":"652302",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州阜康市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652323,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"呼图壁县",
        "citysort":"3421",
        "citycode":"652323",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州呼图壁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652324,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"玛纳斯县",
        "citysort":"3422",
        "citycode":"652324",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州玛纳斯县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652325,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"奇台县",
        "citysort":"3423",
        "citycode":"652325",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州奇台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652327,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"吉木萨尔县",
        "citysort":"3424",
        "citycode":"652327",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州吉木萨尔县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652328,
        "pcityid":"652300",
        "pcityids":"1,650000,652300,",
        "cityname":"木垒哈萨克自治县",
        "citysort":"3425",
        "citycode":"652328",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区昌吉回族自治州木垒哈萨克自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652701,
        "pcityid":"652700",
        "pcityids":"1,650000,652700,",
        "cityname":"博乐市",
        "citysort":"3427",
        "citycode":"652701",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区博尔塔拉蒙古自治州博乐市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652702,
        "pcityid":"652700",
        "pcityids":"1,650000,652700,",
        "cityname":"阿拉山口市",
        "citysort":"3428",
        "citycode":"652702",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区博尔塔拉蒙古自治州阿拉山口市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652722,
        "pcityid":"652700",
        "pcityids":"1,650000,652700,",
        "cityname":"精河县",
        "citysort":"3429",
        "citycode":"652722",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区博尔塔拉蒙古自治州精河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652723,
        "pcityid":"652700",
        "pcityids":"1,650000,652700,",
        "cityname":"温泉县",
        "citysort":"3430",
        "citycode":"652723",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区博尔塔拉蒙古自治州温泉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652801,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"库尔勒市",
        "citysort":"3432",
        "citycode":"652801",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州库尔勒市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652822,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"轮台县",
        "citysort":"3433",
        "citycode":"652822",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州轮台县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652823,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"尉犁县",
        "citysort":"3434",
        "citycode":"652823",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州尉犁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652824,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"若羌县",
        "citysort":"3435",
        "citycode":"652824",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州若羌县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652825,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"且末县",
        "citysort":"3436",
        "citycode":"652825",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州且末县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652826,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"焉耆回族自治县",
        "citysort":"3437",
        "citycode":"652826",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州焉耆回族自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652827,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"和静县",
        "citysort":"3438",
        "citycode":"652827",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州和静县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652828,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"和硕县",
        "citysort":"3439",
        "citycode":"652828",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州和硕县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652829,
        "pcityid":"652800",
        "pcityids":"1,650000,652800,",
        "cityname":"博湖县",
        "citysort":"3440",
        "citycode":"652829",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区巴音郭楞蒙古自治州博湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652901,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"阿克苏市",
        "citysort":"3442",
        "citycode":"652901",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区阿克苏市",
        "is_virtual_region":"0"
    },
    {
        "cityid":652922,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"温宿县",
        "citysort":"3443",
        "citycode":"652922",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区温宿县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652923,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"库车县",
        "citysort":"3444",
        "citycode":"652923",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区库车县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652924,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"沙雅县",
        "citysort":"3445",
        "citycode":"652924",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区沙雅县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652925,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"新和县",
        "citysort":"3446",
        "citycode":"652925",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区新和县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652926,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"拜城县",
        "citysort":"3447",
        "citycode":"652926",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区拜城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652927,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"乌什县",
        "citysort":"3448",
        "citycode":"652927",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区乌什县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652928,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"阿瓦提县",
        "citysort":"3449",
        "citycode":"652928",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区阿瓦提县",
        "is_virtual_region":"0"
    },
    {
        "cityid":652929,
        "pcityid":"652900",
        "pcityids":"1,650000,652900,",
        "cityname":"柯坪县",
        "citysort":"3450",
        "citycode":"652929",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿克苏地区柯坪县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653001,
        "pcityid":"653000",
        "pcityids":"1,650000,653000,",
        "cityname":"阿图什市",
        "citysort":"3452",
        "citycode":"653001",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿图什市",
        "is_virtual_region":"0"
    },
    {
        "cityid":653022,
        "pcityid":"653000",
        "pcityids":"1,650000,653000,",
        "cityname":"阿克陶县",
        "citysort":"3453",
        "citycode":"653022",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿克陶县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653023,
        "pcityid":"653000",
        "pcityids":"1,650000,653000,",
        "cityname":"阿合奇县",
        "citysort":"3454",
        "citycode":"653023",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克孜勒苏柯尔克孜自治州阿合奇县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653024,
        "pcityid":"653000",
        "pcityids":"1,650000,653000,",
        "cityname":"乌恰县",
        "citysort":"3455",
        "citycode":"653024",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区克孜勒苏柯尔克孜自治州乌恰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653101,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"喀什市",
        "citysort":"3457",
        "citycode":"653101",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区喀什市",
        "is_virtual_region":"0"
    },
    {
        "cityid":653121,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"疏附县",
        "citysort":"3458",
        "citycode":"653121",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区疏附县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653122,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"疏勒县",
        "citysort":"3459",
        "citycode":"653122",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区疏勒县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653123,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"英吉沙县",
        "citysort":"3460",
        "citycode":"653123",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区英吉沙县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653124,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"泽普县",
        "citysort":"3461",
        "citycode":"653124",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区泽普县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653125,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"莎车县",
        "citysort":"3462",
        "citycode":"653125",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区莎车县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653126,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"叶城县",
        "citysort":"3463",
        "citycode":"653126",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区叶城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653127,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"麦盖提县",
        "citysort":"3464",
        "citycode":"653127",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区麦盖提县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653128,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"岳普湖县",
        "citysort":"3465",
        "citycode":"653128",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区岳普湖县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653129,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"伽师县",
        "citysort":"3466",
        "citycode":"653129",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区伽师县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653130,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"巴楚县",
        "citysort":"3467",
        "citycode":"653130",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区巴楚县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653131,
        "pcityid":"653100",
        "pcityids":"1,650000,653100,",
        "cityname":"塔什库尔干塔吉克自治县",
        "citysort":"3468",
        "citycode":"653131",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区喀什地区塔什库尔干塔吉克自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653201,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"和田市",
        "citysort":"3470",
        "citycode":"653201",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区和田市",
        "is_virtual_region":"0"
    },
    {
        "cityid":653221,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"和田县",
        "citysort":"3471",
        "citycode":"653221",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区和田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653222,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"墨玉县",
        "citysort":"3472",
        "citycode":"653222",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区墨玉县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653223,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"皮山县",
        "citysort":"3473",
        "citycode":"653223",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区皮山县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653224,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"洛浦县",
        "citysort":"3474",
        "citycode":"653224",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区洛浦县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653225,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"策勒县",
        "citysort":"3475",
        "citycode":"653225",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区策勒县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653226,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"于田县",
        "citysort":"3476",
        "citycode":"653226",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区于田县",
        "is_virtual_region":"0"
    },
    {
        "cityid":653227,
        "pcityid":"653200",
        "pcityids":"1,650000,653200,",
        "cityname":"民丰县",
        "citysort":"3477",
        "citycode":"653227",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区和田地区民丰县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654002,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"伊宁市",
        "citysort":"3479",
        "citycode":"654002",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州伊宁市",
        "is_virtual_region":"0"
    },
    {
        "cityid":654003,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"奎屯市",
        "citysort":"3480",
        "citycode":"654003",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州奎屯市",
        "is_virtual_region":"0"
    },
    {
        "cityid":654021,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"伊宁县",
        "citysort":"3481",
        "citycode":"654021",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州伊宁县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654022,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"察布查尔锡伯自治县",
        "citysort":"3482",
        "citycode":"654022",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州察布查尔锡伯自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654023,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"霍城县",
        "citysort":"3483",
        "citycode":"654023",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州霍城县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654024,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"巩留县",
        "citysort":"3484",
        "citycode":"654024",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州巩留县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654025,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"新源县",
        "citysort":"3485",
        "citycode":"654025",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州新源县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654026,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"昭苏县",
        "citysort":"3486",
        "citycode":"654026",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州昭苏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654027,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"特克斯县",
        "citysort":"3487",
        "citycode":"654027",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州特克斯县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654028,
        "pcityid":"654000",
        "pcityids":"1,650000,654000,",
        "cityname":"尼勒克县",
        "citysort":"3488",
        "citycode":"654028",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区伊犁哈萨克自治州尼勒克县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654201,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"塔城市",
        "citysort":"3490",
        "citycode":"654201",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区塔城市",
        "is_virtual_region":"0"
    },
    {
        "cityid":654202,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"乌苏市",
        "citysort":"3491",
        "citycode":"654202",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区乌苏市",
        "is_virtual_region":"0"
    },
    {
        "cityid":654221,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"额敏县",
        "citysort":"3492",
        "citycode":"654221",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区额敏县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654223,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"沙湾县",
        "citysort":"3493",
        "citycode":"654223",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区沙湾县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654224,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"托里县",
        "citysort":"3494",
        "citycode":"654224",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区托里县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654225,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"裕民县",
        "citysort":"3495",
        "citycode":"654225",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区裕民县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654226,
        "pcityid":"654200",
        "pcityids":"1,650000,654200,",
        "cityname":"和布克赛尔蒙古自治县",
        "citysort":"3496",
        "citycode":"654226",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区塔城地区和布克赛尔蒙古自治县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654301,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"阿勒泰市",
        "citysort":"3498",
        "citycode":"654301",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区阿勒泰市",
        "is_virtual_region":"0"
    },
    {
        "cityid":654321,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"布尔津县",
        "citysort":"3499",
        "citycode":"654321",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区布尔津县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654322,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"富蕴县",
        "citysort":"3500",
        "citycode":"654322",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区富蕴县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654323,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"福海县",
        "citysort":"3501",
        "citycode":"654323",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区福海县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654324,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"哈巴河县",
        "citysort":"3502",
        "citycode":"654324",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区哈巴河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654325,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"青河县",
        "citysort":"3503",
        "citycode":"654325",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区青河县",
        "is_virtual_region":"0"
    },
    {
        "cityid":654326,
        "pcityid":"654300",
        "pcityids":"1,650000,654300,",
        "cityname":"吉木乃县",
        "citysort":"3504",
        "citycode":"654326",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区阿勒泰地区吉木乃县",
        "is_virtual_region":"0"
    },
    {
        "cityid":659001,
        "pcityid":"659000",
        "pcityids":"1,650000,659000,",
        "cityname":"石河子市",
        "citysort":"3506",
        "citycode":"659001",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区自治区直辖县级行政区划石河子市",
        "is_virtual_region":"0"
    },
    {
        "cityid":659002,
        "pcityid":"659000",
        "pcityids":"1,650000,659000,",
        "cityname":"阿拉尔市",
        "citysort":"3507",
        "citycode":"659002",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区自治区直辖县级行政区划阿拉尔市",
        "is_virtual_region":"0"
    },
    {
        "cityid":659003,
        "pcityid":"659000",
        "pcityids":"1,650000,659000,",
        "cityname":"图木舒克市",
        "citysort":"3508",
        "citycode":"659003",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区自治区直辖县级行政区划图木舒克市",
        "is_virtual_region":"0"
    },
    {
        "cityid":659004,
        "pcityid":"659000",
        "pcityids":"1,650000,659000,",
        "cityname":"五家渠市",
        "citysort":"3509",
        "citycode":"659004",
        "citytype":"4",
        "city_full_name":"新疆维吾尔自治区自治区直辖县级行政区划五家渠市",
        "is_virtual_region":"0"
    }
];
posted @ 2018-03-25 21:09  放咩咩的星星  阅读(390)  评论(0编辑  收藏  举报