HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/ww.snodshop.com/Public//Database/akmall.sql
SET FOREIGN_KEY_CHECKS=0;
 
DROP TABLE IF EXISTS `akmall_advert`;
CREATE TABLE `akmall_advert` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL DEFAULT '0',
  `name` varchar(100) NOT NULL,
  `banner` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `link` varchar(255) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `target` enum('_blank','_self') NOT NULL,
  `description` mediumtext NOT NULL,
  `sort_order` mediumint(5) NOT NULL DEFAULT '0',
  `create_time` int(10) NOT NULL,
  `type` enum('幻灯片','广告') NOT NULL DEFAULT '幻灯片',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='广告幻灯片表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_alipay_log
-- ----------------------------
DROP TABLE IF EXISTS `akmall_alipay_log`;
CREATE TABLE `akmall_alipay_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `pay_type` tinyint(1) NOT NULL DEFAULT '1',
  `discount` mediumint(5) DEFAULT NULL,
  `payment_type` varchar(255) DEFAULT NULL,
  `subject` varchar(255) NOT NULL,
  `trade_no` varchar(64) NOT NULL,
  `buyer_email` varchar(32) DEFAULT NULL,
  `gmt_create` datetime DEFAULT NULL,
  `notify_type` varchar(50) DEFAULT NULL,
  `quantity` mediumint(5) DEFAULT NULL,
  `out_trade_no` varchar(32) NOT NULL,
  `seller_id` varchar(30) DEFAULT NULL,
  `notify_time` datetime NOT NULL,
  `trade_status` varchar(50) NOT NULL DEFAULT '',
  `is_total_fee_adjust` char(1) DEFAULT NULL,
  `total_fee` decimal(8,2) NOT NULL,
  `gmt_payment` datetime DEFAULT NULL,
  `seller_email` varchar(32) NOT NULL DEFAULT '',
  `price` decimal(12,0) DEFAULT NULL,
  `buyer_id` varchar(30) DEFAULT NULL,
  `notify_id` varchar(32) DEFAULT NULL,
  `use_coupon` char(1) DEFAULT NULL,
  `sign_type` varchar(32) DEFAULT NULL,
  `sign` varchar(50) DEFAULT NULL,
  `body` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `out_trade_no` (`out_trade_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='支付宝支付记录-akmall.cc';

-- ----------------------------
-- Table structure for akmall_article
-- ----------------------------
DROP TABLE IF EXISTS `akmall_article`;
CREATE TABLE `akmall_article` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(12) NOT NULL DEFAULT '0',
  `name` varchar(100) NOT NULL,
  `brief` text,
  `tags` varchar(100) NOT NULL DEFAULT '',
  `image` varchar(255) NOT NULL DEFAULT '',
  `status` tinyint(1) NOT NULL,
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0',
  `content` longtext NOT NULL,
  `is_delete` tinyint(1) NOT NULL DEFAULT '0',
  `is_frozen` tinyint(1) NOT NULL DEFAULT '0',
  `update_time` int(10) NOT NULL,
  `add_time` int(10) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `title` (`name`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_category
-- ----------------------------
DROP TABLE IF EXISTS `akmall_category`;
CREATE TABLE `akmall_category` (
  `id` int(12) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(25) NOT NULL,
  `type` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` mediumint(5) NOT NULL DEFAULT '0',
  `image` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品分类表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_code
-- ----------------------------
DROP TABLE IF EXISTS `akmall_code`;
CREATE TABLE `akmall_code` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `mobile` varchar(16) NOT NULL,
  `item_id` int(12) NOT NULL DEFAULT '0',
  `code` varchar(10) NOT NULL,
  `type` tinyint(4) NOT NULL DEFAULT '1',
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `add_time` int(10) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `mobile` (`mobile`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_comments
-- ----------------------------
DROP TABLE IF EXISTS `akmall_comments`;
CREATE TABLE `akmall_comments` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `item_id` int(12) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `title` varchar(50) DEFAULT NULL,
  `name` varchar(25) NOT NULL,
  `mobile` varchar(15) NOT NULL,
  `region` varchar(100) NOT NULL,
  `content` text NOT NULL,
  `reply_content` text,
  `start` varchar(20) DEFAULT '5',
  `add_time` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='评论表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_coupon
-- ----------------------------
DROP TABLE IF EXISTS `akmall_coupon`;
CREATE TABLE `akmall_coupon` (
  `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) DEFAULT NULL,
  `code` varchar(12) DEFAULT NULL,
  `types` tinyint(1) NOT NULL DEFAULT '1',
  `value` float(12,0) DEFAULT NULL,
  `is_used` tinyint(1) NOT NULL DEFAULT '0',
  `used_user` int(12) NOT NULL DEFAULT '0',
  `used_time` int(11) DEFAULT NULL,
  `start_time` int(11) DEFAULT NULL,
  `expire_time` int(11) DEFAULT NULL,
  `add_time` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_item
-- ----------------------------
DROP TABLE IF EXISTS `akmall_item`;
CREATE TABLE `akmall_item` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT '1',
  `user_pid` int(11) NOT NULL DEFAULT '0',
  `sn` varchar(15) NOT NULL,
  `category_id` int(12) NOT NULL DEFAULT '0',
  `name` varchar(200) NOT NULL,
  `aliasname` varchar(100) NOT NULL,
  `brief` varchar(255) NOT NULL DEFAULT '',
  `tags` varchar(100) NOT NULL DEFAULT '',
  `original_price` decimal(12,0) NOT NULL DEFAULT '0.00',
  `price` decimal(12,0) NOT NULL COMMENT '价格',
  `quantity` int(12) NOT NULL DEFAULT '1000',
  `salenum` int(12) NOT NULL DEFAULT '0',
  `min_num` tinyint(3) DEFAULT '0',
  `max_num` mediumint(5) DEFAULT '10',
  `qrcode_pay` tinyint(1) NOT NULL DEFAULT '0',
  `qrcode_pay_info` text,
  `qrcode` varchar(255) NOT NULL DEFAULT '',
  `image` varchar(255) NOT NULL DEFAULT '',
  `thumb` varchar(255) DEFAULT NULL,
  `slideshow` text,
  `status` tinyint(1) NOT NULL,
  `is_hot` tinyint(1) NOT NULL DEFAULT '0',
  `is_big` tinyint(1) NOT NULL DEFAULT '0',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0',
  `params_name` varchar(25) DEFAULT NULL,
  `params` text COMMENT '套餐属性',
  `params_type` varchar(20) DEFAULT NULL,
  `options` text,
  `extends` longtext,
  `content` longtext,
  `payment` varchar(255) DEFAULT '',
  `shipping_id` int(12) NOT NULL DEFAULT '0',
  `remark` text,
  `header` text,
  `javascript` text,
  `is_delete` tinyint(1) NOT NULL DEFAULT '0',
  `is_sent` tinyint(1) NOT NULL DEFAULT '0',
  `is_auto_send` tinyint(1) NOT NULL DEFAULT '0',
  `send_content` text,
  `sms_send` text,
  `timer` int(10) NOT NULL DEFAULT '0',
  `link_pay_url` varchar(255) DEFAULT NULL,
  `link_pay_info` varchar(255) DEFAULT NULL,
  `click` int(12) NOT NULL DEFAULT '1',
  `buy_num` varchar(100) DEFAULT NULL,
  `buy_num_decrease` varchar(100) DEFAULT NULL,
  `redirect_uri` varchar(255) DEFAULT NULL,
  `weixin` text,
  `update_time` int(10) NOT NULL,
  `add_time` int(10) NOT NULL,
  `ipcloak_url` varchar(255) DEFAULT NULL,
  `purchase_url` varchar(255) DEFAULT NULL,
  `domain` varchar(100) DEFAULT NULL,
  `facebook_pixel_id` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `sn` (`sn`),
  KEY `title` (`name`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_item_group
-- ----------------------------
DROP TABLE IF EXISTS `akmall_item_group`;
CREATE TABLE `akmall_item_group` (
  `item_id` int(12) NOT NULL,
  `group_id` int(12) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_item_template
-- ----------------------------
DROP TABLE IF EXISTS `akmall_item_template`;
CREATE TABLE `akmall_item_template` (
  `id` bigint(20) NOT NULL COMMENT '产品id',
  `theme` varchar(25) NOT NULL,
  `template` varchar(25) NOT NULL,
  `options` text NOT NULL,
  `width` varchar(20) NOT NULL DEFAULT '750px',
  `show_notice` tinyint(1) NOT NULL DEFAULT '0',
  `show_comments` int(3) NOT NULL DEFAULT '0',
  `info` text,
  `color` varchar(255) NOT NULL,
  `redirect_uri` varchar(255) DEFAULT NULL,
  `extend` longtext,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='产品模板表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_order
-- ----------------------------
DROP TABLE IF EXISTS `akmall_order`;
CREATE TABLE `akmall_order` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(12) NOT NULL,
  `user_pid` int(12) NOT NULL DEFAULT '0',
  `seller_id` int(12) NOT NULL DEFAULT '1',
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `order_no` varchar(20) NOT NULL,
  `order_page` varchar(15) NOT NULL DEFAULT 'single',
  `channel_id` varchar(20) DEFAULT NULL,
  `item_id` int(12) NOT NULL,
  `item_sn` varchar(25) DEFAULT NULL,
  `item_name` varchar(200) NOT NULL,
  `item_aliasname` varchar(100) NOT NULL,
  `item_params` varchar(255) NOT NULL,
  `item_extends` text,
  `item_price` decimal(12,0) NOT NULL DEFAULT '0.00',
  `order_price` decimal(12,0) NOT NULL,
  `shipping_price` decimal(12,0) NOT NULL DEFAULT '0.00',
  `total_price` decimal(12,0) NOT NULL DEFAULT '0.00',
  `quantity` mediumint(5) NOT NULL DEFAULT '1',
  `datetime` varchar(100) NOT NULL,
  `name` varchar(20) NOT NULL,
  `idnum` varchar(20) NOT NULL,
  `mobile` varchar(15) NOT NULL,
  `phone` varchar(20) NOT NULL DEFAULT '',
  `region` varchar(150) NOT NULL DEFAULT '',
  `province` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `area` varchar(50) DEFAULT NULL,
  `address` varchar(255) NOT NULL,
  `zcode` varchar(10) NOT NULL DEFAULT '',
  `qq` varchar(20) NOT NULL,
  `weixin` varchar(50) DEFAULT NULL,
  `mail` varchar(50) NOT NULL DEFAULT '',
  `remark` varchar(100) NOT NULL,
  `payment` varchar(20) NOT NULL DEFAULT '1',
  `payment_num` varchar(20) NOT NULL,
  `delivery_name` varchar(20) NOT NULL,
  `delivery_no` varchar(25) NOT NULL,
  `delivery_status` tinyint(1) NOT NULL DEFAULT '9',
  `device` tinyint(1) NOT NULL DEFAULT '1',
  `add_ip` varchar(15) NOT NULL DEFAULT '',
  `is_delete` tinyint(1) NOT NULL,
  `is_sent` tinyint(1) NOT NULL,
  `url` varchar(255) DEFAULT NULL,
  `referer` varchar(255) DEFAULT NULL,
  `add_time` int(10) NOT NULL,
  `file` varchar(255) DEFAULT NULL,
  `update_time` int(10) NOT NULL,
  `update_user_id` int(12) NOT NULL DEFAULT '0',
  `coupon` varchar(12) DEFAULT NULL,
  `qudao` varchar(30) DEFAULT NULL,
  `qudaonum` varchar(30) DEFAULT NULL,
  `creditcard` text,
  `is_read` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品订单表-akmall.cc';
 

-- ----------------------------
-- Table structure for akmall_order_fengye
-- ----------------------------
DROP TABLE IF EXISTS `akmall_order_fengye`;
CREATE TABLE `akmall_order_fengye` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `adgroup_id` varchar(20) DEFAULT NULL,
  `adgroup_name` varchar(200) DEFAULT NULL,
  `advertiser_id` varchar(20) DEFAULT NULL,
  `account_id` varchar(20) DEFAULT NULL,
  `order_id` varchar(20) DEFAULT NULL,
  `page_name` varchar(100) DEFAULT NULL,
  `package_info` text,
  `quantity` int(5) DEFAULT NULL,
  `price` decimal(12,0) DEFAULT NULL,
  `total_price` decimal(12,0) DEFAULT NULL,
  `user_name` varchar(20) DEFAULT NULL,
  `user_phone` varchar(20) DEFAULT NULL,
  `user_province` varchar(50) DEFAULT NULL,
  `user_city` varchar(50) DEFAULT NULL,
  `user_area` varchar(50) DEFAULT NULL,
  `user_address` varchar(255) DEFAULT NULL,
  `user_ip` varchar(20) DEFAULT NULL,
  `order_time` datetime DEFAULT NULL,
  `user_message` varchar(100) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `add_time` int(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品订单表';
	


-- ----------------------------
-- Table structure for akmall_order_log
-- ----------------------------
DROP TABLE IF EXISTS `akmall_order_log`;
CREATE TABLE `akmall_order_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `add_time` int(10) NOT NULL,
  `user_id` int(12) NOT NULL,
  `remark` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品订单记录表-akmall.cc';
  
-- ----------------------------
-- Table structure for akmall_qudao
-- ----------------------------
DROP TABLE IF EXISTS `akmall_qudao`;
CREATE TABLE `akmall_qudao` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `sn` varchar(20) NOT NULL DEFAULT '',
  `name` varchar(100) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `add_time` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_receive
-- ----------------------------
DROP TABLE IF EXISTS `akmall_receive`;
CREATE TABLE `akmall_receive` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(12) DEFAULT '0',
  `mobile` varchar(15) DEFAULT NULL,
  `receive_content` text,
  `receive_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_sent
-- ----------------------------
DROP TABLE IF EXISTS `akmall_sent`;
CREATE TABLE `akmall_sent` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(12) DEFAULT '0',
  `order_status` tinyint(1) DEFAULT '0',
  `sent_status` tinyint(1) DEFAULT '0',
  `mobile` varchar(15) DEFAULT NULL,
  `sent_content` text,
  `sent_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_setting
-- ----------------------------
DROP TABLE IF EXISTS `akmall_setting`;
CREATE TABLE `akmall_setting` (
  `name` varchar(50) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='产品系统设置表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_shipping
-- ---------------------------- 
DROP TABLE IF EXISTS `akmall_shipping`;
CREATE TABLE `akmall_shipping` (
  `id` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `less_num` tinyint(4) NOT NULL DEFAULT '1',
  `less_num_cost` decimal(12,0) NOT NULL DEFAULT '0',
  `step_num` tinyint(3) NOT NULL DEFAULT '1',
  `step_num_cost` decimal(12,0) NOT NULL DEFAULT '1',
  `is_free_num` tinyint(1) NOT NULL DEFAULT '0',
  `is_free_cost` tinyint(1) NOT NULL DEFAULT '0',
  `free_num` mediumint(5) NOT NULL DEFAULT '0',
  `free_cost` decimal(12,0) NOT NULL DEFAULT '0',
  `update_time` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='运费模板-akmall.cc';

-- ----------------------------
-- Table structure for akmall_user
-- ---------------------------- 
INSERT INTO `akmall_shipping` VALUES ('1', '满100免运费', '2', '10.00', '1', '2.00', '1', '1', '50', '100.00', '1455506416');
 
DROP TABLE IF EXISTS `akmall_user`;
CREATE TABLE `akmall_user` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `pid` int(12) unsigned NOT NULL DEFAULT '0',
  `group_id` int(12) NOT NULL DEFAULT '0',
  `username` varchar(255) NOT NULL,
  `password` char(32) NOT NULL,
  `role` enum('admin','member','agent') NOT NULL DEFAULT 'admin',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `realname` varchar(50) NOT NULL DEFAULT '',
  `mobile` varchar(15) NOT NULL,
  `qq` varchar(50) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL DEFAULT '',
  `info` mediumtext NOT NULL,
  `is_delete` tinyint(1) NOT NULL DEFAULT '0',
  `login_ip` char(16) NOT NULL,
  `login_time` datetime NOT NULL,
  `create_time` int(10) NOT NULL,
  `update_time` int(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='产品用户表-akmall.cc';

-- ----------------------------
-- Table structure for akmall_user_group
-- ----------------------------
DROP TABLE IF EXISTS `akmall_user_group`;
CREATE TABLE `akmall_user_group` (
  `id` int(12) unsigned NOT NULL AUTO_INCREMENT,
  `role` enum('admin','agent') DEFAULT 'admin',
  `score` int(10) NOT NULL DEFAULT '0',
  `name` varchar(25) NOT NULL,
  `discount` tinyint(3) NOT NULL DEFAULT '100',
  `auth` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for akmall_user_logs
-- ----------------------------
DROP TABLE IF EXISTS `akmall_user_logs`;
CREATE TABLE `akmall_user_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `username` varchar(25) NOT NULL,
  `types` varchar(20) NOT NULL,
  `content` text,
  `add_ip` varchar(15) DEFAULT NULL,
  `add_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

INSERT INTO `akmall_setting` VALUES ('system_close_info', '');
INSERT INTO `akmall_setting` VALUES ('URL_MODEL', '0');
INSERT INTO `akmall_setting` VALUES ('item_quantity', '0');
INSERT INTO `akmall_setting` VALUES ('show_qrcode', '0');
INSERT INTO `akmall_setting` VALUES ('real_notice', '0');
INSERT INTO `akmall_setting` VALUES ('record_order', '1');
INSERT INTO `akmall_setting` VALUES ('repeat_order', '0');
INSERT INTO `akmall_setting` VALUES ('lazyload', '0');
INSERT INTO `akmall_setting` VALUES ('title', 'AK单页订单管理系统企业版');
INSERT INTO `akmall_setting` VALUES ('keywords', 'AK单页订单管理系统企业版');
INSERT INTO `akmall_setting` VALUES ('description', 'AK单页订单管理系统企业版');
INSERT INTO `akmall_setting` VALUES ('footer', '<div style="font-size:14px;">\n<a href="index.php?m=Item&a=detail&id=1&uid=1">關於我們</a> | \n<a href="index.php?m=Item&a=detail&id=3&uid=1">物流條款</a> | \n<a href="index.php?m=Item&a=detail&id=4&uid=1">服務條款</a> | \n<a href="index.php?m=Item&a=detail&id=5&uid=1">隱私協議</a><br />\nCopyright © 2016-2019 <a href="#"  target="_blank">AK单页订单管理系统企业版</a> All Rights Reserved<br /></div>');
INSERT INTO `akmall_setting` VALUES ('notice', '<p style="font-size:12px;">大部分内容都可在后台修改,支持东南亚各国,具体联系微信:liubanyu7514</p>');
INSERT INTO `akmall_setting` VALUES ('payment_global', '1');
INSERT INTO `akmall_setting` VALUES ('payOnDelivery_status', '1');
INSERT INTO `akmall_setting` VALUES ('payOnDelivery_discount', '0');
INSERT INTO `akmall_setting` VALUES ('payOnDelivery_discount_info', '注: 我們會宅配送貨到您府上,請您注意查收。');
INSERT INTO `akmall_setting` VALUES ('bankpay_status', '0');
INSERT INTO `akmall_setting` VALUES ('bankpay_discount', '0');
INSERT INTO `akmall_setting` VALUES ('bankpay_info', '注: 我們會宅配送貨到您府上,請您注意查收。');
INSERT INTO `akmall_setting` VALUES ('alipay_status', '0');
INSERT INTO `akmall_setting` VALUES ('alipay_type', '[\"1\",\"2\"]');
INSERT INTO `akmall_setting` VALUES ('alipay_mail', '');
INSERT INTO `akmall_setting` VALUES ('alipay_pid', '');
INSERT INTO `akmall_setting` VALUES ('alipay_key', '');
INSERT INTO `akmall_setting` VALUES ('alipay_discount', '0.95');
INSERT INTO `akmall_setting` VALUES ('alipay_discount_info', '支付宝95折');
INSERT INTO `akmall_setting` VALUES ('wxpay_status', '0');
INSERT INTO `akmall_setting` VALUES ('wxpay_appid', '');
INSERT INTO `akmall_setting` VALUES ('wxpay_mchid', '');
INSERT INTO `akmall_setting` VALUES ('wxpay_key', '');
INSERT INTO `akmall_setting` VALUES ('wxpay_secret', '');
INSERT INTO `akmall_setting` VALUES ('wxpay_type', '[\"1\",\"2\"]');
INSERT INTO `akmall_setting` VALUES ('wxpay_discount', '1');
INSERT INTO `akmall_setting` VALUES ('wxpay_discount_info', '');
INSERT INTO `akmall_setting` VALUES ('safe_check_mobile', '0');
INSERT INTO `akmall_setting` VALUES ('safe_mobile_limit', '100');
INSERT INTO `akmall_setting` VALUES ('safe_order_interval', '20');
INSERT INTO `akmall_setting` VALUES ('safe_ip_limit', '20');
INSERT INTO `akmall_setting` VALUES ('safe_ip_denied', '');
INSERT INTO `akmall_setting` VALUES ('result_info', '');
INSERT INTO `akmall_setting` VALUES ('html_file', 'Html/');
INSERT INTO `akmall_setting` VALUES ('DEFAULT_LANG', 'zh-cn');
INSERT INTO `akmall_setting` VALUES ('export_type', 'excel');
INSERT INTO `akmall_setting` VALUES ('export_order', '[\"id\",\"order_no\",\"item_sn\",\"item_name\",\"item_params\",\"item_extends\",\"quantity\",\"total_price\",\"name\",\"mobile\",\"province\",\"city\",\"area\",\"address\",\"payment\",\"remark\",\"weixin\",\"channel_id\"]');
INSERT INTO `akmall_setting` VALUES ('creditcard_status', '0');
INSERT INTO `akmall_setting` VALUES ('creditcard_mid', '61953');
INSERT INTO `akmall_setting` VALUES ('mail_send', '0');
INSERT INTO `akmall_setting` VALUES ('mail_proxy', '0');
INSERT INTO `akmall_setting` VALUES ('delivery_setting', '[\"jet\",\"ems\",\"jd\",\"tcat\",\"shunfeng\",\"hct\",\"kerrytj\",\"jne\"]');
INSERT INTO `akmall_setting` VALUES ('shop_links', '1');
INSERT INTO `akmall_setting` VALUES ('system_template', 'akmall');
INSERT INTO `akmall_setting` VALUES ('order_options', '[\"product\",\"extends\",\"price\",\"quantity\",\"payment\",\"name\",\"mobile\",\"region\",\"address\",\"mail\",\"remark\"]');
INSERT INTO `akmall_setting` VALUES ('show_notice', '1');
INSERT INTO `akmall_setting` VALUES ('slider_show', '1');
INSERT INTO `akmall_setting` VALUES ('slider_num', '5');
INSERT INTO `akmall_setting` VALUES ('item_hot_show', '1');
INSERT INTO `akmall_setting` VALUES ('item_hot_num', '12');
INSERT INTO `akmall_setting` VALUES ('item_category_show', '1');
INSERT INTO `akmall_setting` VALUES ('item_category_num', '10');
INSERT INTO `akmall_setting` VALUES ('item_category_id', '1,2,3,4');
INSERT INTO `akmall_setting` VALUES ('show_header', '1');
INSERT INTO `akmall_setting` VALUES ('show_bottom_nav', '1');
INSERT INTO `akmall_setting` VALUES ('system_status', '1');
INSERT INTO `akmall_setting` VALUES ('theme_color', 'F34242');
INSERT INTO `akmall_setting` VALUES ('contact_tel', '后台设置清空内容就不显示');
INSERT INTO `akmall_setting` VALUES ('contact_phone', '');
INSERT INTO `akmall_setting` VALUES ('contact_facebook', 'https://');
INSERT INTO `akmall_setting` VALUES ('contact_messenger', 'https://');
INSERT INTO `akmall_setting` VALUES ('contact_line', 'LineId');
INSERT INTO `akmall_setting` VALUES ('contact_line_url', 'https://line.me/xxxx');
INSERT INTO `akmall_setting` VALUES ('contact_whatsapp', '8617600000000');
INSERT INTO `akmall_setting` VALUES ('contact_qq', '');
INSERT INTO `akmall_setting` VALUES ('is_encode', '0');
INSERT INTO `akmall_setting` VALUES ('facebook_pixel_id', '9999,8888,555');
INSERT INTO `akmall_setting` VALUES ('sms_send', '0');
INSERT INTO `akmall_setting` VALUES ('sms_admin', '0');
INSERT INTO `akmall_setting` VALUES ('sms_admin_mobile', '');
INSERT INTO `akmall_setting` VALUES ('sms_account', '');
INSERT INTO `akmall_setting` VALUES ('sms_password', '');
INSERT INTO `akmall_setting` VALUES ('mail_send_status', '[]');
INSERT INTO `akmall_setting` VALUES ('mail_smtp', 'smtp.qq.com');
INSERT INTO `akmall_setting` VALUES ('mail_ssl', 'ssl');
INSERT INTO `akmall_setting` VALUES ('mail_port', '465');
INSERT INTO `akmall_setting` VALUES ('mail_account', '');
INSERT INTO `akmall_setting` VALUES ('mail_password', '');
INSERT INTO `akmall_setting` VALUES ('mail_to', 'admin@akmall.cc');
INSERT INTO `akmall_setting` VALUES ('mail_title', '【[akmallStatus]】[akmallTitle]');
INSERT INTO `akmall_setting` VALUES ('logo_pc', '');
INSERT INTO `akmall_setting` VALUES ('logo', '');
INSERT INTO `akmall_setting` VALUES ('system_theme', 'akmall');
INSERT INTO `akmall_setting` VALUES ('relate_item_show', '1');
INSERT INTO `akmall_setting` VALUES ('relate_item_num', '3');
INSERT INTO `akmall_setting` VALUES ('codepay_status', '0');
INSERT INTO `akmall_setting` VALUES ('codepay_type', '1');
INSERT INTO `akmall_setting` VALUES ('codepay_id', '34676');
INSERT INTO `akmall_setting` VALUES ('codepay_discount', '1');
INSERT INTO `akmall_setting` VALUES ('codepay_discount_info', '打开微信,选择扫码支付');
INSERT INTO `akmall_setting` VALUES ('region', 'region');
INSERT INTO `akmall_setting` VALUES ('main_domain', '');
INSERT INTO `akmall_setting` VALUES ('paypay_status', '0');
INSERT INTO `akmall_setting` VALUES ('redirect_domains', '');
INSERT INTO `akmall_setting` VALUES ('creditcard_gateway', '61953001');
INSERT INTO `akmall_setting` VALUES ('creditcard_key', 'H482lv4j');
INSERT INTO `akmall_setting` VALUES ('creditcard_discount', '1');
INSERT INTO `akmall_setting` VALUES ('creditcard_discount_info', '信用卡支付');
INSERT INTO `akmall_setting` VALUES ('creditcard_url', 'https://pay.sslshoppingmall.com/TPInterface');
INSERT INTO `akmall_setting` VALUES ('order_backup_url', '');
INSERT INTO `akmall_setting` VALUES ('paypay_user', '');
INSERT INTO `akmall_setting` VALUES ('paypay_key', '');
INSERT INTO `akmall_setting` VALUES ('paypay_discount', '');
INSERT INTO `akmall_setting` VALUES ('paypay_discount_info', '');


DROP TABLE IF EXISTS `akmall_region`;
CREATE TABLE `akmall_region` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `pid` bigint(20) DEFAULT NULL,
  `level` varchar(20) DEFAULT NULL,
  `status` tinyint(1) DEFAULT '1',
  `name` varchar(50) DEFAULT NULL,
  `info` text,
  `code` varchar(20) DEFAULT NULL,
  `item` varchar(20) DEFAULT NULL,
  `lang` varchar(20) DEFAULT NULL,
  `display_order` bigint(20) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9679 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of akmall_region
-- ----------------------------
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(1, 0, '', 1, '高雄市', '', '0', '711', 'zh-tw', 1000),
(2, 0, '', 1, '花蓮縣', '', '1', '711', 'zh-tw', 1000),
(3, 0, '', 1, '基隆市', '', '2', '711', 'zh-tw', 1000),
(4, 0, '', 1, '嘉義市', '', '3', '711', 'zh-tw', 1000),
(5, 0, '', 1, '嘉義縣', '', '4', '711', 'zh-tw', 1000),
(6, 0, '', 1, '金門縣', '', '5', '711', 'zh-tw', 1000),
(7, 0, '', 1, '連江縣', '', '6', '711', 'zh-tw', 1000),
(8, 0, '', 1, '苗栗縣', '', '7', '711', 'zh-tw', 1000),
(9, 0, '', 1, '南投縣', '', '8', '711', 'zh-tw', 1000),
(10, 0, '', 1, '澎湖縣', '', '9', '711', 'zh-tw', 1000),
(11, 0, '', 1, '屏東縣', '', '10', '711', 'zh-tw', 1000),
(12, 0, '', 1, '台北市', '', '11', '711', 'zh-tw', 1000),
(13, 0, '', 1, '台東縣', '', '12', '711', 'zh-tw', 1000),
(14, 0, '', 1, '台南市', '', '13', '711', 'zh-tw', 1000),
(15, 0, '', 1, '台中市', '', '14', '711', 'zh-tw', 1000),
(16, 0, '', 1, '桃園市', '', '15', '711', 'zh-tw', 1000),
(17, 0, '', 1, '新北市', '', '16', '711', 'zh-tw', 1000),
(18, 0, '', 1, '新竹市', '', '17', '711', 'zh-tw', 1000),
(19, 0, '', 1, '新竹縣', '', '18', '711', 'zh-tw', 1000),
(20, 0, '', 1, '宜蘭縣', '', '19', '711', 'zh-tw', 1000),
(21, 0, '', 1, '雲林縣', '', '20', '711', 'zh-tw', 1000),
(22, 0, '', 1, '彰化縣', '', '21', '711', 'zh-tw', 1000),
(23, 1, '1', 1, '阿蓮區', '', '0', '711', 'zh-tw', 1000),
(24, 1, '1', 1, '大寮區', '', '1', '711', 'zh-tw', 1000),
(25, 1, '1', 1, '大社區', '', '2', '711', 'zh-tw', 1000),
(26, 1, '1', 1, '大樹區', '', '3', '711', 'zh-tw', 1000),
(27, 1, '1', 1, '鳳山區', '', '4', '711', 'zh-tw', 1000),
(28, 1, '1', 1, '岡山區', '', '5', '711', 'zh-tw', 1000),
(29, 1, '1', 1, '鼓山區', '', '6', '711', 'zh-tw', 1000),
(30, 1, '1', 1, '湖內區', '', '7', '711', 'zh-tw', 1000),
(31, 1, '1', 1, '甲仙區', '', '8', '711', 'zh-tw', 1000),
(32, 1, '1', 1, '林園區', '', '9', '711', 'zh-tw', 1000),
(33, 1, '1', 1, '苓雅區', '', '10', '711', 'zh-tw', 1000),
(34, 1, '1', 1, '六龜區', '', '11', '711', 'zh-tw', 1000),
(35, 1, '1', 1, '路竹區', '', '12', '711', 'zh-tw', 1000),
(36, 1, '1', 1, '美濃區', '', '13', '711', 'zh-tw', 1000),
(37, 1, '1', 1, '彌陀區', '', '14', '711', 'zh-tw', 1000),
(38, 1, '1', 1, '楠梓加工區', '', '15', '711', 'zh-tw', 1000),
(39, 1, '1', 1, '楠梓區', '', '16', '711', 'zh-tw', 1000),
(40, 1, '1', 1, '內門區', '', '17', '711', 'zh-tw', 1000),
(41, 1, '1', 1, '鳥松區', '', '18', '711', 'zh-tw', 1000),
(42, 1, '1', 1, '旗津區', '', '19', '711', 'zh-tw', 1000),
(43, 1, '1', 1, '旗山區', '', '20', '711', 'zh-tw', 1000),
(44, 1, '1', 1, '前金區', '', '21', '711', 'zh-tw', 1000),
(45, 1, '1', 1, '前鎮區', '', '22', '711', 'zh-tw', 1000),
(46, 1, '1', 1, '橋頭區', '', '23', '711', 'zh-tw', 1000),
(47, 1, '1', 1, '茄萣區', '', '24', '711', 'zh-tw', 1000),
(48, 1, '1', 1, '仁武區', '', '25', '711', 'zh-tw', 1000),
(49, 1, '1', 1, '三民區', '', '26', '711', 'zh-tw', 1000),
(50, 1, '1', 1, '杉林區', '', '27', '711', 'zh-tw', 1000),
(51, 1, '1', 1, '小港區', '', '28', '711', 'zh-tw', 1000),
(52, 1, '1', 1, '新興區', '', '29', '711', 'zh-tw', 1000),
(53, 1, '1', 1, '鹽埕區', '', '30', '711', 'zh-tw', 1000),
(54, 1, '1', 1, '燕巢區', '', '31', '711', 'zh-tw', 1000),
(55, 1, '1', 1, '永安區', '', '32', '711', 'zh-tw', 1000),
(56, 1, '1', 1, '梓官區', '', '33', '711', 'zh-tw', 1000),
(57, 1, '1', 1, '左營區', '', '34', '711', 'zh-tw', 1000),
(58, 2, '2', 1, '豐濱鄉', '', '0', '711', 'zh-tw', 1000),
(59, 2, '2', 1, '鳳林鎮', '', '1', '711', 'zh-tw', 1000),
(60, 2, '2', 1, '富里鄉', '', '2', '711', 'zh-tw', 1000),
(61, 2, '2', 1, '光復鄉', '', '3', '711', 'zh-tw', 1000),
(62, 2, '2', 1, '花蓮市', '', '4', '711', 'zh-tw', 1000),
(63, 2, '2', 1, '吉安鄉', '', '5', '711', 'zh-tw', 1000),
(64, 2, '2', 1, '瑞穗鄉', '', '6', '711', 'zh-tw', 1000),
(65, 2, '2', 1, '壽豐鄉', '', '7', '711', 'zh-tw', 1000),
(66, 2, '2', 1, '新城鄉', '', '8', '711', 'zh-tw', 1000),
(67, 2, '2', 1, '秀林鄉', '', '9', '711', 'zh-tw', 1000),
(68, 2, '2', 1, '玉里鎮', '', '10', '711', 'zh-tw', 1000),
(69, 3, '3', 1, '安樂區', '', '0', '711', 'zh-tw', 1000),
(70, 3, '3', 1, '暖暖區', '', '1', '711', 'zh-tw', 1000),
(71, 3, '3', 1, '七堵區', '', '2', '711', 'zh-tw', 1000),
(72, 3, '3', 1, '仁愛區', '', '3', '711', 'zh-tw', 1000),
(73, 3, '3', 1, '信義區', '', '4', '711', 'zh-tw', 1000),
(74, 3, '3', 1, '中山區', '', '5', '711', 'zh-tw', 1000),
(75, 3, '3', 1, '中正區', '', '6', '711', 'zh-tw', 1000),
(76, 4, '4', 1, '東區', '', '0', '711', 'zh-tw', 1000),
(77, 4, '4', 1, '西區', '', '1', '711', 'zh-tw', 1000),
(78, 5, '5', 1, '阿里山鄉', '', '0', '711', 'zh-tw', 1000),
(79, 5, '5', 1, '布袋鎮', '', '1', '711', 'zh-tw', 1000),
(80, 5, '5', 1, '大林鎮', '', '2', '711', 'zh-tw', 1000),
(81, 5, '5', 1, '大埔鄉', '', '3', '711', 'zh-tw', 1000),
(82, 5, '5', 1, '東石鄉', '', '4', '711', 'zh-tw', 1000),
(83, 5, '5', 1, '番路鄉', '', '5', '711', 'zh-tw', 1000),
(84, 5, '5', 1, '六腳鄉', '', '6', '711', 'zh-tw', 1000),
(85, 5, '5', 1, '鹿草鄉', '', '7', '711', 'zh-tw', 1000),
(86, 5, '5', 1, '梅山鄉', '', '8', '711', 'zh-tw', 1000),
(87, 5, '5', 1, '民雄鄉', '', '9', '711', 'zh-tw', 1000),
(88, 5, '5', 1, '朴子市', '', '10', '711', 'zh-tw', 1000),
(89, 5, '5', 1, '水上鄉', '', '11', '711', 'zh-tw', 1000),
(90, 5, '5', 1, '太保市', '', '12', '711', 'zh-tw', 1000),
(91, 5, '5', 1, '溪口鄉', '', '13', '711', 'zh-tw', 1000),
(92, 5, '5', 1, '新港鄉', '', '14', '711', 'zh-tw', 1000),
(93, 5, '5', 1, '義竹鄉', '', '15', '711', 'zh-tw', 1000),
(94, 5, '5', 1, '中埔鄉', '', '16', '711', 'zh-tw', 1000),
(95, 5, '5', 1, '竹崎鄉', '', '17', '711', 'zh-tw', 1000),
(96, 6, '6', 1, '金城鎮', '', '0', '711', 'zh-tw', 1000),
(97, 6, '6', 1, '金湖鎮', '', '1', '711', 'zh-tw', 1000),
(98, 6, '6', 1, '金寧鄉', '', '2', '711', 'zh-tw', 1000),
(99, 6, '6', 1, '金沙鎮', '', '3', '711', 'zh-tw', 1000),
(100, 6, '6', 1, '烈嶼鄉', '', '4', '711', 'zh-tw', 1000),
(101, 7, '7', 1, '北竿鄉', '', '0', '711', 'zh-tw', 1000),
(102, 7, '7', 1, '東引鄉', '', '1', '711', 'zh-tw', 1000),
(103, 7, '7', 1, '南竿鄉', '', '2', '711', 'zh-tw', 1000),
(104, 8, '8', 1, '大湖鄉', '', '0', '711', 'zh-tw', 1000),
(105, 8, '8', 1, '公館鄉', '', '1', '711', 'zh-tw', 1000),
(106, 8, '8', 1, '後龍鎮', '', '2', '711', 'zh-tw', 1000),
(107, 8, '8', 1, '苗栗市', '', '3', '711', 'zh-tw', 1000),
(108, 8, '8', 1, '南庄鄉', '', '4', '711', 'zh-tw', 1000),
(109, 8, '8', 1, '三灣鄉', '', '5', '711', 'zh-tw', 1000),
(110, 8, '8', 1, '三義鄉', '', '6', '711', 'zh-tw', 1000),
(111, 8, '8', 1, '泰安鄉', '', '7', '711', 'zh-tw', 1000),
(112, 8, '8', 1, '通霄鎮', '', '8', '711', 'zh-tw', 1000),
(113, 8, '8', 1, '銅鑼鄉', '', '9', '711', 'zh-tw', 1000),
(114, 8, '8', 1, '頭份市', '', '10', '711', 'zh-tw', 1000),
(115, 8, '8', 1, '頭屋鄉', '', '11', '711', 'zh-tw', 1000),
(116, 8, '8', 1, '苑裡鎮', '', '12', '711', 'zh-tw', 1000),
(117, 8, '8', 1, '造橋鄉', '', '13', '711', 'zh-tw', 1000),
(118, 8, '8', 1, '竹南鎮', '', '14', '711', 'zh-tw', 1000),
(119, 8, '8', 1, '卓蘭鎮', '', '15', '711', 'zh-tw', 1000),
(120, 9, '9', 1, '草屯鎮', '', '0', '711', 'zh-tw', 1000),
(121, 9, '9', 1, '國姓鄉', '', '1', '711', 'zh-tw', 1000),
(122, 9, '9', 1, '集集鎮', '', '2', '711', 'zh-tw', 1000),
(123, 9, '9', 1, '鹿谷鄉', '', '3', '711', 'zh-tw', 1000),
(124, 9, '9', 1, '名間鄉', '', '4', '711', 'zh-tw', 1000),
(125, 9, '9', 1, '南投市', '', '5', '711', 'zh-tw', 1000),
(126, 9, '9', 1, '埔里鎮', '', '6', '711', 'zh-tw', 1000),
(127, 9, '9', 1, '仁愛鄉', '', '7', '711', 'zh-tw', 1000),
(128, 9, '9', 1, '水里鄉', '', '8', '711', 'zh-tw', 1000),
(129, 9, '9', 1, '信義鄉', '', '9', '711', 'zh-tw', 1000),
(130, 9, '9', 1, '魚池鄉', '', '10', '711', 'zh-tw', 1000),
(131, 9, '9', 1, '竹山鎮', '', '11', '711', 'zh-tw', 1000),
(132, 10, '10', 1, '白沙鄉', '', '0', '711', 'zh-tw', 1000),
(133, 10, '10', 1, '湖西鄉', '', '1', '711', 'zh-tw', 1000),
(134, 10, '10', 1, '馬公市', '', '2', '711', 'zh-tw', 1000),
(135, 10, '10', 1, '七美鄉', '', '3', '711', 'zh-tw', 1000),
(136, 10, '10', 1, '西嶼鄉', '', '4', '711', 'zh-tw', 1000),
(137, 11, '11', 1, '長治鄉', '', '0', '711', 'zh-tw', 1000),
(138, 11, '11', 1, '潮州鎮', '', '1', '711', 'zh-tw', 1000),
(139, 11, '11', 1, '車城鄉', '', '2', '711', 'zh-tw', 1000),
(140, 11, '11', 1, '春日鄉', '', '3', '711', 'zh-tw', 1000),
(141, 11, '11', 1, '東港鎮', '', '4', '711', 'zh-tw', 1000),
(142, 11, '11', 1, '枋寮鄉', '', '5', '711', 'zh-tw', 1000),
(143, 11, '11', 1, '枋山鄉', '', '6', '711', 'zh-tw', 1000),
(144, 11, '11', 1, '高樹鄉', '', '7', '711', 'zh-tw', 1000),
(145, 11, '11', 1, '恆春鎮', '', '8', '711', 'zh-tw', 1000),
(146, 11, '11', 1, '佳冬鄉', '', '9', '711', 'zh-tw', 1000),
(147, 11, '11', 1, '九如鄉', '', '10', '711', 'zh-tw', 1000),
(148, 11, '11', 1, '崁頂鄉', '', '11', '711', 'zh-tw', 1000),
(149, 11, '11', 1, '里港鄉', '', '12', '711', 'zh-tw', 1000),
(150, 11, '11', 1, '林邊鄉', '', '13', '711', 'zh-tw', 1000),
(151, 11, '11', 1, '麟洛鄉', '', '14', '711', 'zh-tw', 1000),
(152, 11, '11', 1, '琉球鄉', '', '15', '711', 'zh-tw', 1000),
(153, 11, '11', 1, '滿州鄉', '', '16', '711', 'zh-tw', 1000),
(154, 11, '11', 1, '南州鄉', '', '17', '711', 'zh-tw', 1000),
(155, 11, '11', 1, '內埔鄉', '', '18', '711', 'zh-tw', 1000),
(156, 11, '11', 1, '屏東市', '', '19', '711', 'zh-tw', 1000),
(157, 11, '11', 1, '三地門鄉', '', '20', '711', 'zh-tw', 1000),
(158, 11, '11', 1, '萬丹鄉', '', '21', '711', 'zh-tw', 1000),
(159, 11, '11', 1, '萬巒鄉', '', '22', '711', 'zh-tw', 1000),
(160, 11, '11', 1, '新埤鄉', '', '23', '711', 'zh-tw', 1000),
(161, 11, '11', 1, '新園鄉', '', '24', '711', 'zh-tw', 1000),
(162, 11, '11', 1, '鹽埔鄉', '', '25', '711', 'zh-tw', 1000),
(163, 11, '11', 1, '竹田鄉', '', '26', '711', 'zh-tw', 1000),
(164, 12, '12', 1, '北投區', '', '0', '711', 'zh-tw', 1000),
(165, 12, '12', 1, '大安區', '', '1', '711', 'zh-tw', 1000),
(166, 12, '12', 1, '大同區', '', '2', '711', 'zh-tw', 1000),
(167, 12, '12', 1, '南港區', '', '3', '711', 'zh-tw', 1000),
(168, 12, '12', 1, '內湖區', '', '4', '711', 'zh-tw', 1000),
(169, 12, '12', 1, '士林區', '', '5', '711', 'zh-tw', 1000),
(170, 12, '12', 1, '松山區', '', '6', '711', 'zh-tw', 1000),
(171, 12, '12', 1, '萬華區', '', '7', '711', 'zh-tw', 1000),
(172, 12, '12', 1, '文山區', '', '8', '711', 'zh-tw', 1000),
(173, 12, '12', 1, '信義區', '', '9', '711', 'zh-tw', 1000),
(174, 12, '12', 1, '中山區', '', '10', '711', 'zh-tw', 1000),
(175, 12, '12', 1, '中正區', '', '11', '711', 'zh-tw', 1000),
(176, 13, '13', 1, '卑南鄉', '', '0', '711', 'zh-tw', 1000),
(177, 13, '13', 1, '長濱鄉', '', '1', '711', 'zh-tw', 1000),
(178, 13, '13', 1, '成功鎮', '', '2', '711', 'zh-tw', 1000),
(179, 13, '13', 1, '池上鄉', '', '3', '711', 'zh-tw', 1000),
(180, 13, '13', 1, '達仁鄉', '', '4', '711', 'zh-tw', 1000),
(181, 13, '13', 1, '大武鄉', '', '5', '711', 'zh-tw', 1000),
(182, 13, '13', 1, '東河鄉', '', '6', '711', 'zh-tw', 1000),
(183, 13, '13', 1, '關山鎮', '', '7', '711', 'zh-tw', 1000),
(184, 13, '13', 1, '蘭嶼鄉', '', '8', '711', 'zh-tw', 1000),
(185, 13, '13', 1, '鹿野鄉', '', '9', '711', 'zh-tw', 1000),
(186, 13, '13', 1, '綠島鄉', '', '10', '711', 'zh-tw', 1000),
(187, 13, '13', 1, '台東市', '', '11', '711', 'zh-tw', 1000),
(188, 13, '13', 1, '太麻里鄉', '', '12', '711', 'zh-tw', 1000),
(189, 14, '14', 1, '安定區', '', '0', '711', 'zh-tw', 1000),
(190, 14, '14', 1, '安南區', '', '1', '711', 'zh-tw', 1000),
(191, 14, '14', 1, '安平區', '', '2', '711', 'zh-tw', 1000),
(192, 14, '14', 1, '白河區', '', '3', '711', 'zh-tw', 1000),
(193, 14, '14', 1, '北門區', '', '4', '711', 'zh-tw', 1000),
(194, 14, '14', 1, '北區', '', '5', '711', 'zh-tw', 1000),
(195, 14, '14', 1, '大內區', '', '6', '711', 'zh-tw', 1000),
(196, 14, '14', 1, '東區', '', '7', '711', 'zh-tw', 1000),
(197, 14, '14', 1, '東山區', '', '8', '711', 'zh-tw', 1000),
(198, 14, '14', 1, '官田區', '', '9', '711', 'zh-tw', 1000),
(199, 14, '14', 1, '關廟區', '', '10', '711', 'zh-tw', 1000),
(200, 14, '14', 1, '歸仁區', '', '11', '711', 'zh-tw', 1000),
(201, 14, '14', 1, '後壁區', '', '12', '711', 'zh-tw', 1000),
(202, 14, '14', 1, '佳里區', '', '13', '711', 'zh-tw', 1000),
(203, 14, '14', 1, '將軍區', '', '14', '711', 'zh-tw', 1000),
(204, 14, '14', 1, '柳營區', '', '15', '711', 'zh-tw', 1000),
(205, 14, '14', 1, '六甲區', '', '16', '711', 'zh-tw', 1000),
(206, 14, '14', 1, '麻豆區', '', '17', '711', 'zh-tw', 1000),
(207, 14, '14', 1, '南化區', '', '18', '711', 'zh-tw', 1000),
(208, 14, '14', 1, '南區', '', '19', '711', 'zh-tw', 1000),
(209, 14, '14', 1, '楠西區', '', '20', '711', 'zh-tw', 1000),
(210, 14, '14', 1, '七股區', '', '21', '711', 'zh-tw', 1000),
(211, 14, '14', 1, '仁德區', '', '22', '711', 'zh-tw', 1000),
(212, 14, '14', 1, '山上區', '', '23', '711', 'zh-tw', 1000),
(213, 14, '14', 1, '善化區', '', '24', '711', 'zh-tw', 1000),
(214, 14, '14', 1, '西港區', '', '25', '711', 'zh-tw', 1000),
(215, 14, '14', 1, '下營區', '', '26', '711', 'zh-tw', 1000),
(216, 14, '14', 1, '新化區', '', '27', '711', 'zh-tw', 1000),
(217, 14, '14', 1, '新市區', '', '28', '711', 'zh-tw', 1000),
(218, 14, '14', 1, '新營區', '', '29', '711', 'zh-tw', 1000),
(219, 14, '14', 1, '學甲區', '', '30', '711', 'zh-tw', 1000),
(220, 14, '14', 1, '鹽水區', '', '31', '711', 'zh-tw', 1000),
(221, 14, '14', 1, '永康區', '', '32', '711', 'zh-tw', 1000),
(222, 14, '14', 1, '玉井區', '', '33', '711', 'zh-tw', 1000),
(223, 14, '14', 1, '中西區', '', '34', '711', 'zh-tw', 1000),
(224, 15, '15', 1, '北區', '', '0', '711', 'zh-tw', 1000),
(225, 15, '15', 1, '北屯區', '', '1', '711', 'zh-tw', 1000),
(226, 15, '15', 1, '大安區', '', '2', '711', 'zh-tw', 1000),
(227, 15, '15', 1, '大肚區', '', '3', '711', 'zh-tw', 1000),
(228, 15, '15', 1, '大甲區', '', '4', '711', 'zh-tw', 1000),
(229, 15, '15', 1, '大里區', '', '5', '711', 'zh-tw', 1000),
(230, 15, '15', 1, '大雅區', '', '6', '711', 'zh-tw', 1000),
(231, 15, '15', 1, '東區', '', '7', '711', 'zh-tw', 1000),
(232, 15, '15', 1, '東勢區', '', '8', '711', 'zh-tw', 1000),
(233, 15, '15', 1, '豐原區', '', '9', '711', 'zh-tw', 1000),
(234, 15, '15', 1, '和平區', '', '10', '711', 'zh-tw', 1000),
(235, 15, '15', 1, '后里區', '', '11', '711', 'zh-tw', 1000),
(236, 15, '15', 1, '龍井區', '', '12', '711', 'zh-tw', 1000),
(237, 15, '15', 1, '南區', '', '13', '711', 'zh-tw', 1000),
(238, 15, '15', 1, '南屯區', '', '14', '711', 'zh-tw', 1000),
(239, 15, '15', 1, '清水區', '', '15', '711', 'zh-tw', 1000),
(240, 15, '15', 1, '沙鹿區', '', '16', '711', 'zh-tw', 1000),
(241, 15, '15', 1, '神岡區', '', '17', '711', 'zh-tw', 1000),
(242, 15, '15', 1, '石岡區', '', '18', '711', 'zh-tw', 1000),
(243, 15, '15', 1, '太平區', '', '19', '711', 'zh-tw', 1000),
(244, 15, '15', 1, '潭子區', '', '20', '711', 'zh-tw', 1000),
(245, 15, '15', 1, '外埔區', '', '21', '711', 'zh-tw', 1000),
(246, 15, '15', 1, '烏日區', '', '22', '711', 'zh-tw', 1000),
(247, 15, '15', 1, '梧棲區', '', '23', '711', 'zh-tw', 1000),
(248, 15, '15', 1, '霧峰區', '', '24', '711', 'zh-tw', 1000),
(249, 15, '15', 1, '西區', '', '25', '711', 'zh-tw', 1000),
(250, 15, '15', 1, '西屯區', '', '26', '711', 'zh-tw', 1000),
(251, 15, '15', 1, '新社區', '', '27', '711', 'zh-tw', 1000),
(252, 15, '15', 1, '中區', '', '28', '711', 'zh-tw', 1000),
(253, 16, '16', 1, '八德區', '', '0', '711', 'zh-tw', 1000),
(254, 16, '16', 1, '大溪區', '', '1', '711', 'zh-tw', 1000),
(255, 16, '16', 1, '大園區', '', '2', '711', 'zh-tw', 1000),
(256, 16, '16', 1, '復興區', '', '3', '711', 'zh-tw', 1000),
(257, 16, '16', 1, '觀音區', '', '4', '711', 'zh-tw', 1000),
(258, 16, '16', 1, '龜山區', '', '5', '711', 'zh-tw', 1000),
(259, 16, '16', 1, '龍潭區', '', '6', '711', 'zh-tw', 1000),
(260, 16, '16', 1, '蘆竹區', '', '7', '711', 'zh-tw', 1000),
(261, 16, '16', 1, '平鎮區', '', '8', '711', 'zh-tw', 1000),
(262, 16, '16', 1, '桃園區', '', '9', '711', 'zh-tw', 1000),
(263, 16, '16', 1, '新屋區', '', '10', '711', 'zh-tw', 1000),
(264, 16, '16', 1, '楊梅區', '', '11', '711', 'zh-tw', 1000),
(265, 16, '16', 1, '中壢區', '', '12', '711', 'zh-tw', 1000),
(266, 17, '17', 1, '八里區', '', '0', '711', 'zh-tw', 1000),
(267, 17, '17', 1, '板橋區', '', '1', '711', 'zh-tw', 1000),
(268, 17, '17', 1, '淡水區', '', '2', '711', 'zh-tw', 1000),
(269, 17, '17', 1, '貢寮區', '', '3', '711', 'zh-tw', 1000),
(270, 17, '17', 1, '金山區', '', '4', '711', 'zh-tw', 1000),
(271, 17, '17', 1, '林口區', '', '5', '711', 'zh-tw', 1000),
(272, 17, '17', 1, '蘆洲區', '', '6', '711', 'zh-tw', 1000),
(273, 17, '17', 1, '平溪區', '', '7', '711', 'zh-tw', 1000),
(274, 17, '17', 1, '坪林區', '', '8', '711', 'zh-tw', 1000),
(275, 17, '17', 1, '瑞芳區', '', '9', '711', 'zh-tw', 1000),
(276, 17, '17', 1, '三峽區', '', '10', '711', 'zh-tw', 1000),
(277, 17, '17', 1, '三芝區', '', '11', '711', 'zh-tw', 1000),
(278, 17, '17', 1, '三重區', '', '12', '711', 'zh-tw', 1000),
(279, 17, '17', 1, '深坑區', '', '13', '711', 'zh-tw', 1000),
(280, 17, '17', 1, '石碇區', '', '14', '711', 'zh-tw', 1000),
(281, 17, '17', 1, '石門區', '', '15', '711', 'zh-tw', 1000),
(282, 17, '17', 1, '樹林區', '', '16', '711', 'zh-tw', 1000),
(283, 17, '17', 1, '雙溪區', '', '17', '711', 'zh-tw', 1000),
(284, 17, '17', 1, '泰山區', '', '18', '711', 'zh-tw', 1000),
(285, 17, '17', 1, '土城區', '', '19', '711', 'zh-tw', 1000),
(286, 17, '17', 1, '萬里區', '', '20', '711', 'zh-tw', 1000),
(287, 17, '17', 1, '烏來區', '', '21', '711', 'zh-tw', 1000),
(288, 17, '17', 1, '五股區', '', '22', '711', 'zh-tw', 1000),
(289, 17, '17', 1, '汐止區', '', '23', '711', 'zh-tw', 1000),
(290, 17, '17', 1, '新店區', '', '24', '711', 'zh-tw', 1000),
(291, 17, '17', 1, '新莊區', '', '25', '711', 'zh-tw', 1000),
(292, 17, '17', 1, '鶯歌區', '', '26', '711', 'zh-tw', 1000),
(293, 17, '17', 1, '永和區', '', '27', '711', 'zh-tw', 1000),
(294, 17, '17', 1, '中和區', '', '28', '711', 'zh-tw', 1000),
(295, 18, '18', 1, '北區', '', '0', '711', 'zh-tw', 1000),
(296, 18, '18', 1, '東區', '', '1', '711', 'zh-tw', 1000),
(297, 18, '18', 1, '香山區', '', '2', '711', 'zh-tw', 1000),
(298, 19, '19', 1, '寶山鄉', '', '0', '711', 'zh-tw', 1000),
(299, 19, '19', 1, '北埔鄉', '', '1', '711', 'zh-tw', 1000),
(300, 19, '19', 1, '峨眉鄉', '', '2', '711', 'zh-tw', 1000),
(301, 19, '19', 1, '關西鎮', '', '3', '711', 'zh-tw', 1000),
(302, 19, '19', 1, '橫山鄉', '', '4', '711', 'zh-tw', 1000),
(303, 19, '19', 1, '湖口鄉', '', '5', '711', 'zh-tw', 1000),
(304, 19, '19', 1, '新豐鄉', '', '6', '711', 'zh-tw', 1000),
(305, 19, '19', 1, '新埔鎮', '', '7', '711', 'zh-tw', 1000),
(306, 19, '19', 1, '芎林鄉', '', '8', '711', 'zh-tw', 1000),
(307, 19, '19', 1, '竹北市', '', '9', '711', 'zh-tw', 1000),
(308, 19, '19', 1, '竹東鎮', '', '10', '711', 'zh-tw', 1000),
(309, 20, '20', 1, '大同鄉', '', '0', '711', 'zh-tw', 1000),
(310, 20, '20', 1, '冬山鄉', '', '1', '711', 'zh-tw', 1000),
(311, 20, '20', 1, '礁溪鄉', '', '2', '711', 'zh-tw', 1000),
(312, 20, '20', 1, '羅東鎮', '', '3', '711', 'zh-tw', 1000),
(313, 20, '20', 1, '南澳鄉', '', '4', '711', 'zh-tw', 1000),
(314, 20, '20', 1, '三星鄉', '', '5', '711', 'zh-tw', 1000),
(315, 20, '20', 1, '蘇澳鎮', '', '6', '711', 'zh-tw', 1000),
(316, 20, '20', 1, '頭城鎮', '', '7', '711', 'zh-tw', 1000),
(317, 20, '20', 1, '五結鄉', '', '8', '711', 'zh-tw', 1000),
(318, 20, '20', 1, '宜蘭市', '', '9', '711', 'zh-tw', 1000),
(319, 20, '20', 1, '員山鄉', '', '10', '711', 'zh-tw', 1000),
(320, 20, '20', 1, '壯圍鄉', '', '11', '711', 'zh-tw', 1000),
(321, 21, '21', 1, '褒忠鄉', '', '0', '711', 'zh-tw', 1000),
(322, 21, '21', 1, '北港鎮', '', '1', '711', 'zh-tw', 1000),
(323, 21, '21', 1, '莿桐鄉', '', '2', '711', 'zh-tw', 1000),
(324, 21, '21', 1, '大埤鄉', '', '3', '711', 'zh-tw', 1000),
(325, 21, '21', 1, '東勢鄉', '', '4', '711', 'zh-tw', 1000),
(326, 21, '21', 1, '斗六市', '', '5', '711', 'zh-tw', 1000),
(327, 21, '21', 1, '斗南鎮', '', '6', '711', 'zh-tw', 1000),
(328, 21, '21', 1, '二崙鄉', '', '7', '711', 'zh-tw', 1000),
(329, 21, '21', 1, '古坑鄉', '', '8', '711', 'zh-tw', 1000),
(330, 21, '21', 1, '虎尾鎮', '', '9', '711', 'zh-tw', 1000),
(331, 21, '21', 1, '口湖鄉', '', '10', '711', 'zh-tw', 1000),
(332, 21, '21', 1, '林內鄉', '', '11', '711', 'zh-tw', 1000),
(333, 21, '21', 1, '崙背鄉', '', '12', '711', 'zh-tw', 1000),
(334, 21, '21', 1, '麥寮鄉', '', '13', '711', 'zh-tw', 1000),
(335, 21, '21', 1, '水林鄉', '', '14', '711', 'zh-tw', 1000),
(336, 21, '21', 1, '四湖鄉', '', '15', '711', 'zh-tw', 1000),
(337, 21, '21', 1, '台西鄉', '', '16', '711', 'zh-tw', 1000),
(338, 21, '21', 1, '土庫鎮', '', '17', '711', 'zh-tw', 1000),
(339, 21, '21', 1, '西螺鎮', '', '18', '711', 'zh-tw', 1000),
(340, 21, '21', 1, '元長鄉', '', '19', '711', 'zh-tw', 1000),
(341, 22, '22', 1, '北斗鎮', '', '0', '711', 'zh-tw', 1000),
(342, 22, '22', 1, '大城鄉', '', '1', '711', 'zh-tw', 1000),
(343, 22, '22', 1, '大村鄉', '', '2', '711', 'zh-tw', 1000),
(344, 22, '22', 1, '二林鎮', '', '3', '711', 'zh-tw', 1000),
(345, 22, '22', 1, '二水鄉', '', '4', '711', 'zh-tw', 1000),
(346, 22, '22', 1, '芳苑鄉', '', '5', '711', 'zh-tw', 1000),
(347, 22, '22', 1, '芬園鄉', '', '6', '711', 'zh-tw', 1000),
(348, 22, '22', 1, '福興鄉', '', '7', '711', 'zh-tw', 1000),
(349, 22, '22', 1, '和美鎮', '', '8', '711', 'zh-tw', 1000),
(350, 22, '22', 1, '花壇鄉', '', '9', '711', 'zh-tw', 1000),
(351, 22, '22', 1, '鹿港鎮', '', '10', '711', 'zh-tw', 1000),
(352, 22, '22', 1, '埤頭鄉', '', '11', '711', 'zh-tw', 1000),
(353, 22, '22', 1, '埔心鄉', '', '12', '711', 'zh-tw', 1000),
(354, 22, '22', 1, '埔鹽鄉', '', '13', '711', 'zh-tw', 1000),
(355, 22, '22', 1, '社頭鄉', '', '14', '711', 'zh-tw', 1000),
(356, 22, '22', 1, '伸港鄉', '', '15', '711', 'zh-tw', 1000),
(357, 22, '22', 1, '田尾鄉', '', '16', '711', 'zh-tw', 1000),
(358, 22, '22', 1, '田中鎮', '', '17', '711', 'zh-tw', 1000),
(359, 22, '22', 1, '溪湖鎮', '', '18', '711', 'zh-tw', 1000),
(360, 22, '22', 1, '溪州鄉', '', '19', '711', 'zh-tw', 1000),
(361, 22, '22', 1, '線西鄉', '', '20', '711', 'zh-tw', 1000),
(362, 22, '22', 1, '秀水鄉', '', '21', '711', 'zh-tw', 1000),
(363, 22, '22', 1, '永靖鄉', '', '22', '711', 'zh-tw', 1000),
(364, 22, '22', 1, '員林市', '', '23', '711', 'zh-tw', 1000),
(365, 22, '22', 1, '彰化市', '', '24', '711', 'zh-tw', 1000),
(366, 22, '22', 1, '竹塘鄉', '', '25', '711', 'zh-tw', 1000),
(367, 23, '1-23', 1, '蕙馨', '{"number":"954530","shop":"\\u8559\\u99a8","phone":"076319484","address":"\\u963f\\u84ee\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0038\\u0038\\u002d\\u0038\\u865f"}', '954530', '711', 'zh-tw', 1000),
(368, 23, '1-23', 1, '蓮山', '{"number":"914244","shop":"\\u84ee\\u5c71","phone":"076321745","address":"\\u6c11\\u751f\\u8def\\u0039\\u0032\\u865f"}', '914244', '711', 'zh-tw', 1000),
(369, 23, '1-23', 1, '阿蓮', '{"number":"170602","shop":"\\u963f\\u84ee","phone":"076310329","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0035\\u865f\\u0031\\u0037\\u865f\\u0031\\u0039\\u865f"}', '170602', '711', 'zh-tw', 1000),
(370, 23, '1-23', 1, '傳生', '{"number":"998091","shop":"\\u50b3\\u751f","phone":"076319041","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0030\\u0037\\u865f"}', '998091', '711', 'zh-tw', 1000),
(371, 23, '1-23', 1, '展穫', '{"number":"181521","shop":"\\u5c55\\u7a6b","phone":"076310394","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0039\\u0037\\u865f"}', '181521', '711', 'zh-tw', 1000),
(372, 24, '1-24', 1, '潮欣', '{"number":"189754","shop":"\\u6f6e\\u6b23","phone":"077884765","address":"\\u6f6e\\u5bee\\u91cc\\u83ef\\u4e2d\\u5357\\u8def\\u0032\\u0037\\u0035\\u865f"}', '189754', '711', 'zh-tw', 1000),
(373, 24, '1-24', 1, '米奇', '{"number":"954208","shop":"\\u7c73\\u5947","phone":"077880413","address":"\\u5927\\u5bee\\u91cc\\u5927\\u5bee\\u8def\\u0039\\u0030\\u0033\\u865f"}', '954208', '711', 'zh-tw', 1000),
(374, 24, '1-24', 1, '開封', '{"number":"165275","shop":"\\u958b\\u5c01","phone":"077880424","address":"\\u5927\\u5bee\\u8def\\u0036\\u0038\\u0038\\u865f"}', '165275', '711', 'zh-tw', 1000),
(375, 24, '1-24', 1, '鳳屏', '{"number":"171328","shop":"\\u9cf3\\u5c4f","phone":"077012100","address":"\\u9cf3\\u5c4f\\u4e00\\u8def\\u0035\\u0036\\u0034\\u865f"}', '171328', '711', 'zh-tw', 1000),
(376, 24, '1-24', 1, '三隆', '{"number":"194240","shop":"\\u4e09\\u9686","phone":"077873935","address":"\\u5149\\u660e\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u0030\\u865f\\u0031\\u0046"}', '194240', '711', 'zh-tw', 1000),
(377, 24, '1-24', 1, '美庄', '{"number":"993926","shop":"\\u7f8e\\u5e84","phone":"077013224","address":"\\u5f8c\\u5e84\\u6751\\u6210\\u529f\\u8def\\u0034\\u0033\\u865f"}', '993926', '711', 'zh-tw', 1000),
(378, 24, '1-24', 1, '金山角', '{"number":"187851","shop":"\\u91d1\\u5c71\\u89d2","phone":"077874168","address":"\\u6703\\u793e\\u91cc\\u0031\\u9130\\u9cf3\\u6797\\u4e09\\u8def\\u0031\\u4e4b\\u0031\\u0030\\u865f"}', '187851', '711', 'zh-tw', 1000),
(379, 24, '1-24', 1, '正發', '{"number":"183387","shop":"\\u6b63\\u767c","phone":"077838472","address":"\\u6703\\u793e\\u91cc\\u9cf3\\u6797\\u4e09\\u8def\\u0034\\u0032\\u0031\\u865f"}', '183387', '711', 'zh-tw', 1000),
(380, 24, '1-24', 1, '山頂', '{"number":"872005","shop":"\\u5c71\\u9802","phone":"077837610","address":"\\u5167\\u539d\\u8def\\u0032\\u0031\\u0039\\u865f"}', '872005', '711', 'zh-tw', 1000),
(381, 24, '1-24', 1, '鳳捷', '{"number":"195427","shop":"\\u9cf3\\u6377","phone":"077814895","address":"\\u842c\\u4e39\\u8def\\u0031\\u0035\\u0031\\u002d\\u0031\\u865f"}', '195427', '711', 'zh-tw', 1000),
(382, 24, '1-24', 1, '鳳明', '{"number":"186836","shop":"\\u9cf3\\u660e","phone":"077879642","address":"\\u65b0\\u539d\\u91cc\\u9cf3\\u6797\\u4e8c\\u8def\\u0031\\u0036\\u0030\\u865f"}', '186836', '711', 'zh-tw', 1000),
(383, 24, '1-24', 1, '義發', '{"number":"116745","shop":"\\u7fa9\\u767c","phone":"077862644","address":"\\u7fa9\\u767c\\u8def\\u0037\\u865f"}', '116745', '711', 'zh-tw', 1000),
(384, 24, '1-24', 1, '益慶', '{"number":"981509","shop":"\\u76ca\\u6176","phone":"076529512","address":"\\u7fa9\\u548c\\u91cc\\u7fa9\\u548c\\u8def\\u0031\\u0031\\u0031\\u002d\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '981509', '711', 'zh-tw', 1000),
(385, 24, '1-24', 1, '昭明', '{"number":"142618","shop":"\\u662d\\u660e","phone":"076414750","address":"\\u7fa9\\u4ec1\\u91cc\\u9cf3\\u6797\\u4e00\\u8def\\u0035\\u0031\\u5df7\\u0035\\u865f\\u0031\\u6a13"}', '142618', '711', 'zh-tw', 1000),
(386, 24, '1-24', 1, '源隆', '{"number":"894289","shop":"\\u6e90\\u9686","phone":"077828004","address":"\\u6c38\\u82b3\\u91cc\\u9032\\u5b78\\u8def\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '894289', '711', 'zh-tw', 1000),
(387, 24, '1-24', 1, '永芳', '{"number":"992761","shop":"\\u6c38\\u82b3","phone":"077831908","address":"\\u6c38\\u82b3\\u91cc\\u842c\\u4e39\\u8def\\u0036\\u0033\\u0030\\u865f"}', '992761', '711', 'zh-tw', 1000),
(388, 24, '1-24', 1, '大發', '{"number":"154910","shop":"\\u5927\\u767c","phone":"077839643","address":"\\u632f\\u6210\\u91cc\\u9cf3\\u6797\\u4e09\\u8def\\u0033\\u0032\\u0032\\u865f\\u0033\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '154910', '711', 'zh-tw', 1000),
(389, 24, '1-24', 1, '德庄', '{"number":"188739","shop":"\\u5fb7\\u5e84","phone":"077030164","address":"\\u4e2d\\u5e84\\u91cc\\u516b\\u5fb7\\u8def\\u0036\\u0039\\u865f\\u0037\\u0031\\u865f\\u0037\\u0033\\u865f"}', '188739', '711', 'zh-tw', 1000),
(390, 24, '1-24', 1, '前中', '{"number":"135919","shop":"\\u524d\\u4e2d","phone":"077816922","address":"\\u81ea\\u7531\\u8def\\u0031\\u865f"}', '135919', '711', 'zh-tw', 1000),
(391, 25, '1-25', 1, '好事達', '{"number":"201070","shop":"\\u597d\\u4e8b\\u9054","phone":"073538846","address":"\\u4fdd\\u793e\\u91cc\\u65d7\\u6960\\u8def\\u0037\\u0031\\u865f"}', '201070', '711', 'zh-tw', 1000),
(392, 25, '1-25', 1, '大社', '{"number":"186135","shop":"\\u5927\\u793e","phone":"073527294","address":"\\u7fe0\\u5c4f\\u91cc\\u4e09\\u6c11\\u8def\\u0033\\u0030\\u0034\\u865f"}', '186135', '711', 'zh-tw', 1000),
(393, 25, '1-25', 1, '觀音', '{"number":"991573","shop":"\\u89c0\\u97f3","phone":"073521272","address":"\\u5927\\u65b0\\u8def\\u0031\\u0031\\u0031\\u865f\\u91d1\\u9f8d\\u8def\\u0033\\u0031\\u0036\\u865f\\u0033\\u0031\\u0038\\u865f"}', '991573', '711', 'zh-tw', 1000),
(394, 25, '1-25', 1, '大民', '{"number":"170347","shop":"\\u5927\\u6c11","phone":"073528550","address":"\\u4e09\\u6c11\\u8def\\u0032\\u0031\\u0033\\u865f"}', '170347', '711', 'zh-tw', 1000),
(395, 25, '1-25', 1, '華社', '{"number":"183767","shop":"\\u83ef\\u793e","phone":"073520146","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0036\\u002d\\u0036\\u0036\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '183767', '711', 'zh-tw', 1000),
(396, 25, '1-25', 1, '鈦旺', '{"number":"139092","shop":"\\u9226\\u65fa","phone":"073531423","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0036\\u0031\\u865f"}', '139092', '711', 'zh-tw', 1000),
(397, 25, '1-25', 1, '翠屏', '{"number":"136532","shop":"\\u7fe0\\u5c4f","phone":"073540580","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u0034\\u0034\\u865f\\u0033\\u0034\\u0036\\u865f"}', '136532', '711', 'zh-tw', 1000),
(398, 26, '1-26', 1, '新鎮', '{"number":"950697","shop":"\\u65b0\\u93ae","phone":"076517820","address":"\\u4e5d\\u66f2\\u91cc\\u4e5d\\u66f2\\u8def\\u0039\\u0039\\u865f"}', '950697', '711', 'zh-tw', 1000),
(399, 26, '1-26', 1, '九曲堂', '{"number":"135735","shop":"\\u4e5d\\u66f2\\u5802","phone":"076523141","address":"\\u4e45\\u5802\\u91cc\\u57ce\\u968d\\u5df7\\u0031\\u0035\\u002d\\u0038\\u865f"}', '135735', '711', 'zh-tw', 1000),
(400, 26, '1-26', 1, '溪埔', '{"number":"950387","shop":"\\u6eaa\\u57d4","phone":"076565516","address":"\\u6eaa\\u57d4\\u91cc\\u6eaa\\u57d4\\u8def\\u0033\\u0036\\u0039\\u865f\\u0033\\u0037\\u0030\\u865f"}', '950387', '711', 'zh-tw', 1000),
(401, 26, '1-26', 1, '大樹', '{"number":"113768","shop":"\\u5927\\u6a39","phone":"076528814","address":"\\u6a23\\u8173\\u91cc\\u4e2d\\u8208\\u6771\\u8def\\u0037\\u865f\\u0039\\u865f\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f"}', '113768', '711', 'zh-tw', 1000),
(402, 27, '1-27', 1, '華鳳', '{"number":"167499","shop":"\\u83ef\\u9cf3","phone":"077334871","address":"\\u5317\\u660c\\u8def\\u0031\\u0030\\u865f"}', '167499', '711', 'zh-tw', 1000),
(403, 27, '1-27', 1, '鳳駿', '{"number":"186375","shop":"\\u9cf3\\u99ff","phone":"077407770","address":"\\u5317\\u9580\\u91cc\\u9cf3\\u677e\\u8def\\u0031\\u0030\\u0038\\u002e\\u0031\\u0031\\u0030\\u002e\\u0031\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '186375', '711', 'zh-tw', 1000),
(404, 27, '1-27', 1, '鳳曹', '{"number":"906335","shop":"\\u9cf3\\u66f9","phone":"077474150","address":"\\u66f9\\u516c\\u91cc\\u66f9\\u516c\\u8def\\u0035\\u0039\\u865f"}', '906335', '711', 'zh-tw', 1000),
(405, 27, '1-27', 1, '建泰', '{"number":"930062","shop":"\\u5efa\\u6cf0","phone":"077538356","address":"\\u8aa0\\u7fa9\\u8def\\u0032\\u865f"}', '930062', '711', 'zh-tw', 1000),
(406, 27, '1-27', 1, '大洋', '{"number":"874610","shop":"\\u5927\\u6d0b","phone":"077664074","address":"\\u5927\\u660e\\u8def\\u0031\\u0034\\u0032\\u865f\\u0031\\u0034\\u0034\\u865f"}', '874610', '711', 'zh-tw', 1000),
(407, 27, '1-27', 1, '鳳南', '{"number":"117025","shop":"\\u9cf3\\u5357","phone":"077963845","address":"\\u4e8c\\u7532\\u91cc\\u9cf3\\u5357\\u4e00\\u8def\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f"}', '117025', '711', 'zh-tw', 1000),
(408, 27, '1-27', 1, '鳳來', '{"number":"155407","shop":"\\u9cf3\\u4f86","phone":"077927309","address":"\\u9cf3\\u7532\\u8def\\u0032\\u865f"}', '155407', '711', 'zh-tw', 1000),
(409, 27, '1-27', 1, '鳳陽', '{"number":"166692","shop":"\\u9cf3\\u967d","phone":"077026091","address":"\\u9cf3\\u6797\\u8def\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '166692', '711', 'zh-tw', 1000),
(410, 27, '1-27', 1, '鳳仁', '{"number":"190640","shop":"\\u9cf3\\u4ec1","phone":"077109588","address":"\\u9cf3\\u4ec1\\u8def\\u0031\\u0037\\u0034\\u865f"}', '190640', '711', 'zh-tw', 1000),
(411, 27, '1-27', 1, '光泰', '{"number":"182476","shop":"\\u5149\\u6cf0","phone":"077904495","address":"\\u5149\\u5fa9\\u8def\\u0036\\u0035\\u865f\\u0031\\u6a13\\u0028\\u0042\\u5ba4\\u0029\\u0031\\u6a13\\u90e8\\u5206"}', '182476', '711', 'zh-tw', 1000),
(412, 27, '1-27', 1, '海新', '{"number":"996589","shop":"\\u6d77\\u65b0","phone":"077659203","address":"\\u570b\\u9686\\u91cc\\u65b0\\u5bcc\\u8def\\u0035\\u0039\\u0030\\u5df7\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f"}', '996589', '711', 'zh-tw', 1000),
(413, 27, '1-27', 1, '鳳頂', '{"number":"980252","shop":"\\u9cf3\\u9802","phone":"077928892","address":"\\u904e\\u57e4\\u91cc\\u9cf3\\u9802\\u8def\\u0032\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '980252', '711', 'zh-tw', 1000),
(414, 27, '1-27', 1, '鳳埤', '{"number":"164526","shop":"\\u9cf3\\u57e4","phone":"077924286","address":"\\u904e\\u57e4\\u91cc\\u904e\\u57e4\\u8def\\u0031\\u0037\\u0030\\u865f"}', '164526', '711', 'zh-tw', 1000),
(415, 27, '1-27', 1, '新新甲', '{"number":"981026","shop":"\\u65b0\\u65b0\\u7532","phone":"077673969","address":"\\u6d77\\u6d0b\\u91cc\\u6d77\\u6d0b\\u4e8c\\u8def\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '981026', '711', 'zh-tw', 1000),
(416, 27, '1-27', 1, '鳳城', '{"number":"121747","shop":"\\u9cf3\\u57ce","phone":"077829606","address":"\\u676d\\u5dde\\u897f\\u8857\\u0031\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '121747', '711', 'zh-tw', 1000),
(417, 27, '1-27', 1, '鳳東', '{"number":"902425","shop":"\\u9cf3\\u6771","phone":"077199560","address":"\\u548c\\u5fb7\\u91cc\\u4e2d\\u5c71\\u8def\\u0036\\u0033\\u865f"}', '902425', '711', 'zh-tw', 1000),
(418, 27, '1-27', 1, '森和', '{"number":"967237","shop":"\\u68ee\\u548c","phone":"077684826","address":"\\u5357\\u548c\\u91cc\\u0031\\u0036\\u9130\\u6797\\u68ee\\u8def\\u0032\\u0030\\u0033\\u865f"}', '967237', '711', 'zh-tw', 1000),
(419, 27, '1-27', 1, '工協', '{"number":"136288","shop":"\\u5de5\\u5354","phone":"077020916","address":"\\u57e4\\u9802\\u91cc\\u5efa\\u570b\\u8def\\u4e00\\u6bb5\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '136288', '711', 'zh-tw', 1000),
(420, 27, '1-27', 1, '澄清湖', '{"number":"183206","shop":"\\u6f84\\u6e05\\u6e56","phone":"077808096","address":"\\u9752\\u5e74\\u8def\\u4e8c\\u6bb5\\u0035\\u0039\\u0036\\u865f\\u002e\\u0035\\u0039\\u0038\\u5df7\\u0032\\u002e\\u0034\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '183206', '711', 'zh-tw', 1000),
(421, 27, '1-27', 1, '博瑞', '{"number":"185752","shop":"\\u535a\\u745e","phone":"077458935","address":"\\u745e\\u8208\\u91cc\\u535a\\u611b\\u8def\\u0032\\u0032\\u0031\\u865f\\u0032\\u0032\\u0033\\u865f"}', '185752', '711', 'zh-tw', 1000),
(422, 27, '1-27', 1, '瑞順', '{"number":"992288","shop":"\\u745e\\u9806","phone":"077458942","address":"\\u745e\\u8208\\u91cc\\u745e\\u8208\\u8def\\u0032\\u0035\\u0030\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '992288', '711', 'zh-tw', 1000),
(423, 27, '1-27', 1, '翔富', '{"number":"942755","shop":"\\u7fd4\\u5bcc","phone":"077805459","address":"\\u6587\\u5fb7\\u91cc\\u6ff1\\u5c71\\u8857\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '942755', '711', 'zh-tw', 1000),
(424, 27, '1-27', 1, '亮宏', '{"number":"170532","shop":"\\u4eae\\u5b8f","phone":"077851397","address":"\\u6587\\u5fb7\\u91cc\\u6587\\u8861\\u8def\\u0035\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '170532', '711', 'zh-tw', 1000),
(425, 27, '1-27', 1, '青建', '{"number":"900577","shop":"\\u9752\\u5efa","phone":"077417414","address":"\\u6587\\u798f\\u91cc\\u5efa\\u570b\\u8def\\u4e09\\u6bb5\\u0032\\u0039\\u0035\\u865f"}', '900577', '711', 'zh-tw', 1000),
(426, 27, '1-27', 1, '文建', '{"number":"135263","shop":"\\u6587\\u5efa","phone":"077676924","address":"\\u6587\\u798f\\u91cc\\u6587\\u5316\\u897f\\u8def\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '135263', '711', 'zh-tw', 1000),
(427, 27, '1-27', 1, '文衡', '{"number":"990732","shop":"\\u6587\\u8861","phone":"077677689","address":"\\u6587\\u8861\\u91cc\\u516b\\u5fb7\\u8def\\u0033\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '990732', '711', 'zh-tw', 1000),
(428, 27, '1-27', 1, '青文', '{"number":"190019","shop":"\\u9752\\u6587","phone":"077776482","address":"\\u6587\\u8861\\u91cc\\u6587\\u8861\\u8def\\u0033\\u0034\\u0033\\u865f"}', '190019', '711', 'zh-tw', 1000),
(429, 27, '1-27', 1, '德文', '{"number":"993317","shop":"\\u5fb7\\u6587","phone":"077677524","address":"\\u6587\\u5c71\\u91cc\\u516b\\u5fb7\\u8def\\u0031\\u0039\\u0037\\u865f"}', '993317', '711', 'zh-tw', 1000),
(430, 27, '1-27', 1, '美澄', '{"number":"136657","shop":"\\u7f8e\\u6f84","phone":"077779914","address":"\\u6587\\u5c71\\u91cc\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0036\\u865f"}', '136657', '711', 'zh-tw', 1000),
(431, 27, '1-27', 1, '鳳文', '{"number":"110068","shop":"\\u9cf3\\u6587","phone":"077104580","address":"\\u6587\\u82f1\\u91cc\\u6587\\u8861\\u8def\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '110068', '711', 'zh-tw', 1000),
(432, 27, '1-27', 1, '欣福誠', '{"number":"982502","shop":"\\u6b23\\u798f\\u8aa0","phone":"077684187","address":"\\u4e94\\u798f\\u91cc\\u4e94\\u7532\\u4e09\\u8def\\u0037\\u0035\\u865f\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '982502', '711', 'zh-tw', 1000),
(433, 27, '1-27', 1, '南華', '{"number":"136004","shop":"\\u5357\\u83ef","phone":"077713883","address":"\\u4e94\\u7532\\u4e8c\\u8def\\u0032\\u0033\\u0032\\u865f"}', '136004', '711', 'zh-tw', 1000),
(434, 27, '1-27', 1, '武慶', '{"number":"865513","shop":"\\u6b66\\u6176","phone":"077167387","address":"\\u4e94\\u6b66\\u6f22\\u91cc\\u6b66\\u6176\\u4e8c\\u8def\\u0035\\u0032\\u865f\\u0035\\u0034\\u865f"}', '865513', '711', 'zh-tw', 1000),
(435, 27, '1-27', 1, '建武', '{"number":"935621","shop":"\\u5efa\\u6b66","phone":"077470282","address":"\\u6b66\\u677e\\u91cc\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0032\\u865f"}', '935621', '711', 'zh-tw', 1000),
(436, 27, '1-27', 1, '富凱', '{"number":"171579","shop":"\\u5bcc\\u51f1","phone":"077631240","address":"\\u65b0\\u5bcc\\u8def\\u0033\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '171579', '711', 'zh-tw', 1000),
(437, 27, '1-27', 1, '鳳新', '{"number":"155072","shop":"\\u9cf3\\u65b0","phone":"077675107","address":"\\u65b0\\u5eb7\\u8857\\u0032\\u0034\\u0031\\u865f\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '155072', '711', 'zh-tw', 1000),
(438, 27, '1-27', 1, '來家', '{"number":"122485","shop":"\\u4f86\\u5bb6","phone":"077224077","address":"\\u65b0\\u5f37\\u91cc\\u5d17\\u5c71\\u5317\\u8857\\u0033\\u0036\\u865f\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '122485', '711', 'zh-tw', 1000),
(439, 27, '1-27', 1, '興仁', '{"number":"990662","shop":"\\u8208\\u4ec1","phone":"077454010","address":"\\u8208\\u4ec1\\u91cc\\u4e94\\u7532\\u4e00\\u8def\\u0032\\u0030\\u0034\\u865f\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '990662', '711', 'zh-tw', 1000),
(440, 27, '1-27', 1, '牛潮埔', '{"number":"953869","shop":"\\u725b\\u6f6e\\u57d4","phone":"077356353","address":"\\u93ae\\u5317\\u91cc\\u9cf3\\u5317\\u8def\\u0036\\u0030\\u4e4b\\u0031\\u0037\\u865f"}', '953869', '711', 'zh-tw', 1000),
(441, 27, '1-27', 1, '黃埔', '{"number":"161491","shop":"\\u9ec3\\u57d4","phone":"077478806","address":"\\u93ae\\u6771\\u91cc\\u5149\\u9060\\u8def\\u0037\\u0033\\u865f"}', '161491', '711', 'zh-tw', 1000),
(442, 27, '1-27', 1, '新保泰', '{"number":"135746","shop":"\\u65b0\\u4fdd\\u6cf0","phone":"077684815","address":"\\u93ae\\u5357\\u91cc\\u9f8d\\u6210\\u8def\\u0032\\u0034\\u0032\\u002d\\u0031\\u865f"}', '135746', '711', 'zh-tw', 1000),
(443, 27, '1-27', 1, '天虹', '{"number":"147244","shop":"\\u5929\\u8679","phone":"077684836","address":"\\u93ae\\u5357\\u91cc\\u4e94\\u7532\\u4e8c\\u8def\\u0037\\u0034\\u0034\\u865f"}', '147244', '711', 'zh-tw', 1000),
(444, 27, '1-27', 1, '七老爺', '{"number":"126362","shop":"\\u4e03\\u8001\\u723a","phone":"077929712","address":"\\u6b63\\u7fa9\\u91cc\\u9cf3\\u7532\\u8def\\u0034\\u0039\\u0031\\u865f\\u0034\\u0039\\u0033\\u865f"}', '126362', '711', 'zh-tw', 1000),
(445, 27, '1-27', 1, '鳳和', '{"number":"956167","shop":"\\u9cf3\\u548c","phone":"077990060","address":"\\u4e2d\\u548c\\u91cc\\u81ea\\u7531\\u8def\\u0032\\u0030\\u0034\\u865f\\u0032\\u0030\\u0036\\u865f"}', '956167', '711', 'zh-tw', 1000),
(446, 27, '1-27', 1, '統崙', '{"number":"113090","shop":"\\u7d71\\u5d19","phone":"077536645","address":"\\u4e2d\\u6c11\\u91cc\\u4e2d\\u5d19\\u56db\\u8def\\u0036\\u865f\\u0038\\u865f\\u0031\\u6a13"}', '113090', '711', 'zh-tw', 1000),
(447, 27, '1-27', 1, '瑞竹', '{"number":"180193","shop":"\\u745e\\u7af9","phone":"077407954","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u0032\\u0030\\u0039\\u002d\\u0031\\u53ca\\u0032\\u0030\\u0039\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '180193', '711', 'zh-tw', 1000),
(448, 27, '1-27', 1, '中東', '{"number":"854443","shop":"\\u4e2d\\u6771","phone":"077439740","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u0038\\u0038\\u865f"}', '854443', '711', 'zh-tw', 1000),
(449, 27, '1-27', 1, '鳳凌', '{"number":"180300","shop":"\\u9cf3\\u51cc","phone":"077405747","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0032\\u0033\\u002e\\u0032\\u0032\\u0035\\u002e\\u0032\\u0032\\u0037\\u865f"}', '180300', '711', 'zh-tw', 1000),
(450, 27, '1-27', 1, '俊瑋', '{"number":"942847","shop":"\\u4fca\\u744b","phone":"077410481","address":"\\u5fe0\\u7fa9\\u91cc\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0033\\u865f"}', '942847', '711', 'zh-tw', 1000),
(451, 27, '1-27', 1, '高鳳', '{"number":"158901","shop":"\\u9ad8\\u9cf3","phone":"077460354","address":"\\u5fe0\\u7fa9\\u91cc\\u4e2d\\u5c71\\u897f\\u8def\\u0033\\u0039\\u0038\\u865f\\u0034\\u0030\\u0030\\u865f"}', '158901', '711', 'zh-tw', 1000),
(452, 28, '1-28', 1, '維洲', '{"number":"954378","shop":"\\u7dad\\u6d32","phone":"076224493","address":"\\u672c\\u6d32\\u91cc\\u672c\\u6d32\\u8def\\u0033\\u0035\\u0030\\u002d\\u0035\\u865f"}', '954378', '711', 'zh-tw', 1000),
(453, 28, '1-28', 1, '群弘益', '{"number":"936381","shop":"\\u7fa4\\u5f18\\u76ca","phone":"076222072","address":"\\u78a7\\u7d05\\u91cc\\u4e2d\\u5c71\\u5317\\u8def\\u0032\\u865f"}', '936381', '711', 'zh-tw', 1000),
(454, 28, '1-28', 1, '鑫程', '{"number":"129051","shop":"\\u946b\\u7a0b","phone":"076227110","address":"\\u5927\\u5fb7\\u4e8c\\u8def\\u0036\\u0031\\u865f"}', '129051', '711', 'zh-tw', 1000),
(455, 28, '1-28', 1, '森鴻', '{"number":"897886","shop":"\\u68ee\\u9d3b","phone":"076228076","address":"\\u5927\\u5fb7\\u4e00\\u8def\\u0031\\u0036\\u0030\\u865f"}', '897886', '711', 'zh-tw', 1000),
(456, 28, '1-28', 1, '友情', '{"number":"968908","shop":"\\u53cb\\u60c5","phone":"076252734","address":"\\u5927\\u907c\\u91cc\\u5927\\u907c\\u8def\\u0031\\u0032\\u0032\\u002d\\u0033\\u865f"}', '968908', '711', 'zh-tw', 1000),
(457, 28, '1-28', 1, '仁東', '{"number":"162726","shop":"\\u4ec1\\u6771","phone":"076217245","address":"\\u5927\\u4ec1\\u5317\\u8def\\u0031\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '162726', '711', 'zh-tw', 1000),
(458, 28, '1-28', 1, '仁富', '{"number":"122625","shop":"\\u4ec1\\u5bcc","phone":"076213744","address":"\\u5927\\u4ec1\\u8def\\u0031\\u0033\\u0038\\u865f"}', '122625', '711', 'zh-tw', 1000),
(459, 28, '1-28', 1, '岡燕', '{"number":"165758","shop":"\\u5ca1\\u71d5","phone":"076235590","address":"\\u5ca1\\u5c71\\u8def\\u0032\\u0036\\u0034\\u865f\\u0032\\u0036\\u0036\\u865f"}', '165758', '711', 'zh-tw', 1000),
(460, 28, '1-28', 1, '岡好', '{"number":"195667","shop":"\\u5ca1\\u597d","phone":"076216214","address":"\\u5ca1\\u5c71\\u8def\\u0036\\u0031\\u0032\\u3001\\u0036\\u0031\\u0032\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '195667', '711', 'zh-tw', 1000),
(461, 28, '1-28', 1, '程香', '{"number":"965231","shop":"\\u7a0b\\u9999","phone":"076225259","address":"\\u5f8c\\u7d05\\u91cc\\u5927\\u4ec1\\u5357\\u8def\\u0031\\u0033\\u0033\\u865f"}', '965231', '711', 'zh-tw', 1000),
(462, 28, '1-28', 1, '柳橋', '{"number":"181484","shop":"\\u67f3\\u6a4b","phone":"076256680","address":"\\u5f8c\\u5354\\u91cc\\u4ec1\\u58fd\\u8def\\u0032\\u0034\\u0038\\u865f"}', '181484', '711', 'zh-tw', 1000),
(463, 28, '1-28', 1, '新上緯', '{"number":"990097","shop":"\\u65b0\\u4e0a\\u7def","phone":"076231481","address":"\\u5609\\u8208\\u91cc\\u5609\\u8208\\u8def\\u0033\\u0034\\u0030\\u865f"}', '990097', '711', 'zh-tw', 1000),
(464, 28, '1-28', 1, '嘉興', '{"number":"182797","shop":"\\u5609\\u8208","phone":"076219674","address":"\\u5609\\u8208\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '182797', '711', 'zh-tw', 1000),
(465, 28, '1-28', 1, '勵志', '{"number":"111739","shop":"\\u52f5\\u5fd7","phone":"076295142","address":"\\u7b67\\u6a4b\\u8def\\u0031\\u0032\\u865f\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '111739', '711', 'zh-tw', 1000),
(466, 28, '1-28', 1, '鴻林', '{"number":"186814","shop":"\\u9d3b\\u6797","phone":"076267334","address":"\\u4ec1\\u58fd\\u91cc\\u516c\\u5712\\u897f\\u8def\\u4e09\\u6bb5\\u0031\\u0033\\u0031\\u865f\\u0031\\u0033\\u0033\\u865f"}', '186814', '711', 'zh-tw', 1000),
(467, 28, '1-28', 1, '華仁', '{"number":"188795","shop":"\\u83ef\\u4ec1","phone":"076259821","address":"\\u4ec1\\u58fd\\u91cc\\u4ec1\\u58fd\\u8def\\u0031\\u0030\\u0036\\u865f"}', '188795', '711', 'zh-tw', 1000),
(468, 28, '1-28', 1, '石潭', '{"number":"153881","shop":"\\u77f3\\u6f6d","phone":"076258364","address":"\\u77f3\\u6f6d\\u8def\\u0032\\u0035\\u0038\\u865f"}', '153881', '711', 'zh-tw', 1000),
(469, 28, '1-28', 1, '仁峰', '{"number":"143611","shop":"\\u4ec1\\u5cf0","phone":"076254834","address":"\\u58fd\\u5cf0\\u91cc\\u524d\\u5cf0\\u8def\\u0031\\u0035\\u0032\\u865f\\u4e4b\\u0031\\u4e00\\u6a13"}', '143611', '711', 'zh-tw', 1000),
(470, 28, '1-28', 1, '利明', '{"number":"913584","shop":"\\u5229\\u660e","phone":"076257053","address":"\\u58fd\\u5cf0\\u91cc\\u524d\\u5cf0\\u8def\\u0038\\u0030\\u865f"}', '913584', '711', 'zh-tw', 1000),
(471, 28, '1-28', 1, '岡農', '{"number":"136901","shop":"\\u5ca1\\u8fb2","phone":"076212911","address":"\\u58fd\\u5929\\u91cc\\u516c\\u5712\\u6771\\u8def\\u0031\\u0035\\u0034\\u865f"}', '136901', '711', 'zh-tw', 1000),
(472, 28, '1-28', 1, '肯娣', '{"number":"187666","shop":"\\u80af\\u5a23","phone":"076226672","address":"\\u58fd\\u5929\\u91cc\\u58fd\\u5929\\u8def\\u0033\\u0037\\u865f\\u4e4b\\u0033"}', '187666', '711', 'zh-tw', 1000),
(473, 28, '1-28', 1, '鑫省岡', '{"number":"143161","shop":"\\u946b\\u7701\\u5ca1","phone":"076213534","address":"\\u53f0\\u4e0a\\u91cc\\u6210\\u529f\\u8def\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '143161', '711', 'zh-tw', 1000),
(474, 28, '1-28', 1, '台興', '{"number":"950664","shop":"\\u53f0\\u8208","phone":"076226112","address":"\\u53f0\\u4e0a\\u91cc\\u5609\\u65b0\\u6771\\u8def\\u0031\\u0033\\u0036\\u865f"}', '950664', '711', 'zh-tw', 1000),
(475, 28, '1-28', 1, '北岡山', '{"number":"950480","shop":"\\u5317\\u5ca1\\u5c71","phone":"076224840","address":"\\u7063\\u88e1\\u91cc\\u5ca1\\u5c71\\u5317\\u8def\\u0031\\u0035\\u0030\\u865f"}', '950480', '711', 'zh-tw', 1000),
(476, 28, '1-28', 1, '維仁', '{"number":"192565","shop":"\\u7dad\\u4ec1","phone":"076215356","address":"\\u7dad\\u4ec1\\u8def\\u0037\\u0039\\u865f"}', '192565', '711', 'zh-tw', 1000),
(477, 28, '1-28', 1, '新兆湘', '{"number":"139081","shop":"\\u65b0\\u5146\\u6e58","phone":"076250698","address":"\\u4fe1\\u7fa9\\u91cc\\u4ecb\\u58fd\\u8def\\u0031\\u0030\\u5df7\\u0032\\u0035\\u5f04\\u0039\\u865f\\u0031\\u0035\\u865f"}', '139081', '711', 'zh-tw', 1000),
(478, 29, '1-29', 1, '鼓山', '{"number":"142319","shop":"\\u9f13\\u5c71","phone":"075215439","address":"\\u9f13\\u5c71\\u4e8c\\u8def\\u0031\\u0032\\u0035\\u4e4b\\u0031\\u865f\\u0031\\u0032\\u0037\\u865f\\u0031\\u0032\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '142319', '711', 'zh-tw', 1000),
(479, 29, '1-29', 1, '柴山', '{"number":"979089","shop":"\\u67f4\\u5c71","phone":"075327121","address":"\\u9f13\\u5c71\\u4e09\\u8def\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f"}', '979089', '711', 'zh-tw', 1000),
(480, 29, '1-29', 1, '藏美', '{"number":"182306","shop":"\\u85cf\\u7f8e","phone":"075219533","address":"\\u5149\\u69ae\\u91cc\\u897f\\u85cf\\u8857\\u0036\\u865f\\u0031\\u6a13"}', '182306', '711', 'zh-tw', 1000),
(481, 29, '1-29', 1, '華豐', '{"number":"158440","shop":"\\u83ef\\u8c50","phone":"075524610","address":"\\u83ef\\u8c50\\u91cc\\u88d5\\u8aa0\\u8def\\u0031\\u0031\\u0036\\u0030\\u865f\\u660e\\u502b\\u8def\\u0031\\u0033\\u0038\\u865f"}', '158440', '711', 'zh-tw', 1000),
(482, 29, '1-29', 1, '華榮', '{"number":"171591","shop":"\\u83ef\\u69ae","phone":"075528627","address":"\\u83ef\\u69ae\\u8def\\u0032\\u0033\\u0036\\u865f\\u0032\\u0033\\u0038\\u865f"}', '171591', '711', 'zh-tw', 1000),
(483, 29, '1-29', 1, '榮夏', '{"number":"185202","shop":"\\u69ae\\u590f","phone":"075524255","address":"\\u83ef\\u69ae\\u8def\\u0033\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '185202', '711', 'zh-tw', 1000),
(484, 29, '1-29', 1, '建榮', '{"number":"183262","shop":"\\u5efa\\u69ae","phone":"075851507","address":"\\u5efa\\u69ae\\u8def\\u0031\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '183262', '711', 'zh-tw', 1000),
(485, 29, '1-29', 1, '內惟', '{"number":"935768","shop":"\\u5167\\u60df","phone":"075879203","address":"\\u4e5d\\u5982\\u56db\\u8def\\u0031\\u0034\\u0033\\u0032\\u865f\\u0031\\u0034\\u0033\\u0034\\u865f"}', '935768', '711', 'zh-tw', 1000),
(486, 29, '1-29', 1, '民強', '{"number":"844893","shop":"\\u6c11\\u5f37","phone":"075214862","address":"\\u4e5d\\u5982\\u56db\\u8def\\u0037\\u0030\\u0036\\u865f\\u0037\\u0030\\u0038\\u865f\\u0037\\u0031\\u0030\\u865f"}', '844893', '711', 'zh-tw', 1000),
(487, 29, '1-29', 1, '昶玖', '{"number":"912145","shop":"\\u6636\\u7396","phone":"075519575","address":"\\u4e5d\\u5982\\u56db\\u8def\\u0039\\u0032\\u0039\\u865f\\u0039\\u0033\\u0031\\u865f"}', '912145', '711', 'zh-tw', 1000),
(488, 29, '1-29', 1, '鼓波', '{"number":"114196","shop":"\\u9f13\\u6ce2","phone":"075312364","address":"\\u81e8\\u6d77\\u4e8c\\u8def\\u0034\\u0035\\u002d\\u0031\\u865f"}', '114196', '711', 'zh-tw', 1000),
(489, 29, '1-29', 1, '臨海', '{"number":"183376","shop":"\\u81e8\\u6d77","phone":"075311392","address":"\\u81e8\\u6d77\\u4e8c\\u8def\\u0038\\u865f"}', '183376', '711', 'zh-tw', 1000),
(490, 29, '1-29', 1, '美藝', '{"number":"120191","shop":"\\u7f8e\\u85dd","phone":"075529812","address":"\\u9f8d\\u6c34\\u91cc\\u7f8e\\u8853\\u6771\\u4e8c\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '120191', '711', 'zh-tw', 1000),
(491, 29, '1-29', 1, '高美', '{"number":"200918","shop":"\\u9ad8\\u7f8e","phone":"075224427","address":"\\u9f8d\\u6c34\\u91cc\\u7f8e\\u8853\\u6771\\u4e8c\\u8def\\u0031\\u0038\\u0031\\u865f"}', '200918', '711', 'zh-tw', 1000),
(492, 29, '1-29', 1, '順屏', '{"number":"966359","shop":"\\u9806\\u5c4f","phone":"075222541","address":"\\u9f8d\\u5b50\\u91cc\\u5927\\u9806\\u4e00\\u8def\\u0038\\u0032\\u0035\\u865f"}', '966359', '711', 'zh-tw', 1000),
(493, 29, '1-29', 1, '順德', '{"number":"177555","shop":"\\u9806\\u5fb7","phone":"075538510","address":"\\u9f8d\\u5b50\\u91cc\\u5927\\u9806\\u4e00\\u8def\\u0038\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '177555', '711', 'zh-tw', 1000),
(494, 29, '1-29', 1, '農神', '{"number":"990237","shop":"\\u8fb2\\u795e","phone":"075228389","address":"\\u9f8d\\u5b50\\u91cc\\u795e\\u8fb2\\u8def\\u0031\\u0038\\u0033\\u865f\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '990237', '711', 'zh-tw', 1000),
(495, 29, '1-29', 1, '誠美', '{"number":"170613","shop":"\\u8aa0\\u7f8e","phone":"075525694","address":"\\u9f8d\\u5b50\\u91cc\\u88d5\\u8aa0\\u8def\\u0032\\u0030\\u0038\\u0030\\u865f"}', '170613', '711', 'zh-tw', 1000),
(496, 29, '1-29', 1, '人田', '{"number":"182904","shop":"\\u4eba\\u7530","phone":"075524392","address":"\\u7f8e\\u8853\\u6771\\u4e8c\\u8def\\u0037\\u865f"}', '182904', '711', 'zh-tw', 1000),
(497, 29, '1-29', 1, '美賢', '{"number":"166924","shop":"\\u7f8e\\u8ce2","phone":"075224914","address":"\\u7f8e\\u8853\\u6771\\u56db\\u8def\\u0034\\u0033\\u0030\\u865f"}', '166924', '711', 'zh-tw', 1000),
(498, 29, '1-29', 1, '鑫博', '{"number":"981613","shop":"\\u946b\\u535a","phone":"075554632","address":"\\u660e\\u8aa0\\u91cc\\u535a\\u611b\\u4e8c\\u8def\\u0033\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '981613', '711', 'zh-tw', 1000),
(499, 29, '1-29', 1, '明榮', '{"number":"170266","shop":"\\u660e\\u69ae","phone":"075542062","address":"\\u660e\\u8aa0\\u91cc\\u660e\\u83ef\\u8def\\u0032\\u0030\\u0034\\u865f"}', '170266', '711', 'zh-tw', 1000),
(500, 29, '1-29', 1, '文信', '{"number":"896551","shop":"\\u6587\\u4fe1","phone":"075536265","address":"\\u660e\\u8aa0\\u91cc\\u5357\\u5c4f\\u8def\\u0035\\u0032\\u0037\\u865f\\u0035\\u0032\\u0039\\u865f"}', '896551', '711', 'zh-tw', 1000),
(501, 29, '1-29', 1, '祥裕', '{"number":"186733","shop":"\\u7965\\u88d5","phone":"075546011","address":"\\u660e\\u8aa0\\u91cc\\u88d5\\u8aa0\\u8def\\u0031\\u0036\\u0031\\u0030\\u865f\\u0031\\u0036\\u0031\\u0032\\u865f"}', '186733', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(502, 29, '1-29', 1, '美珍', '{"number":"158897","shop":"\\u7f8e\\u73cd","phone":"075502901","address":"\\u660e\\u8aa0\\u56db\\u8def\\u0032\\u0033\\u865f"}', '158897', '711', 'zh-tw', 1000),
(503, 29, '1-29', 1, '海青', '{"number":"188913","shop":"\\u6d77\\u9752","phone":"075219140","address":"\\u9752\\u6d77\\u8def\\u0036\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '188913', '711', 'zh-tw', 1000),
(504, 29, '1-29', 1, '慶豐', '{"number":"171052","shop":"\\u6176\\u8c50","phone":"075524180","address":"\\u6176\\u8c50\\u8857\\u0031\\u865f"}', '171052', '711', 'zh-tw', 1000),
(505, 29, '1-29', 1, '新前鋒', '{"number":"972561","shop":"\\u65b0\\u524d\\u92d2","phone":"075888031","address":"\\u96c4\\u5cf0\\u91cc\\u4e5d\\u5982\\u56db\\u8def\\u0032\\u0030\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '972561', '711', 'zh-tw', 1000),
(506, 29, '1-29', 1, '裕東', '{"number":"115982","shop":"\\u88d5\\u6771","phone":"075525924","address":"\\u88d5\\u8aa0\\u8def\\u0031\\u0039\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '115982', '711', 'zh-tw', 1000),
(507, 30, '1-30', 1, '瑞蓁', '{"number":"138561","shop":"\\u745e\\u84c1","phone":"076991798","address":"\\u6d77\\u57d4\\u91cc\\u4fe1\\u7fa9\\u8def\\u0034\\u865f"}', '138561', '711', 'zh-tw', 1000),
(508, 30, '1-30', 1, '東敏', '{"number":"967606","shop":"\\u6771\\u654f","phone":"076935784","address":"\\u6e56\\u6771\\u91cc\\u6771\\u65b9\\u8def\\u0031\\u0030\\u0033\\u002d\\u0031\\u865f\\u0031\\u0030\\u0033\\u002d\\u0032\\u865f"}', '967606', '711', 'zh-tw', 1000),
(509, 30, '1-30', 1, '新東專', '{"number":"136727","shop":"\\u65b0\\u6771\\u5c08","phone":"076935310","address":"\\u6e56\\u6771\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0039\\u865f"}', '136727', '711', 'zh-tw', 1000),
(510, 30, '1-30', 1, '千湖', '{"number":"950479","shop":"\\u5343\\u6e56","phone":"076995620","address":"\\u8449\\u539d\\u91cc\\u4fdd\\u751f\\u8def\\u0031\\u0033\\u0035\\u865f\\u0031\\u0033\\u0037\\u865f"}', '950479', '711', 'zh-tw', 1000),
(511, 30, '1-30', 1, '湖慧', '{"number":"954666","shop":"\\u6e56\\u6167","phone":"076935969","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0030\\u002d\\u0031\\u865f"}', '954666', '711', 'zh-tw', 1000),
(512, 30, '1-30', 1, '太湖', '{"number":"165518","shop":"\\u592a\\u6e56","phone":"076992060","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '165518', '711', 'zh-tw', 1000),
(513, 31, '1-31', 1, '新甲仙', '{"number":"981015","shop":"\\u65b0\\u7532\\u4ed9","phone":"076754420","address":"\\u897f\\u5b89\\u91cc\\u6587\\u5316\\u8def\\u0035\\u0036\\u865f\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '981015', '711', 'zh-tw', 1000),
(514, 32, '1-32', 1, '鳳麟', '{"number":"177544","shop":"\\u9cf3\\u9e9f","phone":"076419269","address":"\\u6771\\u6797\\u91cc\\u9cf3\\u6797\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '177544', '711', 'zh-tw', 1000),
(515, 32, '1-32', 1, '東林', '{"number":"148878","shop":"\\u6771\\u6797","phone":"076411785","address":"\\u6771\\u6797\\u897f\\u8def\\u0031\\u0035\\u0034\\u865f"}', '148878', '711', 'zh-tw', 1000),
(516, 32, '1-32', 1, '園東', '{"number":"131892","shop":"\\u5712\\u6771","phone":"076416738","address":"\\u6771\\u6797\\u897f\\u8def\\u0031\\u865f\\u0033\\u865f\\u0035\\u865f"}', '131892', '711', 'zh-tw', 1000),
(517, 32, '1-32', 1, '霖園', '{"number":"122946","shop":"\\u9716\\u5712","phone":"076415934","address":"\\u9cf3\\u6797\\u8def\\u4e00\\u6bb5\\u0032\\u865f\\u0031\\u6a13"}', '122946', '711', 'zh-tw', 1000),
(518, 32, '1-32', 1, '新元嘉', '{"number":"197548","shop":"\\u65b0\\u5143\\u5609","phone":"076427160","address":"\\u6e2f\\u5634\\u91cc\\u6cbf\\u6d77\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u0037\\u865f"}', '197548', '711', 'zh-tw', 1000),
(519, 32, '1-32', 1, '神農', '{"number":"112053","shop":"\\u795e\\u8fb2","phone":"076422561","address":"\\u5ee3\\u61c9\\u91cc\\u738b\\u516c\\u8def\\u0033\\u0034\\u0031\\u865f\\u0033\\u0034\\u0033\\u865f"}', '112053', '711', 'zh-tw', 1000),
(520, 32, '1-32', 1, '富田', '{"number":"155669","shop":"\\u5bcc\\u7530","phone":"076411294","address":"\\u6797\\u5712\\u5317\\u8def\\u0034\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '155669', '711', 'zh-tw', 1000),
(521, 32, '1-32', 1, '上芸', '{"number":"114233","shop":"\\u4e0a\\u82b8","phone":"076413906","address":"\\u897f\\u6eaa\\u8def\\u0031\\u0033\\u0033\\u002d\\u0033\\u0030\\u865f"}', '114233', '711', 'zh-tw', 1000),
(522, 32, '1-32', 1, '金潭', '{"number":"187770","shop":"\\u91d1\\u6f6d","phone":"076424521","address":"\\u4e2d\\u539d\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u0032\\u0037\\u865f"}', '187770', '711', 'zh-tw', 1000),
(523, 32, '1-32', 1, '園中', '{"number":"174361","shop":"\\u5712\\u4e2d","phone":"076437338","address":"\\u4e2d\\u9580\\u91cc\\u4e2d\\u9580\\u8def\\u0031\\u0035\\u002d\\u0031\\u865f"}', '174361', '711', 'zh-tw', 1000),
(524, 32, '1-32', 1, '中芸', '{"number":"199326","shop":"\\u4e2d\\u82b8","phone":"076438725","address":"\\u4e2d\\u82b8\\u91cc\\u9cf3\\u82b8\\u4e8c\\u8def\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '199326', '711', 'zh-tw', 1000),
(525, 33, '1-33', 1, '合平', '{"number":"875440","shop":"\\u5408\\u5e73","phone":"072274811","address":"\\u5b89\\u7965\\u91cc\\u516d\\u5408\\u8def\\u0036\\u0030\\u865f"}', '875440', '711', 'zh-tw', 1000),
(526, 33, '1-33', 1, '大順', '{"number":"159018","shop":"\\u5927\\u9806","phone":"077230499","address":"\\u5927\\u9806\\u4e09\\u8def\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '159018', '711', 'zh-tw', 1000),
(527, 33, '1-33', 1, '新景有', '{"number":"981211","shop":"\\u65b0\\u666f\\u6709","phone":"077238146","address":"\\u798f\\u5fb7\\u4e09\\u8def\\u0031\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '981211', '711', 'zh-tw', 1000),
(528, 33, '1-33', 1, '興陽', '{"number":"195771","shop":"\\u8208\\u967d","phone":"073312461","address":"\\u5fa9\\u8208\\u4e8c\\u8def\\u0032\\u0032\\u865f"}', '195771', '711', 'zh-tw', 1000),
(529, 33, '1-33', 1, '光尚', '{"number":"192772","shop":"\\u5149\\u5c1a","phone":"072236004","address":"\\u5149\\u83ef\\u4e00\\u8def\\u0032\\u0032\\u0036\\u865f"}', '192772', '711', 'zh-tw', 1000),
(530, 33, '1-33', 1, '華堂', '{"number":"128612","shop":"\\u83ef\\u5802","phone":"073384922","address":"\\u5ee3\\u6fa4\\u91cc\\u6587\\u6a6b\\u4e8c\\u8def\\u0034\\u0031\\u865f"}', '128612', '711', 'zh-tw', 1000),
(531, 33, '1-33', 1, '海音', '{"number":"193111","shop":"\\u6d77\\u97f3","phone":"072418029","address":"\\u6d77\\u908a\\u8def\\u0034\\u0038\\u002e\\u0034\\u0038\\u002d\\u0031\\u002e\\u0034\\u0038\\u002d\\u0032\\u865f"}', '193111', '711', 'zh-tw', 1000),
(532, 33, '1-33', 1, '維雄', '{"number":"159096","shop":"\\u7dad\\u96c4","phone":"077164323","address":"\\u548c\\u5e73\\u4e00\\u8def\\u0031\\u0030\\u0030\\u865f"}', '159096', '711', 'zh-tw', 1000),
(533, 33, '1-33', 1, '新道明', '{"number":"141246","shop":"\\u65b0\\u9053\\u660e","phone":"072251125","address":"\\u5efa\\u570b\\u4e00\\u8def\\u0032\\u0031\\u0031\\u865f\\u0032\\u0031\\u0033\\u865f"}', '141246', '711', 'zh-tw', 1000),
(534, 33, '1-33', 1, '林德', '{"number":"135274","shop":"\\u6797\\u5fb7","phone":"077213735","address":"\\u6797\\u5357\\u91cc\\u6797\\u5fb7\\u8857\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '135274', '711', 'zh-tw', 1000),
(535, 33, '1-33', 1, '美田', '{"number":"833000","shop":"\\u7f8e\\u7530","phone":"073391186","address":"\\u6797\\u68ee\\u4e8c\\u8def\\u0037\\u0039\\u865f"}', '833000', '711', 'zh-tw', 1000),
(536, 33, '1-33', 1, '銀光', '{"number":"186582","shop":"\\u9280\\u5149","phone":"072230248","address":"\\u6797\\u570d\\u91cc\\u5149\\u83ef\\u4e00\\u8def\\u0032\\u0036\\u0033\\u865f"}', '186582', '711', 'zh-tw', 1000),
(537, 33, '1-33', 1, '永泰', '{"number":"896193","shop":"\\u6c38\\u6cf0","phone":"073305281","address":"\\u82d3\\u96c5\\u4e8c\\u8def\\u0032\\u0034\\u0033\\u865f"}', '896193', '711', 'zh-tw', 1000),
(538, 33, '1-33', 1, '青雅', '{"number":"130545","shop":"\\u9752\\u96c5","phone":"072233056","address":"\\u9752\\u5e74\\u4e00\\u8def\\u0036\\u4e4b\\u0038\\u53ca\\u0036\\u4e4b\\u0039\\u865f"}', '130545', '711', 'zh-tw', 1000),
(539, 33, '1-33', 1, '晴朗', '{"number":"171270","shop":"\\u6674\\u6717","phone":"073352263","address":"\\u6674\\u6717\\u91cc\\u5fa9\\u8208\\u4e8c\\u8def\\u0031\\u0036\\u0032\\u865f"}', '171270', '711', 'zh-tw', 1000),
(540, 33, '1-33', 1, '宏順', '{"number":"186098","shop":"\\u5b8f\\u9806","phone":"077218967","address":"\\u4e09\\u591a\\u4e00\\u8def\\u0031\\u0030\\u0038\\u002e\\u0031\\u0031\\u0030\\u865f"}', '186098', '711', 'zh-tw', 1000),
(541, 33, '1-33', 1, '福海', '{"number":"185040","shop":"\\u798f\\u6d77","phone":"077279275","address":"\\u4e09\\u591a\\u4e00\\u8def\\u0032\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '185040', '711', 'zh-tw', 1000),
(542, 33, '1-33', 1, '廣東', '{"number":"170808","shop":"\\u5ee3\\u6771","phone":"077110044","address":"\\u56db\\u7dad\\u4e8c\\u8def\\u0039\\u0034\\u4e4b\\u0032\\u0031\\u865f"}', '170808', '711', 'zh-tw', 1000),
(543, 33, '1-33', 1, '萬應', '{"number":"186294","shop":"\\u842c\\u61c9","phone":"073364904","address":"\\u56db\\u7dad\\u56db\\u8def\\u0031\\u0039\\u0030\\u002d\\u0031\\u865f"}', '186294', '711', 'zh-tw', 1000),
(544, 33, '1-33', 1, '雅慶', '{"number":"174659","shop":"\\u96c5\\u6176","phone":"072246828","address":"\\u540c\\u6176\\u91cc\\u540c\\u6176\\u8def\\u0038\\u0038\\u865f\\u0039\\u0030\\u865f"}', '174659', '711', 'zh-tw', 1000),
(545, 33, '1-33', 1, '建福', '{"number":"896001","shop":"\\u5efa\\u798f","phone":"077253369","address":"\\u4e94\\u798f\\u91cc\\u5efa\\u570b\\u4e00\\u8def\\u0032\\u0030\\u0038\\u865f"}', '896001', '711', 'zh-tw', 1000),
(546, 33, '1-33', 1, '武漢', '{"number":"115889","shop":"\\u6b66\\u6f22","phone":"077214004","address":"\\u6b66\\u6f22\\u8857\\u0037\\u0032\\u865f"}', '115889', '711', 'zh-tw', 1000),
(547, 33, '1-33', 1, '武勝', '{"number":"177201","shop":"\\u6b66\\u52dd","phone":"077226240","address":"\\u6b66\\u5edf\\u8def\\u0035\\u0035\\u865f\\u0035\\u0035\\u4e4b\\u0031\\u865f\\u0035\\u0037\\u865f\\u0031\\u002e\\u0032\\u6a13\\u0035\\u0039\\u865f\\u0032\\u6a13"}', '177201', '711', 'zh-tw', 1000),
(548, 33, '1-33', 1, '中仁', '{"number":"143909","shop":"\\u4e2d\\u4ec1","phone":"073387403","address":"\\u8208\\u4e2d\\u4e8c\\u8def\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '143909', '711', 'zh-tw', 1000),
(549, 33, '1-33', 1, '復中', '{"number":"113481","shop":"\\u5fa9\\u4e2d","phone":"073380029","address":"\\u8208\\u4e2d\\u4e00\\u8def\\u0031\\u0033\\u0038\\u865f"}', '113481', '711', 'zh-tw', 1000),
(550, 33, '1-33', 1, '東泥', '{"number":"914152","shop":"\\u6771\\u6ce5","phone":"072691458","address":"\\u610f\\u8aa0\\u91cc\\u4e09\\u591a\\u56db\\u8def\\u0039\\u0033\\u865f"}', '914152', '711', 'zh-tw', 1000),
(551, 33, '1-33', 1, '新強', '{"number":"941615","shop":"\\u65b0\\u5f37","phone":"072695450","address":"\\u610f\\u8aa0\\u91cc\\u65b0\\u5149\\u8def\\u0036\\u0034\\u865f\\u0036\\u0036\\u865f"}', '941615', '711', 'zh-tw', 1000),
(552, 33, '1-33', 1, '英明', '{"number":"892308","shop":"\\u82f1\\u660e","phone":"077521603","address":"\\u82f1\\u660e\\u8def\\u0031\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '892308', '711', 'zh-tw', 1000),
(553, 33, '1-33', 1, '樂仁', '{"number":"195069","shop":"\\u6a02\\u4ec1","phone":"072232472","address":"\\u6a02\\u4ec1\\u8def\\u0031\\u0031\\u0036\\u865f"}', '195069', '711', 'zh-tw', 1000),
(554, 33, '1-33', 1, '正心', '{"number":"113953","shop":"\\u6b63\\u5fc3","phone":"077224176","address":"\\u6b63\\u5927\\u91cc\\u8f14\\u4ec1\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '113953', '711', 'zh-tw', 1000),
(555, 33, '1-33', 1, '正文', '{"number":"991285","shop":"\\u6b63\\u6587","phone":"077277235","address":"\\u6b63\\u5927\\u91cc\\u5efa\\u570b\\u4e00\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u0032\\u0035\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '991285', '711', 'zh-tw', 1000),
(556, 33, '1-33', 1, '大輔', '{"number":"185800","shop":"\\u5927\\u8f14","phone":"077228664","address":"\\u6b63\\u5fc3\\u91cc\\u8f14\\u4ec1\\u8def\\u0033\\u0033\\u0033\\u865f"}', '185800', '711', 'zh-tw', 1000),
(557, 33, '1-33', 1, '好正義', '{"number":"166784","shop":"\\u597d\\u6b63\\u7fa9","phone":"077405026","address":"\\u6b63\\u7fa9\\u8def\\u0031\\u0039\\u0035\\u865f\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '166784', '711', 'zh-tw', 1000),
(558, 33, '1-33', 1, '高昇', '{"number":"137041","shop":"\\u9ad8\\u6607","phone":"073348738","address":"\\u4e2d\\u83ef\\u56db\\u8def\\u0036\\u0034\\u865f"}', '137041', '711', 'zh-tw', 1000),
(559, 33, '1-33', 1, '中雅', '{"number":"896997","shop":"\\u4e2d\\u96c5","phone":"075370234","address":"\\u4e2d\\u5c71\\u4e8c\\u8def\\u0034\\u0036\\u0033\\u865f"}', '896997', '711', 'zh-tw', 1000),
(560, 33, '1-33', 1, '強泥', '{"number":"186456","shop":"\\u5f37\\u6ce5","phone":"072692125","address":"\\u81ea\\u5f37\\u4e09\\u8def\\u0032\\u002e\\u0036\\u865f\\u65b0\\u5149\\u8def\\u0037\\u0032\\u002e\\u0037\\u0034\\u865f"}', '186456', '711', 'zh-tw', 1000),
(561, 33, '1-33', 1, '新灣', '{"number":"165895","shop":"\\u65b0\\u7063","phone":"075665433","address":"\\u81ea\\u5f37\\u4e09\\u8def\\u0033\\u865f\\u0031\\u0032\\u6a13\\u4e4b\\u0036\\u002e\\u0037\\u002e\\u0038"}', '165895', '711', 'zh-tw', 1000),
(562, 34, '1-34', 1, '寶來', '{"number":"902229","shop":"\\u5bf6\\u4f86","phone":"076882866","address":"\\u5bf6\\u4f86\\u91cc\\u4e2d\\u6b63\\u8def\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f"}', '902229', '711', 'zh-tw', 1000),
(563, 34, '1-34', 1, '荖濃', '{"number":"968757","shop":"\\u8356\\u6fc3","phone":"076882559","address":"\\u8356\\u6fc3\\u91cc\\u5357\\u6a6b\\u8def\\u0034\\u0035\\u865f\\u0031\\u0046"}', '968757', '711', 'zh-tw', 1000),
(564, 34, '1-34', 1, '六龜', '{"number":"123374","shop":"\\u516d\\u9f9c","phone":"076895325","address":"\\u7fa9\\u5bf6\\u91cc\\u5149\\u5fa9\\u8def\\u0039\\u0038\\u865f"}', '123374', '711', 'zh-tw', 1000),
(565, 35, '1-35', 1, '北嶺', '{"number":"966980","shop":"\\u5317\\u5dba","phone":"076969439","address":"\\u5317\\u5dba\\u91cc\\u4e2d\\u5c71\\u5357\\u8def\\u0032\\u0032\\u0031\\u865f"}', '966980', '711', 'zh-tw', 1000),
(566, 35, '1-35', 1, '路好', '{"number":"114200","shop":"\\u8def\\u597d","phone":"076964450","address":"\\u5927\\u793e\\u8def\\u0031\\u0036\\u0032\\u865f"}', '114200', '711', 'zh-tw', 1000),
(567, 35, '1-35', 1, '一揚', '{"number":"198703","shop":"\\u4e00\\u63da","phone":"076977478","address":"\\u570b\\u660c\\u8def\\u0031\\u865f"}', '198703', '711', 'zh-tw', 1000),
(568, 35, '1-35', 1, '辰皓', '{"number":"150701","shop":"\\u8fb0\\u7693","phone":"076965194","address":"\\u570b\\u660c\\u8def\\u0033\\u0031\\u0032\\u865f"}', '150701', '711', 'zh-tw', 1000),
(569, 35, '1-35', 1, '路嘉', '{"number":"199005","shop":"\\u8def\\u5609","phone":"076955480","address":"\\u5f8c\\u9109\\u8def\\u0033\\u0037\\u865f\\u0031\\u6a13\\u4e4b\\u0031\\u002e\\u0032"}', '199005', '711', 'zh-tw', 1000),
(570, 35, '1-35', 1, '竹滬', '{"number":"163475","shop":"\\u7af9\\u6eec","phone":"076983035","address":"\\u83ef\\u6b63\\u8def\\u0033\\u0039\\u0030\\u865f"}', '163475', '711', 'zh-tw', 1000),
(571, 35, '1-35', 1, '環球', '{"number":"151922","shop":"\\u74b0\\u7403","phone":"076961045","address":"\\u74b0\\u7403\\u8def\\u0032\\u0030\\u0031\\u4e4b\\u0032\\u0037\\u865f"}', '151922', '711', 'zh-tw', 1000),
(572, 35, '1-35', 1, '群創八', '{"number":"183549","shop":"\\u7fa4\\u5275\\u516b","phone":"076955604","address":"\\u8def\\u79d1\\u5341\\u8def\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '183549', '711', 'zh-tw', 1000),
(573, 35, '1-35', 1, '路科', '{"number":"131696","shop":"\\u8def\\u79d1","phone":"076075828","address":"\\u793e\\u5357\\u91cc\\u5927\\u793e\\u8def\\u0034\\u0032\\u865f\\u0034\\u0032\\u4e4b\\u0031\\u865f\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '131696', '711', 'zh-tw', 1000),
(574, 35, '1-35', 1, '路園', '{"number":"932172","shop":"\\u8def\\u5712","phone":"076952504","address":"\\u4e0b\\u5751\\u91cc\\u592a\\u5e73\\u8def\\u0033\\u0034\\u0032\\u002d\\u0032\\u865f"}', '932172', '711', 'zh-tw', 1000),
(575, 35, '1-35', 1, '高苑', '{"number":"184830","shop":"\\u9ad8\\u82d1","phone":"076960040","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0032\\u0031\\u865f"}', '184830', '711', 'zh-tw', 1000),
(576, 35, '1-35', 1, '元茗', '{"number":"132208","shop":"\\u5143\\u8317","phone":"076966748","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0037\\u0032\\u865f\\u0031\\u0037\\u0032\\u4e4b\\u0031\\u865f"}', '132208', '711', 'zh-tw', 1000),
(577, 35, '1-35', 1, '華中', '{"number":"174235","shop":"\\u83ef\\u4e2d","phone":"076969279","address":"\\u7af9\\u5357\\u91cc\\u4e2d\\u83ef\\u8def\\u0031\\u0032\\u0034\\u865f"}', '174235', '711', 'zh-tw', 1000),
(578, 36, '1-36', 1, '龍肚', '{"number":"968067","shop":"\\u9f8d\\u809a","phone":"076852524","address":"\\u9f8d\\u5c71\\u91cc\\u4e2d\\u83ef\\u8def\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '968067', '711', 'zh-tw', 1000),
(579, 36, '1-36', 1, '月光山', '{"number":"980702","shop":"\\u6708\\u5149\\u5c71","phone":"076811294","address":"\\u6cf0\\u5b89\\u91cc\\u6cf0\\u5b89\\u8def\\u0035\\u0039\\u865f"}', '980702', '711', 'zh-tw', 1000),
(580, 36, '1-36', 1, '正美', '{"number":"913193","shop":"\\u6b63\\u7f8e","phone":"076817197","address":"\\u6cf0\\u5b89\\u91cc\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u865f\\u0032\\u0033\\u865f"}', '913193', '711', 'zh-tw', 1000),
(581, 36, '1-36', 1, '興壇', '{"number":"911636","shop":"\\u8208\\u58c7","phone":"076810487","address":"\\u4e2d\\u58c7\\u91cc\\u5fe0\\u5b5d\\u8def\\u4e00\\u6bb5\\u0031\\u865f"}', '911636', '711', 'zh-tw', 1000),
(582, 36, '1-36', 1, '柯達', '{"number":"970299","shop":"\\u67ef\\u9054","phone":"076834497","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u0039\\u865f\\u0038\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '970299', '711', 'zh-tw', 1000),
(583, 37, '1-37', 1, '彌進', '{"number":"138871","shop":"\\u5f4c\\u9032","phone":"076104803","address":"\\u5f4c\\u9640\\u91cc\\u9032\\u5b78\\u8def\\u0033\\u0033\\u865f"}', '138871', '711', 'zh-tw', 1000),
(584, 37, '1-37', 1, '彌盛', '{"number":"198644","shop":"\\u5f4c\\u76db","phone":"076106141","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0034\\u0036\\u865f"}', '198644', '711', 'zh-tw', 1000),
(585, 38, '1-38', 1, '明月', '{"number":"180849","shop":"\\u660e\\u6708","phone":"073633402","address":"\\u7b2c\\u4e8c\\u5712\\u5340\\u5275\\u610f\\u5317\\u8def\\u0031\\u865f"}', '180849', '711', 'zh-tw', 1000),
(586, 39, '1-39', 1, '新創', '{"number":"189994","shop":"\\u65b0\\u5275","phone":"073538062","address":"\\u5275\\u65b0\\u8def\\u0031\\u865f"}', '189994', '711', 'zh-tw', 1000),
(587, 39, '1-39', 1, '豐創', '{"number":"167008","shop":"\\u8c50\\u5275","phone":"073528747","address":"\\u5275\\u65b0\\u8def\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '167008', '711', 'zh-tw', 1000),
(588, 39, '1-39', 1, '雙德', '{"number":"143242","shop":"\\u96d9\\u5fb7","phone":"073010369","address":"\\u7fe0\\u5c4f\\u91cc\\u5fb7\\u60e0\\u8def\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '143242', '711', 'zh-tw', 1000),
(589, 39, '1-39', 1, '德祥', '{"number":"129040","shop":"\\u5fb7\\u7965","phone":"073661723","address":"\\u7fe0\\u5c4f\\u91cc\\u5fb7\\u8ce2\\u8def\\u0032\\u0034\\u0036\\u865f"}', '129040', '711', 'zh-tw', 1000),
(590, 39, '1-39', 1, '德賢', '{"number":"935883","shop":"\\u5fb7\\u8ce2","phone":"073662023","address":"\\u7fe0\\u5c4f\\u91cc\\u5fb7\\u8ce2\\u8def\\u0035\\u0039\\u0034\\u865f\\u0035\\u0039\\u0036\\u865f"}', '935883', '711', 'zh-tw', 1000),
(591, 39, '1-39', 1, '惠民', '{"number":"131478","shop":"\\u60e0\\u6c11","phone":"073643954","address":"\\u7fe0\\u5c4f\\u91cc\\u60e0\\u6c11\\u8def\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '131478', '711', 'zh-tw', 1000),
(592, 39, '1-39', 1, '好事登', '{"number":"197238","shop":"\\u597d\\u4e8b\\u767b","phone":"073526754","address":"\\u9cf3\\u6960\\u8def\\u0032\\u0033\\u0035\\u865f\\u671d\\u660e\\u8def\\u0032\\u0033\\u0033\\u865f"}', '197238', '711', 'zh-tw', 1000),
(593, 39, '1-39', 1, '廣昌', '{"number":"913067","shop":"\\u5ee3\\u660c","phone":"073608353","address":"\\u5ee3\\u660c\\u91cc\\u5ee3\\u660c\\u8857\\u0031\\u0034\\u0030\\u865f"}', '913067', '711', 'zh-tw', 1000),
(594, 39, '1-39', 1, '元昌', '{"number":"952741","shop":"\\u5143\\u660c","phone":"073644909","address":"\\u570b\\u660c\\u91cc\\u5fb7\\u6c11\\u8def\\u0039\\u0030\\u0030\\u865f\\u0039\\u0030\\u0032\\u865f"}', '952741', '711', 'zh-tw', 1000),
(595, 39, '1-39', 1, '海科大', '{"number":"990570","shop":"\\u6d77\\u79d1\\u5927","phone":"073658863","address":"\\u6d77\\u5c08\\u8def\\u0031\\u0034\\u0033\\u865f\\u0031\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '990570', '711', 'zh-tw', 1000),
(596, 39, '1-39', 1, '德民', '{"number":"184450","shop":"\\u5fb7\\u6c11","phone":"073010218","address":"\\u6d77\\u5c08\\u8def\\u0034\\u0030\\u0030\\u865f"}', '184450', '711', 'zh-tw', 1000),
(597, 39, '1-39', 1, '藍昌', '{"number":"177256","shop":"\\u85cd\\u660c","phone":"073642993","address":"\\u5f8c\\u660c\\u8def\\u0031\\u0031\\u0038\\u0037\\u865f\\u0031\\u0031\\u0038\\u0039\\u865f"}', '177256', '711', 'zh-tw', 1000),
(598, 39, '1-39', 1, '慶昌', '{"number":"197250","shop":"\\u6176\\u660c","phone":"073680748","address":"\\u5f8c\\u660c\\u8def\\u0037\\u0032\\u0032\\u865f"}', '197250', '711', 'zh-tw', 1000),
(599, 39, '1-39', 1, '秀昌', '{"number":"120250","shop":"\\u79c0\\u660c","phone":"073641295","address":"\\u5f8c\\u660c\\u8def\\u0038\\u0035\\u0038\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '120250', '711', 'zh-tw', 1000),
(600, 39, '1-39', 1, '都會', '{"number":"164102","shop":"\\u90fd\\u6703","phone":"073641804","address":"\\u60e0\\u8c50\\u91cc\\u5fb7\\u6c11\\u8def\\u0031\\u0031\\u0035\\u865f"}', '164102', '711', 'zh-tw', 1000),
(601, 39, '1-39', 1, '惠心', '{"number":"165574","shop":"\\u60e0\\u5fc3","phone":"073600709","address":"\\u60e0\\u6c11\\u91cc\\u9ad8\\u6960\\u516c\\u8def\\u0031\\u0037\\u0036\\u0034\\u4e4b\\u0031\\u865f"}', '165574', '711', 'zh-tw', 1000),
(602, 39, '1-39', 1, '加群', '{"number":"896481","shop":"\\u52a0\\u7fa4","phone":"073636174","address":"\\u52a0\\u660c\\u91cc\\u0034\\u0030\\u9130\\u6a02\\u7fa4\\u8def\\u0031\\u0035\\u0033\\u865f\\u0031\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '896481', '711', 'zh-tw', 1000),
(603, 39, '1-39', 1, '樂民', '{"number":"117911","shop":"\\u6a02\\u6c11","phone":"073634607","address":"\\u52a0\\u660c\\u91cc\\u58fd\\u6c11\\u8def\\u0035\\u0038\\u865f"}', '117911', '711', 'zh-tw', 1000),
(604, 39, '1-39', 1, '新加昌', '{"number":"167385","shop":"\\u65b0\\u52a0\\u660c","phone":"073644425","address":"\\u52a0\\u660c\\u8def\\u0032\\u0037\\u0035\\u002e\\u0032\\u0037\\u0037\\u865f"}', '167385', '711', 'zh-tw', 1000),
(605, 39, '1-39', 1, '鑫建昌', '{"number":"146171","shop":"\\u946b\\u5efa\\u660c","phone":"073637139","address":"\\u5efa\\u660c\\u91cc\\u53f3\\u660c\\u8857\\u0031\\u0034\\u0038\\u865f"}', '146171', '711', 'zh-tw', 1000),
(606, 39, '1-39', 1, '新後昌', '{"number":"111832","shop":"\\u65b0\\u5f8c\\u660c","phone":"073646497","address":"\\u9326\\u5c4f\\u91cc\\u5f8c\\u660c\\u8def\\u0031\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '111832', '711', 'zh-tw', 1000),
(607, 39, '1-39', 1, '久昌', '{"number":"966902","shop":"\\u4e45\\u660c","phone":"073647112","address":"\\u4e45\\u660c\\u91cc\\u76db\\u660c\\u8857\\u0032\\u0036\\u002c\\u0032\\u0038\\u865f"}', '966902', '711', 'zh-tw', 1000),
(608, 39, '1-39', 1, '校和', '{"number":"881685","shop":"\\u6821\\u548c","phone":"073012204","address":"\\u8ecd\\u6821\\u8def\\u0036\\u0035\\u0038\\u865f"}', '881685', '711', 'zh-tw', 1000),
(609, 39, '1-39', 1, '藍田', '{"number":"993797","shop":"\\u85cd\\u7530","phone":"073647132","address":"\\u85cd\\u660c\\u8def\\u0033\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '993797', '711', 'zh-tw', 1000),
(610, 39, '1-39', 1, '安合', '{"number":"183712","shop":"\\u5b89\\u5408","phone":"073643261","address":"\\u85cd\\u660c\\u8def\\u0034\\u0032\\u0030\\u865f"}', '183712', '711', 'zh-tw', 1000),
(611, 39, '1-39', 1, '學安', '{"number":"179816","shop":"\\u5b78\\u5b89","phone":"073643028","address":"\\u85cd\\u7530\\u8def\\u0038\\u0031\\u0036\\u865f"}', '179816', '711', 'zh-tw', 1000),
(612, 39, '1-39', 1, '學高', '{"number":"193579","shop":"\\u5b78\\u9ad8","phone":"073646746","address":"\\u85cd\\u7530\\u8def\\u0039\\u0036\\u0032\\u002e\\u0039\\u0036\\u0036\\u865f"}', '193579', '711', 'zh-tw', 1000),
(613, 39, '1-39', 1, '祥嘉', '{"number":"180919","shop":"\\u7965\\u5609","phone":"073538014","address":"\\u7acb\\u6c11\\u8def\\u0033\\u0033\\u865f"}', '180919', '711', 'zh-tw', 1000),
(614, 39, '1-39', 1, '日明', '{"number":"154574","shop":"\\u65e5\\u660e","phone":"073632411","address":"\\u6960\\u6893\\u52a0\\u5de5\\u51fa\\u53e3\\u5340\\u7b2c\\u4e8c\\u5712\\u5340\\u7814\\u767c\\u8def\\u0036\\u0036\\u865f\\u0033\\u6a13"}', '154574', '711', 'zh-tw', 1000),
(615, 39, '1-39', 1, '欣清心', '{"number":"167547","shop":"\\u6b23\\u6e05\\u5fc3","phone":"073533490","address":"\\u6e05\\u8c50\\u4e8c\\u8def\\u0031\\u0036\\u865f"}', '167547', '711', 'zh-tw', 1000),
(616, 39, '1-39', 1, '常德', '{"number":"198965","shop":"\\u5e38\\u5fb7","phone":"073532424","address":"\\u6e05\\u8c50\\u91cc\\u5e38\\u5fb7\\u8def\\u0032\\u0038\\u0037\\u865f"}', '198965', '711', 'zh-tw', 1000),
(617, 39, '1-39', 1, '麗景', '{"number":"115856","shop":"\\u9e97\\u666f","phone":"073532334","address":"\\u6e05\\u8c50\\u91cc\\u65d7\\u6960\\u8def\\u0038\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '115856', '711', 'zh-tw', 1000),
(618, 39, '1-39', 1, '梓聖', '{"number":"141165","shop":"\\u6893\\u8056","phone":"073648745","address":"\\u745e\\u5c4f\\u8def\\u0038\\u0030\\u4e4b\\u0035\\u865f\\u4e4b\\u0036\\u865f\\u4e4b\\u0037\\u865f\\u0031\\u6a13"}', '141165', '711', 'zh-tw', 1000),
(619, 39, '1-39', 1, '盛田', '{"number":"951988","shop":"\\u76db\\u7530","phone":"073519446","address":"\\u4eab\\u5e73\\u91cc\\u8208\\u6960\\u8def\\u0033\\u0032\\u0036\\u865f"}', '951988', '711', 'zh-tw', 1000),
(620, 39, '1-39', 1, '歐士盟', '{"number":"900197","shop":"\\u6b50\\u58eb\\u76df","phone":"073644743","address":"\\u53f3\\u660c\\u8857\\u0036\\u0031\\u0039\\u865f"}', '900197', '711', 'zh-tw', 1000),
(621, 39, '1-39', 1, '新宏昌', '{"number":"970462","shop":"\\u65b0\\u5b8f\\u660c","phone":"073654447","address":"\\u88d5\\u660c\\u91cc\\u53f3\\u660c\\u8857\\u0034\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '970462', '711', 'zh-tw', 1000),
(622, 39, '1-39', 1, '亞新', '{"number":"960133","shop":"\\u4e9e\\u65b0","phone":"073659953","address":"\\u6a02\\u7fa4\\u8def\\u0037\\u0036\\u865f"}', '960133', '711', 'zh-tw', 1000),
(623, 39, '1-39', 1, '德中', '{"number":"188429","shop":"\\u5fb7\\u4e2d","phone":"075910016","address":"\\u4e2d\\u548c\\u91cc\\u5fb7\\u4e2d\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '188429', '711', 'zh-tw', 1000),
(624, 39, '1-39', 1, '建楠', '{"number":"159281","shop":"\\u5efa\\u6960","phone":"073551501","address":"\\u4e2d\\u967d\\u91cc\\u5efa\\u6960\\u8def\\u0031\\u0033\\u0039\\u865f"}', '159281', '711', 'zh-tw', 1000),
(625, 39, '1-39', 1, '新楠梓', '{"number":"112260","shop":"\\u65b0\\u6960\\u6893","phone":"073524954","address":"\\u4e2d\\u967d\\u91cc\\u6960\\u6893\\u65b0\\u8def\\u0031\\u0038\\u0038\\u865f\\u0031\\u0038\\u0038\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '112260', '711', 'zh-tw', 1000),
(626, 40, '1-40', 1, '觀亭', '{"number":"116608","shop":"\\u89c0\\u4ead","phone":"076674786","address":"\\u89c0\\u4ead\\u91cc\\u5357\\u5c4f\\u8def\\u0037\\u0038\\u865f"}', '116608', '711', 'zh-tw', 1000),
(627, 40, '1-40', 1, '好鄰居', '{"number":"142711","shop":"\\u597d\\u9130\\u5c45","phone":"076673048","address":"\\u5167\\u9580\\u91cc\\u5167\\u9580\\u0039\\u0039\\u4e4b\\u0031\\u0039\\u865f"}', '142711', '711', 'zh-tw', 1000),
(628, 40, '1-40', 1, '實大', '{"number":"123385","shop":"\\u5be6\\u5927","phone":"076678178","address":"\\u5167\\u5357\\u91cc\\u5927\\u5b78\\u8def\\u0032\\u0030\\u0030\\u865f"}', '123385', '711', 'zh-tw', 1000),
(629, 41, '1-41', 1, '球場', '{"number":"188119","shop":"\\u7403\\u5834","phone":"073706395","address":"\\u672c\\u9928\\u8def\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '188119', '711', 'zh-tw', 1000),
(630, 41, '1-41', 1, '正修', '{"number":"941198","shop":"\\u6b63\\u4fee","phone":"077352360","address":"\\u9ce5\\u677e\\u91cc\\u6f84\\u6e05\\u8def\\u0038\\u0034\\u0030\\u865f"}', '941198', '711', 'zh-tw', 1000),
(631, 41, '1-41', 1, '新鳳松', '{"number":"148661","shop":"\\u65b0\\u9cf3\\u677e","phone":"077353853","address":"\\u9ce5\\u677e\\u91cc\\u5927\\u4ec1\\u5317\\u8def\\u0032\\u865f\\u0031\\u6a13"}', '148661', '711', 'zh-tw', 1000),
(632, 41, '1-41', 1, '長青', '{"number":"996349","shop":"\\u9577\\u9752","phone":"077327025","address":"\\u9ce5\\u677e\\u91cc\\u5927\\u667a\\u8def\\u0035\\u865f"}', '996349', '711', 'zh-tw', 1000),
(633, 41, '1-41', 1, '翔盛', '{"number":"971557","shop":"\\u7fd4\\u76db","phone":"077351489","address":"\\u6c34\\u571f\\u57d4\\u91cc\\u795e\\u8fb2\\u8def\\u0034\\u0037\\u0039\\u865f"}', '971557', '711', 'zh-tw', 1000),
(634, 41, '1-41', 1, '仁美', '{"number":"158381","shop":"\\u4ec1\\u7f8e","phone":"077318554","address":"\\u5b78\\u5802\\u8def\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f"}', '158381', '711', 'zh-tw', 1000),
(635, 42, '1-42', 1, '貝殼', '{"number":"192864","shop":"\\u8c9d\\u6bbc","phone":"075717026","address":"\\u5fa9\\u8208\\u91cc\\u65d7\\u6d25\\u4e09\\u8def\\u0033\\u0035\\u0036\\u002e\\u0033\\u0035\\u0038\\u865f"}', '192864', '711', 'zh-tw', 1000),
(636, 42, '1-42', 1, '旗津', '{"number":"170576","shop":"\\u65d7\\u6d25","phone":"075719252","address":"\\u6d77\\u5cb8\\u8def\\u0039\\u865f"}', '170576', '711', 'zh-tw', 1000),
(637, 42, '1-42', 1, '旗廟', '{"number":"990411","shop":"\\u65d7\\u5edf","phone":"075712330","address":"\\u632f\\u8208\\u91cc\\u5edf\\u524d\\u8def\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '990411', '711', 'zh-tw', 1000),
(638, 42, '1-42', 1, '旗皇', '{"number":"982317","shop":"\\u65d7\\u7687","phone":"075713430","address":"\\u4e2d\\u83ef\\u91cc\\u65d7\\u6d25\\u4e09\\u8def\\u0039\\u0030\\u0030\\u5df7\\u0031\\u865f\\u0033\\u865f"}', '982317', '711', 'zh-tw', 1000),
(639, 42, '1-42', 1, '新旗聖', '{"number":"970945","shop":"\\u65b0\\u65d7\\u8056","phone":"075714983","address":"\\u4e2d\\u6d32\\u4e8c\\u8def\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f"}', '970945', '711', 'zh-tw', 1000),
(640, 42, '1-42', 1, '旗海', '{"number":"136266","shop":"\\u65d7\\u6d77","phone":"075714206","address":"\\u4e2d\\u6d32\\u4e09\\u8def\\u0035\\u0037\\u0039\\u865f"}', '136266', '711', 'zh-tw', 1000),
(641, 43, '1-43', 1, '旗盟', '{"number":"966533","shop":"\\u65d7\\u76df","phone":"076629041","address":"\\u5927\\u5fb7\\u91cc\\u5ef6\\u5e73\\u4e00\\u8def\\u0037\\u0031\\u0030\\u002d\\u0031\\u865f"}', '966533', '711', 'zh-tw', 1000),
(642, 43, '1-43', 1, '新旗美', '{"number":"972516","shop":"\\u65b0\\u65d7\\u7f8e","phone":"076629434","address":"\\u6771\\u5e73\\u91cc\\u5ef6\\u5e73\\u4e8c\\u8def\\u0031\\u0033\\u0036\\u865f"}', '972516', '711', 'zh-tw', 1000),
(643, 43, '1-43', 1, '新永光', '{"number":"903901","shop":"\\u65b0\\u6c38\\u5149","phone":"076662848","address":"\\u5357\\u6d32\\u91cc\\u65d7\\u5357\\u4e8c\\u8def\\u0039\\u0031\\u4e4b\\u0031\\u865f"}', '903901', '711', 'zh-tw', 1000),
(644, 43, '1-43', 1, '圓興', '{"number":"111382","shop":"\\u5713\\u8208","phone":"076692934","address":"\\u65d7\\u7532\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u0033\\u865f\\u0031\\u6a13"}', '111382', '711', 'zh-tw', 1000),
(645, 43, '1-43', 1, '泰毅', '{"number":"880394","shop":"\\u6cf0\\u6bc5","phone":"076615136","address":"\\u592a\\u5e73\\u91cc\\u65d7\\u5357\\u4e00\\u8def\\u0031\\u0032\\u0031\\u865f"}', '880394', '711', 'zh-tw', 1000),
(646, 43, '1-43', 1, '永久', '{"number":"993177","shop":"\\u6c38\\u4e45","phone":"076622531","address":"\\u5ef6\\u5e73\\u4e00\\u8def\\u0034\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '993177', '711', 'zh-tw', 1000),
(647, 43, '1-43', 1, '新林眾', '{"number":"911108","shop":"\\u65b0\\u6797\\u773e","phone":"076624077","address":"\\u5ef6\\u5e73\\u4e00\\u8def\\u0037\\u0038\\u002d\\u0031\\u865f"}', '911108', '711', 'zh-tw', 1000),
(648, 43, '1-43', 1, '旗山', '{"number":"831554","shop":"\\u65d7\\u5c71","phone":"076615807","address":"\\u4e2d\\u5c71\\u8def\\u0037\\u0032\\u865f"}', '831554', '711', 'zh-tw', 1000),
(649, 44, '1-44', 1, '愛河', '{"number":"200882","shop":"\\u611b\\u6cb3","phone":"072414252","address":"\\u535a\\u5b5d\\u91cc\\u6cb3\\u6771\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '200882', '711', 'zh-tw', 1000),
(650, 44, '1-44', 1, '新盛', '{"number":"186205","shop":"\\u65b0\\u76db","phone":"072871936","address":"\\u8349\\u6c5f\\u91cc\\u4e03\\u8ce2\\u4e8c\\u8def\\u0031\\u0039\\u0033\\u865f\\u0031\\u0039\\u0033\\u4e4b\\u0031"}', '186205', '711', 'zh-tw', 1000),
(651, 44, '1-44', 1, '太華', '{"number":"132150","shop":"\\u592a\\u83ef","phone":"072153185","address":"\\u6210\\u529f\\u4e00\\u8def\\u0034\\u0035\\u0035\\u4e4b\\u0031\\u865f"}', '132150', '711', 'zh-tw', 1000),
(652, 44, '1-44', 1, '龍客', '{"number":"159502","shop":"\\u9f8d\\u5ba2","phone":"072158324","address":"\\u5927\\u540c\\u4e8c\\u8def\\u0031\\u865f"}', '159502', '711', 'zh-tw', 1000),
(653, 44, '1-44', 1, '青盛', '{"number":"996682","shop":"\\u9752\\u76db","phone":"072729349","address":"\\u5927\\u540c\\u4e00\\u8def\\u0032\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '996682', '711', 'zh-tw', 1000),
(654, 44, '1-44', 1, '愛之船', '{"number":"185693","shop":"\\u611b\\u4e4b\\u8239","phone":"072218107","address":"\\u6cb3\\u6771\\u8def\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '185693', '711', 'zh-tw', 1000),
(655, 44, '1-44', 1, '長興', '{"number":"159074","shop":"\\u9577\\u8208","phone":"072887238","address":"\\u745e\\u6e90\\u8def\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f"}', '159074', '711', 'zh-tw', 1000),
(656, 44, '1-44', 1, '市賢', '{"number":"935816","shop":"\\u5e02\\u8ce2","phone":"072716220","address":"\\u5e02\\u4e2d\\u4e00\\u8def\\u0032\\u0034\\u0032\\u865f"}', '935816', '711', 'zh-tw', 1000),
(657, 44, '1-44', 1, '長生', '{"number":"162667","shop":"\\u9577\\u751f","phone":"072610818","address":"\\u4e94\\u798f\\u4e09\\u8def\\u0035\\u0034\\u865f"}', '162667', '711', 'zh-tw', 1000),
(658, 44, '1-44', 1, '博仁', '{"number":"166762","shop":"\\u535a\\u4ec1","phone":"072215703","address":"\\u4e94\\u798f\\u4e09\\u8def\\u0039\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '166762', '711', 'zh-tw', 1000),
(659, 44, '1-44', 1, '文東', '{"number":"885838","shop":"\\u6587\\u6771","phone":"072169478","address":"\\u65b0\\u7530\\u8def\\u0032\\u0032\\u0036\\u865f\\u0032\\u0032\\u0038\\u865f"}', '885838', '711', 'zh-tw', 1000),
(660, 44, '1-44', 1, '中央公園', '{"number":"197711","shop":"\\u4e2d\\u592e\\u516c\\u5712","phone":"072819318","address":"\\u4e2d\\u5c71\\u4e00\\u8def\\u0031\\u0031\\u865f\\u0028\\u4e2d\\u592e\\u516c\\u5712\\u7ad9\\u5167\\u0029"}', '197711', '711', 'zh-tw', 1000),
(661, 44, '1-44', 1, '前金', '{"number":"928597","shop":"\\u524d\\u91d1","phone":"072419355","address":"\\u81ea\\u5f37\\u4e8c\\u8def\\u0031\\u0037\\u0032\\u865f"}', '928597', '711', 'zh-tw', 1000),
(662, 44, '1-44', 1, '自強', '{"number":"833594","shop":"\\u81ea\\u5f37","phone":"072515634","address":"\\u81ea\\u5f37\\u4e8c\\u8def\\u0033\\u0039\\u865f"}', '833594', '711', 'zh-tw', 1000),
(663, 45, '1-45', 1, '上德', '{"number":"922267","shop":"\\u4e0a\\u5fb7","phone":"078314990","address":"\\u8349\\u8859\\u91cc\\u8349\\u8859\\u4e8c\\u8def\\u0032\\u0039\\u0039\\u865f\\u0032\\u0039\\u0039\\u002d\\u0031\\u865f"}', '922267', '711', 'zh-tw', 1000),
(664, 45, '1-45', 1, '達家', '{"number":"916402","shop":"\\u9054\\u5bb6","phone":"078132874","address":"\\u8349\\u8859\\u91cc\\u8349\\u8859\\u4e8c\\u8def\\u0034\\u0030\\u0037\\u865f"}', '916402', '711', 'zh-tw', 1000),
(665, 45, '1-45', 1, '后安', '{"number":"861061","shop":"\\u540e\\u5b89","phone":"078314243","address":"\\u8349\\u8859\\u91cc\\u540e\\u5b89\\u8def\\u0031\\u0034\\u0036\\u865f"}', '861061', '711', 'zh-tw', 1000),
(666, 45, '1-45', 1, '新衙', '{"number":"143600","shop":"\\u65b0\\u8859","phone":"078218714","address":"\\u8349\\u8859\\u4e00\\u8def\\u0034\\u0031\\u865f\\u0034\\u0033\\u865f"}', '143600', '711', 'zh-tw', 1000),
(667, 45, '1-45', 1, '高雄', '{"number":"895938","shop":"\\u9ad8\\u96c4","phone":"073367915","address":"\\u5fa9\\u8208\\u4e09\\u8def\\u0031\\u0031\\u0036\\u865f"}', '895938', '711', 'zh-tw', 1000),
(668, 45, '1-45', 1, '復興', '{"number":"162911","shop":"\\u5fa9\\u8208","phone":"073312662","address":"\\u5fa9\\u8208\\u4e09\\u8def\\u0031\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '162911', '711', 'zh-tw', 1000),
(669, 45, '1-45', 1, '鑫愛群', '{"number":"982409","shop":"\\u946b\\u611b\\u7fa4","phone":"073340695","address":"\\u5fa9\\u8208\\u4e09\\u8def\\u0034\\u0033\\u0035\\u865f\\u0034\\u0033\\u0037\\u865f"}', '982409', '711', 'zh-tw', 1000),
(670, 45, '1-45', 1, '軟科', '{"number":"163729","shop":"\\u8edf\\u79d1","phone":"075364727","address":"\\u5fa9\\u8208\\u56db\\u8def\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '163729', '711', 'zh-tw', 1000),
(671, 45, '1-45', 1, '雄鎮', '{"number":"953065","shop":"\\u96c4\\u93ae","phone":"078116193","address":"\\u9ad8\\u96c4\\u52a0\\u5de5\\u51fa\\u53e3\\u5340\\u6771\\u4e00\\u8857\\u0037\\u865f"}', '953065', '711', 'zh-tw', 1000),
(672, 45, '1-45', 1, '慶華', '{"number":"148225","shop":"\\u6176\\u83ef","phone":"073341721","address":"\\u5149\\u83ef\\u4e8c\\u8def\\u0033\\u0039\\u0035\\u865f"}', '148225', '711', 'zh-tw', 1000),
(673, 45, '1-45', 1, '竹中', '{"number":"991528","shop":"\\u7af9\\u4e2d","phone":"077222801","address":"\\u548c\\u5e73\\u4e8c\\u8def\\u0032\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '991528', '711', 'zh-tw', 1000),
(674, 45, '1-45', 1, '天后', '{"number":"144898","shop":"\\u5929\\u540e","phone":"078126049","address":"\\u540e\\u5e73\\u8def\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '144898', '711', 'zh-tw', 1000),
(675, 45, '1-45', 1, '亞新灣', '{"number":"184081","shop":"\\u4e9e\\u65b0\\u7063","phone":"075362832","address":"\\u6797\\u68ee\\u56db\\u8def\\u0032\\u0035\\u0035\\u865f"}', '184081', '711', 'zh-tw', 1000),
(676, 45, '1-45', 1, '長權', '{"number":"194424","shop":"\\u9577\\u6b0a","phone":"073318790","address":"\\u6c11\\u6b0a\\u4e8c\\u8def\\u0033\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '194424', '711', 'zh-tw', 1000),
(677, 45, '1-45', 1, '揚揚', '{"number":"909194","shop":"\\u63da\\u63da","phone":"075373552","address":"\\u6c11\\u6b0a\\u91cc\\u912d\\u548c\\u8def\\u0036\\u0037\\u865f\\u0031\\u0046"}', '909194', '711', 'zh-tw', 1000),
(678, 45, '1-45', 1, '德新', '{"number":"911555","shop":"\\u5fb7\\u65b0","phone":"078124289","address":"\\u4ec1\\u611b\\u91cc\\u65b0\\u8859\\u8def\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f"}', '911555', '711', 'zh-tw', 1000),
(679, 45, '1-45', 1, '京明', '{"number":"153858","shop":"\\u4eac\\u660e","phone":"077260457","address":"\\u745e\\u5317\\u8def\\u0035\\u0034\\u865f\\u0031\\u6a13\\u53ca\\u0042\\u0031"}', '153858', '711', 'zh-tw', 1000),
(680, 45, '1-45', 1, '瑞崗', '{"number":"158679","shop":"\\u745e\\u5d17","phone":"077223731","address":"\\u745e\\u660c\\u91cc\\u745e\\u9686\\u8def\\u0033\\u0031\\u0030\\u865f\\u0033\\u0031\\u0032\\u865f"}', '158679', '711', 'zh-tw', 1000),
(681, 45, '1-45', 1, '新憲德', '{"number":"140704","shop":"\\u65b0\\u61b2\\u5fb7","phone":"077279437","address":"\\u745e\\u9686\\u8def\\u0036\\u0031\\u0039\\u865f"}', '140704', '711', 'zh-tw', 1000),
(682, 45, '1-45', 1, '崗正', '{"number":"922500","shop":"\\u5d17\\u6b63","phone":"077162008","address":"\\u745e\\u5e73\\u91cc\\u516c\\u6b63\\u8def\\u0032\\u0035\\u865f"}', '922500', '711', 'zh-tw', 1000),
(683, 45, '1-45', 1, '瑞正', '{"number":"960764","shop":"\\u745e\\u6b63","phone":"077168052","address":"\\u745e\\u8208\\u91cc\\u745e\\u5317\\u8def\\u0031\\u0035\\u0037\\u865f\\u0031\\u0035\\u0039\\u865f"}', '960764', '711', 'zh-tw', 1000),
(684, 45, '1-45', 1, '學源', '{"number":"111843","shop":"\\u5b78\\u6e90","phone":"075364382","address":"\\u4e09\\u591a\\u4e8c\\u8def\\u0034\\u0033\\u0037\\u865f\\u0034\\u0033\\u0039\\u865f\\u0034\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '111843', '711', 'zh-tw', 1000),
(685, 45, '1-45', 1, '臨廣', '{"number":"115960","shop":"\\u81e8\\u5ee3","phone":"078414875","address":"\\u65b0\\u751f\\u8def\\u0032\\u0034\\u0038\\u002d\\u0034\\u0035\\u865f"}', '115960', '711', 'zh-tw', 1000),
(686, 45, '1-45', 1, '新盛心', '{"number":"162933","shop":"\\u65b0\\u76db\\u5fc3","phone":"073309722","address":"\\u4e00\\u5fc3\\u4e8c\\u8def\\u0032\\u0030\\u0038\\u865f"}', '162933', '711', 'zh-tw', 1000),
(687, 45, '1-45', 1, '天山', '{"number":"915546","shop":"\\u5929\\u5c71","phone":"073356854","address":"\\u4e00\\u5fc3\\u4e00\\u8def\\u0034\\u0030\\u0036\\u865f"}', '915546', '711', 'zh-tw', 1000),
(688, 45, '1-45', 1, '泰豐', '{"number":"171535","shop":"\\u6cf0\\u8c50","phone":"077170231","address":"\\u6c38\\u8c50\\u8def\\u0031\\u865f"}', '171535', '711', 'zh-tw', 1000),
(689, 45, '1-45', 1, '鎮昌', '{"number":"136680","shop":"\\u93ae\\u660c","phone":"078125504","address":"\\u93ae\\u6d77\\u91cc\\u93ae\\u6d77\\u8def\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '136680', '711', 'zh-tw', 1000),
(690, 45, '1-45', 1, '鎮興', '{"number":"130084","shop":"\\u93ae\\u8208","phone":"078415339","address":"\\u93ae\\u8208\\u8def\\u0031\\u0037\\u0030\\u865f"}', '130084', '711', 'zh-tw', 1000),
(691, 45, '1-45', 1, '康德', '{"number":"132873","shop":"\\u5eb7\\u5fb7","phone":"078413825","address":"\\u93ae\\u8208\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '132873', '711', 'zh-tw', 1000),
(692, 45, '1-45', 1, '鎮陽', '{"number":"186630","shop":"\\u93ae\\u967d","phone":"078152693","address":"\\u93ae\\u967d\\u91cc\\u524d\\u93ae\\u8857\\u0032\\u0037\\u0038\\u865f\\u0032\\u0038\\u0030\\u865f"}', '186630', '711', 'zh-tw', 1000),
(693, 45, '1-45', 1, '新光和', '{"number":"981093","shop":"\\u65b0\\u5149\\u548c","phone":"075367297","address":"\\u912d\\u548c\\u5357\\u8def\\u0033\\u0030\\u0037\\u865f\\u0033\\u0030\\u0039\\u865f"}', '981093', '711', 'zh-tw', 1000),
(694, 45, '1-45', 1, '夢時代一', '{"number":"120674","shop":"\\u5922\\u6642\\u4ee3\\u4e00","phone":"078231906","address":"\\u4e2d\\u83ef\\u4e94\\u8def\\u0037\\u0038\\u0039\\u865f\\u0042\\u0032\\u6a13"}', '120674', '711', 'zh-tw', 1000),
(695, 45, '1-45', 1, '雄捷', '{"number":"971708","shop":"\\u96c4\\u6377","phone":"073386084","address":"\\u4e2d\\u5c71\\u4e8c\\u8def\\u0032\\u0036\\u0038\\u865f\\u0042\\u0031\\u0028\\u9ad8\\u96c4\\u6377\\u904b\\u0052\\u0038\\u7ad9\\u0029"}', '971708', '711', 'zh-tw', 1000),
(696, 45, '1-45', 1, '心日', '{"number":"904041","shop":"\\u5fc3\\u65e5","phone":"078152321","address":"\\u5fe0\\u8aa0\\u8def\\u0032\\u0031\\u0033\\u865f"}', '904041', '711', 'zh-tw', 1000),
(697, 45, '1-45', 1, '忠純', '{"number":"184553","shop":"\\u5fe0\\u7d14","phone":"075361082","address":"\\u5fe0\\u7d14\\u91cc\\u4e2d\\u83ef\\u4e94\\u8def\\u0039\\u0036\\u0039\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '184553', '711', 'zh-tw', 1000),
(698, 45, '1-45', 1, '獅甲', '{"number":"936037","shop":"\\u7345\\u7532","phone":"075373172","address":"\\u5fe0\\u7d14\\u91cc\\u4e2d\\u83ef\\u4e94\\u8def\\u0039\\u0039\\u0037\\u865f"}', '936037', '711', 'zh-tw', 1000),
(699, 45, '1-45', 1, '中鋼會館', '{"number":"154552","shop":"\\u4e2d\\u92fc\\u6703\\u9928","phone":"075366649","address":"\\u5fe0\\u7d14\\u91cc\\u5fe0\\u52e4\\u8def\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '154552', '711', 'zh-tw', 1000),
(700, 45, '1-45', 1, '賢明', '{"number":"875602","shop":"\\u8ce2\\u660e","phone":"077238081","address":"\\u7af9\\u5167\\u91cc\\u8ce2\\u660e\\u8def\\u0033\\u865f\\u0035\\u865f"}', '875602', '711', 'zh-tw', 1000),
(701, 46, '1-46', 1, '仕隆', '{"number":"978123","shop":"\\u4ed5\\u9686","phone":"076120711","address":"\\u767d\\u6a39\\u91cc\\u0033\\u0032\\u9130\\u767d\\u6a39\\u8def\\u0035\\u0033\\u865f"}', '978123', '711', 'zh-tw', 1000),
(702, 46, '1-46', 1, '五里林', '{"number":"131766","shop":"\\u4e94\\u91cc\\u6797","phone":"076119640","address":"\\u6771\\u6797\\u91cc\\u91cc\\u6797\\u6771\\u8def\\u0032\\u0030\\u865f"}', '131766', '711', 'zh-tw', 1000),
(703, 46, '1-46', 1, '甲圍', '{"number":"947244","shop":"\\u7532\\u570d","phone":"076130787","address":"\\u7532\\u5317\\u91cc\\u7532\\u570d\\u8def\\u0037\\u0031\\u865f"}', '947244', '711', 'zh-tw', 1000),
(704, 46, '1-46', 1, '仕豐', '{"number":"181510","shop":"\\u4ed5\\u8c50","phone":"076113845","address":"\\u4ed5\\u8c50\\u8def\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '181510', '711', 'zh-tw', 1000),
(705, 46, '1-46', 1, '橋鄰', '{"number":"188393","shop":"\\u6a4b\\u9130","phone":"076112945","address":"\\u4ed5\\u9686\\u91cc\\u6210\\u529f\\u5357\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '188393', '711', 'zh-tw', 1000),
(706, 46, '1-46', 1, '新隆豐', '{"number":"164032","shop":"\\u65b0\\u9686\\u8c50","phone":"076126956","address":"\\u4ed5\\u9686\\u91cc\\u9686\\u8c50\\u8def\\u0032\\u0037\\u0035\\u865f"}', '164032', '711', 'zh-tw', 1000),
(707, 47, '1-47', 1, '展欣', '{"number":"972309","shop":"\\u5c55\\u6b23","phone":"076909600","address":"\\u5609\\u5b89\\u91cc\\u4ec1\\u611b\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u0030\\u865f"}', '972309', '711', 'zh-tw', 1000),
(708, 47, '1-47', 1, '興達港', '{"number":"174187","shop":"\\u8208\\u9054\\u6e2f","phone":"076987105","address":"\\u5d0e\\u6f0f\\u91cc\\u6c11\\u6cbb\\u8def\\u0031\\u0038\\u0038\\u865f"}', '174187', '711', 'zh-tw', 1000),
(709, 47, '1-47', 1, '新茄萣', '{"number":"165736","shop":"\\u65b0\\u8304\\u8423","phone":"076900544","address":"\\u8304\\u8423\\u8def\\u4e8c\\u6bb5\\u0034\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '165736', '711', 'zh-tw', 1000),
(710, 47, '1-47', 1, '興達', '{"number":"914347","shop":"\\u8208\\u9054","phone":"076908629","address":"\\u8304\\u8423\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u0030\\u865f"}', '914347', '711', 'zh-tw', 1000),
(711, 47, '1-47', 1, '愛萣', '{"number":"127099","shop":"\\u611b\\u8423","phone":"076909590","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0037\\u865f\\u0031\\u0035\\u0039\\u865f\\u0031\\u0036\\u0031\\u865f"}', '127099', '711', 'zh-tw', 1000),
(712, 48, '1-48', 1, '得合', '{"number":"185198","shop":"\\u5f97\\u5408","phone":"073754863","address":"\\u516b\\u5fb7\\u897f\\u8def\\u0031\\u0036\\u0036\\u0030\\u865f"}', '185198', '711', 'zh-tw', 1000),
(713, 48, '1-48', 1, '京富', '{"number":"941051","shop":"\\u4eac\\u5bcc","phone":"073732953","address":"\\u516b\\u5366\\u91cc\\u516b\\u5fb7\\u5357\\u8def\\u0033\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '941051', '711', 'zh-tw', 1000),
(714, 48, '1-48', 1, '登發', '{"number":"996280","shop":"\\u767b\\u767c","phone":"073739703","address":"\\u516b\\u5366\\u91cc\\u516b\\u5fb7\\u5357\\u8def\\u0036\\u0035\\u865f"}', '996280', '711', 'zh-tw', 1000),
(715, 48, '1-48', 1, '得富', '{"number":"124610","shop":"\\u5f97\\u5bcc","phone":"073723458","address":"\\u516b\\u5366\\u91cc\\u516b\\u5fb7\\u897f\\u8def\\u0032\\u0034\\u0036\\u865f"}', '124610', '711', 'zh-tw', 1000),
(716, 48, '1-48', 1, '永仁', '{"number":"923662","shop":"\\u6c38\\u4ec1","phone":"073747347","address":"\\u516b\\u5366\\u91cc\\u6c38\\u4ec1\\u8857\\u0034\\u0033\\u0036\\u865f"}', '923662', '711', 'zh-tw', 1000),
(717, 48, '1-48', 1, '尚賀', '{"number":"153906","shop":"\\u5c1a\\u8cc0","phone":"073748241","address":"\\u8d64\\u5c71\\u91cc\\u4ec1\\u96c4\\u8def\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '153906', '711', 'zh-tw', 1000),
(718, 48, '1-48', 1, '八卦寮', '{"number":"127376","shop":"\\u516b\\u5366\\u5bee","phone":"073724588","address":"\\u5927\\u7063\\u91cc\\u516b\\u5fb7\\u5357\\u8def\\u0034\\u0039\\u0039\\u865f"}', '127376', '711', 'zh-tw', 1000),
(719, 48, '1-48', 1, '京吉', '{"number":"193823","shop":"\\u4eac\\u5409","phone":"073741759","address":"\\u4eac\\u5409\\u4e09\\u8def\\u0031\\u0030\\u0033\\u865f"}', '193823', '711', 'zh-tw', 1000),
(720, 48, '1-48', 1, '仁心', '{"number":"173900","shop":"\\u4ec1\\u5fc3","phone":"073749210","address":"\\u8003\\u6f6d\\u91cc\\u4ec1\\u5fc3\\u8def\\u0031\\u0039\\u0038\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '173900', '711', 'zh-tw', 1000),
(721, 48, '1-48', 1, '仁慈', '{"number":"151324","shop":"\\u4ec1\\u6148","phone":"077353499","address":"\\u4ec1\\u6148\\u91cc\\u4ec1\\u6148\\u8def\\u0031\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '151324', '711', 'zh-tw', 1000),
(722, 48, '1-48', 1, '澄合', '{"number":"141637","shop":"\\u6f84\\u5408","phone":"073747531","address":"\\u4ec1\\u5149\\u8def\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '141637', '711', 'zh-tw', 1000),
(723, 48, '1-48', 1, '仁樂', '{"number":"131582","shop":"\\u4ec1\\u6a02","phone":"073711110","address":"\\u4ec1\\u6b66\\u91cc\\u4ec1\\u548c\\u8857\\u0033\\u0036\\u865f"}', '131582', '711', 'zh-tw', 1000),
(724, 48, '1-48', 1, '三福', '{"number":"982694","shop":"\\u4e09\\u798f","phone":"073751295","address":"\\u4ec1\\u6b66\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '982694', '711', 'zh-tw', 1000),
(725, 48, '1-48', 1, '雄鼎', '{"number":"195542","shop":"\\u96c4\\u9f0e","phone":"073747409","address":"\\u4ec1\\u96c4\\u8def\\u0033\\u0034\\u0036\\u865f\\u0031\\u6a13\\u002c\\u0033\\u0034\\u0038\\u865f\\u0031\\u002d\\u0032\\u6a13"}', '195542', '711', 'zh-tw', 1000),
(726, 48, '1-48', 1, '仁雄', '{"number":"154817","shop":"\\u4ec1\\u96c4","phone":"073742364","address":"\\u4ec1\\u96c4\\u8def\\u0036\\u4e4b\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '154817', '711', 'zh-tw', 1000),
(727, 48, '1-48', 1, '友福', '{"number":"125831","shop":"\\u53cb\\u798f","phone":"073736036","address":"\\u7063\\u5167\\u91cc\\u9cf3\\u4ec1\\u8def\\u0039\\u0035\\u4e4b\\u0031\\u0035\\u865f"}', '125831', '711', 'zh-tw', 1000),
(728, 48, '1-48', 1, '米妃', '{"number":"182591","shop":"\\u7c73\\u5983","phone":"073735004","address":"\\u6587\\u6b66\\u91cc\\u4e2d\\u83ef\\u8def\\u0033\\u0032\\u0037\\u002d\\u0031\\u865f"}', '182591', '711', 'zh-tw', 1000),
(729, 48, '1-48', 1, '家恩', '{"number":"921172","shop":"\\u5bb6\\u6069","phone":"073736049","address":"\\u4e2d\\u83ef\\u8def\\u0034\\u0036\\u865f"}', '921172', '711', 'zh-tw', 1000),
(730, 48, '1-48', 1, '台塑', '{"number":"854030","shop":"\\u53f0\\u5851","phone":"073729649","address":"\\u7af9\\u5f8c\\u91cc\\u6c34\\u7ba1\\u8def\\u0031\\u0038\\u0039\\u865f"}', '854030', '711', 'zh-tw', 1000),
(731, 49, '1-49', 1, '興安邦', '{"number":"990134","shop":"\\u8208\\u5b89\\u90a6","phone":"073132327","address":"\\u5b89\\u90a6\\u91cc\\u5bdf\\u54c8\\u723e\\u4e8c\\u8857\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '990134', '711', 'zh-tw', 1000),
(732, 49, '1-49', 1, '吉遠', '{"number":"151173","shop":"\\u5409\\u9060","phone":"073224734","address":"\\u5b89\\u6771\\u91cc\\u5409\\u6797\\u8857\\u0032\\u0037\\u0031\\u865f"}', '151173', '711', 'zh-tw', 1000),
(733, 49, '1-49', 1, '科工館', '{"number":"185914","shop":"\\u79d1\\u5de5\\u9928","phone":"073809114","address":"\\u5b89\\u767c\\u91cc\\u5e73\\u7b49\\u8def\\u0039\\u0031\\u865f\\u0039\\u0033\\u865f"}', '185914', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(734, 49, '1-49', 1, '後驛', '{"number":"182281","shop":"\\u5f8c\\u9a5b","phone":"073228514","address":"\\u5b89\\u548c\\u91cc\\u5bdf\\u54c8\\u723e\\u4e00\\u8857\\u0031\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '182281', '711', 'zh-tw', 1000),
(735, 49, '1-49', 1, '鑫永年', '{"number":"177290","shop":"\\u946b\\u6c38\\u5e74","phone":"073805933","address":"\\u5b89\\u5eb7\\u91cc\\u4e5d\\u5982\\u4e00\\u8def\\u0038\\u0037\\u0037\\u865f"}', '177290', '711', 'zh-tw', 1000),
(736, 49, '1-49', 1, '龍城', '{"number":"186272","shop":"\\u9f8d\\u57ce","phone":"073982831","address":"\\u5bf6\\u5b89\\u91cc\\u5efa\\u8208\\u8def\\u0035\\u0031\\u865f\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '186272', '711', 'zh-tw', 1000),
(737, 49, '1-49', 1, '光武', '{"number":"943806","shop":"\\u5149\\u6b66","phone":"073875139","address":"\\u5bf6\\u5fb7\\u91cc\\u89ba\\u6c11\\u8def\\u0033\\u0033\\u0038\\u865f"}', '943806', '711', 'zh-tw', 1000),
(738, 49, '1-49', 1, '義明', '{"number":"140025","shop":"\\u7fa9\\u660e","phone":"073804208","address":"\\u5bf6\\u570b\\u91cc\\u7fa9\\u83ef\\u8def\\u0031\\u0037\\u0031\\u865f"}', '140025', '711', 'zh-tw', 1000),
(739, 49, '1-49', 1, '寶民', '{"number":"161608","shop":"\\u5bf6\\u6c11","phone":"073847183","address":"\\u5bf6\\u6c11\\u91cc\\u6b63\\u7fa9\\u8def\\u0033\\u0033\\u0037\\u865f"}', '161608', '711', 'zh-tw', 1000),
(740, 49, '1-49', 1, '大德', '{"number":"896698","shop":"\\u5927\\u5fb7","phone":"073959257","address":"\\u5bf6\\u7389\\u91cc\\u5927\\u8c50\\u4e8c\\u8def\\u0033\\u0034\\u0038\\u865f"}', '896698', '711', 'zh-tw', 1000),
(741, 49, '1-49', 1, '春陽', '{"number":"148063","shop":"\\u6625\\u967d","phone":"073810323","address":"\\u5bf6\\u73e0\\u91cc\\u6b63\\u5fe0\\u8def\\u0032\\u0034\\u0036\\u865f"}', '148063', '711', 'zh-tw', 1000),
(742, 49, '1-49', 1, '宏明', '{"number":"117726","shop":"\\u5b8f\\u660e","phone":"073802201","address":"\\u672c\\u548c\\u91cc\\u5927\\u798f\\u8857\\u0032\\u0031\\u0031\\u865f\\u0032\\u0031\\u0033\\u865f"}', '117726', '711', 'zh-tw', 1000),
(743, 49, '1-49', 1, '皓東', '{"number":"166810","shop":"\\u7693\\u6771","phone":"073987112","address":"\\u672c\\u6b66\\u91cc\\u5927\\u8c50\\u4e8c\\u8def\\u0034\\u0038\\u0039\\u865f"}', '166810', '711', 'zh-tw', 1000),
(744, 49, '1-49', 1, '大義', '{"number":"946458","shop":"\\u5927\\u7fa9","phone":"073870742","address":"\\u5927\\u660c\\u4e8c\\u8def\\u0031\\u0032\\u0033\\u865f\\u0031\\u0032\\u0033\\u002d\\u0031\\u865f"}', '946458', '711', 'zh-tw', 1000),
(745, 49, '1-49', 1, '昌富', '{"number":"149387","shop":"\\u660c\\u5bcc","phone":"073905806","address":"\\u5927\\u8c50\\u4e00\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0033\\u865f"}', '149387', '711', 'zh-tw', 1000),
(746, 49, '1-49', 1, '新本館', '{"number":"186397","shop":"\\u65b0\\u672c\\u9928","phone":"073924430","address":"\\u5927\\u88d5\\u8def\\u0031\\u0031\\u0039\\u865f"}', '186397', '711', 'zh-tw', 1000),
(747, 49, '1-49', 1, '智由', '{"number":"143921","shop":"\\u667a\\u7531","phone":"073137226","address":"\\u5fb7\\u667a\\u91cc\\u71b1\\u6cb3\\u4e00\\u8857\\u0031\\u0039\\u0030\\u865f\\u0031\\u0039\\u0032\\u865f"}', '143921', '711', 'zh-tw', 1000),
(748, 49, '1-49', 1, '鼎貴', '{"number":"132138","shop":"\\u9f0e\\u8cb4","phone":"073424756","address":"\\u9f0e\\u8cb4\\u8def\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '132138', '711', 'zh-tw', 1000),
(749, 49, '1-49', 1, '鼎強', '{"number":"167293","shop":"\\u9f0e\\u5f37","phone":"073494114","address":"\\u9f0e\\u5f37\\u91cc\\u9f0e\\u91d1\\u5f8c\\u8def\\u0034\\u0033\\u0032\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '167293', '711', 'zh-tw', 1000),
(750, 49, '1-49', 1, '鼎復', '{"number":"892375","shop":"\\u9f0e\\u5fa9","phone":"073848597","address":"\\u9f0e\\u5c71\\u8857\\u0035\\u0036\\u0036\\u002d\\u0033\\u865f"}', '892375', '711', 'zh-tw', 1000),
(751, 49, '1-49', 1, '河堤', '{"number":"128003","shop":"\\u6cb3\\u5824","phone":"073410500","address":"\\u9f0e\\u6cf0\\u91cc\\u6cb3\\u5824\\u8def\\u0035\\u0031\\u0030\\u865f"}', '128003', '711', 'zh-tw', 1000),
(752, 49, '1-49', 1, '新鼎祥', '{"number":"186308","shop":"\\u65b0\\u9f0e\\u7965","phone":"073453114","address":"\\u9f0e\\u6cf0\\u91cc\\u6c11\\u65cf\\u4e00\\u8def\\u0035\\u0034\\u0033\\u5df7\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '186308', '711', 'zh-tw', 1000),
(753, 49, '1-49', 1, '明仁', '{"number":"922496","shop":"\\u660e\\u4ec1","phone":"073438496","address":"\\u9f0e\\u6cf0\\u91cc\\u660e\\u4ec1\\u8def\\u0038\\u865f"}', '922496', '711', 'zh-tw', 1000),
(754, 49, '1-49', 1, '鼎瑞', '{"number":"200860","shop":"\\u9f0e\\u745e","phone":"073430546","address":"\\u9f0e\\u6cf0\\u91cc\\u88d5\\u8aa0\\u8def\\u0035\\u0036\\u865f"}', '200860', '711', 'zh-tw', 1000),
(755, 49, '1-49', 1, '鼎新', '{"number":"932976","shop":"\\u9f0e\\u65b0","phone":"073104545","address":"\\u9f0e\\u65b0\\u8def\\u0038\\u0036\\u865f\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '932976', '711', 'zh-tw', 1000),
(756, 49, '1-49', 1, '鼎上', '{"number":"179735","shop":"\\u9f0e\\u4e0a","phone":"073494150","address":"\\u9f0e\\u4e2d\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '179735', '711', 'zh-tw', 1000),
(757, 49, '1-49', 1, '鼎中', '{"number":"165910","shop":"\\u9f0e\\u4e2d","phone":"073424542","address":"\\u9f0e\\u4e2d\\u8def\\u0037\\u0033\\u0035\\u865f\\u0037\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '165910', '711', 'zh-tw', 1000),
(758, 49, '1-49', 1, '興國', '{"number":"905354","shop":"\\u8208\\u570b","phone":"072388472","address":"\\u5fa9\\u8208\\u4e00\\u8def\\u0031\\u0037\\u0036\\u865f"}', '905354', '711', 'zh-tw', 1000),
(759, 49, '1-49', 1, '雄站', '{"number":"130279","shop":"\\u96c4\\u7ad9","phone":"072361408","address":"\\u6e2f\\u6771\\u91cc\\u5efa\\u570b\\u4e8c\\u8def\\u0032\\u0036\\u0039\\u865f\\u0032\\u0037\\u0031\\u865f"}', '130279', '711', 'zh-tw', 1000),
(760, 49, '1-49', 1, '新統興', '{"number":"932965","shop":"\\u65b0\\u7d71\\u8208","phone":"073835941","address":"\\u9ec3\\u8208\\u8def\\u0031\\u0035\\u0031\\u865f"}', '932965', '711', 'zh-tw', 1000),
(761, 49, '1-49', 1, '達仁', '{"number":"896492","shop":"\\u9054\\u4ec1","phone":"073222813","address":"\\u5409\\u6797\\u8857\\u0036\\u0038\\u865f"}', '896492', '711', 'zh-tw', 1000),
(762, 49, '1-49', 1, '本元', '{"number":"149136","shop":"\\u672c\\u5143","phone":"073810634","address":"\\u5efa\\u5de5\\u8def\\u0033\\u0031\\u0037\\u865f\\u0033\\u0031\\u0039\\u865f"}', '149136', '711', 'zh-tw', 1000),
(763, 49, '1-49', 1, '港東', '{"number":"135964","shop":"\\u6e2f\\u6771","phone":"072354300","address":"\\u5efa\\u570b\\u4e8c\\u8def\\u0032\\u0033\\u0033\\u865f"}', '135964', '711', 'zh-tw', 1000),
(764, 49, '1-49', 1, '新旺淇', '{"number":"980229","shop":"\\u65b0\\u65fa\\u6dc7","phone":"072855841","address":"\\u5efa\\u570b\\u4e09\\u8def\\u0031\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '980229', '711', 'zh-tw', 1000),
(765, 49, '1-49', 1, '鳳中', '{"number":"182890","shop":"\\u9cf3\\u4e2d","phone":"072855467","address":"\\u5efa\\u570b\\u4e09\\u8def\\u0032\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '182890', '711', 'zh-tw', 1000),
(766, 49, '1-49', 1, '大阪', '{"number":"154046","shop":"\\u5927\\u962a","phone":"072862296","address":"\\u5efa\\u570b\\u4e09\\u8def\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '154046', '711', 'zh-tw', 1000),
(767, 49, '1-49', 1, '建強', '{"number":"149516","shop":"\\u5efa\\u5f37","phone":"072155083","address":"\\u5efa\\u570b\\u4e09\\u8def\\u0034\\u0033\\u0037\\u865f"}', '149516', '711', 'zh-tw', 1000),
(768, 49, '1-49', 1, '港新', '{"number":"960007","shop":"\\u6e2f\\u65b0","phone":"072230958","address":"\\u5efa\\u570b\\u4e00\\u8def\\u0034\\u0031\\u0037\\u865f"}', '960007', '711', 'zh-tw', 1000),
(769, 49, '1-49', 1, '達勇', '{"number":"119618","shop":"\\u9054\\u52c7","phone":"073114049","address":"\\u4e5d\\u5982\\u4e8c\\u8def\\u0033\\u0034\\u0035\\u002d\\u0031\\u865f"}', '119618', '711', 'zh-tw', 1000),
(770, 49, '1-49', 1, '益昌', '{"number":"946207","shop":"\\u76ca\\u660c","phone":"073115571","address":"\\u4e5d\\u5982\\u4e8c\\u8def\\u0035\\u0038\\u0032\\u865f"}', '946207', '711', 'zh-tw', 1000),
(771, 49, '1-49', 1, '新如東', '{"number":"113621","shop":"\\u65b0\\u5982\\u6771","phone":"073221948","address":"\\u4e5d\\u5982\\u4e8c\\u8def\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '113621', '711', 'zh-tw', 1000),
(772, 49, '1-49', 1, '鑫寶華', '{"number":"189514","shop":"\\u946b\\u5bf6\\u83ef","phone":"073870904","address":"\\u4e5d\\u5982\\u4e00\\u8def\\u0031\\u0032\\u0036\\u865f"}', '189514', '711', 'zh-tw', 1000),
(773, 49, '1-49', 1, '如龍', '{"number":"902735","shop":"\\u5982\\u9f8d","phone":"073963182","address":"\\u4e5d\\u5982\\u4e00\\u8def\\u0034\\u0034\\u0036\\u865f\\u0034\\u0034\\u0038\\u865f"}', '902735', '711', 'zh-tw', 1000),
(774, 49, '1-49', 1, '覺民', '{"number":"864107","shop":"\\u89ba\\u6c11","phone":"073892352","address":"\\u89ba\\u6c11\\u8def\\u0031\\u0031\\u0033\\u865f\\u0031\\u0031\\u0035\\u865f"}', '864107', '711', 'zh-tw', 1000),
(775, 49, '1-49', 1, '孝豐', '{"number":"171513","shop":"\\u5b5d\\u8c50","phone":"073954224","address":"\\u89ba\\u6c11\\u8def\\u0032\\u0033\\u0038\\u865f\\u0032\\u0034\\u0030\\u865f"}', '171513', '711', 'zh-tw', 1000),
(776, 49, '1-49', 1, '寶盛', '{"number":"960731","shop":"\\u5bf6\\u76db","phone":"073952075","address":"\\u89ba\\u6c11\\u8def\\u0035\\u0037\\u0039\\u865f"}', '960731', '711', 'zh-tw', 1000),
(777, 49, '1-49', 1, '中都', '{"number":"121873","shop":"\\u4e2d\\u90fd","phone":"073212028","address":"\\u529b\\u884c\\u8def\\u0032\\u0034\\u0038\\u865f"}', '121873', '711', 'zh-tw', 1000),
(778, 49, '1-49', 1, '文藻', '{"number":"161343","shop":"\\u6587\\u85fb","phone":"073107895","address":"\\u6c11\\u65cf\\u4e00\\u8def\\u0039\\u0030\\u0030\\u865f"}', '161343', '711', 'zh-tw', 1000),
(779, 49, '1-49', 1, '新鼎吉', '{"number":"137616","shop":"\\u65b0\\u9f0e\\u5409","phone":"073926364","address":"\\u660e\\u8aa0\\u4e00\\u8def\\u0033\\u0038\\u0031\\u865f"}', '137616', '711', 'zh-tw', 1000),
(780, 49, '1-49', 1, '理馨', '{"number":"992772","shop":"\\u7406\\u99a8","phone":"073506417","address":"\\u660e\\u5409\\u8def\\u0039\\u865f"}', '992772', '711', 'zh-tw', 1000),
(781, 49, '1-49', 1, '嫩江', '{"number":"855239","shop":"\\u5ae9\\u6c5f","phone":"073117581","address":"\\u5ae9\\u6c5f\\u8857\\u0031\\u0030\\u0031\\u865f"}', '855239', '711', 'zh-tw', 1000),
(782, 49, '1-49', 1, '博河', '{"number":"162896","shop":"\\u535a\\u6cb3","phone":"073221446","address":"\\u71b1\\u6cb3\\u4e8c\\u8857\\u0031\\u0037\\u865f"}', '162896', '711', 'zh-tw', 1000),
(783, 49, '1-49', 1, '坎城', '{"number":"188625","shop":"\\u574e\\u57ce","phone":"073116563","address":"\\u5341\\u5168\\u4e00\\u8def\\u0031\\u0038\\u0033\\u865f"}', '188625', '711', 'zh-tw', 1000),
(784, 49, '1-49', 1, '安生', '{"number":"985372","shop":"\\u5b89\\u751f","phone":"073214729","address":"\\u5341\\u5168\\u4e00\\u8def\\u0037\\u0034\\u865f"}', '985372', '711', 'zh-tw', 1000),
(785, 49, '1-49', 1, '鼎力', '{"number":"854971","shop":"\\u9f0e\\u529b","phone":"073494282","address":"\\u5929\\u7965\\u4e00\\u8def\\u0031\\u0032\\u0034\\u865f"}', '854971', '711', 'zh-tw', 1000),
(786, 49, '1-49', 1, '星展', '{"number":"194527","shop":"\\u661f\\u5c55","phone":"073494070","address":"\\u5929\\u7965\\u4e00\\u8def\\u0038\\u0038\\u865f"}', '194527', '711', 'zh-tw', 1000),
(787, 49, '1-49', 1, '方城市', '{"number":"194309","shop":"\\u65b9\\u57ce\\u5e02","phone":"077802522","address":"\\u6587\\u6ff1\\u8def\\u0032\\u0032\\u865f"}', '194309', '711', 'zh-tw', 1000),
(788, 49, '1-49', 1, '灣勝', '{"number":"956477","shop":"\\u7063\\u52dd","phone":"073955648","address":"\\u65b0\\u6c11\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u0030\\u0035\\u865f"}', '956477', '711', 'zh-tw', 1000),
(789, 49, '1-49', 1, '新有光', '{"number":"991171","shop":"\\u65b0\\u6709\\u5149","phone":"073971903","address":"\\u6709\\u5149\\u8def\\u0031\\u0032\\u0033\\u865f"}', '991171', '711', 'zh-tw', 1000),
(790, 49, '1-49', 1, '元隆', '{"number":"115904","shop":"\\u5143\\u9686","phone":"073983369","address":"\\u6b63\\u8208\\u91cc\\u5efa\\u5143\\u8def\\u0035\\u0038\\u865f\\u0031\\u53ca\\u0032\\u6a13"}', '115904', '711', 'zh-tw', 1000),
(791, 49, '1-49', 1, '沅興', '{"number":"970761","shop":"\\u6c85\\u8208","phone":"073828237","address":"\\u6b63\\u8208\\u91cc\\u6b63\\u8208\\u8def\\u0031\\u0032\\u0031\\u865f\\u0031\\u0032\\u0033\\u865f"}', '970761', '711', 'zh-tw', 1000),
(792, 49, '1-49', 1, '雙興', '{"number":"885643","shop":"\\u96d9\\u8208","phone":"073925474","address":"\\u6b63\\u8208\\u8def\\u0031\\u865f\\u0033\\u865f"}', '885643', '711', 'zh-tw', 1000),
(793, 49, '1-49', 1, '新大豐', '{"number":"946997","shop":"\\u65b0\\u5927\\u8c50","phone":"073849311","address":"\\u6b63\\u5fe0\\u8def\\u0032\\u0035\\u0039\\u865f"}', '946997', '711', 'zh-tw', 1000),
(794, 49, '1-49', 1, '延慶', '{"number":"177430","shop":"\\u5ef6\\u6176","phone":"073926023","address":"\\u4e2d\\u6c11\\u91cc\\u6c38\\u5e74\\u8857\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '177430', '711', 'zh-tw', 1000),
(795, 49, '1-49', 1, '安冠', '{"number":"862190","shop":"\\u5b89\\u51a0","phone":"073953487","address":"\\u838a\\u656c\\u8def\\u0032\\u0038\\u0039\\u865f"}', '862190', '711', 'zh-tw', 1000),
(796, 49, '1-49', 1, '新立寧', '{"number":"895880","shop":"\\u65b0\\u7acb\\u5be7","phone":"073130332","address":"\\u81ea\\u7acb\\u4e00\\u8def\\u0032\\u0038\\u0037\\u865f\\u0032\\u0038\\u0039\\u865f"}', '895880', '711', 'zh-tw', 1000),
(797, 49, '1-49', 1, '國城', '{"number":"130040","shop":"\\u570b\\u57ce","phone":"072851840","address":"\\u81ea\\u7acb\\u4e00\\u8def\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f"}', '130040', '711', 'zh-tw', 1000),
(798, 50, '1-50', 1, '月美', '{"number":"944360","shop":"\\u6708\\u7f8e","phone":"076774907","address":"\\u6708\\u7709\\u91cc\\u6e05\\u6c34\\u8def\\u0034\\u0036\\u865f\\u0034\\u0036\\u865f\\u4e4b\\u0031"}', '944360', '711', 'zh-tw', 1000),
(799, 51, '1-51', 1, '大林蒲', '{"number":"165080","shop":"\\u5927\\u6797\\u84b2","phone":"078714082","address":"\\u9cf3\\u6797\\u8def\\u0031\\u0038\\u0031\\u865f"}', '165080', '711', 'zh-tw', 1000),
(800, 51, '1-51', 1, '名言', '{"number":"187493","shop":"\\u540d\\u8a00","phone":"078715921","address":"\\u9cf3\\u68ee\\u91cc\\u9cf3\\u6797\\u8def\\u0032\\u002d\\u0031\\u0038\\u865f"}', '187493', '711', 'zh-tw', 1000),
(801, 51, '1-51', 1, '港口', '{"number":"895949","shop":"\\u6e2f\\u53e3","phone":"078114439","address":"\\u6e2f\\u53e3\\u91cc\\u5e73\\u548c\\u8def\\u0037\\u0037\\u865f"}', '895949', '711', 'zh-tw', 1000),
(802, 51, '1-51', 1, '桂德', '{"number":"971339","shop":"\\u6842\\u5fb7","phone":"077932498","address":"\\u6842\\u6797\\u91cc\\u4e2d\\u5b89\\u8def\\u0034\\u0032\\u0038\\u865f"}', '971339', '711', 'zh-tw', 1000),
(803, 51, '1-51', 1, '桂陽', '{"number":"874104","shop":"\\u6842\\u967d","phone":"077930117","address":"\\u6842\\u967d\\u8def\\u0032\\u0035\\u0035\\u865f"}', '874104', '711', 'zh-tw', 1000),
(804, 51, '1-51', 1, '新漢北', '{"number":"118741","shop":"\\u65b0\\u6f22\\u5317","phone":"078021586","address":"\\u6f22\\u6c11\\u8def\\u0031\\u0033\\u0032\\u865f\\u0031\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '118741', '711', 'zh-tw', 1000),
(805, 51, '1-51', 1, '順苓', '{"number":"188670","shop":"\\u9806\\u82d3","phone":"078039482","address":"\\u6f22\\u6c11\\u8def\\u0033\\u0038\\u0031\\u865f"}', '188670', '711', 'zh-tw', 1000),
(806, 51, '1-51', 1, '宏亮', '{"number":"153870","shop":"\\u5b8f\\u4eae","phone":"078067220","address":"\\u5b8f\\u4eae\\u91cc\\u5c71\\u660e\\u8def\\u0034\\u0034\\u0035\\u865f\\u0034\\u0034\\u0037\\u865f\\u58f9\\u002b\\u8cb3\\u6a13"}', '153870', '711', 'zh-tw', 1000),
(807, 51, '1-51', 1, '宏平', '{"number":"855295","shop":"\\u5b8f\\u5e73","phone":"078063604","address":"\\u5b8f\\u5e73\\u8def\\u0033\\u0039\\u0030\\u865f\\u0033\\u0039\\u0032\\u865f"}', '855295', '711', 'zh-tw', 1000),
(808, 51, '1-51', 1, '沿海', '{"number":"154954","shop":"\\u6cbf\\u6d77","phone":"078012161","address":"\\u5eb7\\u838a\\u8def\\u0031\\u0037\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '154954', '711', 'zh-tw', 1000),
(809, 51, '1-51', 1, '桂安', '{"number":"131102","shop":"\\u6842\\u5b89","phone":"077934767","address":"\\u5b54\\u9cf3\\u8def\\u0035\\u0035\\u0037\\u865f"}', '131102', '711', 'zh-tw', 1000),
(810, 51, '1-51', 1, '孔鳳', '{"number":"136749","shop":"\\u5b54\\u9cf3","phone":"077917717","address":"\\u5b54\\u5b85\\u91cc\\u9ad8\\u9cf3\\u8def\\u0033\\u0033\\u0032\\u865f"}', '136749', '711', 'zh-tw', 1000),
(811, 51, '1-51', 1, '港后', '{"number":"114602","shop":"\\u6e2f\\u540e","phone":"078417962","address":"\\u5e73\\u548c\\u8def\\u0031\\u0035\\u0036\\u865f"}', '114602', '711', 'zh-tw', 1000),
(812, 51, '1-51', 1, '大坪頂', '{"number":"131319","shop":"\\u5927\\u576a\\u9802","phone":"078912651","address":"\\u576a\\u9802\\u91cc\\u5927\\u5e73\\u8def\\u0031\\u0039\\u0032\\u865f\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '131319', '711', 'zh-tw', 1000),
(813, 51, '1-51', 1, '雄航', '{"number":"181587","shop":"\\u96c4\\u822a","phone":"078018305","address":"\\u5c71\\u6771\\u91cc\\u4e2d\\u5c71\\u56db\\u8def\\u0032\\u865f\\u0031\\u6a13"}', '181587', '711', 'zh-tw', 1000),
(814, 51, '1-51', 1, '田金', '{"number":"972158","shop":"\\u7530\\u91d1","phone":"078070928","address":"\\u5c71\\u660e\\u91cc\\u6c34\\u79c0\\u8def\\u0035\\u0039\\u865f"}', '972158', '711', 'zh-tw', 1000),
(815, 51, '1-51', 1, '松旅', '{"number":"143563","shop":"\\u677e\\u65c5","phone":"078069924","address":"\\u5c71\\u660e\\u91cc\\u677e\\u4fe1\\u8def\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '143563', '711', 'zh-tw', 1000),
(816, 51, '1-51', 1, '金宏', '{"number":"160328","shop":"\\u91d1\\u5b8f","phone":"078061835","address":"\\u9806\\u82d3\\u91cc\\u5b8f\\u5e73\\u8def\\u0035\\u0030\\u0031\\u865f"}', '160328', '711', 'zh-tw', 1000),
(817, 51, '1-51', 1, '松興', '{"number":"159247","shop":"\\u677e\\u8208","phone":"078071434","address":"\\u677e\\u5c71\\u91cc\\u9ad8\\u9cf3\\u8def\\u0033\\u0034\\u002d\\u0035\\u002d\\u0036\\u865f"}', '159247', '711', 'zh-tw', 1000),
(818, 51, '1-51', 1, '宏華', '{"number":"930660","shop":"\\u5b8f\\u83ef","phone":"078069912","address":"\\u677e\\u820d\\u91cc\\u6f22\\u6c11\\u8def\\u0038\\u0032\\u0039\\u865f"}', '930660', '711', 'zh-tw', 1000),
(819, 51, '1-51', 1, '宏文', '{"number":"966119","shop":"\\u5b8f\\u6587","phone":"078036342","address":"\\u6cf0\\u5c71\\u91cc\\u5b8f\\u5e73\\u8def\\u0038\\u0033\\u002d\\u0032\\u865f"}', '966119', '711', 'zh-tw', 1000),
(820, 51, '1-51', 1, '港瑞', '{"number":"958440","shop":"\\u6e2f\\u745e","phone":"078022369","address":"\\u5c0f\\u6e2f\\u91cc\\u5c0f\\u6e2f\\u8def\\u0037\\u0037\\u865f"}', '958440', '711', 'zh-tw', 1000),
(821, 51, '1-51', 1, '強民', '{"number":"893312","shop":"\\u5f37\\u6c11","phone":"078124098","address":"\\u5c0f\\u6e2f\\u8def\\u0031\\u0038\\u0032\\u865f"}', '893312', '711', 'zh-tw', 1000),
(822, 51, '1-51', 1, '樺鑫', '{"number":"174729","shop":"\\u6a3a\\u946b","phone":"077928411","address":"\\u4e2d\\u5b89\\u8def\\u0037\\u0033\\u0039\\u865f"}', '174729', '711', 'zh-tw', 1000),
(823, 52, '1-52', 1, '清漢', '{"number":"170129","shop":"\\u6e05\\u6f22","phone":"072222403","address":"\\u5fb7\\u671b\\u91cc\\u6c11\\u751f\\u4e00\\u8def\\u0031\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '170129', '711', 'zh-tw', 1000),
(824, 52, '1-52', 1, '大港埔', '{"number":"928612","shop":"\\u5927\\u6e2f\\u57d4","phone":"072820698","address":"\\u6771\\u5761\\u91cc\\u5927\\u540c\\u4e00\\u8def\\u0038\\u0031\\u865f\\u0038\\u0033\\u865f"}', '928612', '711', 'zh-tw', 1000),
(825, 52, '1-52', 1, '復橫', '{"number":"905077","shop":"\\u5fa9\\u6a6b","phone":"072268701","address":"\\u5fa9\\u8208\\u4e00\\u8def\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f"}', '905077', '711', 'zh-tw', 1000),
(826, 52, '1-52', 1, '新新賢', '{"number":"920582","shop":"\\u65b0\\u65b0\\u8ce2","phone":"072385607","address":"\\u958b\\u5e73\\u91cc\\u4e03\\u8ce2\\u4e00\\u8def\\u0032\\u0036\\u0038\\u865f\\u0032\\u0037\\u0030\\u865f"}', '920582', '711', 'zh-tw', 1000),
(827, 52, '1-52', 1, '新球庭', '{"number":"185660","shop":"\\u65b0\\u7403\\u5ead","phone":"072414062","address":"\\u6797\\u68ee\\u4e00\\u8def\\u0031\\u0036\\u0032\\u865f"}', '185660', '711', 'zh-tw', 1000),
(828, 52, '1-52', 1, '鑫明莊', '{"number":"981820","shop":"\\u946b\\u660e\\u838a","phone":"072854756","address":"\\u516d\\u5408\\u4e8c\\u8def\\u0032\\u0034\\u865f"}', '981820', '711', 'zh-tw', 1000),
(829, 52, '1-52', 1, '文昌', '{"number":"162117","shop":"\\u6587\\u660c","phone":"072242435","address":"\\u516d\\u5408\\u8def\\u0031\\u0031\\u0037\\u865f"}', '162117', '711', 'zh-tw', 1000),
(830, 52, '1-52', 1, '高銀', '{"number":"980403","shop":"\\u9ad8\\u9280","phone":"072357948","address":"\\u516d\\u5408\\u4e00\\u8def\\u0031\\u0035\\u0038\\u865f"}', '980403', '711', 'zh-tw', 1000),
(831, 52, '1-52', 1, '中義', '{"number":"193052","shop":"\\u4e2d\\u7fa9","phone":"072362131","address":"\\u516d\\u5408\\u4e00\\u8def\\u0032\\u0037\\u865f"}', '193052', '711', 'zh-tw', 1000),
(832, 52, '1-52', 1, '信賢', '{"number":"110769","shop":"\\u4fe1\\u8ce2","phone":"072360634","address":"\\u5357\\u6e2f\\u91cc\\u4e03\\u8ce2\\u4e00\\u8def\\u0034\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '110769', '711', 'zh-tw', 1000),
(833, 52, '1-52', 1, '建興', '{"number":"996899","shop":"\\u5efa\\u8208","phone":"072863634","address":"\\u4e03\\u8ce2\\u4e8c\\u8def\\u0038\\u0036\\u865f"}', '996899', '711', 'zh-tw', 1000),
(834, 52, '1-52', 1, '寶成', '{"number":"865627","shop":"\\u5bf6\\u6210","phone":"072822363","address":"\\u9752\\u5e74\\u4e00\\u8def\\u0032\\u0032\\u0030\\u865f"}', '865627', '711', 'zh-tw', 1000),
(835, 52, '1-52', 1, '興村', '{"number":"948708","shop":"\\u8208\\u6751","phone":"072829812","address":"\\u4e94\\u798f\\u4e8c\\u8def\\u0039\\u0032\\u865f"}', '948708', '711', 'zh-tw', 1000),
(836, 52, '1-52', 1, '新田', '{"number":"895879","shop":"\\u65b0\\u7530","phone":"072115007","address":"\\u65b0\\u7530\\u8def\\u0031\\u0038\\u0039\\u865f\\u0031\\u0039\\u0031\\u865f"}', '895879', '711', 'zh-tw', 1000),
(837, 52, '1-52', 1, '新崛江', '{"number":"154714","shop":"\\u65b0\\u5d1b\\u6c5f","phone":"072163995","address":"\\u632f\\u6210\\u91cc\\u65b0\\u7530\\u8def\\u0031\\u0031\\u0034\\u865f"}', '154714', '711', 'zh-tw', 1000),
(838, 52, '1-52', 1, '新三華', '{"number":"971502","shop":"\\u65b0\\u4e09\\u83ef","phone":"072368423","address":"\\u4e2d\\u6771\\u91cc\\u5fa9\\u8208\\u4e00\\u8def\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '971502', '711', 'zh-tw', 1000),
(839, 52, '1-52', 1, '美麗島', '{"number":"193029","shop":"\\u7f8e\\u9e97\\u5cf6","phone":"072361722","address":"\\u4e2d\\u5c71\\u4e00\\u8def\\u0031\\u0031\\u0035\\u865f\\u0028\\u7f8e\\u9e97\\u5cf6\\u7ad9\\u5167\\u0029"}', '193029', '711', 'zh-tw', 1000),
(840, 52, '1-52', 1, '天健', '{"number":"956400","shop":"\\u5929\\u5065","phone":"072861637","address":"\\u4e2d\\u5c71\\u4e00\\u8def\\u0032\\u0037\\u0039\\u865f"}', '956400', '711', 'zh-tw', 1000),
(841, 52, '1-52', 1, '尚義', '{"number":"130246","shop":"\\u5c1a\\u7fa9","phone":"072236482","address":"\\u4e2d\\u6b63\\u4e8c\\u8def\\u0032\\u0031\\u0038\\u865f"}', '130246', '711', 'zh-tw', 1000),
(842, 52, '1-52', 1, '正達', '{"number":"197423","shop":"\\u6b63\\u9054","phone":"072236459","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '197423', '711', 'zh-tw', 1000),
(843, 52, '1-52', 1, '正仁', '{"number":"184209","shop":"\\u6b63\\u4ec1","phone":"072365274","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0038\\u0034\\u865f\\u0031\\u002e\\u0042\\u0031\\u6a13"}', '184209', '711', 'zh-tw', 1000),
(844, 52, '1-52', 1, '明星', '{"number":"129198","shop":"\\u660e\\u661f","phone":"072889297","address":"\\u81ea\\u7acb\\u4e8c\\u8def\\u0031\\u0034\\u0036\\u865f"}', '129198', '711', 'zh-tw', 1000),
(845, 53, '1-53', 1, '仁勇', '{"number":"960029","shop":"\\u4ec1\\u52c7","phone":"075329630","address":"\\u5927\\u516c\\u8def\\u4e8c\\u865f"}', '960029', '711', 'zh-tw', 1000),
(846, 53, '1-53', 1, '鹽埕', '{"number":"832915","shop":"\\u9e7d\\u57d5","phone":"075320626","address":"\\u5927\\u4ec1\\u8def\\u0031\\u0033\\u0039\\u865f\\u7028\\u5357\\u8def\\u0031\\u0037\\u0032\\u865f"}', '832915', '711', 'zh-tw', 1000),
(847, 53, '1-53', 1, '駁藝', '{"number":"184092","shop":"\\u99c1\\u85dd","phone":"075212477","address":"\\u5927\\u52c7\\u8def\\u0032\\u0039\\u865f"}', '184092', '711', 'zh-tw', 1000),
(848, 53, '1-53', 1, '鑫漢王', '{"number":"171018","shop":"\\u946b\\u6f22\\u738b","phone":"075215375","address":"\\u6e2f\\u90fd\\u91cc\\u4e94\\u798f\\u56db\\u8def\\u0032\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '171018', '711', 'zh-tw', 1000),
(849, 53, '1-53', 1, '新建', '{"number":"871828","shop":"\\u65b0\\u5efa","phone":"075216102","address":"\\u5efa\\u570b\\u56db\\u8def\\u0031\\u0037\\u0035\\u865f"}', '871828', '711', 'zh-tw', 1000),
(850, 53, '1-53', 1, '客宭', '{"number":"121965","shop":"\\u5ba2\\u5bad","phone":"075211715","address":"\\u5efa\\u570b\\u56db\\u8def\\u0033\\u0031\\u0032\\u865f"}', '121965', '711', 'zh-tw', 1000),
(851, 53, '1-53', 1, '重義', '{"number":"169831","shop":"\\u91cd\\u7fa9","phone":"075218483","address":"\\u4e94\\u798f\\u56db\\u8def\\u0038\\u0033\\u865f"}', '169831', '711', 'zh-tw', 1000),
(852, 54, '1-54', 1, '安招', '{"number":"954781","shop":"\\u5b89\\u62db","phone":"076143179","address":"\\u5b89\\u62db\\u91cc\\u5b89\\u6771\\u8857\\u0033\\u0038\\u0030\\u865f"}', '954781', '711', 'zh-tw', 1000),
(853, 54, '1-54', 1, '旗鳳', '{"number":"911854","shop":"\\u65d7\\u9cf3","phone":"076154139","address":"\\u9cf3\\u96c4\\u91cc\\u9cf3\\u65d7\\u8def\\u0031\\u0036\\u0037\\u865f\\u0031\\u0036\\u0039\\u865f"}', '911854', '711', 'zh-tw', 1000),
(854, 54, '1-54', 1, '華輝', '{"number":"151829","shop":"\\u83ef\\u8f1d","phone":"076154213","address":"\\u6a6b\\u5c71\\u91cc\\u6a6b\\u5c71\\u8def\\u0035\\u0039\\u865f"}', '151829', '711', 'zh-tw', 1000),
(855, 54, '1-54', 1, '樹科', '{"number":"155485","shop":"\\u6a39\\u79d1","phone":"076154902","address":"\\u6a6b\\u5c71\\u8def\\u0039\\u0030\\u4e4b\\u0031\\u865f"}', '155485', '711', 'zh-tw', 1000),
(856, 54, '1-54', 1, '高應大', '{"number":"142412","shop":"\\u9ad8\\u61c9\\u5927","phone":"076154009","address":"\\u6df1\\u4e2d\\u8def\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '142412', '711', 'zh-tw', 1000),
(857, 54, '1-54', 1, '中民', '{"number":"131489","shop":"\\u4e2d\\u6c11","phone":"076143482","address":"\\u4e2d\\u6c11\\u8def\\u0037\\u0031\\u0032\\u865f\\u0037\\u0031\\u0034\\u865f"}', '131489', '711', 'zh-tw', 1000),
(858, 55, '1-55', 1, '維新', '{"number":"198806","shop":"\\u7dad\\u65b0","phone":"076913260","address":"\\u7dad\\u65b0\\u8def\\u0031\\u0032\\u0031\\u865f"}', '198806', '711', 'zh-tw', 1000),
(859, 55, '1-55', 1, '永安', '{"number":"189008","shop":"\\u6c38\\u5b89","phone":"076915041","address":"\\u6c38\\u5b89\\u91cc\\u6c38\\u5b89\\u8def\\u0033\\u0034\\u865f"}', '189008', '711', 'zh-tw', 1000),
(860, 56, '1-56', 1, '赤東', '{"number":"968458","shop":"\\u8d64\\u6771","phone":"076101134","address":"\\u8d64\\u6771\\u91cc\\u8d64\\u5d01\\u5357\\u8def\\u0039\\u0035\\u865f\\u0039\\u0035\\u002d\\u0031\\u865f\\u0031\\u0046"}', '968458', '711', 'zh-tw', 1000),
(861, 56, '1-56', 1, '新舍東', '{"number":"970886","shop":"\\u65b0\\u820d\\u6771","phone":"076104453","address":"\\u5927\\u820d\\u91cc\\u5927\\u820d\\u5357\\u8def\\u0032\\u865f\\u0031\\u6a13"}', '970886', '711', 'zh-tw', 1000),
(862, 56, '1-56', 1, '亞熱帶', '{"number":"970956","shop":"\\u4e9e\\u71b1\\u5e36","phone":"076106465","address":"\\u5178\\u5bf6\\u91cc\\u5927\\u820d\\u5357\\u8def\\u0031\\u0037\\u0035\\u865f"}', '970956', '711', 'zh-tw', 1000),
(863, 56, '1-56', 1, '梓官', '{"number":"181990","shop":"\\u6893\\u5b98","phone":"076106291","address":"\\u548c\\u5e73\\u8def\\u0032\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '181990', '711', 'zh-tw', 1000),
(864, 56, '1-56', 1, '嘉好', '{"number":"992934","shop":"\\u5609\\u597d","phone":"076109619","address":"\\u5609\\u5c55\\u8def\\u0033\\u0037\\u0030\\u865f"}', '992934', '711', 'zh-tw', 1000),
(865, 56, '1-56', 1, '正港', '{"number":"967503","shop":"\\u6b63\\u6e2f","phone":"076106594","address":"\\u667a\\u86b5\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0038\\u0036\\u865f"}', '967503', '711', 'zh-tw', 1000),
(866, 56, '1-56', 1, '仁馨', '{"number":"952822","shop":"\\u4ec1\\u99a8","phone":"076100625","address":"\\u6893\\u7fa9\\u91cc\\u4e2d\\u5d19\\u8def\\u0032\\u0038\\u0037\\u865f"}', '952822', '711', 'zh-tw', 1000),
(867, 57, '1-57', 1, '生態園區', '{"number":"193465","shop":"\\u751f\\u614b\\u5712\\u5340","phone":"073454556","address":"\\u535a\\u611b\\u4e09\\u8def\\u0033\\u0037\\u0038\\u002e\\u0033\\u0038\\u0030\\u865f"}', '193465', '711', 'zh-tw', 1000),
(868, 57, '1-57', 1, '彩虹市集', '{"number":"186113","shop":"\\u5f69\\u8679\\u5e02\\u96c6","phone":"073507294","address":"\\u83dc\\u516c\\u91cc\\u9ad8\\u9435\\u8def\\u0031\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '186113', '711', 'zh-tw', 1000),
(869, 57, '1-57', 1, '德昌', '{"number":"164423","shop":"\\u5fb7\\u660c","phone":"073460165","address":"\\u83dc\\u516c\\u91cc\\u6587\\u81ea\\u8def\\u0032\\u0033\\u0036\\u865f\\u0032\\u0033\\u0038\\u865f"}', '164423', '711', 'zh-tw', 1000),
(870, 57, '1-57', 1, '文自', '{"number":"951782","shop":"\\u6587\\u81ea","phone":"073452530","address":"\\u83dc\\u516c\\u91cc\\u6587\\u81ea\\u8def\\u0035\\u0031\\u0032\\u002d\\u0031\\u865f"}', '951782', '711', 'zh-tw', 1000),
(871, 57, '1-57', 1, '玉堂', '{"number":"158277","shop":"\\u7389\\u5802","phone":"073414574","address":"\\u66fe\\u5b50\\u8def\\u0031\\u865f"}', '158277', '711', 'zh-tw', 1000),
(872, 57, '1-57', 1, '翠峰', '{"number":"909518","shop":"\\u7fe0\\u5cf0","phone":"075810556","address":"\\u7fe0\\u5cf0\\u8def\\u0033\\u0034\\u865f"}', '909518', '711', 'zh-tw', 1000),
(873, 57, '1-57', 1, '大富', '{"number":"929028","shop":"\\u5927\\u5bcc","phone":"075582580","address":"\\u5927\\u9806\\u4e00\\u8def\\u0032\\u0037\\u0038\\u865f\\u0032\\u0038\\u0030\\u865f"}', '929028', '711', 'zh-tw', 1000),
(874, 57, '1-57', 1, '榮總一', '{"number":"154792","shop":"\\u69ae\\u7e3d\\u4e00","phone":"073489676","address":"\\u5927\\u4e2d\\u4e00\\u8def\\u0033\\u0038\\u0036\\u865f"}', '154792', '711', 'zh-tw', 1000),
(875, 57, '1-57', 1, '榮總二', '{"number":"159214","shop":"\\u69ae\\u7e3d\\u4e8c","phone":"073463594","address":"\\u798f\\u5c71\\u91cc\\u5927\\u4e2d\\u4e00\\u8def\\u0033\\u0038\\u0036\\u865f"}', '159214', '711', 'zh-tw', 1000),
(876, 57, '1-57', 1, '重惠', '{"number":"177108","shop":"\\u91cd\\u60e0","phone":"073457904","address":"\\u798f\\u5c71\\u91cc\\u83ef\\u590f\\u8def\\u0031\\u0031\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '177108', '711', 'zh-tw', 1000),
(877, 57, '1-57', 1, '夏義', '{"number":"154699","shop":"\\u590f\\u7fa9","phone":"073106564","address":"\\u798f\\u5c71\\u91cc\\u83ef\\u590f\\u8def\\u0031\\u0034\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '154699', '711', 'zh-tw', 1000),
(878, 57, '1-57', 1, '榮耀', '{"number":"162623","shop":"\\u69ae\\u8000","phone":"073424718","address":"\\u798f\\u5c71\\u91cc\\u6c11\\u65cf\\u4e00\\u8def\\u0031\\u0030\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '162623', '711', 'zh-tw', 1000),
(879, 57, '1-57', 1, '新高榮', '{"number":"132183","shop":"\\u65b0\\u9ad8\\u69ae","phone":"073421447","address":"\\u798f\\u5c71\\u91cc\\u69ae\\u7e3d\\u8def\\u0031\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '132183', '711', 'zh-tw', 1000),
(880, 57, '1-57', 1, '文慈', '{"number":"184900","shop":"\\u6587\\u6148","phone":"073478545","address":"\\u798f\\u5c71\\u91cc\\u91cd\\u611b\\u8def\\u0036\\u0035\\u865f"}', '184900', '711', 'zh-tw', 1000),
(881, 57, '1-57', 1, '重和', '{"number":"952969","shop":"\\u91cd\\u548c","phone":"073453508","address":"\\u798f\\u5c71\\u91cc\\u81ea\\u7531\\u56db\\u8def\\u0031\\u0037\\u0031\\u865f"}', '952969', '711', 'zh-tw', 1000),
(882, 57, '1-57', 1, '國勝', '{"number":"190248","shop":"\\u570b\\u52dd","phone":"075509786","address":"\\u5bcc\\u570b\\u8def\\u0031\\u0031\\u0032\\u865f\\u0031\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '190248', '711', 'zh-tw', 1000),
(883, 57, '1-57', 1, '新昌', '{"number":"170026","shop":"\\u65b0\\u660c","phone":"073631254","address":"\\u5149\\u8f1d\\u91cc\\u5f8c\\u660c\\u8def\\u0036\\u0033\\u0037\\u865f\\u0036\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '170026', '711', 'zh-tw', 1000),
(884, 57, '1-57', 1, '華崇', '{"number":"892135","shop":"\\u83ef\\u5d07","phone":"073414988","address":"\\u83ef\\u590f\\u8def\\u0036\\u0037\\u0032\\u865f"}', '892135', '711', 'zh-tw', 1000),
(885, 57, '1-57', 1, '先鋒', '{"number":"971085","shop":"\\u5148\\u92d2","phone":"075889876","address":"\\u4ecb\\u58fd\\u8def\\u0032\\u0034\\u0037\\u865f\\u0032\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '971085', '711', 'zh-tw', 1000),
(886, 57, '1-57', 1, '華民', '{"number":"855480","shop":"\\u83ef\\u6c11","phone":"073464185","address":"\\u6c11\\u65cf\\u4e00\\u8def\\u0031\\u0030\\u0038\\u0034\\u865f"}', '855480', '711', 'zh-tw', 1000),
(887, 57, '1-57', 1, '重愛', '{"number":"140209","shop":"\\u91cd\\u611b","phone":"073436263","address":"\\u6c11\\u65cf\\u4e00\\u8def\\u0039\\u0038\\u0037\\u865f"}', '140209', '711', 'zh-tw', 1000),
(888, 57, '1-57', 1, '新上明', '{"number":"183480","shop":"\\u65b0\\u4e0a\\u660e","phone":"075569379","address":"\\u660e\\u8aa0\\u4e8c\\u8def\\u0033\\u0031\\u0038\\u002e\\u0033\\u0032\\u0030\\u865f"}', '183480', '711', 'zh-tw', 1000),
(889, 57, '1-57', 1, '安華', '{"number":"188658","shop":"\\u5b89\\u83ef","phone":"075564671","address":"\\u660e\\u83ef\\u4e00\\u8def\\u0031\\u0032\\u0036\\u865f"}', '188658', '711', 'zh-tw', 1000),
(890, 57, '1-57', 1, '雲崗', '{"number":"902333","shop":"\\u96f2\\u5d17","phone":"075589457","address":"\\u660e\\u83ef\\u4e00\\u8def\\u0032\\u0033\\u0036\\u865f"}', '902333', '711', 'zh-tw', 1000),
(891, 57, '1-57', 1, '勝利', '{"number":"177474","shop":"\\u52dd\\u5229","phone":"075816873","address":"\\u52dd\\u5229\\u8def\\u0031\\u0032\\u0033\\u865f"}', '177474', '711', 'zh-tw', 1000),
(892, 57, '1-57', 1, '重信', '{"number":"186618","shop":"\\u91cd\\u4fe1","phone":"073454317","address":"\\u6587\\u5ddd\\u8def\\u0031\\u0039\\u0035\\u865f\\u002e\\u91cd\\u5efa\\u8def\\u0032\\u865f"}', '186618', '711', 'zh-tw', 1000),
(893, 57, '1-57', 1, '浚興', '{"number":"149767","shop":"\\u6d5a\\u8208","phone":"073457497","address":"\\u65b0\\u5149\\u91cc\\u83ef\\u590f\\u8def\\u0039\\u0037\\u0039\\u865f"}', '149767', '711', 'zh-tw', 1000),
(894, 57, '1-57', 1, '文康', '{"number":"148535","shop":"\\u6587\\u5eb7","phone":"073506567","address":"\\u65b0\\u5149\\u91cc\\u6587\\u5eb7\\u8def\\u0031\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '148535', '711', 'zh-tw', 1000),
(895, 57, '1-57', 1, '立文', '{"number":"185512","shop":"\\u7acb\\u6587","phone":"075509725","address":"\\u65b0\\u4e0a\\u91cc\\u7acb\\u6587\\u8def\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '185512', '711', 'zh-tw', 1000),
(896, 57, '1-57', 1, '豐園', '{"number":"192598","shop":"\\u8c50\\u5712","phone":"075508076","address":"\\u65b0\\u4e0a\\u91cc\\u65b0\\u5e84\\u4ed4\\u8def\\u0038\\u0032\\u0038\\u002e\\u0038\\u0033\\u0030\\u002e\\u0038\\u0033\\u0032\\u002e\\u0038\\u0033\\u0034\\u865f"}', '192598', '711', 'zh-tw', 1000),
(897, 57, '1-57', 1, '凹仔底', '{"number":"173863","shop":"\\u51f9\\u4ed4\\u5e95","phone":"075574859","address":"\\u65b0\\u4e0a\\u91cc\\u88d5\\u8aa0\\u8def\\u0034\\u0034\\u0038\\u865f"}', '173863', '711', 'zh-tw', 1000),
(898, 57, '1-57', 1, '南屏', '{"number":"146872","shop":"\\u5357\\u5c4f","phone":"075524582","address":"\\u65b0\\u4e0b\\u91cc\\u83ef\\u590f\\u8def\\u0032\\u0035\\u0036\\u865f"}', '146872', '711', 'zh-tw', 1000),
(899, 57, '1-57', 1, '巨漢', '{"number":"973117","shop":"\\u5de8\\u6f22","phone":"075543968","address":"\\u65b0\\u4e0b\\u91cc\\u65b0\\u838a\\u4e00\\u8def\\u0033\\u0035\\u0030\\u865f"}', '973117', '711', 'zh-tw', 1000),
(900, 57, '1-57', 1, '博真', '{"number":"953940","shop":"\\u535a\\u771f","phone":"073482621","address":"\\u65b0\\u4e2d\\u91cc\\u535a\\u611b\\u4e09\\u8def\\u0031\\u0036\\u865f"}', '953940', '711', 'zh-tw', 1000),
(901, 57, '1-57', 1, '瑞福', '{"number":"135001","shop":"\\u745e\\u798f","phone":"075586745","address":"\\u88d5\\u8aa0\\u8def\\u0032\\u0038\\u0035\\u865f\\u0032\\u0038\\u0037\\u865f"}', '135001', '711', 'zh-tw', 1000),
(902, 57, '1-57', 1, '政德', '{"number":"963349","shop":"\\u653f\\u5fb7","phone":"073451959","address":"\\u653f\\u5fb7\\u8def\\u0031\\u0033\\u0030\\u865f\\u0031\\u0033\\u0032\\u865f\\u0031\\u0046"}', '963349', '711', 'zh-tw', 1000),
(903, 57, '1-57', 1, '博正', '{"number":"865421","shop":"\\u535a\\u6b63","phone":"075578128","address":"\\u5fe0\\u8a00\\u8def\\u0031\\u0037\\u0034\\u865f"}', '865421', '711', 'zh-tw', 1000),
(904, 57, '1-57', 1, '山福', '{"number":"181440","shop":"\\u5c71\\u798f","phone":"073485366","address":"\\u91cd\\u611b\\u8def\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '181440', '711', 'zh-tw', 1000),
(905, 57, '1-57', 1, '欣重文', '{"number":"127712","shop":"\\u6b23\\u91cd\\u6587","phone":"073506524","address":"\\u91cd\\u611b\\u8def\\u0033\\u0030\\u0038\\u865f\\u0033\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '127712', '711', 'zh-tw', 1000),
(906, 57, '1-57', 1, '信科', '{"number":"190514","shop":"\\u4fe1\\u79d1","phone":"073504964","address":"\\u91cd\\u4fe1\\u8def\\u0036\\u0030\\u0031\\u865f"}', '190514', '711', 'zh-tw', 1000),
(907, 57, '1-57', 1, '孟新', '{"number":"159007","shop":"\\u5b5f\\u65b0","phone":"073483129","address":"\\u81ea\\u7531\\u4e09\\u8def\\u0032\\u0039\\u0032\\u865f"}', '159007', '711', 'zh-tw', 1000),
(908, 57, '1-57', 1, '新左營', '{"number":"188614","shop":"\\u65b0\\u5de6\\u71df","phone":"075852412","address":"\\u5de6\\u71df\\u5927\\u8def\\u0031\\u0034\\u002d\\u0035\\u865f"}', '188614', '711', 'zh-tw', 1000),
(909, 57, '1-57', 1, '百事達', '{"number":"193096","shop":"\\u767e\\u4e8b\\u9054","phone":"075854682","address":"\\u5de6\\u71df\\u5927\\u8def\\u0031\\u0035\\u0035\\u865f"}', '193096', '711', 'zh-tw', 1000),
(910, 57, '1-57', 1, '廟東', '{"number":"182650","shop":"\\u5edf\\u6771","phone":"075850815","address":"\\u5de6\\u71df\\u5927\\u8def\\u0033\\u0034\\u0030\\u865f"}', '182650', '711', 'zh-tw', 1000),
(911, 57, '1-57', 1, '進學', '{"number":"158484","shop":"\\u9032\\u5b78","phone":"075855660","address":"\\u5de6\\u71df\\u5927\\u8def\\u0034\\u0039\\u0031\\u002d\\u0031\\u865f\\u0034\\u0039\\u0031\\u002d\\u0032\\u865f"}', '158484', '711', 'zh-tw', 1000),
(912, 58, '2-58', 1, '豐濱', '{"number":"110415","shop":"\\u8c50\\u6ff1","phone":"038791893","address":"\\u4e09\\u6c11\\u6751\\u4e09\\u6c11\\u8def\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '110415', '711', 'zh-tw', 1000),
(913, 59, '2-59', 1, '林田山', '{"number":"110312","shop":"\\u6797\\u7530\\u5c71","phone":"038752227","address":"\\u9577\\u6a4b\\u91cc\\u9577\\u6a4b\\u8def\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '110312', '711', 'zh-tw', 1000),
(914, 59, '2-59', 1, '鳳林', '{"number":"881951","shop":"\\u9cf3\\u6797","phone":"038760470","address":"\\u9cf3\\u79ae\\u91cc\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0033\\u865f\\u0031\\u0034\\u0035\\u865f"}', '881951', '711', 'zh-tw', 1000),
(915, 59, '2-59', 1, '鳳悅', '{"number":"155511","shop":"\\u9cf3\\u6085","phone":"038761820","address":"\\u4fe1\\u7fa9\\u8def\\u0032\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '155511', '711', 'zh-tw', 1000),
(916, 60, '2-60', 1, '富鄉', '{"number":"943987","shop":"\\u5bcc\\u9109","phone":"038832026","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0036\\u0037\\u865f"}', '943987', '711', 'zh-tw', 1000),
(917, 60, '2-60', 1, '興富', '{"number":"193775","shop":"\\u8208\\u5bcc","phone":"038831757","address":"\\u4e2d\\u5c71\\u8def\\u0036\\u0031\\u865f"}', '193775', '711', 'zh-tw', 1000),
(918, 61, '2-61', 1, '蓮富', '{"number":"914060","shop":"\\u84ee\\u5bcc","phone":"038703949","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0032\\u865f"}', '914060', '711', 'zh-tw', 1000),
(919, 61, '2-61', 1, '馬太鞍', '{"number":"112824","shop":"\\u99ac\\u592a\\u978d","phone":"038704315","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0035\\u865f"}', '112824', '711', 'zh-tw', 1000),
(920, 62, '2-62', 1, '德安一', '{"number":"966739","shop":"\\u5fb7\\u5b89\\u4e00","phone":"038324516","address":"\\u5fb7\\u5b89\\u4e00\\u8857\\u0033\\u0030\\u0037\\u865f"}', '966739', '711', 'zh-tw', 1000),
(921, 62, '2-62', 1, '上美崙', '{"number":"122027","shop":"\\u4e0a\\u7f8e\\u5d19","phone":"038246479","address":"\\u5e9c\\u524d\\u8def\\u0032\\u0039\\u0038\\u865f\\u0032\\u0039\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '122027', '711', 'zh-tw', 1000),
(922, 62, '2-62', 1, '讚蓮', '{"number":"920342","shop":"\\u8b9a\\u84ee","phone":"038460857","address":"\\u5bcc\\u5409\\u8def\\u0032\\u865f"}', '920342', '711', 'zh-tw', 1000),
(923, 62, '2-62', 1, '豐川', '{"number":"122935","shop":"\\u8c50\\u5ddd","phone":"038462708","address":"\\u5bcc\\u5f37\\u8def\\u0032\\u0031\\u0034\\u865f\\u0032\\u0031\\u0036\\u865f"}', '122935', '711', 'zh-tw', 1000),
(924, 62, '2-62', 1, '統軒', '{"number":"923134","shop":"\\u7d71\\u8ed2","phone":"038347047","address":"\\u516c\\u5712\\u8def\\u0037\\u002d\\u0031\\u865f"}', '923134', '711', 'zh-tw', 1000),
(925, 62, '2-62', 1, '富集', '{"number":"166522","shop":"\\u5bcc\\u96c6","phone":"038465458","address":"\\u570b\\u5bcc\\u91cc\\u5bcc\\u570b\\u8def\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '166522', '711', 'zh-tw', 1000),
(926, 62, '2-62', 1, '名品', '{"number":"921529","shop":"\\u540d\\u54c1","phone":"038570070","address":"\\u570b\\u5bcc\\u91cc\\u838a\\u656c\\u8def\\u0037\\u0032\\u865f"}', '921529', '711', 'zh-tw', 1000),
(927, 62, '2-62', 1, '蓮讚', '{"number":"872740","shop":"\\u84ee\\u8b9a","phone":"038329952","address":"\\u570b\\u806f\\u91cc\\u570b\\u806f\\u4e09\\u8def\\u0031\\u0036\\u865f\\u0031\\u0038\\u865f"}', '872740', '711', 'zh-tw', 1000),
(928, 62, '2-62', 1, '讚福', '{"number":"174899","shop":"\\u8b9a\\u798f","phone":"038350342","address":"\\u570b\\u806f\\u4e94\\u8def\\u0035\\u0035\\u865f"}', '174899', '711', 'zh-tw', 1000),
(929, 62, '2-62', 1, '好家園', '{"number":"966968","shop":"\\u597d\\u5bb6\\u5712","phone":"038323748","address":"\\u570b\\u806f\\u4e00\\u8def\\u0032\\u865f\\u0032\\u002d\\u0031\\u865f"}', '966968', '711', 'zh-tw', 1000),
(930, 62, '2-62', 1, '富泰', '{"number":"184829","shop":"\\u5bcc\\u6cf0","phone":"038325217","address":"\\u570b\\u806f\\u4e00\\u8def\\u0035\\u0035\\u865f"}', '184829', '711', 'zh-tw', 1000),
(931, 62, '2-62', 1, '國盛', '{"number":"183457","shop":"\\u570b\\u76db","phone":"038310563","address":"\\u570b\\u6c11\\u4e5d\\u8857\\u0035\\u0036\\u865f\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '183457', '711', 'zh-tw', 1000),
(932, 62, '2-62', 1, '星潭', '{"number":"120272","shop":"\\u661f\\u6f6d","phone":"038246834","address":"\\u83ef\\u897f\\u0031\\u0032\\u0031\\u002d\\u0031\\u0030\\u53ca\\u0031\\u0032\\u0031\\u002d\\u0031\\u0031\\u865f"}', '120272', '711', 'zh-tw', 1000),
(933, 62, '2-62', 1, '花農', '{"number":"111980","shop":"\\u82b1\\u8fb2","phone":"038359660","address":"\\u5efa\\u570b\\u8def\\u0032\\u0033\\u0036\\u865f\\u0032\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '111980', '711', 'zh-tw', 1000),
(934, 62, '2-62', 1, '蓮昌', '{"number":"151014","shop":"\\u84ee\\u660c","phone":"038465730","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0038\\u865f"}', '151014', '711', 'zh-tw', 1000),
(935, 62, '2-62', 1, '思瑀', '{"number":"120995","shop":"\\u601d\\u7440","phone":"038465568","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0038\\u0036\\u0032\\u865f\\u53ca\\u0038\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '120995', '711', 'zh-tw', 1000),
(936, 62, '2-62', 1, '蓮慶', '{"number":"113056","shop":"\\u84ee\\u6176","phone":"038311077","address":"\\u6797\\u68ee\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '113056', '711', 'zh-tw', 1000),
(937, 62, '2-62', 1, '鑫盈佳', '{"number":"980137","shop":"\\u946b\\u76c8\\u4f73","phone":"038357526","address":"\\u6797\\u68ee\\u8def\\u0032\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '980137', '711', 'zh-tw', 1000),
(938, 62, '2-62', 1, '愛民', '{"number":"174350","shop":"\\u611b\\u6c11","phone":"038310747","address":"\\u6c11\\u570b\\u8def\\u0032\\u0032\\u865f"}', '174350', '711', 'zh-tw', 1000),
(939, 62, '2-62', 1, '蓮華', '{"number":"991827","shop":"\\u84ee\\u83ef","phone":"038339625","address":"\\u6c11\\u751f\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0033\\u002d\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '991827', '711', 'zh-tw', 1000),
(940, 62, '2-62', 1, '華廈', '{"number":"950723","shop":"\\u83ef\\u5ec8","phone":"038237517","address":"\\u6c11\\u4eab\\u91cc\\u5e9c\\u524d\\u8def\\u0036\\u0033\\u0038\\u865f\\u0036\\u0034\\u0030\\u865f"}', '950723', '711', 'zh-tw', 1000),
(941, 62, '2-62', 1, '蓮成', '{"number":"987747","shop":"\\u84ee\\u6210","phone":"038358316","address":"\\u4e2d\\u83ef\\u8def\\u0032\\u0038\\u0033\\u4e4b\\u0031\\u865f"}', '987747', '711', 'zh-tw', 1000),
(942, 62, '2-62', 1, '華原', '{"number":"198862","shop":"\\u83ef\\u539f","phone":"038349209","address":"\\u4e2d\\u83ef\\u8def\\u0034\\u0032\\u0036\\u865f"}', '198862', '711', 'zh-tw', 1000),
(943, 62, '2-62', 1, '新蓮信', '{"number":"910965","shop":"\\u65b0\\u84ee\\u4fe1","phone":"038233247","address":"\\u4e2d\\u7f8e\\u8def\\u0031\\u0038\\u0036\\u865f"}', '910965', '711', 'zh-tw', 1000),
(944, 62, '2-62', 1, '蓮美', '{"number":"872382","shop":"\\u84ee\\u7f8e","phone":"038227819","address":"\\u4e2d\\u7f8e\\u8def\\u0032\\u0030\\u0039\\u865f"}', '872382', '711', 'zh-tw', 1000),
(945, 62, '2-62', 1, '如意', '{"number":"959177","shop":"\\u5982\\u610f","phone":"038346465","address":"\\u4e2d\\u7f8e\\u8def\\u0033\\u0037\\u865f"}', '959177', '711', 'zh-tw', 1000),
(946, 62, '2-62', 1, '長勝', '{"number":"943725","shop":"\\u9577\\u52dd","phone":"038239707","address":"\\u4e2d\\u7f8e\\u8def\\u0038\\u0033\\u002d\\u0031\\u865f\\u0038\\u0033\\u002d\\u0032\\u865f"}', '943725', '711', 'zh-tw', 1000),
(947, 62, '2-62', 1, '蓮冠', '{"number":"871220","shop":"\\u84ee\\u51a0","phone":"038333681","address":"\\u4e2d\\u5c71\\u8def\\u0034\\u0032\\u0036\\u865f"}', '871220', '711', 'zh-tw', 1000),
(948, 62, '2-62', 1, '蓮圓', '{"number":"131836","shop":"\\u84ee\\u5713","phone":"038462539","address":"\\u4e2d\\u5c71\\u8def\\u0038\\u0039\\u0031\\u865f\\u0038\\u0039\\u0033\\u865f"}', '131836', '711', 'zh-tw', 1000),
(949, 62, '2-62', 1, '蓮慈', '{"number":"113665","shop":"\\u84ee\\u6148","phone":"038465649","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u865f\\u0039\\u865f\\u0031\\u6a13"}', '113665', '711', 'zh-tw', 1000),
(950, 62, '2-62', 1, '尚美', '{"number":"932529","shop":"\\u5c1a\\u7f8e","phone":"038236847","address":"\\u4e2d\\u8208\\u8def\\u0037\\u0031\\u865f"}', '932529', '711', 'zh-tw', 1000),
(951, 62, '2-62', 1, '慈濟', '{"number":"891420","shop":"\\u6148\\u6fdf","phone":"038461461","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\u0038\\u0030\\u0038\\u865f\\u0038\\u0031\\u0030\\u865f"}', '891420', '711', 'zh-tw', 1000),
(952, 62, '2-62', 1, '鑫花蓮', '{"number":"981738","shop":"\\u946b\\u82b1\\u84ee","phone":"038342960","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0038\\u0033\\u865f\\u0033\\u0038\\u0035\\u865f"}', '981738', '711', 'zh-tw', 1000),
(953, 62, '2-62', 1, '花道', '{"number":"147288","shop":"\\u82b1\\u9053","phone":"038325049","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '147288', '711', 'zh-tw', 1000),
(954, 62, '2-62', 1, '吉野', '{"number":"121057","shop":"\\u5409\\u91ce","phone":"038314830","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0035\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '121057', '711', 'zh-tw', 1000),
(955, 63, '2-63', 1, '蓮恆', '{"number":"151276","shop":"\\u84ee\\u6046","phone":"038580885","address":"\\u5317\\u660c\\u6751\\u5efa\\u570b\\u8def\\u4e00\\u6bb5\\u0035\\u0031\\u865f"}', '151276', '711', 'zh-tw', 1000),
(956, 63, '2-63', 1, '稻香', '{"number":"923019","shop":"\\u7a3b\\u9999","phone":"038549982","address":"\\u7a3b\\u9999\\u6751\\u5409\\u8208\\u8def\\u4e8c\\u6bb5\\u0034\\u0036\\u865f"}', '923019', '711', 'zh-tw', 1000),
(957, 63, '2-63', 1, '富翔', '{"number":"967558","shop":"\\u5bcc\\u7fd4","phone":"038523437","address":"\\u6771\\u660c\\u6751\\u6d77\\u5cb8\\u8def\\u0037\\u0037\\u865f"}', '967558', '711', 'zh-tw', 1000),
(958, 63, '2-63', 1, '新福興', '{"number":"199371","shop":"\\u65b0\\u798f\\u8208","phone":"038524398","address":"\\u798f\\u8208\\u6751\\u5409\\u5b89\\u8def\\u4e09\\u6bb5\\u0038\\u0030\\u865f\\u0038\\u0032\\u865f"}', '199371', '711', 'zh-tw', 1000),
(959, 63, '2-63', 1, '東海岸', '{"number":"900072","shop":"\\u6771\\u6d77\\u5cb8","phone":"038514741","address":"\\u6d77\\u5cb8\\u8def\\u0032\\u0035\\u0032\\u865f\\u0032\\u0035\\u0034\\u865f"}', '900072', '711', 'zh-tw', 1000),
(960, 63, '2-63', 1, '吉海', '{"number":"954817","shop":"\\u5409\\u6d77","phone":"038423938","address":"\\u6d77\\u5cb8\\u8def\\u0036\\u0038\\u0033\\u865f"}', '954817', '711', 'zh-tw', 1000),
(961, 63, '2-63', 1, '蓮陽', '{"number":"151737","shop":"\\u84ee\\u967d","phone":"038530422","address":"\\u5409\\u5b89\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '151737', '711', 'zh-tw', 1000),
(962, 63, '2-63', 1, '姐妹', '{"number":"968850","shop":"\\u59d0\\u59b9","phone":"038513232","address":"\\u5409\\u5b89\\u8def\\u4e94\\u6bb5\\u0032\\u0036\\u0032\\u4e4b\\u0031\\u865f\\u0031\\u0046"}', '968850', '711', 'zh-tw', 1000),
(963, 63, '2-63', 1, '吉昌', '{"number":"132345","shop":"\\u5409\\u660c","phone":"038462435","address":"\\u5409\\u5b89\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0034\\u865f"}', '132345', '711', 'zh-tw', 1000),
(964, 63, '2-63', 1, '新蓮盈', '{"number":"968551","shop":"\\u65b0\\u84ee\\u76c8","phone":"038563823","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0035\\u865f\\u0031\\u0046"}', '968551', '711', 'zh-tw', 1000),
(965, 63, '2-63', 1, '愛田', '{"number":"188289","shop":"\\u611b\\u7530","phone":"038462405","address":"\\u5efa\\u570b\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0030\\u865f\\u002e\\u0032\\u0030\\u0032\\u865f"}', '188289', '711', 'zh-tw', 1000),
(966, 63, '2-63', 1, '南濱', '{"number":"952637","shop":"\\u5357\\u6ff1","phone":"038529949","address":"\\u5357\\u6ff1\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0036\\u865f"}', '952637', '711', 'zh-tw', 1000),
(967, 63, '2-63', 1, '吉濱', '{"number":"183804","shop":"\\u5409\\u6ff1","phone":"038421400","address":"\\u5357\\u6ff1\\u8def\\u4e00\\u6bb5\\u0036\\u0035\\u0031\\u865f"}', '183804', '711', 'zh-tw', 1000),
(968, 63, '2-63', 1, '仁禮', '{"number":"920320","shop":"\\u4ec1\\u79ae","phone":"038514089","address":"\\u5357\\u57d4\\u516b\\u8857\\u0032\\u0032\\u0033\\u865f"}', '920320', '711', 'zh-tw', 1000),
(969, 63, '2-63', 1, '吉華', '{"number":"196626","shop":"\\u5409\\u83ef","phone":"038544491","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0032\\u865f"}', '196626', '711', 'zh-tw', 1000),
(970, 63, '2-63', 1, '蓮安', '{"number":"173748","shop":"\\u84ee\\u5b89","phone":"038528220","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0035\\u865f"}', '173748', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(971, 63, '2-63', 1, '文景', '{"number":"120489","shop":"\\u6587\\u666f","phone":"038546457","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0037\\u0031\\u002d\\u0032\\u865f"}', '120489', '711', 'zh-tw', 1000),
(972, 63, '2-63', 1, '蓮吉', '{"number":"866310","shop":"\\u84ee\\u5409","phone":"038527701","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0034\\u0032\\u0033\\u865f"}', '866310', '711', 'zh-tw', 1000),
(973, 63, '2-63', 1, '慈勝', '{"number":"912972","shop":"\\u6148\\u52dd","phone":"038549692","address":"\\u81ea\\u5f37\\u8def\\u0035\\u0032\\u865f"}', '912972', '711', 'zh-tw', 1000),
(974, 64, '2-64', 1, '瑞權', '{"number":"165507","shop":"\\u745e\\u6b0a","phone":"038870277","address":"\\u745e\\u5317\\u8def\\u0033\\u0030\\u4e4b\\u0032\\u865f"}', '165507', '711', 'zh-tw', 1000),
(975, 64, '2-64', 1, '瑞繐', '{"number":"923293","shop":"\\u745e\\u7e50","phone":"038876490","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u865f\\u0031\\u0039\\u865f"}', '923293', '711', 'zh-tw', 1000),
(976, 65, '2-65', 1, '豐坪', '{"number":"166821","shop":"\\u8c50\\u576a","phone":"038653674","address":"\\u8c50\\u576a\\u6751\\u8c50\\u576a\\u8def\\u4e8c\\u6bb5\\u0035\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '166821', '711', 'zh-tw', 1000),
(977, 65, '2-65', 1, '大豐田', '{"number":"127125","shop":"\\u5927\\u8c50\\u7530","phone":"038654091","address":"\\u8c50\\u5c71\\u6751\\u4e2d\\u5c71\\u8def\\u0032\\u0030\\u0031\\u865f\\u0032\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '127125', '711', 'zh-tw', 1000),
(978, 65, '2-65', 1, '豐學', '{"number":"985659","shop":"\\u8c50\\u5b78","phone":"038663639","address":"\\u5e73\\u548c\\u6751\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\u0035\\u0039\\u0036\\u865f"}', '985659', '711', 'zh-tw', 1000),
(979, 65, '2-65', 1, '八悅', '{"number":"126661","shop":"\\u516b\\u6085","phone":"038664224","address":"\\u5e73\\u548c\\u6751\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0035\\u865f"}', '126661', '711', 'zh-tw', 1000),
(980, 65, '2-65', 1, '志學', '{"number":"880671","shop":"\\u5fd7\\u5b78","phone":"038661330","address":"\\u5fd7\\u5b78\\u6751\\u0037\\u9130\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0036\\u865f"}', '880671', '711', 'zh-tw', 1000),
(981, 65, '2-65', 1, '新壽豐', '{"number":"977924","shop":"\\u65b0\\u58fd\\u8c50","phone":"038656942","address":"\\u4e2d\\u5c71\\u8def\\u4e94\\u6bb5\\u0031\\u0033\\u0031\\u865f"}', '977924', '711', 'zh-tw', 1000),
(982, 66, '2-66', 1, '蓮發', '{"number":"152040","shop":"\\u84ee\\u767c","phone":"038267790","address":"\\u5317\\u57d4\\u6751\\u0037\\u9130\\u5317\\u57d4\\u8def\\u0031\\u0037\\u0032\\u865f"}', '152040', '711', 'zh-tw', 1000),
(983, 66, '2-66', 1, '蓮莊', '{"number":"138745","shop":"\\u84ee\\u838a","phone":"038262950","address":"\\u5317\\u57d4\\u6751\\u5149\\u5fa9\\u8def\\u0034\\u0036\\u0032\\u865f"}', '138745', '711', 'zh-tw', 1000),
(984, 66, '2-66', 1, '北埔', '{"number":"151759","shop":"\\u5317\\u57d4","phone":"038269176","address":"\\u5317\\u57d4\\u8def\\u0032\\u0038\\u0032\\u865f"}', '151759', '711', 'zh-tw', 1000),
(985, 66, '2-66', 1, '蓮嘉', '{"number":"873385","shop":"\\u84ee\\u5609","phone":"038263127","address":"\\u5609\\u91cc\\u6751\\u5609\\u91cc\\u8def\\u0031\\u0035\\u0035\\u865f\\u0031\\u0035\\u0037\\u865f"}', '873385', '711', 'zh-tw', 1000),
(986, 66, '2-66', 1, '海星', '{"number":"196165","shop":"\\u6d77\\u661f","phone":"038242607","address":"\\u5609\\u65b0\\u8def\\u0036\\u0033\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '196165', '711', 'zh-tw', 1000),
(987, 66, '2-66', 1, '精舍', '{"number":"138941","shop":"\\u7cbe\\u820d","phone":"038262915","address":"\\u5eb7\\u6a02\\u6751\\u5eb7\\u6a02\\u8def\\u0032\\u0038\\u0036\\u865f\\u0032\\u0038\\u0038\\u865f"}', '138941', '711', 'zh-tw', 1000),
(988, 66, '2-66', 1, '祥祐', '{"number":"954437","shop":"\\u7965\\u7950","phone":"038610548","address":"\\u9806\\u5b89\\u6751\\u5317\\u4e09\\u68e7\\u0031\\u0031\\u0039\\u4e4b\\u0036\\u865f"}', '954437', '711', 'zh-tw', 1000),
(989, 66, '2-66', 1, '新廉瀚', '{"number":"151287","shop":"\\u65b0\\u5ec9\\u701a","phone":"038612913","address":"\\u65b0\\u8208\\u8def\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '151287', '711', 'zh-tw', 1000),
(990, 67, '2-67', 1, '崇德盈', '{"number":"114288","shop":"\\u5d07\\u5fb7\\u76c8","phone":"038621776","address":"\\u5d07\\u5fb7\\u0039\\u0035\\u002d\\u0036\\u865f"}', '114288', '711', 'zh-tw', 1000),
(991, 67, '2-67', 1, '太魯閣', '{"number":"880073","shop":"\\u592a\\u9b6f\\u95a3","phone":"038611543","address":"\\u5bcc\\u4e16\\u6751\\u5bcc\\u4e16\\u8def\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0032\\u002d\\u0031\\u865f"}', '880073', '711', 'zh-tw', 1000),
(992, 67, '2-67', 1, '天祥', '{"number":"155256","shop":"\\u5929\\u7965","phone":"038691237","address":"\\u5bcc\\u4e16\\u6751\\u5929\\u7965\\u0031\\u0037\\u4e4b\\u0031\\u865f"}', '155256', '711', 'zh-tw', 1000),
(993, 67, '2-67', 1, '泰雅', '{"number":"978260","shop":"\\u6cf0\\u96c5","phone":"038681479","address":"\\u548c\\u5e73\\u6751\\u548c\\u5e73\\u8857\\u0031\\u0035\\u0036\\u865f"}', '978260', '711', 'zh-tw', 1000),
(994, 67, '2-67', 1, '加灣', '{"number":"194239","shop":"\\u52a0\\u7063","phone":"038264673","address":"\\u666f\\u7f8e\\u6751\\u52a0\\u7063\\u0031\\u0037\\u0038\\u4e4b\\u0032\\u0030\\u865f"}', '194239', '711', 'zh-tw', 1000),
(995, 68, '2-68', 1, '玉富', '{"number":"181288","shop":"\\u7389\\u5bcc","phone":"038980240","address":"\\u5927\\u540c\\u8def\\u0032\\u0031\\u0034\\u865f\\u53ca\\u5149\\u5fa9\\u8def\\u0031\\u0038\\u0034\\u865f"}', '181288', '711', 'zh-tw', 1000),
(996, 68, '2-68', 1, '玉明', '{"number":"116354","shop":"\\u7389\\u660e","phone":"038887466","address":"\\u6cf0\\u660c\\u91cc\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0035\\u865f"}', '116354', '711', 'zh-tw', 1000),
(997, 68, '2-68', 1, '興玉', '{"number":"116413","shop":"\\u8208\\u7389","phone":"038980392","address":"\\u8208\\u570b\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u865f"}', '116413', '711', 'zh-tw', 1000),
(998, 68, '2-68', 1, '樂合', '{"number":"174305","shop":"\\u6a02\\u5408","phone":"038980204","address":"\\u6a02\\u5408\\u91cc\\u65b0\\u6c11\\u8def\\u0031\\u0033\\u002d\\u0031\\u865f"}', '174305', '711', 'zh-tw', 1000),
(999, 68, '2-68', 1, '玉里', '{"number":"153375","shop":"\\u7389\\u91cc","phone":"038880248","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '153375', '711', 'zh-tw', 1000),
(1000, 68, '2-68', 1, '璞石閣', '{"number":"902469","shop":"\\u749e\\u77f3\\u95a3","phone":"038980399","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0039\\u0036\\u865f"}', '902469', '711', 'zh-tw', 1000),
(1001, 69, '3-69', 1, '安一', '{"number":"186320","shop":"\\u5b89\\u4e00","phone":"0224260343","address":"\\u5b89\\u4e00\\u8def\\u0031\\u0037\\u0032\\u53ca\\u0031\\u0037\\u0034\\u865f"}', '186320', '711', 'zh-tw', 1000),
(1002, 69, '3-69', 1, '新長基', '{"number":"164593","shop":"\\u65b0\\u9577\\u57fa","phone":"0224336241","address":"\\u5b89\\u6a02\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0031\\u865f"}', '164593', '711', 'zh-tw', 1000),
(1003, 69, '3-69', 1, '大武嶺', '{"number":"151830","shop":"\\u5927\\u6b66\\u5dba","phone":"0224348246","address":"\\u5927\\u6b66\\u5dba\\u91cc\\u57fa\\u91d1\\u4e00\\u8def\\u0031\\u0033\\u0035\\u5df7\\u0032\\u0031\\u5f04\\u0032\\u002d\\u0031\\u865f"}', '151830', '711', 'zh-tw', 1000),
(1004, 69, '3-69', 1, '瑞金', '{"number":"161468","shop":"\\u745e\\u91d1","phone":"0224344408","address":"\\u57fa\\u91d1\\u4e09\\u8def\\u0037\\u0035\\u002d\\u0031\\u865f"}', '161468', '711', 'zh-tw', 1000),
(1005, 69, '3-69', 1, '麥金', '{"number":"187530","shop":"\\u9ea5\\u91d1","phone":"0234011778","address":"\\u57fa\\u91d1\\u4e09\\u8def\\u0038\\u0030\\u865f\\u0038\\u0030\\u002d\\u0031\\u865f"}', '187530', '711', 'zh-tw', 1000),
(1006, 69, '3-69', 1, '新武嶺', '{"number":"139313","shop":"\\u65b0\\u6b66\\u5dba","phone":"0224334459","address":"\\u57fa\\u91d1\\u4e00\\u8def\\u0031\\u0036\\u0038\\u865f"}', '139313', '711', 'zh-tw', 1000),
(1007, 69, '3-69', 1, '大武崙', '{"number":"990879","shop":"\\u5927\\u6b66\\u5d19","phone":"0224345690","address":"\\u57fa\\u91d1\\u4e00\\u8def\\u0033\\u0038\\u0031\\u865f\\u0033\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '990879', '711', 'zh-tw', 1000),
(1008, 69, '3-69', 1, '基金', '{"number":"170886","shop":"\\u57fa\\u91d1","phone":"0234010722","address":"\\u9ea5\\u91d1\\u8def\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '170886', '711', 'zh-tw', 1000),
(1009, 69, '3-69', 1, '新金樂', '{"number":"942478","shop":"\\u65b0\\u91d1\\u6a02","phone":"0234010954","address":"\\u9ea5\\u91d1\\u8def\\u0034\\u0032\\u0037\\u865f"}', '942478', '711', 'zh-tw', 1000),
(1010, 69, '3-69', 1, '新壯觀', '{"number":"118866","shop":"\\u65b0\\u58ef\\u89c0","phone":"0224335384","address":"\\u9ea5\\u91d1\\u8def\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '118866', '711', 'zh-tw', 1000),
(1011, 69, '3-69', 1, '武訓', '{"number":"154840","shop":"\\u6b66\\u8a13","phone":"0224329441","address":"\\u6b66\\u8a13\\u8857\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '154840', '711', 'zh-tw', 1000),
(1012, 69, '3-69', 1, '樂添', '{"number":"186560","shop":"\\u6a02\\u6dfb","phone":"0224347940","address":"\\u6a02\\u5229\\u4e8c\\u8857\\u0036\\u0032\\u5df7\\u0032\\u0039\\u0031\\u865f\\u0032\\u6a13\\u0032\\u0039\\u0032\\u865f\\u0032\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '186560', '711', 'zh-tw', 1000),
(1013, 70, '3-70', 1, '暖碇', '{"number":"993856","shop":"\\u6696\\u7887","phone":"0224595262","address":"\\u7887\\u5167\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f"}', '993856', '711', 'zh-tw', 1000),
(1014, 70, '3-70', 1, '晨曦', '{"number":"183284","shop":"\\u6668\\u66e6","phone":"0224585087","address":"\\u6771\\u52e2\\u8857\\u0036\\u4e4b\\u0035\\u0032\\u865f\\u0036\\u4e4b\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '183284', '711', 'zh-tw', 1000),
(1015, 70, '3-70', 1, '新暖東', '{"number":"971292","shop":"\\u65b0\\u6696\\u6771","phone":"0224580719","address":"\\u6696\\u6696\\u8857\\u0031\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '971292', '711', 'zh-tw', 1000),
(1016, 70, '3-70', 1, '暖鑫', '{"number":"127103","shop":"\\u6696\\u946b","phone":"0224585245","address":"\\u6696\\u6696\\u8857\\u0035\\u0035\\u0034\\u865f"}', '127103', '711', 'zh-tw', 1000),
(1017, 70, '3-70', 1, '碇內', '{"number":"112879","shop":"\\u7887\\u5167","phone":"0224586443","address":"\\u6e90\\u9060\\u8def\\u0031\\u0035\\u0038\\u865f\\u0031\\u0036\\u0030\\u865f"}', '112879', '711', 'zh-tw', 1000),
(1018, 70, '3-70', 1, '源遠', '{"number":"977142","shop":"\\u6e90\\u9060","phone":"0224575289","address":"\\u6e90\\u9060\\u8def\\u0032\\u0039\\u0036\\u865f"}', '977142', '711', 'zh-tw', 1000),
(1019, 71, '3-71', 1, '巧龍', '{"number":"891246","shop":"\\u5de7\\u9f8d","phone":"0224517061","address":"\\u767e\\u4e09\\u8857\\u0036\\u0031\\u865f"}', '891246', '711', 'zh-tw', 1000),
(1020, 71, '3-71', 1, '七堵站', '{"number":"154596","shop":"\\u4e03\\u5835\\u7ad9","phone":"0224567295","address":"\\u6771\\u65b0\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '154596', '711', 'zh-tw', 1000),
(1021, 71, '3-71', 1, '篤鑫', '{"number":"119216","shop":"\\u7be4\\u946b","phone":"0224527780","address":"\\u5835\\u5357\\u8857\\u0032\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '119216', '711', 'zh-tw', 1000),
(1022, 71, '3-71', 1, '新五福', '{"number":"127114","shop":"\\u65b0\\u4e94\\u798f","phone":"0224529901","address":"\\u798f\\u4e94\\u8857\\u0038\\u0030\\u865f\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '127114', '711', 'zh-tw', 1000),
(1023, 71, '3-71', 1, '六工', '{"number":"163512","shop":"\\u516d\\u5de5","phone":"0224529983","address":"\\u5de5\\u5efa\\u8def\\u0031\\u4e4b\\u0032\\u0032\\u865f\\u0031\\u4e4b\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '163512', '711', 'zh-tw', 1000),
(1024, 71, '3-71', 1, '華新一', '{"number":"144670","shop":"\\u83ef\\u65b0\\u4e00","phone":"0224519705","address":"\\u83ef\\u65b0\\u4e00\\u8def\\u0032\\u0032\\u865f\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '144670', '711', 'zh-tw', 1000),
(1025, 71, '3-71', 1, '七堵', '{"number":"171007","shop":"\\u4e03\\u5835","phone":"0224562044","address":"\\u660e\\u5fb7\\u4e00\\u8def\\u0031\\u0037\\u0034\\u865f"}', '171007', '711', 'zh-tw', 1000),
(1026, 71, '3-71', 1, '福聚', '{"number":"141338","shop":"\\u798f\\u805a","phone":"0224524570","address":"\\u5be6\\u8e10\\u8def\\u0032\\u0038\\u0036\\u865f\\u798f\\u4e8c\\u8857\\u0032\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '141338', '711', 'zh-tw', 1000),
(1027, 71, '3-71', 1, '永富', '{"number":"189075","shop":"\\u6c38\\u5bcc","phone":"0224557494","address":"\\u6c38\\u5bcc\\u8def\\u0039\\u0039\\u865f\\u0031\\u0030\\u0031\\u865f\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '189075', '711', 'zh-tw', 1000),
(1028, 71, '3-71', 1, '正光', '{"number":"132415","shop":"\\u6b63\\u5149","phone":"0224564983","address":"\\u81ea\\u6cbb\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f"}', '132415', '711', 'zh-tw', 1000),
(1029, 72, '3-72', 1, '愛鑫', '{"number":"159177","shop":"\\u611b\\u946b","phone":"0224269831","address":"\\u611b\\u4e8c\\u8def\\u0036\\u0035\\u865f"}', '159177', '711', 'zh-tw', 1000),
(1030, 72, '3-72', 1, '新華成', '{"number":"940977","shop":"\\u65b0\\u83ef\\u6210","phone":"0224339873","address":"\\u6210\\u529f\\u4e00\\u8def\\u0031\\u0031\\u0035\\u865f\\u0031\\u0031\\u0037\\u865f"}', '940977', '711', 'zh-tw', 1000),
(1031, 72, '3-72', 1, '港西', '{"number":"128900","shop":"\\u6e2f\\u897f","phone":"0224259886","address":"\\u6e2f\\u897f\\u8857\\u0036\\u002d\\u0032\\u865f"}', '128900', '711', 'zh-tw', 1000),
(1032, 72, '3-72', 1, '慶龍', '{"number":"970738","shop":"\\u6176\\u9f8d","phone":"0224264929","address":"\\u5357\\u69ae\\u8def\\u0031\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '970738', '711', 'zh-tw', 1000),
(1033, 72, '3-72', 1, '新仁二', '{"number":"179827","shop":"\\u65b0\\u4ec1\\u4e8c","phone":"0224264807","address":"\\u4ec1\\u4e8c\\u8def\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '179827', '711', 'zh-tw', 1000),
(1034, 72, '3-72', 1, '極緻', '{"number":"112477","shop":"\\u6975\\u7dfb","phone":"0224274717","address":"\\u4ec1\\u4e8c\\u8def\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '112477', '711', 'zh-tw', 1000),
(1035, 72, '3-72', 1, '新廟口', '{"number":"184874","shop":"\\u65b0\\u5edf\\u53e3","phone":"0224227687","address":"\\u4ec1\\u4e8c\\u8def\\u0032\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '184874', '711', 'zh-tw', 1000),
(1036, 72, '3-72', 1, '新福成', '{"number":"171155","shop":"\\u65b0\\u798f\\u6210","phone":"0224274348","address":"\\u4ec1\\u4e8c\\u8def\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '171155', '711', 'zh-tw', 1000),
(1037, 72, '3-72', 1, '極上', '{"number":"155625","shop":"\\u6975\\u4e0a","phone":"0224257644","address":"\\u4ec1\\u4e09\\u8def\\u0036\\u0036\\u865f\\u611b\\u4e8c\\u8def\\u0035\\u0034\\u5df7\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '155625', '711', 'zh-tw', 1000),
(1038, 72, '3-72', 1, '崁頂', '{"number":"143699","shop":"\\u5d01\\u9802","phone":"0224264442","address":"\\u4ec1\\u56db\\u8def\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '143699', '711', 'zh-tw', 1000),
(1039, 72, '3-72', 1, '仁五', '{"number":"989086","shop":"\\u4ec1\\u4e94","phone":"0224258951","address":"\\u4ec1\\u4e94\\u8def\\u0036\\u0033\\u865f\\u0032\\u002d\\u0031\\u865f"}', '989086', '711', 'zh-tw', 1000),
(1040, 72, '3-72', 1, '愛六', '{"number":"194376","shop":"\\u611b\\u516d","phone":"0224265641","address":"\\u4ec1\\u4e00\\u8def\\u0032\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '194376', '711', 'zh-tw', 1000),
(1041, 72, '3-72', 1, '孝三', '{"number":"996730","shop":"\\u5b5d\\u4e09","phone":"0224287460","address":"\\u5b5d\\u4e09\\u8def\\u0038\\u0039\\u865f\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '996730', '711', 'zh-tw', 1000),
(1042, 72, '3-72', 1, '忠三', '{"number":"197412","shop":"\\u5fe0\\u4e09","phone":"0224273391","address":"\\u5fe0\\u4e09\\u8def\\u0035\\u0032\\u4e4b\\u0031\\u865f\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '197412', '711', 'zh-tw', 1000),
(1043, 73, '3-73', 1, '坤海', '{"number":"962313","shop":"\\u5764\\u6d77","phone":"0224658451","address":"\\u6771\\u660e\\u8def\\u0036\\u0039\\u865f"}', '962313', '711', 'zh-tw', 1000),
(1044, 73, '3-73', 1, '崇信', '{"number":"194479","shop":"\\u5d07\\u4fe1","phone":"0224657622","address":"\\u6771\\u4fe1\\u8def\\u0032\\u0031\\u0032\\u002d\\u0034\\u002c\\u0032\\u0031\\u0034\\u865f\\u0031\\u0046"}', '194479', '711', 'zh-tw', 1000),
(1045, 73, '3-73', 1, '德信', '{"number":"117140","shop":"\\u5fb7\\u4fe1","phone":"0224669681","address":"\\u6771\\u4fe1\\u8def\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f"}', '117140', '711', 'zh-tw', 1000),
(1046, 73, '3-73', 1, '美的', '{"number":"196279","shop":"\\u7f8e\\u7684","phone":"0224685157","address":"\\u6559\\u5b5d\\u8857\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '196279', '711', 'zh-tw', 1000),
(1047, 73, '3-73', 1, '深瑞', '{"number":"195520","shop":"\\u6df1\\u745e","phone":"0224657831","address":"\\u6df1\\u6fb3\\u5751\\u8def\\u0031\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '195520', '711', 'zh-tw', 1000),
(1048, 73, '3-73', 1, '滿福', '{"number":"123525","shop":"\\u6eff\\u798f","phone":"0224684530","address":"\\u6df1\\u6fb3\\u5751\\u8def\\u0031\\u0036\\u0036\\u4e4b\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '123525', '711', 'zh-tw', 1000),
(1049, 73, '3-73', 1, '深澳坑', '{"number":"117896","shop":"\\u6df1\\u6fb3\\u5751","phone":"0224685466","address":"\\u6df1\\u6fb3\\u5751\\u8def\\u0032\\u002d\\u0036\\u865f\\u0032\\u002d\\u0037\\u865f"}', '117896', '711', 'zh-tw', 1000),
(1050, 73, '3-73', 1, '深美', '{"number":"951003","shop":"\\u6df1\\u7f8e","phone":"0224664831","address":"\\u6df1\\u7f8e\\u8857\\u0031\\u0039\\u0036\\u865f"}', '951003', '711', 'zh-tw', 1000),
(1051, 73, '3-73', 1, '新福樂', '{"number":"138697","shop":"\\u65b0\\u798f\\u6a02","phone":"0224683607","address":"\\u6df1\\u6eaa\\u8def\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '138697', '711', 'zh-tw', 1000),
(1052, 73, '3-73', 1, '信二', '{"number":"892272","shop":"\\u4fe1\\u4e8c","phone":"0224287557","address":"\\u4fe1\\u4e8c\\u8def\\u0031\\u0036\\u0037\\u865f"}', '892272', '711', 'zh-tw', 1000),
(1053, 73, '3-73', 1, '杰昕', '{"number":"903819","shop":"\\u6770\\u6615","phone":"0224236427","address":"\\u4fe1\\u4e8c\\u8def\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f"}', '903819', '711', 'zh-tw', 1000),
(1054, 73, '3-73', 1, '基醫', '{"number":"174040","shop":"\\u57fa\\u91ab","phone":"0224257678","address":"\\u4fe1\\u4e8c\\u8def\\u0032\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '174040', '711', 'zh-tw', 1000),
(1055, 74, '3-74', 1, '德復', '{"number":"170255","shop":"\\u5fb7\\u5fa9","phone":"0224374364","address":"\\u5fa9\\u8208\\u8def\\u0031\\u0039\\u0037\\u865f"}', '170255', '711', 'zh-tw', 1000),
(1056, 74, '3-74', 1, '德欣', '{"number":"113746","shop":"\\u5fb7\\u6b23","phone":"0224378991","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0032\\u0038\\u865f\\u4e4b\\u0036\\u865f\\u4e4b\\u0037\\u865f\\u0031\\u6a13"}', '113746', '711', 'zh-tw', 1000),
(1057, 74, '3-74', 1, '聖心', '{"number":"118419","shop":"\\u8056\\u5fc3","phone":"0224249719","address":"\\u897f\\u5b9a\\u8def\\u0033\\u0038\\u865f\\u0034\\u0030\\u865f"}', '118419', '711', 'zh-tw', 1000),
(1058, 74, '3-74', 1, '新大慶', '{"number":"185176","shop":"\\u65b0\\u5927\\u6176","phone":"0224367046","address":"\\u4e2d\\u548c\\u8def\\u0031\\u0036\\u0038\\u5df7\\u0037\\u5f04\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '185176', '711', 'zh-tw', 1000),
(1059, 74, '3-74', 1, '富華', '{"number":"119788","shop":"\\u5bcc\\u83ef","phone":"0224369132","address":"\\u4e2d\\u83ef\\u8def\\u0039\\u865f"}', '119788', '711', 'zh-tw', 1000),
(1060, 75, '3-75', 1, '八斗子', '{"number":"148498","shop":"\\u516b\\u6597\\u5b50","phone":"0224694510","address":"\\u5317\\u5be7\\u8def\\u0033\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '148498', '711', 'zh-tw', 1000),
(1061, 75, '3-75', 1, '北寧', '{"number":"906759","shop":"\\u5317\\u5be7","phone":"0224691825","address":"\\u5317\\u5be7\\u8def\\u0033\\u0038\\u0032\\u865f\\u0033\\u0038\\u0032\\u002d\\u0035\\u865f"}', '906759', '711', 'zh-tw', 1000),
(1062, 75, '3-75', 1, '正濱', '{"number":"906553","shop":"\\u6b63\\u6ff1","phone":"0224632658","address":"\\u8c50\\u7a14\\u8857\\u0032\\u0037\\u865f"}', '906553', '711', 'zh-tw', 1000),
(1063, 75, '3-75', 1, '和平島', '{"number":"140597","shop":"\\u548c\\u5e73\\u5cf6","phone":"0224629596","address":"\\u548c\\u4e00\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u0032\\u0037\\u865f"}', '140597', '711', 'zh-tw', 1000),
(1064, 75, '3-75', 1, '祥濱', '{"number":"140748","shop":"\\u7965\\u6ff1","phone":"0224631972","address":"\\u5efa\\u570b\\u91cc\\u7965\\u8c50\\u8857\\u0033\\u0033\\u0039\\u865f"}', '140748', '711', 'zh-tw', 1000),
(1065, 75, '3-75', 1, '和豐', '{"number":"155522","shop":"\\u548c\\u8c50","phone":"0224698861","address":"\\u65b0\\u8c50\\u8857\\u0032\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '155522', '711', 'zh-tw', 1000),
(1066, 75, '3-75', 1, '新財發', '{"number":"164065","shop":"\\u65b0\\u8ca1\\u767c","phone":"0224697904","address":"\\u65b0\\u8c50\\u8857\\u0033\\u0030\\u0033\\u5df7\\u0031\\u0031\\u5f04\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '164065', '711', 'zh-tw', 1000),
(1067, 75, '3-75', 1, '財高', '{"number":"165806","shop":"\\u8ca1\\u9ad8","phone":"0224695318","address":"\\u65b0\\u8c50\\u8857\\u0033\\u0038\\u0031\\u865f\\u0033\\u0038\\u0033\\u865f"}', '165806', '711', 'zh-tw', 1000),
(1068, 75, '3-75', 1, '龍騰', '{"number":"886303","shop":"\\u9f8d\\u9a30","phone":"0224264670","address":"\\u7fa9\\u4e00\\u8def\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f"}', '886303', '711', 'zh-tw', 1000),
(1069, 75, '3-75', 1, '哨船頭', '{"number":"159373","shop":"\\u54e8\\u8239\\u982d","phone":"0224289268","address":"\\u7fa9\\u4e00\\u8def\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '159373', '711', 'zh-tw', 1000),
(1070, 75, '3-75', 1, '豐勝', '{"number":"928368","shop":"\\u8c50\\u52dd","phone":"0224631011","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0032\\u0032\\u865f"}', '928368', '711', 'zh-tw', 1000),
(1071, 75, '3-75', 1, '旭東', '{"number":"197777","shop":"\\u65ed\\u6771","phone":"0224274196","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0034\\u865f"}', '197777', '711', 'zh-tw', 1000),
(1072, 75, '3-75', 1, '海洋', '{"number":"200941","shop":"\\u6d77\\u6d0b","phone":"0224637174","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '200941', '711', 'zh-tw', 1000),
(1073, 75, '3-75', 1, '漁港', '{"number":"161295","shop":"\\u6f01\\u6e2f","phone":"0224634393","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0037\\u0032\\u865f"}', '161295', '711', 'zh-tw', 1000),
(1074, 76, '4-76', 1, '新大業', '{"number":"971580","shop":"\\u65b0\\u5927\\u696d","phone":"052285312","address":"\\u5b89\\u5bee\\u91cc\\u0032\\u0034\\u9130\\u5433\\u9cf3\\u5357\\u8def\\u0031\\u0039\\u0034\\u865f"}', '971580', '711', 'zh-tw', 1000),
(1075, 76, '4-76', 1, '嘉雅', '{"number":"112503","shop":"\\u5609\\u96c5","phone":"052783069","address":"\\u5927\\u96c5\\u8def\\u4e8c\\u6bb5\\u0034\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '112503', '711', 'zh-tw', 1000),
(1076, 76, '4-76', 1, '蘭潭', '{"number":"914174","shop":"\\u862d\\u6f6d","phone":"052784998","address":"\\u5927\\u96c5\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u0033\\u865f\\u0035\\u0037\\u0035\\u865f"}', '914174', '711', 'zh-tw', 1000),
(1077, 76, '4-76', 1, '新嘉基', '{"number":"951070","shop":"\\u65b0\\u5609\\u57fa","phone":"052745600","address":"\\u9802\\u5e84\\u91cc\\u5fe0\\u5b5d\\u8def\\u0036\\u0035\\u0030\\u865f\\u0028\\u5609\\u7fa9\\u57fa\\u7763\\u6559\\u91ab\\u9662\\u9580\\u8a3a\\u5927\\u6a13\\u5916\\u0029"}', '951070', '711', 'zh-tw', 1000),
(1078, 76, '4-76', 1, '義東', '{"number":"144186","shop":"\\u7fa9\\u6771","phone":"052760974","address":"\\u6771\\u7fa9\\u8def\\u0038\\u0035\\u865f"}', '144186', '711', 'zh-tw', 1000),
(1079, 76, '4-76', 1, '彌陀', '{"number":"844882","shop":"\\u5f4c\\u9640","phone":"052285187","address":"\\u82b3\\u5b89\\u8def\\u0031\\u865f\\u0031\\u0046"}', '844882', '711', 'zh-tw', 1000),
(1080, 76, '4-76', 1, '軍暉', '{"number":"941279","shop":"\\u8ecd\\u6689","phone":"052308498","address":"\\u8ecd\\u8f1d\\u8def\\u0036\\u0030\\u865f"}', '941279', '711', 'zh-tw', 1000),
(1081, 76, '4-76', 1, '嘉英', '{"number":"972125","shop":"\\u5609\\u82f1","phone":"052209516","address":"\\u8356\\u85e4\\u91cc\\u5fe0\\u5b5d\\u5317\\u8857\\u0032\\u0030\\u0036\\u865f"}', '972125', '711', 'zh-tw', 1000),
(1082, 76, '4-76', 1, '立宣', '{"number":"187965","shop":"\\u7acb\\u5ba3","phone":"052254565","address":"\\u7acb\\u4ec1\\u8def\\u0031\\u0032\\u0030\\u865f"}', '187965', '711', 'zh-tw', 1000),
(1083, 76, '4-76', 1, '嘉林', '{"number":"180023","shop":"\\u5609\\u6797","phone":"052763478","address":"\\u6797\\u68ee\\u6771\\u8def\\u0039\\u0035\\u0030\\u865f"}', '180023', '711', 'zh-tw', 1000),
(1084, 76, '4-76', 1, '嘉文', '{"number":"951601","shop":"\\u5609\\u6587","phone":"052776182","address":"\\u76e7\\u539d\\u91cc\\u6587\\u96c5\\u8857\\u0032\\u0031\\u0031\\u865f"}', '951601', '711', 'zh-tw', 1000),
(1085, 76, '4-76', 1, '嘉工', '{"number":"909323","shop":"\\u5609\\u5de5","phone":"052745575","address":"\\u5f4c\\u9640\\u8def\\u0032\\u0034\\u0030\\u865f"}', '909323', '711', 'zh-tw', 1000),
(1086, 76, '4-76', 1, '嘉府', '{"number":"111500","shop":"\\u5609\\u5e9c","phone":"052745579","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0039\\u0034\\u865f\\u0031\\u0039\\u0036\\u865f\\u0031\\u0039\\u0038\\u865f"}', '111500', '711', 'zh-tw', 1000),
(1087, 76, '4-76', 1, '新嘉商', '{"number":"149826","shop":"\\u65b0\\u5609\\u5546","phone":"052762449","address":"\\u6c11\\u6b0a\\u8def\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '149826', '711', 'zh-tw', 1000),
(1088, 76, '4-76', 1, '嘉國', '{"number":"111751","shop":"\\u5609\\u570b","phone":"052710151","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0030\\u0032\\u865f"}', '111751', '711', 'zh-tw', 1000),
(1089, 76, '4-76', 1, '元福', '{"number":"965493","shop":"\\u5143\\u798f","phone":"052775489","address":"\\u738b\\u7530\\u91cc\\u6797\\u68ee\\u6771\\u8def\\u0032\\u0038\\u0038\\u865f"}', '965493', '711', 'zh-tw', 1000),
(1090, 76, '4-76', 1, '旭豐', '{"number":"990248","shop":"\\u65ed\\u8c50","phone":"052395797","address":"\\u6eaa\\u8208\\u8857\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '990248', '711', 'zh-tw', 1000),
(1091, 76, '4-76', 1, '台林', '{"number":"854498","shop":"\\u53f0\\u6797","phone":"052780939","address":"\\u65b0\\u751f\\u8def\\u0037\\u0032\\u0033\\u865f"}', '854498', '711', 'zh-tw', 1000),
(1092, 76, '4-76', 1, '湖興', '{"number":"192750","shop":"\\u6e56\\u8208","phone":"052273690","address":"\\u8208\\u5b89\\u91cc\\u0032\\u0034\\u9130\\u8208\\u7f8e\\u516d\\u8def\\u0033\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '192750', '711', 'zh-tw', 1000),
(1093, 76, '4-76', 1, '新嘉家', '{"number":"982454","shop":"\\u65b0\\u5609\\u5bb6","phone":"052166390","address":"\\u5ba3\\u4fe1\\u91cc\\u548c\\u5e73\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '982454', '711', 'zh-tw', 1000),
(1094, 76, '4-76', 1, '嘉義大', '{"number":"180780","shop":"\\u5609\\u7fa9\\u5927","phone":"052764674","address":"\\u5b78\\u5e9c\\u8def\\u0033\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '180780', '711', 'zh-tw', 1000),
(1095, 76, '4-76', 1, '精城', '{"number":"116262","shop":"\\u7cbe\\u57ce","phone":"052780668","address":"\\u5733\\u982d\\u91cc\\u6797\\u68ee\\u6771\\u8def\\u0037\\u0032\\u0030\\u865f"}', '116262', '711', 'zh-tw', 1000),
(1096, 76, '4-76', 1, '嘉和', '{"number":"111533","shop":"\\u5609\\u548c","phone":"052236235","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0036\\u0039\\u865f\\u0031\\u0037\\u0031\\u865f\\u0031\\u0037\\u0033\\u865f"}', '111533', '711', 'zh-tw', 1000),
(1097, 76, '4-76', 1, '新嘉院', '{"number":"981624","shop":"\\u65b0\\u5609\\u9662","phone":"052772846","address":"\\u5fe0\\u5b5d\\u8def\\u0035\\u0033\\u0039\\u865f\\u0031\\u6a13\\u0028\\u5609\\u7fa9\\u57fa\\u7763\\u6559\\u91ab\\u9662\\u4f4f\\u9662\\u5927\\u6a13\\u5167\\u0029"}', '981624', '711', 'zh-tw', 1000),
(1098, 76, '4-76', 1, '東嘉院', '{"number":"130154","shop":"\\u6771\\u5609\\u9662","phone":"052777764","address":"\\u5fe0\\u5b5d\\u8def\\u0036\\u0034\\u0032\\u865f\\u0028\\u5609\\u7fa9\\u57fa\\u7763\\u6559\\u91ab\\u9662\\u9580\\u8a3a\\u5927\\u6a13\\u5167\\u0029"}', '130154', '711', 'zh-tw', 1000),
(1099, 77, '4-77', 1, '嘉德', '{"number":"137786","shop":"\\u5609\\u5fb7","phone":"052814022","address":"\\u516b\\u5fb7\\u8def\\u0037\\u0033\\u865f"}', '137786', '711', 'zh-tw', 1000),
(1100, 77, '4-77', 1, '安捷', '{"number":"182742","shop":"\\u5b89\\u6377","phone":"052910730","address":"\\u4fdd\\u5b89\\u91cc\\u4fdd\\u5b89\\u4e00\\u8def\\u0033\\u0030\\u0031\\u002e\\u0033\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '182742', '711', 'zh-tw', 1000),
(1101, 77, '4-77', 1, '嘉達', '{"number":"912639","shop":"\\u5609\\u9054","phone":"052910665","address":"\\u4fdd\\u5b89\\u91cc\\u56db\\u7dad\\u8def\\u0031\\u0038\\u9130\\u0033\\u0030\\u0032\\u865f"}', '912639', '711', 'zh-tw', 1000),
(1102, 77, '4-77', 1, '嘉北', '{"number":"976459","shop":"\\u5609\\u5317","phone":"052319204","address":"\\u4fdd\\u5b89\\u91cc\\u8208\\u9054\\u8def\\u0033\\u0033\\u0031\\u865f"}', '976459', '711', 'zh-tw', 1000),
(1103, 77, '4-77', 1, '八大', '{"number":"131560","shop":"\\u516b\\u5927","phone":"052910423","address":"\\u4fdd\\u798f\\u91cc\\u516b\\u5fb7\\u8def\\u0032\\u0033\\u0037\\u865f"}', '131560', '711', 'zh-tw', 1000),
(1104, 77, '4-77', 1, '嘉高', '{"number":"947679","shop":"\\u5609\\u9ad8","phone":"052375597","address":"\\u5317\\u6e2f\\u8def\\u0031\\u0030\\u0036\\u0032\\u865f"}', '947679', '711', 'zh-tw', 1000),
(1105, 77, '4-77', 1, '北社尾', '{"number":"141512","shop":"\\u5317\\u793e\\u5c3e","phone":"052381594","address":"\\u5317\\u6e56\\u91cc\\u5317\\u793e\\u5c3e\\u8def\\u0031\\u0036\\u0035\\u865f\\u9644\\u0031"}', '141512', '711', 'zh-tw', 1000),
(1106, 77, '4-77', 1, '圓環', '{"number":"992819","shop":"\\u5713\\u74b0","phone":"052291759","address":"\\u5317\\u674f\\u91cc\\u6587\\u5316\\u8def\\u0031\\u0035\\u0035\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '992819', '711', 'zh-tw', 1000),
(1107, 77, '4-77', 1, '博元', '{"number":"967318","shop":"\\u535a\\u5143","phone":"052353893","address":"\\u535a\\u611b\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u0032\\u865f"}', '967318', '711', 'zh-tw', 1000),
(1108, 77, '4-77', 1, '新嘉勝', '{"number":"990374","shop":"\\u65b0\\u5609\\u52dd","phone":"052316614","address":"\\u535a\\u611b\\u8def\\u4e00\\u6bb5\\u0034\\u0032\\u0031\\u865f\\u53ca\\u5317\\u8208\\u8857\\u0031\\u0034\\u0038\\u865f\\u0031\\u0035\\u0030\\u865f\\u0031\\u0035\\u0032\\u865f"}', '990374', '711', 'zh-tw', 1000),
(1109, 77, '4-77', 1, '嘉上', '{"number":"185453","shop":"\\u5609\\u4e0a","phone":"052841670","address":"\\u8eca\\u5e97\\u91cc\\u4e0a\\u6d77\\u8def\\u0031\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '185453', '711', 'zh-tw', 1000),
(1110, 77, '4-77', 1, '垂楊', '{"number":"874355","shop":"\\u5782\\u694a","phone":"052854609","address":"\\u5782\\u694a\\u91cc\\u4ec1\\u611b\\u8def\\u0033\\u0031\\u0035\\u865f"}', '874355', '711', 'zh-tw', 1000),
(1111, 77, '4-77', 1, '嘉坪', '{"number":"165482","shop":"\\u5609\\u576a","phone":"052355843","address":"\\u5927\\u540c\\u8def\\u0034\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '165482', '711', 'zh-tw', 1000),
(1112, 77, '4-77', 1, '嘉西', '{"number":"113311","shop":"\\u5609\\u897f","phone":"052380745","address":"\\u5927\\u6eaa\\u91cc\\u5317\\u6e2f\\u8def\\u0031\\u0033\\u9130\\u0035\\u0039\\u0037\\u865f"}', '113311', '711', 'zh-tw', 1000),
(1113, 77, '4-77', 1, '新車店', '{"number":"171188","shop":"\\u65b0\\u8eca\\u5e97","phone":"052837702","address":"\\u798f\\u6c11\\u91cc\\u5357\\u4eac\\u8def\\u0034\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '171188', '711', 'zh-tw', 1000),
(1114, 77, '4-77', 1, '新嘉醫', '{"number":"137797","shop":"\\u65b0\\u5609\\u91ab","phone":"052318138","address":"\\u798f\\u5168\\u91cc\\u5317\\u6e2f\\u8def\\u0033\\u0030\\u0039\\u865f"}', '137797', '711', 'zh-tw', 1000),
(1115, 77, '4-77', 1, '資砡', '{"number":"110426","shop":"\\u8cc7\\u7821","phone":"052844049","address":"\\u6e2f\\u576a\\u91cc\\u7389\\u5c71\\u8def\\u0034\\u0032\\u0032\\u865f"}', '110426', '711', 'zh-tw', 1000),
(1116, 77, '4-77', 1, '嘉賢', '{"number":"196095","shop":"\\u5609\\u8ce2","phone":"052840146","address":"\\u5149\\u8def\\u91cc\\u4e16\\u8ce2\\u8def\\u56db\\u6bb5\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '196095', '711', 'zh-tw', 1000),
(1117, 77, '4-77', 1, '國華', '{"number":"196202","shop":"\\u570b\\u83ef","phone":"052273545","address":"\\u570b\\u83ef\\u91cc\\u570b\\u83ef\\u8857\\u0032\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '196202', '711', 'zh-tw', 1000),
(1118, 77, '4-77', 1, '秀泰', '{"number":"166500","shop":"\\u79c0\\u6cf0","phone":"052279175","address":"\\u570b\\u83ef\\u91cc\\u6587\\u5316\\u8def\\u0032\\u0039\\u0033\\u865f\\u0031\\u6a13\\u53ca\\u0032\\u6a13"}', '166500', '711', 'zh-tw', 1000),
(1119, 77, '4-77', 1, '湖康', '{"number":"182926","shop":"\\u6e56\\u5eb7","phone":"052843726","address":"\\u6e56\\u5167\\u91cc\\u6e56\\u5b50\\u5167\\u8def\\u0031\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '182926', '711', 'zh-tw', 1000),
(1120, 77, '4-77', 1, '湖子內', '{"number":"932895","shop":"\\u6e56\\u5b50\\u5167","phone":"052867470","address":"\\u6e56\\u5167\\u91cc\\u5357\\u4eac\\u8def\\u0031\\u0032\\u0034\\u865f"}', '932895', '711', 'zh-tw', 1000),
(1121, 77, '4-77', 1, '嘉榮', '{"number":"934813","shop":"\\u5609\\u69ae","phone":"052840197","address":"\\u5289\\u539d\\u91cc\\u81ea\\u5f37\\u8857\\u0033\\u0034\\u865f"}', '934813', '711', 'zh-tw', 1000),
(1122, 77, '4-77', 1, '光彩', '{"number":"993834","shop":"\\u5149\\u5f69","phone":"052221535","address":"\\u6c11\\u751f\\u5317\\u8def\\u0031\\u0038\\u0032\\u865f\\u0031\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '993834', '711', 'zh-tw', 1000),
(1123, 77, '4-77', 1, '嘉洋', '{"number":"880154","shop":"\\u5609\\u6d0b","phone":"052857922","address":"\\u6c11\\u751f\\u5357\\u8def\\u0036\\u0030\\u0030\\u865f"}', '880154', '711', 'zh-tw', 1000),
(1124, 77, '4-77', 1, '嘉華', '{"number":"888136","shop":"\\u5609\\u83ef","phone":"052282273","address":"\\u4ec1\\u611b\\u8def\\u0034\\u0031\\u0035\\u865f\\u0034\\u0031\\u0037\\u865f"}', '888136', '711', 'zh-tw', 1000),
(1125, 77, '4-77', 1, '嘉驛', '{"number":"195531","shop":"\\u5609\\u9a5b","phone":"052273145","address":"\\u66f8\\u9662\\u91cc\\u4e2d\\u5c71\\u8def\\u0035\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '195531', '711', 'zh-tw', 1000),
(1126, 77, '4-77', 1, '新瑞鴻', '{"number":"184885","shop":"\\u65b0\\u745e\\u9d3b","phone":"052225301","address":"\\u6587\\u5316\\u91cc\\u6c11\\u65cf\\u8def\\u0034\\u0035\\u0036\\u865f\\u0034\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '184885', '711', 'zh-tw', 1000),
(1127, 77, '4-77', 1, '香湖', '{"number":"141501","shop":"\\u9999\\u6e56","phone":"052910784","address":"\\u9999\\u6e56\\u91cc\\u6587\\u5316\\u8def\\u0038\\u9130\\u0037\\u0030\\u0030\\u865f"}', '141501', '711', 'zh-tw', 1000),
(1128, 77, '4-77', 1, '保愛', '{"number":"941095","shop":"\\u4fdd\\u611b","phone":"052319768","address":"\\u65b0\\u539d\\u91cc\\u634c\\u9130\\u53cb\\u611b\\u8def\\u0037\\u0031\\u0031\\u865f"}', '941095', '711', 'zh-tw', 1000),
(1129, 77, '4-77', 1, '秋園', '{"number":"144201","shop":"\\u79cb\\u5712","phone":"052844176","address":"\\u65b0\\u6c11\\u8def\\u0036\\u0038\\u0031\\u865f"}', '144201', '711', 'zh-tw', 1000),
(1130, 77, '4-77', 1, '鈺順', '{"number":"151461","shop":"\\u923a\\u9806","phone":"052226313","address":"\\u65b0\\u69ae\\u8def\\u0033\\u0035\\u5df7\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '151461', '711', 'zh-tw', 1000),
(1131, 77, '4-77', 1, '嘉賓', '{"number":"923020","shop":"\\u5609\\u8cd3","phone":"052833800","address":"\\u65b0\\u897f\\u91cc\\u5782\\u694a\\u8def\\u0036\\u0031\\u0031\\u865f"}', '923020', '711', 'zh-tw', 1000),
(1132, 77, '4-77', 1, '嘉永', '{"number":"980034","shop":"\\u5609\\u6c38","phone":"052253224","address":"\\u80b2\\u82f1\\u91cc\\u6c11\\u751f\\u5357\\u8def\\u0031\\u0032\\u0039\\u865f\\u0031\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '980034', '711', 'zh-tw', 1000),
(1133, 77, '4-77', 1, '新嘉友', '{"number":"990891","shop":"\\u65b0\\u5609\\u53cb","phone":"052313680","address":"\\u7af9\\u570d\\u91cc\\u4e2d\\u8208\\u8def\\u0032\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '990891', '711', 'zh-tw', 1000),
(1134, 78, '5-78', 1, '阿里山', '{"number":"179757","shop":"\\u963f\\u91cc\\u5c71","phone":"052679810","address":"\\u4e2d\\u5c71\\u6751\\u5357\\u963f\\u91cc\\u5c71\\u0035\\u0035\\u865f"}', '179757', '711', 'zh-tw', 1000),
(1135, 78, '5-78', 1, '神木', '{"number":"153733","shop":"\\u795e\\u6728","phone":"052679776","address":"\\u4e2d\\u6b63\\u6751\\u0033\\u865f\\u0032\\u6a13"}', '153733', '711', 'zh-tw', 1000),
(1136, 79, '5-79', 1, '新塭', '{"number":"967020","shop":"\\u65b0\\u586d","phone":"053430616","address":"\\u5fa9\\u8208\\u91cc\\u0031\\u0032\\u9130\\u65b0\\u586d\\u0031\\u0034\\u0037\\u002d\\u0033\\u865f"}', '967020', '711', 'zh-tw', 1000),
(1137, 79, '5-79', 1, '布龍', '{"number":"183664","shop":"\\u5e03\\u9f8d","phone":"053479598","address":"\\u9f8d\\u6c5f\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '183664', '711', 'zh-tw', 1000),
(1138, 79, '5-79', 1, '布鹽', '{"number":"141431","shop":"\\u5e03\\u9e7d","phone":"053473010","address":"\\u65b0\\u539d\\u91cc\\u0031\\u0033\\u9130\\u65b0\\u539d\\u4ed4\\u0036\\u0037\\u4e4b\\u0031\\u865f"}', '141431', '711', 'zh-tw', 1000),
(1139, 79, '5-79', 1, '布袋', '{"number":"120951","shop":"\\u5e03\\u888b","phone":"053470775","address":"\\u8208\\u4e2d\\u91cc\\u0031\\u0034\\u9130\\u4e0a\\u6d77\\u8def\\u0031\\u0037\\u0037\\u865f"}', '120951', '711', 'zh-tw', 1000),
(1140, 79, '5-79', 1, '過溝', '{"number":"900119","shop":"\\u904e\\u6e9d","phone":"053452245","address":"\\u4e2d\\u5b89\\u91cc\\u0031\\u0039\\u9130\\u0031\\u0031\\u865f"}', '900119', '711', 'zh-tw', 1000),
(1141, 79, '5-79', 1, '布新', '{"number":"941224","shop":"\\u5e03\\u65b0","phone":"053478625","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0033\\u865f"}', '941224', '711', 'zh-tw', 1000),
(1142, 80, '5-80', 1, '合泰', '{"number":"182731","shop":"\\u5408\\u6cf0","phone":"052956112","address":"\\u5927\\u7f8e\\u91cc\\u0031\\u0039\\u9130\\u5927\\u667a\\u4e00\\u8857\\u0031\\u865f"}', '182731', '711', 'zh-tw', 1000),
(1143, 80, '5-80', 1, '大埔美', '{"number":"967260","shop":"\\u5927\\u57d4\\u7f8e","phone":"052956768","address":"\\u904e\\u6eaa\\u91cc\\u904e\\u6eaa\\u0031\\u865f"}', '967260', '711', 'zh-tw', 1000),
(1144, 80, '5-80', 1, '慈苑', '{"number":"997733","shop":"\\u6148\\u82d1","phone":"052649610","address":"\\u5e73\\u6797\\u91cc\\u0036\\u9130\\u4e0b\\u6f6d\\u5e95\\u0032\\u0033\\u002d\\u0035\\u865f"}', '997733', '711', 'zh-tw', 1000),
(1145, 80, '5-80', 1, '大林', '{"number":"990488","shop":"\\u5927\\u6797","phone":"052658688","address":"\\u897f\\u6797\\u91cc\\u4ec1\\u611b\\u8def\\u0032\\u0033\\u865f\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '990488', '711', 'zh-tw', 1000),
(1146, 80, '5-80', 1, '新冠林', '{"number":"972701","shop":"\\u65b0\\u51a0\\u6797","phone":"052658971","address":"\\u65b0\\u8208\\u8857\\u0031\\u0031\\u0033\\u865f"}', '972701', '711', 'zh-tw', 1000),
(1147, 80, '5-80', 1, '妙禎', '{"number":"942618","shop":"\\u5999\\u798e","phone":"052724919","address":"\\u4e2d\\u5751\\u91cc\\u5357\\u83ef\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u865f\\u0042\\u0031\\u0028\\u5357\\u83ef\\u5927\\u5b78\\u5b78\\u6167\\u6a13\\u0029"}', '942618', '711', 'zh-tw', 1000),
(1148, 80, '5-80', 1, '誠穩', '{"number":"154839","shop":"\\u8aa0\\u7a69","phone":"052723676","address":"\\u4e2d\\u5751\\u91cc\\u5357\\u83ef\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u865f\\u0042\\u0031\\u0046"}', '154839', '711', 'zh-tw', 1000),
(1149, 80, '5-80', 1, '梅林', '{"number":"942227","shop":"\\u6885\\u6797","phone":"052649694","address":"\\u5fe0\\u5b5d\\u8def\\u0037\\u0031\\u0033\\u865f\\u0037\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '942227', '711', 'zh-tw', 1000),
(1150, 81, '5-81', 1, '嘉埔', '{"number":"130523","shop":"\\u5609\\u57d4","phone":"052522214","address":"\\u5927\\u57d4\\u6751\\u5927\\u57d4\\u0032\\u0037\\u0036\\u865f\\u4e4b\\u0036\\u58f9\\u6a13"}', '130523', '711', 'zh-tw', 1000),
(1151, 82, '5-82', 1, '東石', '{"number":"950686","shop":"\\u6771\\u77f3","phone":"053734185","address":"\\u6c38\\u5c6f\\u6751\\u0033\\u0035\\u9644\\u0031\\u0038\\u865f"}', '950686', '711', 'zh-tw', 1000),
(1152, 82, '5-82', 1, '漁人', '{"number":"141420","shop":"\\u6f01\\u4eba","phone":"053734843","address":"\\u733f\\u6a39\\u6751\\u6771\\u77f3\\u0032\\u0030\\u0035\\u002d\\u0031\\u865f"}', '141420', '711', 'zh-tw', 1000),
(1153, 83, '5-83', 1, '番路', '{"number":"192679","shop":"\\u756a\\u8def","phone":"052591556","address":"\\u4e0b\\u5751\\u6751\\u83dc\\u516c\\u5e97\\u0039\\u0032\\u865f"}', '192679', '711', 'zh-tw', 1000),
(1154, 84, '5-84', 1, '六腳', '{"number":"950952","shop":"\\u516d\\u8173","phone":"057812465","address":"\\u8607\\u539d\\u6751\\u8607\\u539d\\u5bee\\u0031\\u0035\\u0033\\u002d\\u0036\\u865f"}', '950952', '711', 'zh-tw', 1000),
(1155, 84, '5-84', 1, '蒜頭', '{"number":"120308","shop":"\\u849c\\u982d","phone":"053803410","address":"\\u849c\\u982d\\u6751\\u0031\\u9130\\u849c\\u982d\\u0031\\u002d\\u0031\\u0038\\u865f"}', '120308', '711', 'zh-tw', 1000),
(1156, 84, '5-84', 1, '朴子橋', '{"number":"182498","shop":"\\u6734\\u5b50\\u6a4b","phone":"053709147","address":"\\u6b63\\u7fa9\\u6751\\u5927\\u6a4b\\u982d\\u0031\\u0039\\u0030\\u002d\\u0032\\u865f"}', '182498', '711', 'zh-tw', 1000),
(1157, 85, '5-85', 1, '鹿草', '{"number":"992141","shop":"\\u9e7f\\u8349","phone":"053755652","address":"\\u897f\\u4e95\\u6751\\u0032\\u0030\\u9130\\u0035\\u0032\\u0038\\u865f\\u0035\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '992141', '711', 'zh-tw', 1000),
(1158, 86, '5-86', 1, '真美', '{"number":"144175","shop":"\\u771f\\u7f8e","phone":"052620828","address":"\\u6885\\u5317\\u6751\\u0030\\u0030\\u0036\\u9130\\u65b0\\u8208\\u8def\\u0032\\u0037\\u0039\\u865f"}', '144175', '711', 'zh-tw', 1000),
(1159, 86, '5-86', 1, '梅北', '{"number":"113023","shop":"\\u6885\\u5317","phone":"052622903","address":"\\u6885\\u5317\\u6751\\u4e2d\\u5c71\\u8def\\u0034\\u0033\\u0037\\u865f"}', '113023', '711', 'zh-tw', 1000),
(1160, 86, '5-86', 1, '梅鄉', '{"number":"991997","shop":"\\u6885\\u9109","phone":"052623438","address":"\\u6885\\u5357\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '991997', '711', 'zh-tw', 1000),
(1161, 86, '5-86', 1, '雲梯', '{"number":"192989","shop":"\\u96f2\\u68af","phone":"052572410","address":"\\u592a\\u5e73\\u6751\\u4e0b\\u5751\\u4ed4\\u0035\\u002e\\u0036\\u002e\\u0037\\u865f"}', '192989', '711', 'zh-tw', 1000),
(1162, 87, '5-87', 1, '民工', '{"number":"940324","shop":"\\u6c11\\u5de5","phone":"052207154","address":"\\u5317\\u6597\\u6751\\u5317\\u52e2\\u5b50\\u0037\\u0033\\u002d\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '940324', '711', 'zh-tw', 1000),
(1163, 87, '5-87', 1, '倖福', '{"number":"972103","shop":"\\u5016\\u798f","phone":"052204716","address":"\\u5927\\u5d0e\\u6751\\u5341\\u56db\\u7532\\u0031\\u0037\\u002d\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '972103', '711', 'zh-tw', 1000),
(1164, 87, '5-87', 1, '民城', '{"number":"896713","shop":"\\u6c11\\u57ce","phone":"052063745","address":"\\u6771\\u69ae\\u6751\\u56db\\u9130\\u5efa\\u570b\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0034\\u865f"}', '896713', '711', 'zh-tw', 1000),
(1165, 87, '5-87', 1, '嘉樂', '{"number":"162379","shop":"\\u5609\\u6a02","phone":"052264171","address":"\\u6771\\u69ae\\u6751\\u6587\\u5316\\u8def\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '162379', '711', 'zh-tw', 1000),
(1166, 87, '5-87', 1, '豐收', '{"number":"132091","shop":"\\u8c50\\u6536","phone":"052723887","address":"\\u8c50\\u6536\\u6751\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0031\\u865f"}', '132091', '711', 'zh-tw', 1000),
(1167, 87, '5-87', 1, '愛樂', '{"number":"167318","shop":"\\u611b\\u6a02","phone":"052202418","address":"\\u798f\\u6a02\\u6751\\u57e4\\u89d2\\u0035\\u0034\\u0037\\u865f"}', '167318', '711', 'zh-tw', 1000),
(1168, 87, '5-87', 1, '鳳專', '{"number":"151254","shop":"\\u9cf3\\u5c08","phone":"052064761","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0039\\u0039\\u865f\\u0039\\u0037\\u002d\\u0037\\u865f"}', '151254', '711', 'zh-tw', 1000),
(1169, 87, '5-87', 1, '民雄', '{"number":"991540","shop":"\\u6c11\\u96c4","phone":"052269835","address":"\\u6c11\\u6b0a\\u8def\\u0034\\u0032\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '991540', '711', 'zh-tw', 1000),
(1170, 87, '5-87', 1, '中正大學', '{"number":"165622","shop":"\\u4e2d\\u6b63\\u5927\\u5b78","phone":"052721647","address":"\\u4e09\\u8208\\u6751\\u5927\\u5b78\\u8def\\u4e00\\u6bb5\\u0034\\u0032\\u0031\\u865f"}', '165622', '711', 'zh-tw', 1000),
(1171, 87, '5-87', 1, '友樂', '{"number":"122511","shop":"\\u53cb\\u6a02","phone":"052203504","address":"\\u96d9\\u798f\\u6751\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0036\\u4e4b\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '122511', '711', 'zh-tw', 1000),
(1172, 87, '5-87', 1, '錚大', '{"number":"180805","shop":"\\u931a\\u5927","phone":"052264113","address":"\\u6587\\u9686\\u6751\\u9d28\\u6bcd\\u003f\\u0038\\u0035\\u865f"}', '180805', '711', 'zh-tw', 1000),
(1173, 87, '5-87', 1, '嘉大', '{"number":"970509","shop":"\\u5609\\u5927","phone":"052267243","address":"\\u6587\\u9686\\u6751\\u9d28\\u6bcd\\u6c34\\u571f\\u0031\\u002d\\u0039\\u0032\\u865f"}', '970509', '711', 'zh-tw', 1000),
(1174, 87, '5-87', 1, '英巧', '{"number":"871345","shop":"\\u82f1\\u5de7","phone":"052064736","address":"\\u897f\\u5b89\\u6751\\u897f\\u5b89\\u8def\\u0033\\u0037\\u865f"}', '871345', '711', 'zh-tw', 1000),
(1175, 87, '5-87', 1, '興南', '{"number":"882138","shop":"\\u8208\\u5357","phone":"052202635","address":"\\u8208\\u5357\\u6751\\u0031\\u0035\\u9130\\u982d\\u6a4b\\u0035\\u0035\\u0037\\u4e4b\\u0034\\u0035"}', '882138', '711', 'zh-tw', 1000),
(1176, 88, '5-88', 1, '朴中', '{"number":"970679","shop":"\\u6734\\u4e2d","phone":"053709314","address":"\\u535a\\u539a\\u91cc\\u958b\\u5143\\u8def\\u0032\\u0038\\u0032\\u865f"}', '970679', '711', 'zh-tw', 1000),
(1177, 88, '5-88', 1, '泉翔', '{"number":"163567","shop":"\\u6cc9\\u7fd4","phone":"053622480","address":"\\u5927\\u845b\\u91cc\\u5609\\u6734\\u8def\\u897f\\u6bb5\\u0031\\u0032\\u0031\\u865f"}', '163567', '711', 'zh-tw', 1000),
(1178, 88, '5-88', 1, '配天', '{"number":"863757","shop":"\\u914d\\u5929","phone":"053795579","address":"\\u5927\\u540c\\u8def\\u0032\\u0031\\u0032\\u865f"}', '863757', '711', 'zh-tw', 1000),
(1179, 88, '5-88', 1, '大木康榔', '{"number":"970657","shop":"\\u5927\\u6728\\u5eb7\\u6994","phone":"053702084","address":"\\u5927\\u9109\\u91cc\\u0031\\u9130\\u5927\\u0028\\u6728\\u5eb7\\u0029\\u6994\\u0031\\u0037\\u0039\\u4e4b\\u0034\\u865f"}', '970657', '711', 'zh-tw', 1000),
(1180, 88, '5-88', 1, '朴站', '{"number":"991791","shop":"\\u6734\\u7ad9","phone":"053705205","address":"\\u5e73\\u548c\\u91cc\\u5149\\u5fa9\\u8def\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '991791', '711', 'zh-tw', 1000),
(1181, 88, '5-88', 1, '長朴', '{"number":"151623","shop":"\\u9577\\u6734","phone":"053627493","address":"\\u4ec1\\u548c\\u91cc\\u5609\\u6734\\u8def\\u897f\\u6bb5\\u0036\\u002d\\u0037\\u865f\\u0031\\u6a13"}', '151623', '711', 'zh-tw', 1000),
(1182, 88, '5-88', 1, '嘉庚', '{"number":"990983","shop":"\\u5609\\u5e9a","phone":"053625798","address":"\\u4ec1\\u548c\\u91cc\\u5609\\u6734\\u8def\\u897f\\u6bb5\\u0038\\u865f"}', '990983', '711', 'zh-tw', 1000),
(1183, 88, '5-88', 1, '諸羅山', '{"number":"166913","shop":"\\u8af8\\u7f85\\u5c71","phone":"053628878","address":"\\u7965\\u548c\\u4e09\\u8def\\u897f\\u6bb5\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '166913', '711', 'zh-tw', 1000),
(1184, 88, '5-88', 1, '朴天', '{"number":"121611","shop":"\\u6734\\u5929","phone":"053708423","address":"\\u4e2d\\u6b63\\u91cc\\u958b\\u5143\\u8def\\u0031\\u0038\\u9130\\u0031\\u0036\\u0031\\u865f\\u0031\\u0036\\u0035\\u865f"}', '121611', '711', 'zh-tw', 1000),
(1185, 89, '5-89', 1, '北雄', '{"number":"183446","shop":"\\u5317\\u96c4","phone":"052689856","address":"\\u7c97\\u6eaa\\u6751\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0031\\u865f"}', '183446', '711', 'zh-tw', 1000),
(1186, 89, '5-89', 1, '北回', '{"number":"151519","shop":"\\u5317\\u56de","phone":"052843550","address":"\\u56de\\u6b78\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0037\\u865f"}', '151519', '711', 'zh-tw', 1000),
(1187, 89, '5-89', 1, '暘民', '{"number":"124562","shop":"\\u6698\\u6c11","phone":"052841178","address":"\\u5bec\\u58eb\\u6751\\u5d0e\\u5b50\\u982d\\u0031\\u0035\\u0039\\u002d\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '124562', '711', 'zh-tw', 1000),
(1188, 89, '5-89', 1, '柳子林', '{"number":"193889","shop":"\\u67f3\\u5b50\\u6797","phone":"052685141","address":"\\u67f3\\u6797\\u6751\\u67f3\\u5b50\\u6797\\u0035\\u0030\\u002d\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '193889', '711', 'zh-tw', 1000),
(1189, 89, '5-89', 1, '上龍', '{"number":"952394","shop":"\\u4e0a\\u9f8d","phone":"052683050","address":"\\u9f8d\\u5fb7\\u6751\\u5341\\u4e00\\u6307\\u539d\\u0037\\u0035\\u002d\\u0039\\u0030\\u865f"}', '952394', '711', 'zh-tw', 1000),
(1190, 89, '5-89', 1, '新兆軒', '{"number":"982188","shop":"\\u65b0\\u5146\\u8ed2","phone":"052840841","address":"\\u6c11\\u751f\\u6751\\u5fe0\\u5b5d\\u8857\\u0031\\u0034\\u0039\\u865f\\u0031\\u0035\\u0031\\u865f"}', '982188', '711', 'zh-tw', 1000),
(1191, 89, '5-89', 1, '世川', '{"number":"121253","shop":"\\u4e16\\u5ddd","phone":"052399887","address":"\\u5167\\u6eaa\\u6751\\u4e2d\\u7fa9\\u8def\\u0039\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '121253', '711', 'zh-tw', 1000),
(1192, 89, '5-89', 1, '水頭', '{"number":"120445","shop":"\\u6c34\\u982d","phone":"052680784","address":"\\u6c34\\u4e0a\\u6751\\u4e2d\\u6b63\\u8def\\u0031\\u0037\\u0031\\u865f\\u0031\\u0037\\u0033\\u865f"}', '120445', '711', 'zh-tw', 1000),
(1193, 89, '5-89', 1, '水上', '{"number":"871725","shop":"\\u6c34\\u4e0a","phone":"052689754","address":"\\u4e2d\\u8208\\u8def\\u0033\\u0038\\u0030\\u865f"}', '871725', '711', 'zh-tw', 1000),
(1194, 89, '5-89', 1, '中庄', '{"number":"910828","shop":"\\u4e2d\\u5e84","phone":"052892949","address":"\\u4e2d\\u5e84\\u6751\\u0036\\u0039\\u865f"}', '910828', '711', 'zh-tw', 1000),
(1195, 90, '5-90', 1, '嘉太', '{"number":"185763","shop":"\\u5609\\u592a","phone":"052385458","address":"\\u5317\\u6e2f\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0030\\u865f"}', '185763', '711', 'zh-tw', 1000),
(1196, 90, '5-90', 1, '太保', '{"number":"114587","shop":"\\u592a\\u4fdd","phone":"053712187","address":"\\u5f8c\\u6f6d\\u91cc\\u5f8c\\u6f6d\\u0034\\u0030\\u0038\\u002d\\u0037\\u865f\\u0034\\u0030\\u0038\\u002d\\u0038\\u865f\\u4e00\\u6a13"}', '114587', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(1197, 90, '5-90', 1, '保新', '{"number":"953847","shop":"\\u4fdd\\u65b0","phone":"053611613","address":"\\u820a\\u57e4\\u91cc\\u0031\\u9130\\u65b0\\u57e4\\u0035\\u002d\\u0031\\u0036\\u865f"}', '953847', '711', 'zh-tw', 1000),
(1198, 90, '5-90', 1, '嘉保', '{"number":"980908","shop":"\\u5609\\u4fdd","phone":"052372390","address":"\\u9ebb\\u5bee\\u91cc\\u5317\\u6e2f\\u8def\\u4e8c\\u6bb5\\u0035\\u0031\\u0031\\u865f"}', '980908', '711', 'zh-tw', 1000),
(1199, 90, '5-90', 1, '祥和', '{"number":"123134","shop":"\\u7965\\u548c","phone":"053713445","address":"\\u592a\\u4fdd\\u91cc\\u592a\\u4fdd\\u0034\\u0036\\u002d\\u0031\\u865f"}', '123134', '711', 'zh-tw', 1000),
(1200, 90, '5-90', 1, '保祥', '{"number":"951265","shop":"\\u4fdd\\u7965","phone":"053628476","address":"\\u7965\\u548c\\u4e09\\u8def\\u6771\\u6bb5\\u0032\\u0032\\u0036\\u865f"}', '951265', '711', 'zh-tw', 1000),
(1201, 90, '5-90', 1, '祥壹', '{"number":"944005","shop":"\\u7965\\u58f9","phone":"053628365","address":"\\u7965\\u548c\\u4e00\\u8def\\u6771\\u6bb5\\u0032\\u0039\\u865f"}', '944005', '711', 'zh-tw', 1000),
(1202, 90, '5-90', 1, '水牛厝', '{"number":"179850","shop":"\\u6c34\\u725b\\u539d","phone":"052385141","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0030\\u865f"}', '179850', '711', 'zh-tw', 1000),
(1203, 91, '5-91', 1, '溪口', '{"number":"137731","shop":"\\u6eaa\\u53e3","phone":"052696543","address":"\\u576a\\u9802\\u6751\\u4e2d\\u6b63\\u6771\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '137731', '711', 'zh-tw', 1000),
(1204, 91, '5-91', 1, '溪旺', '{"number":"952590","shop":"\\u6eaa\\u65fa","phone":"052698939","address":"\\u6eaa\\u897f\\u6751\\u4e2d\\u6b63\\u8def\\u0038\\u9130\\u0032\\u0032\\u0039\\u002d\\u0031\\u865f"}', '952590', '711', 'zh-tw', 1000),
(1205, 92, '5-92', 1, '嘉禎', '{"number":"912798","shop":"\\u5609\\u798e","phone":"053740849","address":"\\u83dc\\u516c\\u6751\\u0037\\u9130\\u83dc\\u516c\\u539d\\u0036\\u0034\\u865f\\u9644\\u0036"}', '912798', '711', 'zh-tw', 1000),
(1206, 92, '5-92', 1, '嘉港', '{"number":"921242","shop":"\\u5609\\u6e2f","phone":"053744576","address":"\\u798f\\u5fb7\\u8def\\u0031\\u0031\\u0036\\u865f\\u0031\\u0031\\u0036\\u002d\\u0031\\u865f"}', '921242', '711', 'zh-tw', 1000),
(1207, 92, '5-92', 1, '宮前', '{"number":"122728","shop":"\\u5bae\\u524d","phone":"053748033","address":"\\u5bae\\u524d\\u6751\\u65b0\\u6c11\\u8def\\u0032\\u0034\\u9130\\u0032\\u0035\\u0032\\u865f\\u9644\\u0031"}', '122728', '711', 'zh-tw', 1000),
(1208, 92, '5-92', 1, '新港', '{"number":"130165","shop":"\\u65b0\\u6e2f","phone":"053749850","address":"\\u5bae\\u524d\\u6751\\u4e2d\\u5c71\\u8def\\u0037\\u0032\\u5df7\\u0031\\u865f\\u002e\\u4e2d\\u5c71\\u8def\\u0037\\u0034\\u865f"}', '130165', '711', 'zh-tw', 1000),
(1209, 92, '5-92', 1, '中洋子', '{"number":"902230","shop":"\\u4e2d\\u6d0b\\u5b50","phone":"053774319","address":"\\u4e2d\\u6d0b\\u6751\\u5f8c\\u539d\\u5b50\\u0031\\u002d\\u0033\\u0033\\u865f"}', '902230', '711', 'zh-tw', 1000),
(1210, 93, '5-93', 1, '義竹', '{"number":"142227","shop":"\\u7fa9\\u7af9","phone":"053411128","address":"\\u516d\\u6842\\u6751\\u0032\\u9130\\u7fa9\\u7af9\\u0031\\u0035\\u0036\\u4e4b\\u0031\\u865f"}', '142227', '711', 'zh-tw', 1000),
(1211, 93, '5-93', 1, '二竹', '{"number":"131009","shop":"\\u4e8c\\u7af9","phone":"053414386","address":"\\u4ec1\\u91cc\\u6751\\u0034\\u0032\\u0033\\u865f"}', '131009', '711', 'zh-tw', 1000),
(1212, 94, '5-94', 1, '金大義', '{"number":"142696","shop":"\\u91d1\\u5927\\u7fa9","phone":"052399591","address":"\\u548c\\u7f8e\\u6751\\u5927\\u7fa9\\u8def\\u0034\\u0031\\u0036\\u865f"}', '142696', '711', 'zh-tw', 1000),
(1213, 94, '5-94', 1, '中埔', '{"number":"841001","shop":"\\u4e2d\\u57d4","phone":"052303458","address":"\\u548c\\u7f8e\\u6751\\u4e2d\\u5c71\\u8def\\u0038\\u0035\\u0036\\u865f"}', '841001', '711', 'zh-tw', 1000),
(1214, 94, '5-94', 1, '翁聚德', '{"number":"111511","shop":"\\u7fc1\\u805a\\u5fb7","phone":"052397111","address":"\\u548c\\u7766\\u6751\\u53f8\\u516c\\u90e8\\u0034\\u002d\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '111511', '711', 'zh-tw', 1000),
(1215, 94, '5-94', 1, '頂六', '{"number":"124573","shop":"\\u9802\\u516d","phone":"052397083","address":"\\u91d1\\u862d\\u6751\\u9802\\u5c71\\u9580\\u0034\\u0031\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '124573', '711', 'zh-tw', 1000),
(1216, 94, '5-94', 1, '彩虹', '{"number":"121666","shop":"\\u5f69\\u8679","phone":"052536433","address":"\\u9686\\u8208\\u6751\\u0033\\u9130\\u6c74\\u982d\\u0036\\u0030\\u865f"}', '121666', '711', 'zh-tw', 1000),
(1217, 94, '5-94', 1, '雲海', '{"number":"968311","shop":"\\u96f2\\u6d77","phone":"052539073","address":"\\u9686\\u8208\\u6751\\u5341\\u5b57\\u8def\\u0032\\u0033\\u0033\\u865f"}', '968311', '711', 'zh-tw', 1000),
(1218, 94, '5-94', 1, '源山', '{"number":"194952","shop":"\\u6e90\\u5c71","phone":"052535380","address":"\\u540c\\u4ec1\\u6751\\u540c\\u4ec1\\u0031\\u002d\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '194952', '711', 'zh-tw', 1000),
(1219, 94, '5-94', 1, '年代', '{"number":"165965","shop":"\\u5e74\\u4ee3","phone":"052307305","address":"\\u4e2d\\u83ef\\u8def\\u0038\\u0036\\u0033\\u865f"}', '165965', '711', 'zh-tw', 1000),
(1220, 94, '5-94', 1, '合豐', '{"number":"930497","shop":"\\u5408\\u8c50","phone":"052531719","address":"\\u4e2d\\u57d4\\u6751\\u0031\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '930497', '711', 'zh-tw', 1000),
(1221, 95, '5-95', 1, '新竹崎', '{"number":"972620","shop":"\\u65b0\\u7af9\\u5d0e","phone":"052615482","address":"\\u548c\\u5e73\\u6751\\u7530\\u5bee\\u6bb5\\u0039\\u0038\\u865f"}', '972620', '711', 'zh-tw', 1000),
(1222, 95, '5-95', 1, '灣橋', '{"number":"170761","shop":"\\u7063\\u6a4b","phone":"052793519","address":"\\u7063\\u6a4b\\u6751\\u0032\\u0032\\u0031\\u865f"}', '170761', '711', 'zh-tw', 1000),
(1223, 95, '5-95', 1, '奮起湖', '{"number":"944016","shop":"\\u596e\\u8d77\\u6e56","phone":"052562652","address":"\\u4e2d\\u548c\\u6751\\u0031\\u0032\\u9130\\u596e\\u8d77\\u6e56\\u0031\\u0037\\u0038\\u002d\\u0031\\u865f"}', '944016', '711', 'zh-tw', 1000),
(1224, 95, '5-95', 1, '石棹', '{"number":"173689","shop":"\\u77f3\\u68f9","phone":"052562736","address":"\\u4e2d\\u548c\\u6751\\u77f3\\u68f9\\u0032\\u0032\\u002d\\u0032\\u0037\\u865f\\u0032\\u0032\\u002d\\u0032\\u0039\\u865f"}', '173689', '711', 'zh-tw', 1000),
(1225, 95, '5-95', 1, '嘉崎', '{"number":"944382","shop":"\\u5609\\u5d0e","phone":"052618518","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0031\\u0031\\u865f"}', '944382', '711', 'zh-tw', 1000),
(1226, 96, '6-96', 1, '金東', '{"number":"903130","shop":"\\u91d1\\u6771","phone":"082372550","address":"\\u6771\\u9580\\u91cc\\u6c11\\u65cf\\u8def\\u0037\\u865f"}', '903130', '711', 'zh-tw', 1000),
(1227, 96, '6-96', 1, '得月樓', '{"number":"194631","shop":"\\u5f97\\u6708\\u6a13","phone":"082327504","address":"\\u91d1\\u6c34\\u91cc\\u524d\\u6c34\\u982d\\u0031\\u0033\\u0039\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '194631', '711', 'zh-tw', 1000),
(1228, 96, '6-96', 1, '金石', '{"number":"992705","shop":"\\u91d1\\u77f3","phone":"082323642","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0039\\u0032\\u865f\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '992705', '711', 'zh-tw', 1000),
(1229, 96, '6-96', 1, '金民', '{"number":"891970","shop":"\\u91d1\\u6c11","phone":"082371207","address":"\\u6c11\\u751f\\u8def\\u0036\\u865f"}', '891970', '711', 'zh-tw', 1000),
(1230, 96, '6-96', 1, '金亮', '{"number":"882921","shop":"\\u91d1\\u4eae","phone":"082371831","address":"\\u5357\\u9580\\u91cc\\u6c11\\u6b0a\\u8def\\u0037\\u0035\\u865f"}', '882921', '711', 'zh-tw', 1000),
(1231, 96, '6-96', 1, '金誼', '{"number":"152051","shop":"\\u91d1\\u8abc","phone":"082373859","address":"\\u5357\\u9580\\u91cc\\u6d6f\\u6c5f\\u5317\\u5824\\u8def\\u0031\\u0030\\u0030\\u865f"}', '152051', '711', 'zh-tw', 1000),
(1232, 96, '6-96', 1, '金豪', '{"number":"981598","shop":"\\u91d1\\u8c6a","phone":"082322471","address":"\\u897f\\u6d77\\u8def\\u4e09\\u6bb5\\u0031\\u865f\\u0033\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '981598', '711', 'zh-tw', 1000),
(1233, 96, '6-96', 1, '金港', '{"number":"196693","shop":"\\u91d1\\u6e2f","phone":"082329241","address":"\\u897f\\u6d77\\u8def\\u4e00\\u6bb5\\u0031\\u865f"}', '196693', '711', 'zh-tw', 1000),
(1234, 96, '6-96', 1, '金生', '{"number":"186146","shop":"\\u91d1\\u751f","phone":"082322784","address":"\\u897f\\u9580\\u91cc\\u6c11\\u751f\\u8def\\u0036\\u0037\\u002e\\u0036\\u0039\\u865f"}', '186146', '711', 'zh-tw', 1000),
(1235, 97, '6-97', 1, '新再發', '{"number":"970037","shop":"\\u65b0\\u518d\\u767c","phone":"082334313","address":"\\u5fa9\\u8208\\u8def\\u0038\\u865f\\u0031\\u0030\\u865f"}', '970037', '711', 'zh-tw', 1000),
(1236, 97, '6-97', 1, '金冠', '{"number":"116206","shop":"\\u91d1\\u51a0","phone":"082337687","address":"\\u74b0\\u5cf6\\u5357\\u8def\\u6e56\\u524d\\u6bb5\\u0032\\u865f\\u0034\\u865f"}', '116206', '711', 'zh-tw', 1000),
(1237, 97, '6-97', 1, '風獅爺', '{"number":"142858","shop":"\\u98a8\\u7345\\u723a","phone":"082322424","address":"\\u74ca\\u6797\\u91cc\\u4e2d\\u5c71\\u8def\\u0038\\u4e4b\\u0036\\u865f\\u0031\\u6a13"}', '142858', '711', 'zh-tw', 1000),
(1238, 97, '6-97', 1, '新山外', '{"number":"923651","shop":"\\u65b0\\u5c71\\u5916","phone":"082337068","address":"\\u5c71\\u5916\\u91cc\\u5fa9\\u8208\\u897f\\u8def\\u0032\\u865f"}', '923651', '711', 'zh-tw', 1000),
(1239, 97, '6-97', 1, '鈦湖', '{"number":"194192","shop":"\\u9226\\u6e56","phone":"082334638","address":"\\u65b0\\u5e02\\u91cc\\u592a\\u6e56\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '194192', '711', 'zh-tw', 1000),
(1240, 98, '6-98', 1, '樂多', '{"number":"193834","shop":"\\u6a02\\u591a","phone":"082321114","address":"\\u4f2f\\u7389\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u0039\\u865f"}', '193834', '711', 'zh-tw', 1000),
(1241, 98, '6-98', 1, '金央', '{"number":"142087","shop":"\\u91d1\\u592e","phone":"082321424","address":"\\u4f2f\\u7389\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0032\\u4e4b\\u0038\\u865f\\u0031\\u6a13"}', '142087', '711', 'zh-tw', 1000),
(1242, 98, '6-98', 1, '金寧', '{"number":"970820","shop":"\\u91d1\\u5be7","phone":"082321534","address":"\\u74b0\\u5cf6\\u5317\\u8def\\u4e00\\u6bb5\\u0037\\u0031\\u0031\\u865f"}', '970820', '711', 'zh-tw', 1000),
(1243, 99, '6-99', 1, '陽翟', '{"number":"193672","shop":"\\u967d\\u7fdf","phone":"082354801","address":"\\u5149\\u524d\\u91cc\\u967d\\u7fdf\\u65b0\\u8208\\u8857\\u0032\\u0033\\u002e\\u0032\\u0033\\u002d\\u0031\\u865f"}', '193672', '711', 'zh-tw', 1000),
(1244, 99, '6-99', 1, '中蘭', '{"number":"183871","shop":"\\u4e2d\\u862d","phone":"082354616","address":"\\u74b0\\u5cf6\\u5317\\u8def\\u4e09\\u6bb5\\u0034\\u0038\\u0032\\u865f"}', '183871', '711', 'zh-tw', 1000),
(1245, 99, '6-99', 1, '新沙美', '{"number":"970059","shop":"\\u65b0\\u6c99\\u7f8e","phone":"082355723","address":"\\u6c76\\u6c99\\u91cc\\u570b\\u4e2d\\u8def\\u0032\\u865f"}', '970059', '711', 'zh-tw', 1000),
(1246, 100, '6-100', 1, '小金', '{"number":"173977","shop":"\\u5c0f\\u91d1","phone":"082364895","address":"\\u6797\\u6e56\\u6751\\u6771\\u6797\\u8857\\u0031\\u0035\\u0036\\u865f"}', '173977', '711', 'zh-tw', 1000),
(1247, 101, '7-101', 1, '坪里', '{"number":"180539","shop":"\\u576a\\u91cc","phone":"083656338","address":"\\u003f\\u91cc\\u6751\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '180539', '711', 'zh-tw', 1000),
(1248, 101, '7-101', 1, '北竿', '{"number":"952523","shop":"\\u5317\\u7aff","phone":"083656492","address":"\\u5858\\u5c90\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0039\\u0033\\u865f\\u0031\\u0039\\u0035\\u865f"}', '952523', '711', 'zh-tw', 1000),
(1249, 102, '7-102', 1, '東引', '{"number":"188957","shop":"\\u6771\\u5f15","phone":"083677011","address":"\\u4e2d\\u67f3\\u6751\\u0038\\u0035\\u8207\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '188957', '711', 'zh-tw', 1000),
(1250, 103, '7-103', 1, '福澳港', '{"number":"194055","shop":"\\u798f\\u6fb3\\u6e2f","phone":"083623134","address":"\\u798f\\u6fb3\\u6751\\u0031\\u0032\\u0039\\u865f"}', '194055', '711', 'zh-tw', 1000),
(1251, 103, '7-103', 1, '馬祖', '{"number":"132839","shop":"\\u99ac\\u7956","phone":"083622930","address":"\\u4ecb\\u58fd\\u6751\\u0032\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '132839', '711', 'zh-tw', 1000),
(1252, 103, '7-103', 1, '中隴', '{"number":"991322","shop":"\\u4e2d\\u96b4","phone":"083623397","address":"\\u4ecb\\u58fd\\u6751\\u0033\\u9130\\u0034\\u0038\\u002d\\u0032\\u865f"}', '991322', '711', 'zh-tw', 1000),
(1253, 103, '7-103', 1, '馬港', '{"number":"952512","shop":"\\u99ac\\u6e2f","phone":"083625492","address":"\\u99ac\\u7956\\u6751\\u4e2d\\u5c71\\u8def\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f"}', '952512', '711', 'zh-tw', 1000),
(1254, 103, '7-103', 1, '南竿', '{"number":"950376","shop":"\\u5357\\u7aff","phone":"083626711","address":"\\u6e05\\u6c34\\u6751\\u0031\\u0030\\u0030\\u865f"}', '950376', '711', 'zh-tw', 1000),
(1255, 104, '8-104', 1, '新雪霸', '{"number":"153607","shop":"\\u65b0\\u96ea\\u9738","phone":"037992824","address":"\\u5bcc\\u8208\\u6751\\u0031\\u9130\\u6c34\\u5c3e\\u0033\\u0039\\u865f"}', '153607', '711', 'zh-tw', 1000),
(1256, 104, '8-104', 1, '酒莊', '{"number":"167684","shop":"\\u9152\\u838a","phone":"037997857","address":"\\u5bcc\\u8208\\u6751\\u0039\\u9130\\u516b\\u5bee\\u7063\\u0032\\u4e4b\\u0031\\u0031\\u865f"}', '167684', '711', 'zh-tw', 1000),
(1257, 104, '8-104', 1, '菁英', '{"number":"873020","shop":"\\u83c1\\u82f1","phone":"037995624","address":"\\u660e\\u6e56\\u6751\\u4e2d\\u6b63\\u8def\\u0031\\u0030\\u0037\\u865f"}', '873020', '711', 'zh-tw', 1000),
(1258, 105, '8-105', 1, '大大', '{"number":"141154","shop":"\\u5927\\u5927","phone":"037229711","address":"\\u5927\\u540c\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '141154', '711', 'zh-tw', 1000),
(1259, 105, '8-105', 1, '館福', '{"number":"941925","shop":"\\u9928\\u798f","phone":"037236205","address":"\\u9928\\u5357\\u6751\\u9928\\u5357\\u8def\\u0032\\u0031\\u0036\\u002d\\u0032\\u865f"}', '941925', '711', 'zh-tw', 1000),
(1260, 105, '8-105', 1, '館南', '{"number":"923835","shop":"\\u9928\\u5357","phone":"037236443","address":"\\u901a\\u660e\\u8857\\u0036\\u0038\\u865f"}', '923835', '711', 'zh-tw', 1000),
(1261, 105, '8-105', 1, '東館', '{"number":"155533","shop":"\\u6771\\u9928","phone":"037227942","address":"\\u4e94\\u8c37\\u6751\\u0031\\u0032\\u9130\\u0037\\u0031\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '155533', '711', 'zh-tw', 1000),
(1262, 105, '8-105', 1, '苗谷', '{"number":"165242","shop":"\\u82d7\\u8c37","phone":"037239684","address":"\\u4e94\\u8c37\\u6751\\u0032\\u0030\\u0030\\u865f"}', '165242', '711', 'zh-tw', 1000),
(1263, 106, '8-106', 1, '大山', '{"number":"120021","shop":"\\u5927\\u5c71","phone":"037432540","address":"\\u5927\\u5c71\\u91cc\\u9f8d\\u6587\\u8def\\u0036\\u865f\\u0031\\u6a13"}', '120021', '711', 'zh-tw', 1000),
(1264, 106, '8-106', 1, '龍庄', '{"number":"188049","shop":"\\u9f8d\\u5e84","phone":"037729105","address":"\\u5927\\u5e84\\u91cc\\u6210\\u529f\\u8def\\u0032\\u0030\\u0037\\u865f"}', '188049', '711', 'zh-tw', 1000),
(1265, 106, '8-106', 1, '龍坑', '{"number":"963073","shop":"\\u9f8d\\u5751","phone":"037723758","address":"\\u9f8d\\u5751\\u91cc\\u0031\\u0036\\u9130\\u0031\\u0035\\u0036\\u865f\\u4e4b\\u0031\\u0030"}', '963073', '711', 'zh-tw', 1000),
(1266, 106, '8-106', 1, '龍日', '{"number":"130512","shop":"\\u9f8d\\u65e5","phone":"037732881","address":"\\u6eaa\\u6d32\\u91cc\\u4e03\\u9130\\u52dd\\u5229\\u8def\\u0036\\u0030\\u4e4b\\u0031\\u865f"}', '130512', '711', 'zh-tw', 1000),
(1267, 106, '8-106', 1, '苗栗高', '{"number":"166290","shop":"\\u82d7\\u6817\\u9ad8","phone":"037725775","address":"\\u65b0\\u6771\\u8def\\u0034\\u0036\\u0038\\u865f"}', '166290', '711', 'zh-tw', 1000),
(1268, 106, '8-106', 1, '苗龍', '{"number":"182694","shop":"\\u82d7\\u9f8d","phone":"037729203","address":"\\u9020\\u8c50\\u8def\\u0033\\u0033\\u0033\\u865f"}', '182694', '711', 'zh-tw', 1000),
(1269, 106, '8-106', 1, '新裕龍', '{"number":"942364","shop":"\\u65b0\\u88d5\\u9f8d","phone":"037721202","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u0032\\u002d\\u0038\\u865f"}', '942364', '711', 'zh-tw', 1000),
(1270, 106, '8-106', 1, '鑫龍', '{"number":"130121","shop":"\\u946b\\u9f8d","phone":"037720945","address":"\\u4e2d\\u5c71\\u8def\\u0035\\u0033\\u865f"}', '130121', '711', 'zh-tw', 1000),
(1271, 107, '8-107', 1, '福華', '{"number":"113366","shop":"\\u798f\\u83ef","phone":"037270476","address":"\\u798f\\u661f\\u91cc\\u4e2d\\u83ef\\u8def\\u0032\\u0037\\u0033\\u865f"}', '113366', '711', 'zh-tw', 1000),
(1272, 107, '8-107', 1, '新苗中', '{"number":"982281","shop":"\\u65b0\\u82d7\\u4e2d","phone":"037359140","address":"\\u5e9c\\u524d\\u8def\\u0031\\u0032\\u0030\\u865f"}', '982281', '711', 'zh-tw', 1000),
(1273, 107, '8-107', 1, '恭敬', '{"number":"112710","shop":"\\u606d\\u656c","phone":"037364673","address":"\\u606d\\u656c\\u91cc\\u606d\\u656c\\u8def\\u0031\\u0038\\u865f"}', '112710', '711', 'zh-tw', 1000),
(1274, 107, '8-107', 1, '苗鑫', '{"number":"118028","shop":"\\u82d7\\u946b","phone":"037374655","address":"\\u570b\\u83ef\\u8def\\u0031\\u0030\\u0039\\u0032\\u865f"}', '118028', '711', 'zh-tw', 1000),
(1275, 107, '8-107', 1, '為公', '{"number":"198851","shop":"\\u70ba\\u516c","phone":"037261722","address":"\\u5609\\u76db\\u91cc\\u0032\\u0035\\u9130\\u70ba\\u516c\\u8def\\u0035\\u0038\\u0034\\u865f"}', '198851', '711', 'zh-tw', 1000),
(1276, 107, '8-107', 1, '苗栗', '{"number":"143367","shop":"\\u82d7\\u6817","phone":"037371479","address":"\\u6c11\\u65cf\\u8def\\u0039\\u0039\\u865f\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '143367', '711', 'zh-tw', 1000),
(1277, 107, '8-107', 1, '豪榮', '{"number":"951612","shop":"\\u8c6a\\u69ae","phone":"037364660","address":"\\u5357\\u52e2\\u91cc\\u8c6a\\u69ae\\u0031\\u865f"}', '951612', '711', 'zh-tw', 1000),
(1278, 107, '8-107', 1, '苗勝', '{"number":"860611","shop":"\\u82d7\\u52dd","phone":"037360941","address":"\\u52dd\\u5229\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0030\\u0034\\u0035\\u865f"}', '860611', '711', 'zh-tw', 1000),
(1279, 107, '8-107', 1, '館源', '{"number":"130855","shop":"\\u9928\\u6e90","phone":"037227165","address":"\\u6c34\\u6e90\\u91cc\\u0031\\u0031\\u9130\\u6c34\\u6d41\\u5a18\\u0031\\u0035\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '130855', '711', 'zh-tw', 1000),
(1280, 107, '8-107', 1, '苗豐', '{"number":"993085","shop":"\\u82d7\\u8c50","phone":"037266930","address":"\\u70ba\\u516c\\u8def\\u0031\\u0036\\u0037\\u002d\\u0031\\u865f"}', '993085', '711', 'zh-tw', 1000),
(1281, 107, '8-107', 1, '苗碩', '{"number":"952626","shop":"\\u82d7\\u78a9","phone":"037321719","address":"\\u7dad\\u65b0\\u91cc\\u65b0\\u6771\\u8857\\u0032\\u0031\\u0039\\u865f"}', '952626', '711', 'zh-tw', 1000),
(1282, 107, '8-107', 1, '龍躍', '{"number":"180104","shop":"\\u9f8d\\u8e8d","phone":"037361706","address":"\\u65b0\\u5ddd\\u91cc\\u5713\\u58a9\\u8def\\u0032\\u0038\\u865f"}', '180104', '711', 'zh-tw', 1000),
(1283, 107, '8-107', 1, '瑛才', '{"number":"195830","shop":"\\u745b\\u624d","phone":"037374256","address":"\\u82f1\\u624d\\u8def\\u0031\\u0030\\u0039\\u865f"}', '195830', '711', 'zh-tw', 1000),
(1284, 107, '8-107', 1, '真樂', '{"number":"967662","shop":"\\u771f\\u6a02","phone":"037322936","address":"\\u7389\\u6e05\\u8def\\u0033\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '967662', '711', 'zh-tw', 1000),
(1285, 107, '8-107', 1, '鑫正發', '{"number":"115867","shop":"\\u946b\\u6b63\\u767c","phone":"037333281","address":"\\u6b63\\u767c\\u8def\\u0031\\u0039\\u0036\\u865f"}', '115867', '711', 'zh-tw', 1000),
(1286, 107, '8-107', 1, '栗華', '{"number":"164331","shop":"\\u6817\\u83ef","phone":"037278968","address":"\\u4e2d\\u83ef\\u8def\\u0037\\u0038\\u865f"}', '164331', '711', 'zh-tw', 1000),
(1287, 107, '8-107', 1, '苗公', '{"number":"912721","shop":"\\u82d7\\u516c","phone":"037338150","address":"\\u4e2d\\u5c71\\u8def\\u0036\\u0030\\u0032\\u4e4b\\u0031\\u865f"}', '912721', '711', 'zh-tw', 1000),
(1288, 107, '8-107', 1, '頤和', '{"number":"160203","shop":"\\u9824\\u548c","phone":"037261762","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '160203', '711', 'zh-tw', 1000),
(1289, 107, '8-107', 1, '大千', '{"number":"180344","shop":"\\u5927\\u5343","phone":"037359348","address":"\\u4e2d\\u6b63\\u8def\\u0039\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '180344', '711', 'zh-tw', 1000),
(1290, 107, '8-107', 1, '苗治', '{"number":"990916","shop":"\\u82d7\\u6cbb","phone":"037374353","address":"\\u81ea\\u6cbb\\u8def\\u0037\\u0032\\u865f"}', '990916', '711', 'zh-tw', 1000),
(1291, 108, '8-108', 1, '大南庄', '{"number":"192808","shop":"\\u5927\\u5357\\u5e84","phone":"037822178","address":"\\u5357\\u6c5f\\u6751\\u0035\\u9130\\u6771\\u6c5f\\u0037\\u0035\\u002d\\u0033\\u865f"}', '192808', '711', 'zh-tw', 1000),
(1292, 108, '8-108', 1, '新南庄', '{"number":"950284","shop":"\\u65b0\\u5357\\u5e84","phone":"037822488","address":"\\u897f\\u6751\\u4e2d\\u6b63\\u8def\\u0037\\u865f\\u0039\\u865f\\u0031\\u6a13"}', '950284', '711', 'zh-tw', 1000),
(1293, 108, '8-108', 1, '田野', '{"number":"122658","shop":"\\u7530\\u91ce","phone":"037834841","address":"\\u54e1\\u6797\\u6751\\u4e0b\\u54e1\\u6797\\u0032\\u9130\\u0036\\u0038\\u002d\\u0031\\u0030\\u865f"}', '122658', '711', 'zh-tw', 1000),
(1294, 109, '8-109', 1, '三灣', '{"number":"164515","shop":"\\u4e09\\u7063","phone":"037834838","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0035\\u0035\\u865f\\u8207\\u6587\\u5316\\u8857\\u0031\\u0033\\u865f"}', '164515', '711', 'zh-tw', 1000),
(1295, 110, '8-110', 1, '龍邦', '{"number":"873215","shop":"\\u9f8d\\u90a6","phone":"037870441","address":"\\u52dd\\u8208\\u6751\\u6c34\\u7f8e\\u8857\\u0033\\u0031\\u0035\\u4e4b\\u0038\\u865f\\u0039\\u865f"}', '873215', '711', 'zh-tw', 1000),
(1296, 110, '8-110', 1, '三義', '{"number":"870766","shop":"\\u4e09\\u7fa9","phone":"037876099","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0031\\u0038\\u865f"}', '870766', '711', 'zh-tw', 1000),
(1297, 111, '8-111', 1, '泰安', '{"number":"192897","shop":"\\u6cf0\\u5b89","phone":"037941623","address":"\\u9326\\u6c34\\u6751\\u5713\\u58a9\\u0038\\u0033\\u002d\\u0032\\u865f"}', '192897', '711', 'zh-tw', 1000),
(1298, 112, '8-112', 1, '白沙屯', '{"number":"911647","shop":"\\u767d\\u6c99\\u5c6f","phone":"037791746","address":"\\u767d\\u6771\\u91cc\\u767d\\u6771\\u0031\\u0030\\u0030\\u865f"}', '911647', '711', 'zh-tw', 1000),
(1299, 112, '8-112', 1, '通高', '{"number":"181037","shop":"\\u901a\\u9ad8","phone":"037760192","address":"\\u5167\\u6e56\\u91cc\\u0031\\u0032\\u9130\\u70cf\\u7709\\u8def\\u0033\\u0030\\u0038\\u865f"}', '181037', '711', 'zh-tw', 1000),
(1300, 112, '8-112', 1, '金金', '{"number":"966636","shop":"\\u91d1\\u91d1","phone":"037761975","address":"\\u5167\\u6e56\\u91cc\\u0031\\u0037\\u9130\\u5167\\u6e56\\u0031\\u0036\\u0035\\u002d\\u0038\\u865f"}', '966636', '711', 'zh-tw', 1000),
(1301, 112, '8-112', 1, '通館', '{"number":"921769","shop":"\\u901a\\u9928","phone":"037764476","address":"\\u901a\\u897f\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0030\\u865f"}', '921769', '711', 'zh-tw', 1000),
(1302, 112, '8-112', 1, '通宏', '{"number":"997973","shop":"\\u901a\\u5b8f","phone":"037759112","address":"\\u901a\\u897f\\u91cc\\u4e2d\\u6b63\\u8def\\u0038\\u0033\\u4e4b\\u0035\\u865f"}', '997973', '711', 'zh-tw', 1000),
(1303, 112, '8-112', 1, '通霄', '{"number":"882563","shop":"\\u901a\\u9704","phone":"037760451","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0039\\u865f"}', '882563', '711', 'zh-tw', 1000),
(1304, 113, '8-113', 1, '銅鑼', '{"number":"990950","shop":"\\u9285\\u947c","phone":"037983418","address":"\\u9285\\u947c\\u6751\\u4e2d\\u6b63\\u8def\\u0031\\u0037\\u0033\\u865f\\u0031\\u6a13"}', '990950', '711', 'zh-tw', 1000),
(1305, 113, '8-113', 1, '銅利', '{"number":"957322","shop":"\\u9285\\u5229","phone":"037239187","address":"\\u4e2d\\u8208\\u4e00\\u8857\\u0031\\u865f"}', '957322', '711', 'zh-tw', 1000),
(1306, 113, '8-113', 1, '大銅', '{"number":"158727","shop":"\\u5927\\u9285","phone":"037985886","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u002d\\u0032\\u0035\\u865f"}', '158727', '711', 'zh-tw', 1000),
(1307, 114, '8-114', 1, '鈞吉', '{"number":"120401","shop":"\\u921e\\u5409","phone":"037672445","address":"\\u6210\\u529f\\u91cc\\u0031\\u0031\\u9130\\u5efa\\u570b\\u8def\\u0031\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '120401', '711', 'zh-tw', 1000),
(1308, 114, '8-114', 1, '東尚', '{"number":"193362","shop":"\\u6771\\u5c1a","phone":"037696724","address":"\\u6771\\u6c11\\u8def\\u0031\\u0036\\u0033\\u865f\\u53ca\\u548c\\u5e73\\u8def\\u0032\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '193362', '711', 'zh-tw', 1000),
(1309, 114, '8-114', 1, '慶丞', '{"number":"981510","shop":"\\u6176\\u4e1e","phone":"037596428","address":"\\u5408\\u8208\\u91cc\\u4fe1\\u7fa9\\u8def\\u0031\\u0034\\u9130\\u0033\\u0038\\u0031\\u865f"}', '981510', '711', 'zh-tw', 1000),
(1310, 114, '8-114', 1, '昶誼', '{"number":"943909","shop":"\\u6636\\u8abc","phone":"037676674","address":"\\u5f8c\\u5e84\\u91cc\\u5e7c\\u82f1\\u8857\\u0031\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '943909', '711', 'zh-tw', 1000),
(1311, 114, '8-114', 1, '尖豐', '{"number":"931825","shop":"\\u5c16\\u8c50","phone":"037616773","address":"\\u5c16\\u5c71\\u91cc\\u5c16\\u8c50\\u8def\\u0033\\u0032\\u0030\\u5df7\\u0033\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '931825', '711', 'zh-tw', 1000),
(1312, 114, '8-114', 1, '建鑫', '{"number":"144854","shop":"\\u5efa\\u946b","phone":"037695417","address":"\\u5efa\\u570b\\u8def\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '144854', '711', 'zh-tw', 1000),
(1313, 114, '8-114', 1, '淇丞', '{"number":"933164","shop":"\\u6dc7\\u4e1e","phone":"037673025","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0038\\u865f"}', '933164', '711', 'zh-tw', 1000),
(1314, 114, '8-114', 1, '得意', '{"number":"980827","shop":"\\u5f97\\u610f","phone":"037675801","address":"\\u87e0\\u6843\\u91cc\\u5fb7\\u7fa9\\u8def\\u0031\\u0033\\u9130\\u0038\\u0031\\u865f"}', '980827', '711', 'zh-tw', 1000),
(1315, 114, '8-114', 1, '永和山', '{"number":"112857","shop":"\\u6c38\\u548c\\u5c71","phone":"037692143","address":"\\u6c34\\u6e90\\u8def\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '112857', '711', 'zh-tw', 1000),
(1316, 114, '8-114', 1, '興德', '{"number":"130958","shop":"\\u8208\\u5fb7","phone":"037661171","address":"\\u6587\\u5316\\u8857\\u0031\\u0037\\u0032\\u865f\\u516b\\u5fb7\\u4e8c\\u8def\\u0032\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '130958', '711', 'zh-tw', 1000),
(1317, 114, '8-114', 1, '煥日', '{"number":"910116","shop":"\\u7165\\u65e5","phone":"037591977","address":"\\u65b0\\u83ef\\u91cc\\u4e2d\\u6b63\\u4e00\\u8def\\u0035\\u0035\\u0034\\u865f\\u0035\\u0035\\u0036\\u865f"}', '910116', '711', 'zh-tw', 1000),
(1318, 114, '8-114', 1, '貞永', '{"number":"174589","shop":"\\u8c9e\\u6c38","phone":"037634588","address":"\\u6c38\\u8c9e\\u8def\\u4e8c\\u6bb5\\u0031\\u865f"}', '174589', '711', 'zh-tw', 1000),
(1319, 114, '8-114', 1, '貞豪', '{"number":"121367","shop":"\\u8c9e\\u8c6a","phone":"037635612","address":"\\u6c38\\u8c9e\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '121367', '711', 'zh-tw', 1000),
(1320, 114, '8-114', 1, '新頭高', '{"number":"194114","shop":"\\u65b0\\u982d\\u9ad8","phone":"037695212","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '194114', '711', 'zh-tw', 1000),
(1321, 114, '8-114', 1, '新華', '{"number":"121552","shop":"\\u65b0\\u83ef","phone":"037672649","address":"\\u4e2d\\u83ef\\u8def\\u0037\\u0035\\u0035\\u865f\\u53ca\\u6c11\\u751f\\u8857\\u0032\\u865f"}', '121552', '711', 'zh-tw', 1000),
(1322, 114, '8-114', 1, '龍仁', '{"number":"173634","shop":"\\u9f8d\\u4ec1","phone":"037688211","address":"\\u4e2d\\u83ef\\u8def\\u0039\\u0036\\u0038\\u002d\\u0039\\u0037\\u0034\\u865f"}', '173634', '711', 'zh-tw', 1000),
(1323, 114, '8-114', 1, '頭興', '{"number":"142397","shop":"\\u982d\\u8208","phone":"037674661","address":"\\u4e2d\\u592e\\u8def\\u0032\\u0032\\u0038\\u865f\\u0032\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '142397', '711', 'zh-tw', 1000),
(1324, 114, '8-114', 1, '後庄', '{"number":"958819","shop":"\\u5f8c\\u5e84","phone":"037674612","address":"\\u4e2d\\u592e\\u8def\\u0036\\u0030\\u0033\\u002d\\u0036\\u0030\\u0035\\u865f"}', '958819', '711', 'zh-tw', 1000),
(1325, 114, '8-114', 1, '頭份', '{"number":"170554","shop":"\\u982d\\u4efd","phone":"037593250","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0033\\u0032\\u865f"}', '170554', '711', 'zh-tw', 1000),
(1326, 114, '8-114', 1, '宏恩', '{"number":"148720","shop":"\\u5b8f\\u6069","phone":"037692273","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u865f"}', '148720', '711', 'zh-tw', 1000),
(1327, 114, '8-114', 1, '中群', '{"number":"123422","shop":"\\u4e2d\\u7fa4","phone":"037684526","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '123422', '711', 'zh-tw', 1000),
(1328, 114, '8-114', 1, '珊湖', '{"number":"113137","shop":"\\u73ca\\u6e56","phone":"037603252","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13\\u53ca\\u89aa\\u6c11\\u8def\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '113137', '711', 'zh-tw', 1000),
(1329, 114, '8-114', 1, '正合', '{"number":"155315","shop":"\\u6b63\\u5408","phone":"037690551","address":"\\u4e2d\\u6b63\\u4e00\\u8def\\u0035\\u0038\\u865f\\u0031\\u0046"}', '155315', '711', 'zh-tw', 1000),
(1330, 114, '8-114', 1, '信東', '{"number":"924470","shop":"\\u4fe1\\u6771","phone":"037692583","address":"\\u5fe0\\u5b5d\\u91cc\\u0031\\u0032\\u9130\\u4fe1\\u6771\\u8def\\u0031\\u0035\\u0038\\u865f"}', '924470', '711', 'zh-tw', 1000),
(1331, 115, '8-115', 1, '頭屋', '{"number":"110758","shop":"\\u982d\\u5c4b","phone":"037251643","address":"\\u5c16\\u8c50\\u8def\\u0031\\u0031\\u0038\\u865f\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '110758', '711', 'zh-tw', 1000),
(1332, 115, '8-115', 1, '象上', '{"number":"196017","shop":"\\u8c61\\u4e0a","phone":"037251211","address":"\\u8c61\\u5c71\\u6751\\u8c61\\u5c71\\u8def\\u0031\\u0037\\u0036\\u865f"}', '196017', '711', 'zh-tw', 1000),
(1333, 115, '8-115', 1, '象山', '{"number":"141143","shop":"\\u8c61\\u5c71","phone":"037255838","address":"\\u8c61\\u5c71\\u6751\\u8c61\\u5c71\\u8def\\u0032\\u0033\\u0039\\u4e4b\\u0031\\u865f"}', '141143', '711', 'zh-tw', 1000),
(1334, 116, '8-116', 1, '客庄', '{"number":"137638","shop":"\\u5ba2\\u5e84","phone":"037862097","address":"\\u5ba2\\u5e84\\u91cc\\u5ba2\\u5e84\\u0039\\u0030\\u002d\\u0032\\u0030\\u865f"}', '137638', '711', 'zh-tw', 1000),
(1335, 116, '8-116', 1, '鈺田', '{"number":"971410","shop":"\\u923a\\u7530","phone":"037743258","address":"\\u5c71\\u67d1\\u91cc\\u0032\\u002d\\u0032\\u865f"}', '971410', '711', 'zh-tw', 1000),
(1336, 116, '8-116', 1, '苑景', '{"number":"192635","shop":"\\u82d1\\u666f","phone":"037742337","address":"\\u5c71\\u67d1\\u91cc\\u4e5d\\u9130\\u5c71\\u67d1\\u0039\\u0032\\u4e4b\\u0037\\u865f"}', '192635', '711', 'zh-tw', 1000),
(1337, 116, '8-116', 1, '山腳', '{"number":"932105","shop":"\\u5c71\\u8173","phone":"037745613","address":"\\u5c71\\u8173\\u91cc\\u4e03\\u9130\\u5c71\\u8173\\u0031\\u0035\\u0037\\u865f"}', '932105', '711', 'zh-tw', 1000),
(1338, 116, '8-116', 1, '田馨', '{"number":"953272","shop":"\\u7530\\u99a8","phone":"037854380","address":"\\u7530\\u5fc3\\u91cc\\u7530\\u5fc3\\u6bb5\\u0033\\u0036\\u4e4b\\u0033\\u865f"}', '953272', '711', 'zh-tw', 1000),
(1339, 116, '8-116', 1, '新苑', '{"number":"138516","shop":"\\u65b0\\u82d1","phone":"037863031","address":"\\u82d1\\u5317\\u91cc\\u70ba\\u516c\\u8def\\u0037\\u0030\\u865f"}', '138516', '711', 'zh-tw', 1000),
(1340, 116, '8-116', 1, '新和苑', '{"number":"131353","shop":"\\u65b0\\u548c\\u82d1","phone":"037855563","address":"\\u82d1\\u5357\\u91cc\\u70ba\\u516c\\u8def\\u0034\\u9130\\u0031\\u0036\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '131353', '711', 'zh-tw', 1000),
(1341, 117, '8-117', 1, '大坪', '{"number":"923167","shop":"\\u5927\\u576a","phone":"037544653","address":"\\u5341\\u5b57\\u8def\\u0031\\u0036\\u865f"}', '923167', '711', 'zh-tw', 1000),
(1342, 117, '8-117', 1, '育大', '{"number":"913034","shop":"\\u80b2\\u5927","phone":"037651855","address":"\\u5b78\\u5e9c\\u8def\\u0031\\u0030\\u0030\\u865f"}', '913034', '711', 'zh-tw', 1000),
(1343, 118, '8-118', 1, '真開', '{"number":"967064","shop":"\\u771f\\u958b","phone":"037482127","address":"\\u5927\\u539d\\u91cc\\u958b\\u5143\\u8def\\u0034\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '967064', '711', 'zh-tw', 1000),
(1344, 118, '8-118', 1, '科南', '{"number":"183918","shop":"\\u79d1\\u5357","phone":"037586223","address":"\\u5927\\u57d4\\u91cc\\u0031\\u9130\\u79d1\\u5b78\\u8def\\u0032\\u0034\\u0033\\u865f"}', '183918', '711', 'zh-tw', 1000),
(1345, 118, '8-118', 1, '竹南和興', '{"number":"116169","shop":"\\u7af9\\u5357\\u548c\\u8208","phone":"037582482","address":"\\u5927\\u57d4\\u91cc\\u548c\\u8208\\u8def\\u0031\\u0039\\u0031\\u002d\\u0031\\u865f"}', '116169', '711', 'zh-tw', 1000),
(1346, 118, '8-118', 1, '群創', '{"number":"188142","shop":"\\u7fa4\\u5275","phone":"037582940","address":"\\u9802\\u57d4\\u91cc\\u79d1\\u5b78\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '188142', '711', 'zh-tw', 1000),
(1347, 118, '8-118', 1, '廣沅', '{"number":"138837","shop":"\\u5ee3\\u6c85","phone":"037585521","address":"\\u516c\\u7fa9\\u91cc\\u516c\\u7fa9\\u8def\\u0031\\u0036\\u0038\\u0033\\u865f\\u0031\\u0036\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '138837', '711', 'zh-tw', 1000),
(1348, 118, '8-118', 1, '海福', '{"number":"921552","shop":"\\u6d77\\u798f","phone":"037466511","address":"\\u6d77\\u53e3\\u91cc\\u8857\\u0038\\u0036\\u865f"}', '921552', '711', 'zh-tw', 1000),
(1349, 118, '8-118', 1, '環竹', '{"number":"923385","shop":"\\u74b0\\u7af9","phone":"037463644","address":"\\u74b0\\u5e02\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u865f"}', '923385', '711', 'zh-tw', 1000),
(1350, 118, '8-118', 1, '布洛瓦', '{"number":"111854","shop":"\\u5e03\\u6d1b\\u74e6","phone":"037584419","address":"\\u79d1\\u6771\\u4e09\\u8def\\u0031\\u0032\\u865f"}', '111854', '711', 'zh-tw', 1000),
(1351, 118, '8-118', 1, '統寶', '{"number":"175076","shop":"\\u7d71\\u5bf6","phone":"037580641","address":"\\u79d1\\u4e2d\\u8def\\u0031\\u0032\\u865f\\u0042\\u0032"}', '175076', '711', 'zh-tw', 1000),
(1352, 118, '8-118', 1, '科星', '{"number":"184368","shop":"\\u79d1\\u661f","phone":"037583986","address":"\\u79d1\\u5c08\\u4e03\\u8def\\u0033\\u0039\\u0033\\u865f"}', '184368', '711', 'zh-tw', 1000),
(1353, 118, '8-118', 1, '科七', '{"number":"166315","shop":"\\u79d1\\u4e03","phone":"037587193","address":"\\u79d1\\u5c08\\u4e03\\u8def\\u0033\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '166315', '711', 'zh-tw', 1000),
(1354, 118, '8-118', 1, '龍鳳', '{"number":"964858","shop":"\\u9f8d\\u9cf3","phone":"037483823","address":"\\u9f8d\\u9cf3\\u91cc\\u9f8d\\u6c5f\\u8857\\u0032\\u0035\\u865f"}', '964858', '711', 'zh-tw', 1000),
(1355, 118, '8-118', 1, '竹南建國', '{"number":"139368","shop":"\\u7af9\\u5357\\u5efa\\u570b","phone":"037461793","address":"\\u9f8d\\u9cf3\\u91cc\\u9f8d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '139368', '711', 'zh-tw', 1000),
(1356, 118, '8-118', 1, '龍昇', '{"number":"198655","shop":"\\u9f8d\\u6607","phone":"037463595","address":"\\u9f8d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0030\\u865f"}', '198655', '711', 'zh-tw', 1000),
(1357, 118, '8-118', 1, '仟翔', '{"number":"188854","shop":"\\u4edf\\u7fd4","phone":"037484318","address":"\\u9f8d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0035\\u865f"}', '188854', '711', 'zh-tw', 1000),
(1358, 118, '8-118', 1, '慶竹', '{"number":"882080","shop":"\\u6176\\u7af9","phone":"037480406","address":"\\u6c11\\u65cf\\u8def\\u0038\\u0032\\u865f\\u6c11\\u6b0a\\u8def\\u0034\\u0037\\u865f"}', '882080', '711', 'zh-tw', 1000),
(1359, 118, '8-118', 1, '晟乾', '{"number":"963187","shop":"\\u665f\\u4e7e","phone":"037582294","address":"\\u4ec1\\u611b\\u8def\\u0039\\u0030\\u0032\\u865f"}', '963187', '711', 'zh-tw', 1000),
(1360, 118, '8-118', 1, '龍詮', '{"number":"951863","shop":"\\u9f8d\\u8a6e","phone":"037611551","address":"\\u5c71\\u4f73\\u91cc\\u9f8d\\u5c71\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0035\\u865f"}', '951863', '711', 'zh-tw', 1000),
(1361, 118, '8-118', 1, '弘運', '{"number":"120537","shop":"\\u5f18\\u904b","phone":"037550537","address":"\\u5b88\\u6cd5\\u8857\\u0033\\u002d\\u0032\\u865f\\u0033\\u002d\\u0033\\u865f\\u0033\\u002d\\u0035\\u865f\\u0031\\u6a13"}', '120537', '711', 'zh-tw', 1000),
(1362, 118, '8-118', 1, '天文', '{"number":"110666","shop":"\\u5929\\u6587","phone":"037633952","address":"\\u5929\\u6587\\u8def\\u0031\\u0037\\u0036\\u865f"}', '110666', '711', 'zh-tw', 1000),
(1363, 118, '8-118', 1, '國豪', '{"number":"137557","shop":"\\u570b\\u8c6a","phone":"037470992","address":"\\u5ef6\\u5e73\\u8def\\u0031\\u0037\\u0030\\u865f"}', '137557', '711', 'zh-tw', 1000),
(1364, 118, '8-118', 1, '龍宸', '{"number":"121080","shop":"\\u9f8d\\u5bb8","phone":"037466904","address":"\\u71df\\u76e4\\u91cc\\u535a\\u611b\\u8857\\u0033\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '121080', '711', 'zh-tw', 1000),
(1365, 118, '8-118', 1, '光南', '{"number":"182351","shop":"\\u5149\\u5357","phone":"037470195","address":"\\u7167\\u5357\\u91cc\\u5149\\u5fa9\\u8def\\u0033\\u0034\\u0032\\u865f"}', '182351', '711', 'zh-tw', 1000),
(1366, 118, '8-118', 1, '展宏', '{"number":"991296","shop":"\\u5c55\\u5b8f","phone":"037684874","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0036\\u0039\\u865f\\u0031\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '991296', '711', 'zh-tw', 1000),
(1367, 118, '8-118', 1, '圳營', '{"number":"181679","shop":"\\u5733\\u71df","phone":"037477965","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '181679', '711', 'zh-tw', 1000),
(1368, 119, '8-119', 1, '新卓蘭', '{"number":"167329","shop":"\\u65b0\\u5353\\u862d","phone":"0425897961","address":"\\u8208\\u5357\\u8857\\u0033\\u0031\\u0038\\u865f"}', '167329', '711', 'zh-tw', 1000),
(1369, 119, '8-119', 1, '豪麥', '{"number":"116480","shop":"\\u8c6a\\u9ea5","phone":"0425899467","address":"\\u4e2d\\u5c71\\u8def\\u0034\\u0038\\u865f\\u4e4b\\u0034"}', '116480', '711', 'zh-tw', 1000),
(1370, 120, '9-120', 1, '合廣', '{"number":"181303","shop":"\\u5408\\u5ee3","phone":"0492303250","address":"\\u78a7\\u5c71\\u8def\\u0033\\u0030\\u0037\\u002e\\u0033\\u0030\\u0039\\u865f"}', '181303', '711', 'zh-tw', 1000),
(1371, 120, '9-120', 1, '龍泰', '{"number":"164191","shop":"\\u9f8d\\u6cf0","phone":"0492362572","address":"\\u78a7\\u8208\\u8def\\u4e00\\u6bb5\\u0037\\u0039\\u0038\\u002d\\u0031\\u865f"}', '164191', '711', 'zh-tw', 1000),
(1372, 120, '9-120', 1, '向日葵', '{"number":"111544","shop":"\\u5411\\u65e5\\u8475","phone":"0492354118","address":"\\u82ac\\u8349\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u0039\\u002d\\u0031\\u865f"}', '111544', '711', 'zh-tw', 1000),
(1373, 120, '9-120', 1, '龍星', '{"number":"195357","shop":"\\u9f8d\\u661f","phone":"0492328774","address":"\\u5fa9\\u8208\\u91cc\\u78a7\\u5c71\\u8def\\u0037\\u0033\\u0031\\u4e4b\\u0035\\u865f"}', '195357', '711', 'zh-tw', 1000),
(1374, 120, '9-120', 1, '福新', '{"number":"187828","shop":"\\u798f\\u65b0","phone":"0492391643","address":"\\u864e\\u5c71\\u8def\\u0034\\u0039\\u0035\\u865f\\u0034\\u0039\\u0037\\u865f"}', '187828', '711', 'zh-tw', 1000),
(1375, 120, '9-120', 1, '鴻寶', '{"number":"154530","shop":"\\u9d3b\\u5bf6","phone":"0492312260","address":"\\u6c11\\u6b0a\\u897f\\u8def\\u0032\\u0032\\u0031\\u865f"}', '154530', '711', 'zh-tw', 1000),
(1376, 120, '9-120', 1, '京埔', '{"number":"138952","shop":"\\u4eac\\u57d4","phone":"0492562210","address":"\\u5357\\u57d4\\u91cc\\u4e2d\\u6b63\\u8def\\u0032\\u0035\\u0034\\u002d\\u0031\\u0030\\u865f"}', '138952', '711', 'zh-tw', 1000),
(1377, 120, '9-120', 1, '敦和', '{"number":"977577","shop":"\\u6566\\u548c","phone":"0492314596","address":"\\u4ec1\\u611b\\u8857\\u0031\\u0039\\u0037\\u865f"}', '977577', '711', 'zh-tw', 1000),
(1378, 120, '9-120', 1, '惠德', '{"number":"965437","shop":"\\u60e0\\u5fb7","phone":"0492302342","address":"\\u592a\\u5e73\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0038\\u865f\\u0032\\u0035\\u0030\\u865f"}', '965437', '711', 'zh-tw', 1000),
(1379, 120, '9-120', 1, '佑民', '{"number":"958691","shop":"\\u4f51\\u6c11","phone":"0492316868","address":"\\u592a\\u5e73\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0031\\u865f"}', '958691', '711', 'zh-tw', 1000),
(1380, 120, '9-120', 1, '稻豐', '{"number":"966832","shop":"\\u7a3b\\u8c50","phone":"0492305977","address":"\\u65b0\\u8c50\\u8def\\u0033\\u0035\\u0031\\u865f"}', '966832', '711', 'zh-tw', 1000),
(1381, 120, '9-120', 1, '登瀛', '{"number":"954596","shop":"\\u767b\\u701b","phone":"0492301131","address":"\\u65b0\\u5e84\\u91cc\\u535a\\u611b\\u8def\\u0031\\u0030\\u0031\\u0032\\u865f"}', '954596', '711', 'zh-tw', 1000),
(1382, 120, '9-120', 1, '鑫永安', '{"number":"126351","shop":"\\u946b\\u6c38\\u5b89","phone":"0492566397","address":"\\u5fa1\\u53f2\\u91cc\\u767b\\u8f1d\\u8def\\u0035\\u0035\\u0038\\u865f"}', '126351', '711', 'zh-tw', 1000),
(1383, 120, '9-120', 1, '草鞋鐓', '{"number":"121736","shop":"\\u8349\\u978b\\u9413","phone":"0492561628","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0034\\u0034\\u4e4b\\u0033\\u0030\\u865f"}', '121736', '711', 'zh-tw', 1000),
(1384, 120, '9-120', 1, '京鑫', '{"number":"183332","shop":"\\u4eac\\u946b","phone":"0492565173","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0038\\u0033\\u865f"}', '183332', '711', 'zh-tw', 1000),
(1385, 120, '9-120', 1, '國寶', '{"number":"110219","shop":"\\u570b\\u5bf6","phone":"0492564932","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u0037\\u4e4b\\u0032\\u0036\\u865f"}', '110219', '711', 'zh-tw', 1000),
(1386, 120, '9-120', 1, '國泰', '{"number":"127538","shop":"\\u570b\\u6cf0","phone":"0492336243","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0033\\u0036\\u865f\\u0031\\u6a13\\u53ca\\u548c\\u8208\\u8857\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '127538', '711', 'zh-tw', 1000),
(1387, 120, '9-120', 1, '福元', '{"number":"121574","shop":"\\u798f\\u5143","phone":"0492318808","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '121574', '711', 'zh-tw', 1000),
(1388, 121, '9-121', 1, '新國姓', '{"number":"913355","shop":"\\u65b0\\u570b\\u59d3","phone":"0492724347","address":"\\u570b\\u59d3\\u6751\\u4e2d\\u8208\\u8def\\u0033\\u0030\\u0031\\u865f"}', '913355', '711', 'zh-tw', 1000),
(1389, 122, '9-122', 1, '集寶', '{"number":"110208","shop":"\\u96c6\\u5bf6","phone":"0492764780","address":"\\u516b\\u5f35\\u8857\\u0037\\u0035\\u865f"}', '110208', '711', 'zh-tw', 1000),
(1390, 122, '9-122', 1, '集利', '{"number":"160144","shop":"\\u96c6\\u5229","phone":"0492764506","address":"\\u5433\\u539d\\u91cc\\u6c11\\u751f\\u8def\\u0036\\u0035\\u002d\\u0031\\u865f"}', '160144', '711', 'zh-tw', 1000),
(1391, 123, '9-123', 1, '和雅', '{"number":"141615","shop":"\\u548c\\u96c5","phone":"0492755979","address":"\\u5ee3\\u8208\\u6751\\u4e2d\\u6b63\\u4e00\\u8def\\u0032\\u0032\\u0035\\u865f"}', '141615', '711', 'zh-tw', 1000),
(1392, 123, '9-123', 1, '新鹿谷', '{"number":"900614","shop":"\\u65b0\\u9e7f\\u8c37","phone":"0492754897","address":"\\u4ec1\\u7fa9\\u8def\\u0031\\u0034\\u0038\\u865f"}', '900614', '711', 'zh-tw', 1000),
(1393, 123, '9-123', 1, '鳳凰谷', '{"number":"155441","shop":"\\u9cf3\\u51f0\\u8c37","phone":"0492750993","address":"\\u4e2d\\u6b63\\u8def\\u4e09\\u6bb5\\u0036\\u0033\\u865f"}', '155441', '711', 'zh-tw', 1000),
(1394, 124, '9-124', 1, '雅集', '{"number":"164412","shop":"\\u96c5\\u96c6","phone":"0492734440","address":"\\u54e1\\u96c6\\u8def\\u0031\\u0033\\u0037\\u865f"}', '164412', '711', 'zh-tw', 1000),
(1395, 124, '9-124', 1, '穀昌', '{"number":"193085","shop":"\\u7a40\\u660c","phone":"0492244085","address":"\\u5f70\\u5357\\u8def\\u0034\\u0035\\u0030\\u865f"}', '193085', '711', 'zh-tw', 1000),
(1396, 124, '9-124', 1, '名間', '{"number":"164401","shop":"\\u540d\\u9593","phone":"0492738412","address":"\\u5f70\\u5357\\u8def\\u0037\\u0031\\u4e4b\\u0035\\u865f"}', '164401', '711', 'zh-tw', 1000),
(1397, 124, '9-124', 1, '合心', '{"number":"954415","shop":"\\u5408\\u5fc3","phone":"0492734153","address":"\\u4e2d\\u5c71\\u6751\\u5f70\\u5357\\u8def\\u0032\\u0031\\u0038\\u002d\\u0033\\u0032\\u865f"}', '954415', '711', 'zh-tw', 1000),
(1398, 125, '9-125', 1, '猴探井', '{"number":"174017","shop":"\\u7334\\u63a2\\u4e95","phone":"0492292842","address":"\\u516b\\u5fb7\\u8def\\u0036\\u0030\\u0030\\u4e4b\\u0031\\u865f"}', '174017', '711', 'zh-tw', 1000),
(1399, 125, '9-125', 1, '龍巳', '{"number":"894315","shop":"\\u9f8d\\u5df3","phone":"0492244777","address":"\\u6771\\u5c71\\u8def\\u0034\\u0030\\u0038\\u865f"}', '894315', '711', 'zh-tw', 1000),
(1400, 125, '9-125', 1, '康壽', '{"number":"993672","shop":"\\u5eb7\\u58fd","phone":"0492247098","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '993672', '711', 'zh-tw', 1000),
(1401, 125, '9-125', 1, '宏旺', '{"number":"970716","shop":"\\u5b8f\\u65fa","phone":"0492245147","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0038\\u865f"}', '970716', '711', 'zh-tw', 1000),
(1402, 125, '9-125', 1, '常春藤', '{"number":"931180","shop":"\\u5e38\\u6625\\u85e4","phone":"0492264496","address":"\\u5de5\\u696d\\u8def\\u0033\\u0033\\u865f"}', '931180', '711', 'zh-tw', 1000),
(1403, 125, '9-125', 1, '南投', '{"number":"140852","shop":"\\u5357\\u6295","phone":"0492242363","address":"\\u6c11\\u65cf\\u8def\\u0032\\u0038\\u0039\\u865f\\u0032\\u0039\\u0031\\u865f\\u0032\\u0039\\u0033\\u865f"}', '140852', '711', 'zh-tw', 1000),
(1404, 125, '9-125', 1, '南崗', '{"number":"898351","shop":"\\u5357\\u5d17","phone":"0492228189","address":"\\u6c11\\u65cf\\u8def\\u0035\\u0031\\u0035\\u865f"}', '898351', '711', 'zh-tw', 1000),
(1405, 125, '9-125', 1, '南豐', '{"number":"905675","shop":"\\u5357\\u8c50","phone":"0492223881","address":"\\u6c11\\u65cf\\u8def\\u0036\\u0036\\u865f"}', '905675', '711', 'zh-tw', 1000),
(1406, 125, '9-125', 1, '長崗', '{"number":"137823","shop":"\\u9577\\u5d17","phone":"0492264270","address":"\\u5357\\u5d17\\u4e8c\\u8def\\u0035\\u0038\\u0031\\u865f"}', '137823', '711', 'zh-tw', 1000),
(1407, 125, '9-125', 1, '唯鑫', '{"number":"981956","shop":"\\u552f\\u946b","phone":"0492257141","address":"\\u5357\\u5d17\\u4e09\\u8def\\u0038\\u865f\\u0032\\u6a13"}', '981956', '711', 'zh-tw', 1000),
(1408, 125, '9-125', 1, '樂天', '{"number":"163501","shop":"\\u6a02\\u5929","phone":"0492247448","address":"\\u5357\\u967d\\u8def\\u0034\\u0037\\u0036\\u865f"}', '163501', '711', 'zh-tw', 1000),
(1409, 125, '9-125', 1, '欣鑫', '{"number":"195782","shop":"\\u6b23\\u946b","phone":"0492256948","address":"\\u4ec1\\u548c\\u8def\\u0032\\u0036\\u865f"}', '195782', '711', 'zh-tw', 1000),
(1410, 125, '9-125', 1, '興荷', '{"number":"183929","shop":"\\u8208\\u8377","phone":"0492393853","address":"\\u71df\\u5317\\u91cc\\u5411\\u967d\\u8def\\u0031\\u0030\\u0031\\u865f"}', '183929', '711', 'zh-tw', 1000),
(1411, 125, '9-125', 1, '詠旭', '{"number":"940092","shop":"\\u8a60\\u65ed","phone":"0492207249","address":"\\u5f70\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0033\\u0031\\u002d\\u0031\\u865f"}', '940092', '711', 'zh-tw', 1000),
(1412, 125, '9-125', 1, '豐億', '{"number":"923466","shop":"\\u8c50\\u5104","phone":"0492203756","address":"\\u5f70\\u5357\\u8def\\u4e00\\u6bb5\\u0035\\u0037\\u0033\\u865f"}', '923466', '711', 'zh-tw', 1000),
(1413, 125, '9-125', 1, '中營', '{"number":"913229","shop":"\\u4e2d\\u71df","phone":"0492370508","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0033\\u0030\\u865f"}', '913229', '711', 'zh-tw', 1000),
(1414, 125, '9-125', 1, '旺泉', '{"number":"992185","shop":"\\u65fa\\u6cc9","phone":"0492391405","address":"\\u4e2d\\u8208\\u8def\\u0031\\u0039\\u0038\\u865f"}', '992185', '711', 'zh-tw', 1000),
(1415, 125, '9-125', 1, '龍辰', '{"number":"151645","shop":"\\u9f8d\\u8fb0","phone":"0492339252","address":"\\u4e2d\\u5b78\\u897f\\u8def\\u0036\\u0031\\u865f"}', '151645', '711', 'zh-tw', 1000),
(1416, 125, '9-125', 1, '祖祠', '{"number":"126764","shop":"\\u7956\\u7960","phone":"0492244378","address":"\\u7956\\u7960\\u8def\\u0031\\u0036\\u002d\\u0034\\u865f"}', '126764', '711', 'zh-tw', 1000),
(1417, 126, '9-126', 1, '育溪', '{"number":"192646","shop":"\\u80b2\\u6eaa","phone":"0492910592","address":"\\u5b89\\u4e03\\u8857\\u0038\\u0039\\u002d\\u0031\\u865f"}', '192646', '711', 'zh-tw', 1000),
(1418, 126, '9-126', 1, '埔惠', '{"number":"126292","shop":"\\u57d4\\u60e0","phone":"0492916066","address":"\\u5927\\u57ce\\u91cc\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0035\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '126292', '711', 'zh-tw', 1000),
(1419, 126, '9-126', 1, '暨大二', '{"number":"971362","shop":"\\u66a8\\u5927\\u4e8c","phone":"0492916553","address":"\\u5927\\u5b78\\u8def\\u0031\\u865f\\u0028\\u4eba\\u6587\\u5b78\\u9662\\u0029"}', '971362', '711', 'zh-tw', 1000),
(1420, 126, '9-126', 1, '暨大', '{"number":"902997","shop":"\\u66a8\\u5927","phone":"0492912612","address":"\\u5927\\u5b78\\u8def\\u0035\\u0030\\u0031\\u865f"}', '902997', '711', 'zh-tw', 1000),
(1421, 126, '9-126', 1, '恆吉', '{"number":"114680","shop":"\\u6046\\u5409","phone":"0492984207","address":"\\u5357\\u8208\\u8857\\u0031\\u0037\\u0032\\u865f"}', '114680', '711', 'zh-tw', 1000),
(1422, 126, '9-126', 1, '豐登', '{"number":"977706","shop":"\\u8c50\\u767b","phone":"0492995855","address":"\\u6787\\u6777\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0038\\u0033\\u002d\\u0032\\u0033\\u865f"}', '977706', '711', 'zh-tw', 1000),
(1423, 126, '9-126', 1, '埔德', '{"number":"120261","shop":"\\u57d4\\u5fb7","phone":"0492420729","address":"\\u4ec1\\u611b\\u8def\\u0034\\u0035\\u0030\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '120261', '711', 'zh-tw', 1000),
(1424, 126, '9-126', 1, '勝財興', '{"number":"982306","shop":"\\u52dd\\u8ca1\\u8208","phone":"0492996495","address":"\\u69ae\\u5149\\u8def\\u0031\\u002d\\u0031\\u0031\\u865f"}', '982306', '711', 'zh-tw', 1000),
(1425, 126, '9-126', 1, '龍揚', '{"number":"144212","shop":"\\u9f8d\\u63da","phone":"0492989339","address":"\\u6a39\\u4eba\\u8def\\u0032\\u0032\\u0031\\u4e4b\\u0032\\u865f"}', '144212', '711', 'zh-tw', 1000),
(1426, 126, '9-126', 1, '愛蘭', '{"number":"121091","shop":"\\u611b\\u862d","phone":"0492914901","address":"\\u9435\\u5c71\\u8def\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '121091', '711', 'zh-tw', 1000),
(1427, 126, '9-126', 1, '中銘', '{"number":"993203","shop":"\\u4e2d\\u9298","phone":"0492997200","address":"\\u897f\\u5b89\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0034\\u865f"}', '993203', '711', 'zh-tw', 1000),
(1428, 126, '9-126', 1, '中禪', '{"number":"127011","shop":"\\u4e2d\\u79aa","phone":"0492987834","address":"\\u897f\\u5b89\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '127011', '711', 'zh-tw', 1000),
(1429, 126, '9-126', 1, '埔佑', '{"number":"993052","shop":"\\u57d4\\u4f51","phone":"0492906748","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '993052', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(1430, 126, '9-126', 1, '埔灃', '{"number":"153663","shop":"\\u57d4\\u7043","phone":"0492903876","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0038\\u865f\\u4e2d\\u83ef\\u8def\\u0031\\u0038\\u0034\\u4e4b\\u0032\\u865f"}', '153663', '711', 'zh-tw', 1000),
(1431, 126, '9-126', 1, '埔慶', '{"number":"932367","shop":"\\u57d4\\u6176","phone":"0492997682","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0038\\u865f\\u0031\\u0037\\u0030\\u865f"}', '932367', '711', 'zh-tw', 1000),
(1432, 126, '9-126', 1, '鑫驛', '{"number":"193074","shop":"\\u946b\\u9a5b","phone":"0492910641","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0036\\u865f"}', '193074', '711', 'zh-tw', 1000),
(1433, 126, '9-126', 1, '鑫潭', '{"number":"155289","shop":"\\u946b\\u6f6d","phone":"0492910310","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0039\\u0037\\u4e4b\\u0031\\u002e\\u0039\\u0037\\u4e4b\\u0032\\u865f"}', '155289', '711', 'zh-tw', 1000),
(1434, 126, '9-126', 1, '台一', '{"number":"113274","shop":"\\u53f0\\u4e00","phone":"0492983957","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0039\\u865f"}', '113274', '711', 'zh-tw', 1000),
(1435, 126, '9-126', 1, '中心園', '{"number":"179908","shop":"\\u4e2d\\u5fc3\\u5712","phone":"0492986922","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0034\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '179908', '711', 'zh-tw', 1000),
(1436, 126, '9-126', 1, '中翔', '{"number":"991986","shop":"\\u4e2d\\u7fd4","phone":"0492993759","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0030\\u0034\\u865f"}', '991986', '711', 'zh-tw', 1000),
(1437, 126, '9-126', 1, '東東', '{"number":"901776","shop":"\\u6771\\u6771","phone":"0492421161","address":"\\u5fe0\\u5b5d\\u8def\\u0031\\u0033\\u0038\\u002d\\u0031\\u0034\\u0030\\u865f"}', '901776', '711', 'zh-tw', 1000),
(1438, 127, '9-127', 1, '見晴園', '{"number":"923765","shop":"\\u898b\\u6674\\u5712","phone":"0492803691","address":"\\u5927\\u540c\\u6751\\u5b9a\\u9060\\u65b0\\u6751\\u8def\\u0031\\u0038\\u002d\\u0031\\u865f"}', '923765', '711', 'zh-tw', 1000),
(1439, 127, '9-127', 1, '清境', '{"number":"136370","shop":"\\u6e05\\u5883","phone":"0492802718","address":"\\u5b9a\\u9060\\u65b0\\u6751\\u0032\\u0036\\u4e4b\\u0031\\u865f"}', '136370', '711', 'zh-tw', 1000),
(1440, 127, '9-127', 1, '小瑞士', '{"number":"972804","shop":"\\u5c0f\\u745e\\u58eb","phone":"0492803447","address":"\\u5b9a\\u9060\\u65b0\\u6751\\u0032\\u0038\\u865f"}', '972804', '711', 'zh-tw', 1000),
(1441, 127, '9-127', 1, '恩泉', '{"number":"153652","shop":"\\u6069\\u6cc9","phone":"0492921076","address":"\\u5357\\u8c50\\u6751\\u4e2d\\u6b63\\u8def\\u0038\\u0038\\u9644\\u0031\\u865f"}', '153652', '711', 'zh-tw', 1000),
(1442, 127, '9-127', 1, '城堡', '{"number":"181370","shop":"\\u57ce\\u5821","phone":"0492803817","address":"\\u4ec1\\u548c\\u8def\\u0031\\u0037\\u0031\\u865f"}', '181370', '711', 'zh-tw', 1000),
(1443, 127, '9-127', 1, '富嘉', '{"number":"970510","shop":"\\u5bcc\\u5609","phone":"0492802133","address":"\\u4ec1\\u548c\\u8def\\u0032\\u0032\\u0033\\u002d\\u0031\\u865f"}', '970510', '711', 'zh-tw', 1000),
(1444, 127, '9-127', 1, '霧社', '{"number":"992956","shop":"\\u9727\\u793e","phone":"0492802309","address":"\\u4ec1\\u548c\\u8def\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '992956', '711', 'zh-tw', 1000),
(1445, 128, '9-128', 1, '瑞峰', '{"number":"941741","shop":"\\u745e\\u5cf0","phone":"0492777035","address":"\\u5317\\u57d4\\u6751\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0030\\u865f"}', '941741', '711', 'zh-tw', 1000),
(1446, 128, '9-128', 1, '新車埕', '{"number":"155588","shop":"\\u65b0\\u8eca\\u57d5","phone":"0492772732","address":"\\u8eca\\u57d5\\u6751\\u6c11\\u6b0a\\u5df7\\u0031\\u0031\\u0030\\u4e4b\\u0031\\u865f"}', '155588', '711', 'zh-tw', 1000),
(1447, 128, '9-128', 1, '龍寶', '{"number":"882079","shop":"\\u9f8d\\u5bf6","phone":"0492778956","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0037\\u0030\\u865f"}', '882079', '711', 'zh-tw', 1000),
(1448, 128, '9-128', 1, '六合', '{"number":"113687","shop":"\\u516d\\u5408","phone":"0492775480","address":"\\u6c11\\u751f\\u8def\\u0031\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '113687', '711', 'zh-tw', 1000),
(1449, 128, '9-128', 1, '水里', '{"number":"139070","shop":"\\u6c34\\u91cc","phone":"0492777616","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0036\\u0033\\u865f"}', '139070', '711', 'zh-tw', 1000),
(1450, 129, '9-129', 1, '信義鄉', '{"number":"138011","shop":"\\u4fe1\\u7fa9\\u9109","phone":"0492791077","address":"\\u660e\\u5fb7\\u6751\\u7389\\u5c71\\u8def\\u0038\\u0032\\u002d\\u0032\\u865f"}', '138011', '711', 'zh-tw', 1000),
(1451, 130, '9-130', 1, '伊達邵', '{"number":"969037","shop":"\\u4f0a\\u9054\\u90b5","phone":"0492850593","address":"\\u65e5\\u6708\\u6751\\u7fa9\\u52c7\\u8857\\u0038\\u0039\\u865f"}', '969037', '711', 'zh-tw', 1000),
(1452, 130, '9-130', 1, '日月潭', '{"number":"131825","shop":"\\u65e5\\u6708\\u6f6d","phone":"0492856426","address":"\\u6c34\\u793e\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0031\\u0038\\u865f"}', '131825', '711', 'zh-tw', 1000),
(1453, 130, '9-130', 1, '佳軒', '{"number":"902562","shop":"\\u4f73\\u8ed2","phone":"0492899468","address":"\\u9b5a\\u6c60\\u8857\\u0033\\u0035\\u0030\\u865f"}', '902562', '711', 'zh-tw', 1000),
(1454, 130, '9-130', 1, '鑫魚池', '{"number":"188348","shop":"\\u946b\\u9b5a\\u6c60","phone":"0492899633","address":"\\u9b5a\\u6c60\\u8857\\u0037\\u0039\\u0039\\u865f"}', '188348', '711', 'zh-tw', 1000),
(1455, 130, '9-130', 1, '水社', '{"number":"122441","shop":"\\u6c34\\u793e","phone":"0492856673","address":"\\u4e2d\\u8208\\u8def\\u0033\\u0032\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '122441', '711', 'zh-tw', 1000),
(1456, 131, '9-131', 1, '狀元', '{"number":"124540","shop":"\\u72c0\\u5143","phone":"0492659560","address":"\\u5927\\u660e\\u8def\\u0035\\u0030\\u0030\\u865f"}', '124540', '711', 'zh-tw', 1000),
(1457, 131, '9-131', 1, '和育', '{"number":"922290","shop":"\\u548c\\u80b2","phone":"0492648909","address":"\\u5927\\u667a\\u8def\\u0035\\u0037\\u865f"}', '922290', '711', 'zh-tw', 1000),
(1458, 131, '9-131', 1, '竹秀', '{"number":"110079","shop":"\\u7af9\\u79c0","phone":"0492625248","address":"\\u96c6\\u5c71\\u8def\\u4e8c\\u6bb5\\u0035\\u0038\\u865f"}', '110079', '711', 'zh-tw', 1000),
(1459, 131, '9-131', 1, '前山', '{"number":"111005","shop":"\\u524d\\u5c71","phone":"0492651842","address":"\\u96c6\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0038\\u0039\\u865f"}', '111005', '711', 'zh-tw', 1000),
(1460, 131, '9-131', 1, '鈺興', '{"number":"193971","shop":"\\u923a\\u8208","phone":"0492653934","address":"\\u96c6\\u5c71\\u8def\\u4e09\\u6bb5\\u0039\\u0031\\u0032\\u002e\\u0039\\u0031\\u0034\\u865f"}', '193971', '711', 'zh-tw', 1000),
(1461, 131, '9-131', 1, '社寮', '{"number":"931168","shop":"\\u793e\\u5bee","phone":"0492624730","address":"\\u96c6\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0035\\u0031\\u865f"}', '931168', '711', 'zh-tw', 1000),
(1462, 131, '9-131', 1, '鹿山', '{"number":"187518","shop":"\\u9e7f\\u5c71","phone":"0492651428","address":"\\u5ef6\\u7965\\u91cc\\u96c6\\u5c71\\u8def\\u4e09\\u6bb5\\u0037\\u0033\\u865f"}', '187518', '711', 'zh-tw', 1000),
(1463, 131, '9-131', 1, '竹寶', '{"number":"132161","shop":"\\u7af9\\u5bf6","phone":"0492659184","address":"\\u5ef6\\u6b63\\u91cc\\u5ef6\\u6b63\\u8def\\u0034\\u0035\\u4e4b\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '132161', '711', 'zh-tw', 1000),
(1464, 131, '9-131', 1, '竹山大智', '{"number":"950561","shop":"\\u7af9\\u5c71\\u5927\\u667a","phone":"0492659214","address":"\\u4e2d\\u5c71\\u91cc\\u81ea\\u5f37\\u8def\\u0031\\u0037\\u0036\\u865f"}', '950561', '711', 'zh-tw', 1000),
(1465, 132, '10-132', 1, '白沙', '{"number":"900795","shop":"\\u767d\\u6c99","phone":"069932930","address":"\\u8d64\\u5d01\\u6751\\u0032\\u0030\\u9130\\u5927\\u8d64\\u5d01\\u0033\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '900795', '711', 'zh-tw', 1000),
(1466, 132, '10-132', 1, '講美', '{"number":"195081","shop":"\\u8b1b\\u7f8e","phone":"069931261","address":"\\u8b1b\\u7f8e\\u6751\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '195081', '711', 'zh-tw', 1000),
(1467, 133, '10-133', 1, '永興順', '{"number":"911083","shop":"\\u6c38\\u8208\\u9806","phone":"069228176","address":"\\u9698\\u9580\\u0033\\u0034\\u4e4b\\u0032\\u865f"}', '911083', '711', 'zh-tw', 1000),
(1468, 133, '10-133', 1, '馬航', '{"number":"181750","shop":"\\u99ac\\u822a","phone":"069228847","address":"\\u9698\\u9580\\u6751\\u0031\\u0032\\u0036\\u4e4b\\u0035\\u865f\\u0031\\u6a13\\u0028\\u99ac\\u516c\\u822a\\u7a7a\\u7ad9\\u4e00\\u6a13\\u822a\\u5ec8\\u0029"}', '181750', '711', 'zh-tw', 1000),
(1469, 133, '10-133', 1, '湖西', '{"number":"130095","shop":"\\u6e56\\u897f","phone":"069923256","address":"\\u6e56\\u897f\\u6751\\u6e56\\u897f\\u0031\\u0034\\u0030\\u4e4b\\u0031\\u865f"}', '130095', '711', 'zh-tw', 1000),
(1470, 134, '10-134', 1, '澎技', '{"number":"941202","shop":"\\u6f8e\\u6280","phone":"069264367","address":"\\u671d\\u967d\\u91cc\\u4e09\\u591a\\u8def\\u0034\\u0035\\u865f"}', '941202', '711', 'zh-tw', 1000),
(1471, 134, '10-134', 1, '東衛', '{"number":"113883","shop":"\\u6771\\u885b","phone":"069217554","address":"\\u6771\\u885b\\u91cc\\u0031\\u0039\\u9130\\u0039\\u4e4b\\u0032\\u865f"}', '113883', '711', 'zh-tw', 1000),
(1472, 134, '10-134', 1, '澎文', '{"number":"153892","shop":"\\u6f8e\\u6587","phone":"069211440","address":"\\u6771\\u6587\\u91cc\\u6587\\u5c71\\u8def\\u0032\\u0038\\u0032\\u865f"}', '153892', '711', 'zh-tw', 1000),
(1473, 134, '10-134', 1, '百麗', '{"number":"981750","shop":"\\u767e\\u9e97","phone":"069218974","address":"\\u6771\\u6587\\u91cc\\u65b0\\u5e97\\u8def\\u0034\\u0036\\u0033\\u865f\\u0031\\u865f"}', '981750', '711', 'zh-tw', 1000),
(1474, 134, '10-134', 1, '馬公', '{"number":"987806","shop":"\\u99ac\\u516c","phone":"069267402","address":"\\u5149\\u5fa9\\u8def\\u0035\\u0039\\u865f"}', '987806', '711', 'zh-tw', 1000),
(1475, 134, '10-134', 1, '西衛', '{"number":"900762","shop":"\\u897f\\u885b","phone":"069276457","address":"\\u5149\\u69ae\\u91cc\\u5149\\u5fa9\\u8def\\u0032\\u0039\\u0037\\u865f"}', '900762', '711', 'zh-tw', 1000),
(1476, 134, '10-134', 1, '文光', '{"number":"922201","shop":"\\u6587\\u5149","phone":"069276453","address":"\\u5149\\u69ae\\u91cc\\u4e09\\u591a\\u8def\\u0033\\u0033\\u0038\\u865f"}', '922201', '711', 'zh-tw', 1000),
(1477, 134, '10-134', 1, '井垵', '{"number":"941833","shop":"\\u4e95\\u57b5","phone":"069952551","address":"\\u4e95\\u57b5\\u91cc\\u0031\\u002d\\u0031\\u0038\\u865f"}', '941833', '711', 'zh-tw', 1000),
(1478, 134, '10-134', 1, '石泉', '{"number":"909574","shop":"\\u77f3\\u6cc9","phone":"069219740","address":"\\u77f3\\u6cc9\\u91cc\\u0031\\u002d\\u0033\\u0030\\u0030\\u865f"}', '909574', '711', 'zh-tw', 1000),
(1479, 134, '10-134', 1, '鎖港', '{"number":"151391","shop":"\\u9396\\u6e2f","phone":"069953089","address":"\\u9396\\u6e2f\\u91cc\\u9396\\u7ba1\\u6e2f\\u6bb5\\u0031\\u0034\\u0033\\u0039\\u865f"}', '151391', '711', 'zh-tw', 1000),
(1480, 134, '10-134', 1, '文澳', '{"number":"120467","shop":"\\u6587\\u6fb3","phone":"069217471","address":"\\u6587\\u5c71\\u8def\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '120467', '711', 'zh-tw', 1000),
(1481, 134, '10-134', 1, '澎衛', '{"number":"142869","shop":"\\u6f8e\\u885b","phone":"069264241","address":"\\u897f\\u885b\\u91cc\\u5149\\u5fa9\\u8def\\u0034\\u0030\\u0038\\u865f"}', '142869', '711', 'zh-tw', 1000),
(1482, 134, '10-134', 1, '北岸', '{"number":"184140","shop":"\\u5317\\u5cb8","phone":"069219345","address":"\\u897f\\u6587\\u91cc\\u65b0\\u5e97\\u8def\\u0033\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '184140', '711', 'zh-tw', 1000),
(1483, 134, '10-134', 1, '澎興', '{"number":"166740","shop":"\\u6f8e\\u8208","phone":"069218960","address":"\\u8208\\u4ec1\\u91cc\\u96d9\\u982d\\u639b\\u0031\\u4e4b\\u0032\\u865f"}', '166740', '711', 'zh-tw', 1000),
(1484, 134, '10-134', 1, '揚光', '{"number":"113506","shop":"\\u63da\\u5149","phone":"069267812","address":"\\u967d\\u660e\\u91cc\\u4e2d\\u83ef\\u8def\\u0031\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '113506', '711', 'zh-tw', 1000),
(1485, 134, '10-134', 1, '澎灣', '{"number":"880590","shop":"\\u6f8e\\u7063","phone":"069275472","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u0036\\u865f"}', '880590', '711', 'zh-tw', 1000),
(1486, 134, '10-134', 1, '天人菊', '{"number":"892571","shop":"\\u5929\\u4eba\\u83ca","phone":"069275471","address":"\\u4e2d\\u592e\\u91cc\\u4ec1\\u611b\\u8def\\u0036\\u0039\\u865f"}', '892571', '711', 'zh-tw', 1000),
(1487, 134, '10-134', 1, '新台澎', '{"number":"930545","shop":"\\u65b0\\u53f0\\u6f8e","phone":"069263856","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0035\\u865f"}', '930545', '711', 'zh-tw', 1000),
(1488, 134, '10-134', 1, '新澎湖', '{"number":"901891","shop":"\\u65b0\\u6f8e\\u6e56","phone":"069260715","address":"\\u91cd\\u6176\\u91cc\\u6c11\\u6b0a\\u8def\\u0039\\u0038\\u865f"}', '901891', '711', 'zh-tw', 1000),
(1489, 135, '10-135', 1, '七美', '{"number":"153869","shop":"\\u4e03\\u7f8e","phone":"069971382","address":"\\u5357\\u6e2f\\u6751\\u5357\\u6eec\\u0035\\u0030\\u865f\\u0035\\u0031\\u865f"}', '153869', '711', 'zh-tw', 1000),
(1490, 136, '10-136', 1, '跨海', '{"number":"188201","shop":"\\u8de8\\u6d77","phone":"069983218","address":"\\u5408\\u754c\\u6751\\u0033\\u002d\\u0031\\u865f"}', '188201', '711', 'zh-tw', 1000),
(1491, 136, '10-136', 1, '漁翁', '{"number":"951106","shop":"\\u6f01\\u7fc1","phone":"069981838","address":"\\u5916\\u57b5\\u6751\\u0031\\u0031\\u0033\\u865f"}', '951106', '711', 'zh-tw', 1000),
(1492, 137, '11-137', 1, '繁華', '{"number":"179610","shop":"\\u7e41\\u83ef","phone":"087625253","address":"\\u7e41\\u83ef\\u6751\\u6c34\\u6e90\\u8def\\u0037\\u0031\\u002e\\u0037\\u0031\\u002d\\u0031\\u865f"}', '179610', '711', 'zh-tw', 1000),
(1493, 137, '11-137', 1, '崙上', '{"number":"174811","shop":"\\u5d19\\u4e0a","phone":"087629817","address":"\\u5d19\\u4e0a\\u6751\\u4e2d\\u8208\\u8def\\u0033\\u0037\\u0032\\u002d\\u0032\\u865f"}', '174811', '711', 'zh-tw', 1000),
(1494, 137, '11-137', 1, '瑞屏', '{"number":"189558","shop":"\\u745e\\u5c4f","phone":"087216637","address":"\\u9999\\u694a\\u6751\\u745e\\u5149\\u8def\\u4e00\\u6bb5\\u0037\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '189558', '711', 'zh-tw', 1000),
(1495, 137, '11-137', 1, '長治', '{"number":"111957","shop":"\\u9577\\u6cbb","phone":"087377784","address":"\\u65b0\\u6f6d\\u6751\\u9577\\u8208\\u8def\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '111957', '711', 'zh-tw', 1000),
(1496, 137, '11-137', 1, '新潭', '{"number":"126395","shop":"\\u65b0\\u6f6d","phone":"087368395","address":"\\u65b0\\u6f6d\\u6751\\u9577\\u8208\\u8def\\u0033\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '126395', '711', 'zh-tw', 1000),
(1497, 138, '11-138', 1, '彭城', '{"number":"132600","shop":"\\u5f6d\\u57ce","phone":"087893436","address":"\\u6f6e\\u5dde\\u8def\\u0035\\u0031\\u0032\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '132600', '711', 'zh-tw', 1000),
(1498, 138, '11-138', 1, '清順', '{"number":"198998","shop":"\\u6e05\\u9806","phone":"087894577","address":"\\u5149\\u83ef\\u91cc\\u5149\\u83ef\\u8def\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '198998', '711', 'zh-tw', 1000),
(1499, 138, '11-138', 1, '英順', '{"number":"891279","shop":"\\u82f1\\u9806","phone":"087803628","address":"\\u4ecb\\u58fd\\u8def\\u0031\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '891279', '711', 'zh-tw', 1000),
(1500, 138, '11-138', 1, '友井', '{"number":"950848","shop":"\\u53cb\\u4e95","phone":"087890274","address":"\\u4e09\\u5171\\u91cc\\u5317\\u9580\\u8def\\u0032\\u865f"}', '950848', '711', 'zh-tw', 1000),
(1501, 138, '11-138', 1, '潮昇', '{"number":"991517","shop":"\\u6f6e\\u6607","phone":"087893323","address":"\\u4e09\\u548c\\u91cc\\u5ef6\\u5e73\\u8def\\u0031\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '991517', '711', 'zh-tw', 1000),
(1502, 138, '11-138', 1, '山和', '{"number":"882208","shop":"\\u5c71\\u548c","phone":"087888874","address":"\\u4e09\\u548c\\u91cc\\u5ef6\\u5e73\\u8def\\u0038\\u0039\\u865f"}', '882208', '711', 'zh-tw', 1000),
(1503, 138, '11-138', 1, '潮維', '{"number":"174442","shop":"\\u6f6e\\u7dad","phone":"087862741","address":"\\u56db\\u7dad\\u8def\\u0031\\u0036\\u0038\\u865f\\u4e4b\\u0034"}', '174442', '711', 'zh-tw', 1000),
(1504, 138, '11-138', 1, '新潮', '{"number":"990868","shop":"\\u65b0\\u6f6e","phone":"087893791","address":"\\u65b0\\u69ae\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0032\\u0031\\u865f\\u0031\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '990868', '711', 'zh-tw', 1000),
(1505, 138, '11-138', 1, '鵬權', '{"number":"186777","shop":"\\u9d6c\\u6b0a","phone":"087894063","address":"\\u6c38\\u6625\\u91cc\\u5149\\u6625\\u8def\\u0031\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '186777', '711', 'zh-tw', 1000),
(1506, 138, '11-138', 1, '隆德', '{"number":"119331","shop":"\\u9686\\u5fb7","phone":"087894253","address":"\\u6c38\\u6625\\u91cc\\u8208\\u9686\\u8def\\u0031\\u0035\\u0037\\u002d\\u0032\\u865f"}', '119331', '711', 'zh-tw', 1000),
(1507, 138, '11-138', 1, '合生', '{"number":"188647","shop":"\\u5408\\u751f","phone":"087895261","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u865f"}', '188647', '711', 'zh-tw', 1000),
(1508, 139, '11-139', 1, '車城', '{"number":"934466","shop":"\\u8eca\\u57ce","phone":"088824246","address":"\\u798f\\u5b89\\u6751\\u4e2d\\u5c71\\u8def\\u0037\\u0036\\u865f"}', '934466', '711', 'zh-tw', 1000),
(1509, 139, '11-139', 1, '昱昇', '{"number":"950859","shop":"\\u6631\\u6607","phone":"088822455","address":"\\u6eab\\u6cc9\\u6751\\u6eab\\u6cc9\\u8def\\u0031\\u0032\\u0035\\u865f"}', '950859', '711', 'zh-tw', 1000),
(1510, 139, '11-139', 1, '保鑫', '{"number":"992277","shop":"\\u4fdd\\u946b","phone":"088825135","address":"\\u65b0\\u8857\\u6751\\u4fdd\\u65b0\\u8def\\u0037\\u0031\\u865f"}', '992277', '711', 'zh-tw', 1000),
(1511, 140, '11-140', 1, '家家福', '{"number":"883278","shop":"\\u5bb6\\u5bb6\\u798f","phone":"088792220","address":"\\u4e03\\u4f73\\u6751\\u81ea\\u5f37\\u4e00\\u8def\\u0031\\u0034\\u865f"}', '883278', '711', 'zh-tw', 1000),
(1512, 141, '11-141', 1, '大鵬灣', '{"number":"992060","shop":"\\u5927\\u9d6c\\u7063","phone":"088324881","address":"\\u8239\\u982d\\u91cc\\u8239\\u982d\\u8def\\u0032\\u0036\\u002d\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '992060', '711', 'zh-tw', 1000),
(1513, 141, '11-141', 1, '東隆', '{"number":"186504","shop":"\\u6771\\u9686","phone":"088353434","address":"\\u9802\\u4e2d\\u91cc\\u5ef6\\u5e73\\u8def\\u0031\\u0030\\u0037\\u865f"}', '186504', '711', 'zh-tw', 1000),
(1514, 141, '11-141', 1, '億財富', '{"number":"951704","shop":"\\u5104\\u8ca1\\u5bcc","phone":"088336304","address":"\\u65b0\\u52dd\\u91cc\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '951704', '711', 'zh-tw', 1000),
(1515, 141, '11-141', 1, '長春', '{"number":"142180","shop":"\\u9577\\u6625","phone":"088325420","address":"\\u8208\\u6771\\u91cc\\u9577\\u6625\\u4e00\\u8def\\u0039\\u0035\\u865f"}', '142180', '711', 'zh-tw', 1000),
(1516, 141, '11-141', 1, '鼎東', '{"number":"131412","shop":"\\u9f0e\\u6771","phone":"088325165","address":"\\u8208\\u6771\\u91cc\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '131412', '711', 'zh-tw', 1000),
(1517, 141, '11-141', 1, '安泰', '{"number":"137605","shop":"\\u5b89\\u6cf0","phone":"088339623","address":"\\u8208\\u6771\\u91cc\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '137605', '711', 'zh-tw', 1000),
(1518, 141, '11-141', 1, '新輔英', '{"number":"913078","shop":"\\u65b0\\u8f14\\u82f1","phone":"088336109","address":"\\u8208\\u53f0\\u91cc\\u4e2d\\u5c71\\u8def\\u0033\\u865f"}', '913078', '711', 'zh-tw', 1000),
(1519, 141, '11-141', 1, '鎮海', '{"number":"116789","shop":"\\u93ae\\u6d77","phone":"088326154","address":"\\u93ae\\u6d77\\u91cc\\u93ae\\u6d77\\u8def\\u0031\\u002d\\u0031\\u0030\\u0030\\u865f"}', '116789', '711', 'zh-tw', 1000),
(1520, 142, '11-142', 1, '僑德', '{"number":"110253","shop":"\\u50d1\\u5fb7","phone":"088782891","address":"\\u5b89\\u6a02\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0033\\u865f\\u0031\\u0034\\u0035\\u865f\\u0031\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '110253', '711', 'zh-tw', 1000),
(1521, 142, '11-142', 1, '新枋寮', '{"number":"971524","shop":"\\u65b0\\u678b\\u5bee","phone":"088782887","address":"\\u678b\\u5bee\\u6751\\u4e2d\\u8208\\u8def\\u0037\\u865f\\u0031\\u6a13"}', '971524', '711', 'zh-tw', 1000),
(1522, 142, '11-142', 1, '維軒', '{"number":"174291","shop":"\\u7dad\\u8ed2","phone":"088715022","address":"\\u4eba\\u548c\\u6751\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0033\\u865f"}', '174291', '711', 'zh-tw', 1000),
(1523, 142, '11-142', 1, '人和', '{"number":"120788","shop":"\\u4eba\\u548c","phone":"088717610","address":"\\u4eba\\u548c\\u6751\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '120788', '711', 'zh-tw', 1000),
(1524, 143, '11-143', 1, '海豚灣', '{"number":"167743","shop":"\\u6d77\\u8c5a\\u7063","phone":"088761758","address":"\\u574a\\u5c71\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0036\\u0031\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '167743', '711', 'zh-tw', 1000),
(1525, 143, '11-143', 1, '南北棧', '{"number":"966614","shop":"\\u5357\\u5317\\u68e7","phone":"088761583","address":"\\u678b\\u5c71\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0033\\u0038\\u865f"}', '966614', '711', 'zh-tw', 1000),
(1526, 143, '11-143', 1, '楓港', '{"number":"183561","shop":"\\u6953\\u6e2f","phone":"088771233","address":"\\u6953\\u6e2f\\u6751\\u820a\\u5e84\\u8def\\u0032\\u0031\\u002d\\u0033\\u002e\\u0032\\u0031\\u002d\\u0034\\u002e\\u0032\\u0031\\u002d\\u0035\\u002e\\u0032\\u0031\\u002d\\u0036\\u865f\\u0031\\u6a13"}', '183561', '711', 'zh-tw', 1000),
(1527, 143, '11-143', 1, '新楓港', '{"number":"115915","shop":"\\u65b0\\u6953\\u6e2f","phone":"088771484","address":"\\u6953\\u6e2f\\u6751\\u820a\\u5e84\\u8def\\u0035\\u0031\\u4e4b\\u0032\\u865f\\u0033\\u865f\\u0034\\u865f"}', '115915', '711', 'zh-tw', 1000),
(1528, 143, '11-143', 1, '加祿堂', '{"number":"188843","shop":"\\u52a0\\u797f\\u5802","phone":"088720963","address":"\\u52a0\\u797f\\u6751\\u52a0\\u797f\\u8def\\u0031\\u0035\\u0035\\u865f"}', '188843', '711', 'zh-tw', 1000),
(1529, 144, '11-144', 1, '招英', '{"number":"940807","shop":"\\u62db\\u82f1","phone":"087964288","address":"\\u5357\\u8208\\u8def\\u0037\\u0034\\u4e4b\\u0033\\u865f"}', '940807', '711', 'zh-tw', 1000),
(1530, 144, '11-144', 1, '鑫泰山', '{"number":"923857","shop":"\\u946b\\u6cf0\\u5c71","phone":"087958900","address":"\\u6cf0\\u5c71\\u6751\\u7522\\u696d\\u8def\\u0037\\u0033\\u865f"}', '923857', '711', 'zh-tw', 1000),
(1531, 144, '11-144', 1, '高樹', '{"number":"934684","shop":"\\u9ad8\\u6a39","phone":"087963709","address":"\\u8208\\u4e2d\\u8def\\u0031\\u0039\\u0033\\u865f"}', '934684', '711', 'zh-tw', 1000),
(1532, 145, '11-145', 1, '日日春', '{"number":"123271","shop":"\\u65e5\\u65e5\\u6625","phone":"088897015","address":"\\u57ce\\u5317\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0039\\u0033\\u865f"}', '123271', '711', 'zh-tw', 1000),
(1533, 145, '11-145', 1, '家的', '{"number":"110275","shop":"\\u5bb6\\u7684","phone":"088881053","address":"\\u57ce\\u5357\\u91cc\\u4e2d\\u6b63\\u8def\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '110275', '711', 'zh-tw', 1000),
(1534, 145, '11-145', 1, '船帆石', '{"number":"141257","shop":"\\u8239\\u5e06\\u77f3","phone":"088851490","address":"\\u8239\\u5e06\\u8def\\u0037\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '141257', '711', 'zh-tw', 1000),
(1535, 145, '11-145', 1, '白沙灣', '{"number":"179698","shop":"\\u767d\\u6c99\\u7063","phone":"088867528","address":"\\u5927\\u5149\\u91cc\\u7802\\u5c3e\\u8def\\u0033\\u0038\\u4e4b\\u0036\\u865f\\u0031\\u6a13"}', '179698', '711', 'zh-tw', 1000),
(1536, 145, '11-145', 1, '鵝鑾鼻', '{"number":"184173","shop":"\\u9d5d\\u947e\\u9f3b","phone":"088851632","address":"\\u9d5d\\u947e\\u91cc\\u9d5d\\u947e\\u8def\\u0032\\u0034\\u0035\\u002e\\u0032\\u0034\\u0037\\u002e\\u0032\\u0034\\u0039\\u002e\\u0032\\u0035\\u0037\\u865f"}', '184173', '711', 'zh-tw', 1000),
(1537, 145, '11-145', 1, '吉春', '{"number":"910677","shop":"\\u5409\\u6625","phone":"088898264","address":"\\u6046\\u5357\\u8def\\u0031\\u5df7\\u0036\\u4e4b\\u0031\\u865f"}', '910677', '711', 'zh-tw', 1000),
(1538, 145, '11-145', 1, '屏鵝', '{"number":"199234","shop":"\\u5c4f\\u9d5d","phone":"088881194","address":"\\u6046\\u5357\\u8def\\u0036\\u002d\\u0036\\u865f"}', '199234', '711', 'zh-tw', 1000),
(1539, 145, '11-145', 1, '雅客', '{"number":"128678","shop":"\\u96c5\\u5ba2","phone":"088861871","address":"\\u58be\\u4e01\\u91cc\\u58be\\u4e01\\u8def\\u0031\\u0036\\u0036\\u865f"}', '128678', '711', 'zh-tw', 1000),
(1540, 145, '11-145', 1, '大街', '{"number":"195472","shop":"\\u5927\\u8857","phone":"088862383","address":"\\u58be\\u4e01\\u91cc\\u58be\\u4e01\\u8def\\u0032\\u0032\\u0035\\u002e\\u0032\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '195472', '711', 'zh-tw', 1000),
(1541, 145, '11-145', 1, '咚咚', '{"number":"119641","shop":"\\u549a\\u549a","phone":"088862435","address":"\\u58be\\u4e01\\u91cc\\u58be\\u4e01\\u8def\\u0033\\u0033\\u0033\\u865f"}', '119641', '711', 'zh-tw', 1000),
(1542, 145, '11-145', 1, '墾丁', '{"number":"181266","shop":"\\u58be\\u4e01","phone":"088861565","address":"\\u58be\\u4e01\\u91cc\\u58be\\u4e01\\u8def\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '181266', '711', 'zh-tw', 1000),
(1543, 145, '11-145', 1, '後壁湖', '{"number":"900186","shop":"\\u5f8c\\u58c1\\u6e56","phone":"088895686","address":"\\u5357\\u7063\\u91cc\\u5357\\u5149\\u8def\\u0032\\u865f"}', '900186', '711', 'zh-tw', 1000),
(1544, 145, '11-145', 1, '南彎', '{"number":"882219","shop":"\\u5357\\u5f4e","phone":"088891571","address":"\\u5357\\u7063\\u91cc\\u5357\\u7063\\u8def\\u0031\\u0032\\u0032\\u865f"}', '882219', '711', 'zh-tw', 1000),
(1545, 145, '11-145', 1, '恆北', '{"number":"166625","shop":"\\u6046\\u5317","phone":"088883342","address":"\\u7db2\\u7d17\\u91cc\\u7701\\u5317\\u8def\\u0033\\u0037\\u0034\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '166625', '711', 'zh-tw', 1000),
(1546, 145, '11-145', 1, '恆春', '{"number":"114130","shop":"\\u6046\\u6625","phone":"088883255","address":"\\u7db2\\u7d17\\u91cc\\u7701\\u5317\\u8def\\u0034\\u0035\\u865f\\u0034\\u0037\\u865f\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '114130', '711', 'zh-tw', 1000),
(1547, 146, '11-146', 1, '欣昌隆', '{"number":"181978","shop":"\\u6b23\\u660c\\u9686","phone":"088667951","address":"\\u660c\\u9686\\u6751\\u5927\\u8c50\\u8def\\u0036\\u0038\\u0030\\u865f"}', '181978', '711', 'zh-tw', 1000),
(1548, 146, '11-146', 1, '佳冬', '{"number":"188256","shop":"\\u4f73\\u51ac","phone":"088664904","address":"\\u8cf4\\u5bb6\\u6751\\u4f73\\u548c\\u8def\\u0031\\u865f"}', '188256', '711', 'zh-tw', 1000),
(1549, 146, '11-146', 1, '玉光', '{"number":"920401","shop":"\\u7389\\u5149","phone":"088670860","address":"\\u7389\\u5149\\u6751\\u4e2d\\u5c71\\u8def\\u0036\\u0039\\u865f"}', '920401', '711', 'zh-tw', 1000),
(1550, 147, '11-147', 1, '三多利', '{"number":"122810","shop":"\\u4e09\\u591a\\u5229","phone":"087750032","address":"\\u5927\\u5775\\u6751\\u4e5d\\u5982\\u8def\\u4e09\\u6bb5\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '122810', '711', 'zh-tw', 1000),
(1551, 147, '11-147', 1, '東寧', '{"number":"971351","shop":"\\u6771\\u5be7","phone":"087396236","address":"\\u6771\\u5be7\\u6751\\u6771\\u5be7\\u8def\\u0032\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '971351', '711', 'zh-tw', 1000),
(1552, 147, '11-147', 1, '守福', '{"number":"180311","shop":"\\u5b88\\u798f","phone":"087755192","address":"\\u4e5d\\u5982\\u8def\\u4e09\\u6bb5\\u0034\\u0035\\u0030\\u865f"}', '180311', '711', 'zh-tw', 1000),
(1553, 147, '11-147', 1, '多多利', '{"number":"183077","shop":"\\u591a\\u591a\\u5229","phone":"087758429","address":"\\u4e5d\\u5982\\u8def\\u4e09\\u6bb5\\u0038\\u0035\\u865f"}', '183077', '711', 'zh-tw', 1000),
(1554, 148, '11-148', 1, '崁鼎', '{"number":"195276","shop":"\\u5d01\\u9f0e","phone":"088630502","address":"\\u5d01\\u9802\\u6751\\u4e2d\\u6b63\\u8def\\u0031\\u0033\\u0035\\u002e\\u0031\\u0033\\u0037\\u002e\\u0031\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '195276', '711', 'zh-tw', 1000),
(1555, 149, '11-149', 1, '里農', '{"number":"121183","shop":"\\u91cc\\u8fb2","phone":"087754226","address":"\\u5927\\u5e73\\u6751\\u4e2d\\u5c71\\u8def\\u0033\\u865f"}', '121183', '711', 'zh-tw', 1000),
(1556, 149, '11-149', 1, '里中', '{"number":"942777","shop":"\\u91cc\\u4e2d","phone":"087734453","address":"\\u4e09\\u90e8\\u6751\\u4e09\\u548c\\u8def\\u0031\\u0031\\u0039\\u002d\\u0031\\u865f"}', '942777', '711', 'zh-tw', 1000),
(1557, 149, '11-149', 1, '里宬', '{"number":"188832","shop":"\\u91cc\\u5bac","phone":"087750324","address":"\\u9435\\u5e97\\u6751\\u9435\\u5e97\\u8def\\u0031\\u0037\\u002d\\u0031\\u865f"}', '188832', '711', 'zh-tw', 1000),
(1558, 149, '11-149', 1, '里港', '{"number":"880349","shop":"\\u91cc\\u6e2f","phone":"087759128","address":"\\u6c38\\u6625\\u6751\\u4e2d\\u5c71\\u8def\\u0034\\u0036\\u865f"}', '880349', '711', 'zh-tw', 1000),
(1559, 150, '11-150', 1, '林邊', '{"number":"170288","shop":"\\u6797\\u908a","phone":"088758079","address":"\\u4ec1\\u548c\\u91cc\\u4e2d\\u5c71\\u8def\\u0032\\u0037\\u0035\\u865f\\u0032\\u0037\\u0037\\u865f"}', '170288', '711', 'zh-tw', 1000),
(1560, 150, '11-150', 1, '林興', '{"number":"928760","shop":"\\u6797\\u8208","phone":"088751644","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u0031\\u0032\\u865f"}', '928760', '711', 'zh-tw', 1000),
(1561, 151, '11-151', 1, '信億', '{"number":"135676","shop":"\\u4fe1\\u5104","phone":"087214406","address":"\\u9e9f\\u8e44\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0036\\u002d\\u0031\\u865f\\u0031\\u0036\\u0036\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '135676', '711', 'zh-tw', 1000),
(1562, 151, '11-151', 1, '麟洛', '{"number":"965552","shop":"\\u9e9f\\u6d1b","phone":"087216745","address":"\\u9e9f\\u8dbe\\u6751\\u4e2d\\u5c71\\u8def\\u0035\\u0031\\u0039\\u002d\\u0035\\u865f"}', '965552', '711', 'zh-tw', 1000),
(1563, 152, '11-152', 1, '小琉球', '{"number":"892113","shop":"\\u5c0f\\u7409\\u7403","phone":"088614309","address":"\\u672c\\u798f\\u6751\\u6c11\\u751f\\u8def\\u0036\\u0031\\u865f"}', '892113', '711', 'zh-tw', 1000),
(1564, 152, '11-152', 1, '花瓶岩', '{"number":"182786","shop":"\\u82b1\\u74f6\\u5ca9","phone":"088612932","address":"\\u672c\\u798f\\u6751\\u4e2d\\u5c71\\u8def\\u0035\\u0031\\u002d\\u0035\\u865f\\u0031\\u6a13"}', '182786', '711', 'zh-tw', 1000),
(1565, 152, '11-152', 1, '白燈塔', '{"number":"122382","shop":"\\u767d\\u71c8\\u5854","phone":"088612496","address":"\\u4e09\\u6c11\\u5340\\u5927\\u798f\\u6751\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0033\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '122382', '711', 'zh-tw', 1000),
(1566, 153, '11-153', 1, '滿州', '{"number":"112787","shop":"\\u6eff\\u5dde","phone":"088802431","address":"\\u6eff\\u5dde\\u6751\\u4e2d\\u5c71\\u8def\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '112787', '711', 'zh-tw', 1000),
(1567, 154, '11-154', 1, '壽元', '{"number":"992026","shop":"\\u58fd\\u5143","phone":"088645237","address":"\\u58fd\\u5143\\u6751\\u52dd\\u5229\\u8def\\u0035\\u002d\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '992026', '711', 'zh-tw', 1000),
(1568, 154, '11-154', 1, '南州', '{"number":"903794","shop":"\\u5357\\u5dde","phone":"088647408","address":"\\u6eaa\\u5357\\u6751\\u4e09\\u6c11\\u8def\\u0031\\u0037\\u0031\\u865f"}', '903794', '711', 'zh-tw', 1000),
(1569, 155, '11-155', 1, '新東勢', '{"number":"188360","shop":"\\u65b0\\u6771\\u52e2","phone":"087781983","address":"\\u6771\\u52e2\\u6751\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\u0032\\u865f\\u0036\\u865f\\u0031\\u6a13"}', '188360', '711', 'zh-tw', 1000),
(1570, 155, '11-155', 1, '埔豐', '{"number":"904214","shop":"\\u57d4\\u8c50","phone":"087789567","address":"\\u8c50\\u7530\\u6751\\u4e2d\\u6b63\\u8def\\u0032\\u0039\\u0031\\u865f"}', '904214', '711', 'zh-tw', 1000),
(1571, 155, '11-155', 1, '學興', '{"number":"930659","shop":"\\u5b78\\u8208","phone":"087798902","address":"\\u548c\\u8208\\u6751\\u5b78\\u4eba\\u8def\\u0035\\u0039\\u0032\\u865f"}', '930659', '711', 'zh-tw', 1000),
(1572, 155, '11-155', 1, '壽比', '{"number":"997618","shop":"\\u58fd\\u6bd4","phone":"087794133","address":"\\u8001\\u57e4\\u6751\\u58fd\\u6bd4\\u8def\\u0033\\u0034\\u0038\\u865f"}', '997618', '711', 'zh-tw', 1000),
(1573, 155, '11-155', 1, '念楨', '{"number":"188234","shop":"\\u5ff5\\u6968","phone":"087708081","address":"\\u9ece\\u660e\\u6751\\u9ece\\u6771\\u8def\\u0032\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '188234', '711', 'zh-tw', 1000),
(1574, 155, '11-155', 1, '新中勝', '{"number":"181129","shop":"\\u65b0\\u4e2d\\u52dd","phone":"087707202","address":"\\u9f8d\\u6f6d\\u6751\\u662d\\u52dd\\u8def\\u0031\\u0033\\u002e\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '181129', '711', 'zh-tw', 1000),
(1575, 155, '11-155', 1, '昭勝', '{"number":"975825","shop":"\\u662d\\u52dd","phone":"087706398","address":"\\u9f8d\\u6f6d\\u6751\\u662d\\u52dd\\u8def\\u0032\\u0031\\u0036\\u865f\\u0032\\u0031\\u0038\\u865f\\u0032\\u0032\\u0030\\u865f"}', '975825', '711', 'zh-tw', 1000),
(1576, 155, '11-155', 1, '順越', '{"number":"861430","shop":"\\u9806\\u8d8a","phone":"087789176","address":"\\u5357\\u5be7\\u8def\\u0031\\u0039\\u3001\\u0032\\u0031\\u865f"}', '861430', '711', 'zh-tw', 1000),
(1577, 155, '11-155', 1, '學廣', '{"number":"183952","shop":"\\u5b78\\u5ee3","phone":"087788579","address":"\\u5167\\u57d4\\u6751\\u5ee3\\u6fdf\\u8def\\u0032\\u002d\\u0036\\u865f"}', '183952', '711', 'zh-tw', 1000),
(1578, 155, '11-155', 1, '內埔', '{"number":"121138","shop":"\\u5167\\u57d4","phone":"087782606","address":"\\u5167\\u7530\\u6751\\u5149\\u660e\\u8def\\u0032\\u0032\\u0034\\u865f\\u0032\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '121138', '711', 'zh-tw', 1000),
(1579, 155, '11-155', 1, '水門', '{"number":"970369","shop":"\\u6c34\\u9580","phone":"087995113","address":"\\u6c34\\u9580\\u6751\\u5fe0\\u5b5d\\u8def\\u0032\\u0038\\u0039\\u865f"}', '970369', '711', 'zh-tw', 1000),
(1580, 155, '11-155', 1, '涼山', '{"number":"167961","shop":"\\u6dbc\\u5c71","phone":"087992029","address":"\\u65b0\\u5c55\\u8def\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '167961', '711', 'zh-tw', 1000),
(1581, 156, '11-156', 1, '新自孝', '{"number":"159409","shop":"\\u65b0\\u81ea\\u5b5d","phone":"087332053","address":"\\u5317\\u52e2\\u91cc\\u81ea\\u7531\\u8def\\u0034\\u0037\\u0036\\u865f\\u58f9\\u6a13"}', '159409', '711', 'zh-tw', 1000),
(1582, 156, '11-156', 1, '公裕', '{"number":"914211","shop":"\\u516c\\u88d5","phone":"087329938","address":"\\u5317\\u8208\\u91cc\\u5ee3\\u6771\\u8def\\u0038\\u0031\\u0038\\u865f"}', '914211', '711', 'zh-tw', 1000),
(1583, 156, '11-156', 1, '廣正', '{"number":"188603","shop":"\\u5ee3\\u6b63","phone":"087365338","address":"\\u5317\\u8208\\u91cc\\u4e2d\\u6b63\\u8def\\u0034\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '188603', '711', 'zh-tw', 1000),
(1584, 156, '11-156', 1, '博勝', '{"number":"127468","shop":"\\u535a\\u52dd","phone":"087344565","address":"\\u535a\\u611b\\u8def\\u0032\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '127468', '711', 'zh-tw', 1000),
(1585, 156, '11-156', 1, '翊聖', '{"number":"913182","shop":"\\u7fca\\u8056","phone":"087321530","address":"\\u5d07\\u862d\\u91cc\\u5d07\\u862d\\u8def\\u0039\\u0038\\u002d\\u0032\\u0034\\u865f"}', '913182', '711', 'zh-tw', 1000),
(1586, 156, '11-156', 1, '欣欣鼎', '{"number":"982476","shop":"\\u6b23\\u6b23\\u9f0e","phone":"087339511","address":"\\u5d07\\u862d\\u91cc\\u81ea\\u7531\\u8def\\u0036\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '982476', '711', 'zh-tw', 1000),
(1587, 156, '11-156', 1, '崇武', '{"number":"136255","shop":"\\u5d07\\u6b66","phone":"087511963","address":"\\u5d07\\u6b66\\u91cc\\u83ef\\u76db\\u8857\\u0035\\u002d\\u0036\\u865f"}', '136255', '711', 'zh-tw', 1000),
(1588, 156, '11-156', 1, '薇豐', '{"number":"942180","shop":"\\u8587\\u8c50","phone":"087367740","address":"\\u5927\\u9023\\u91cc\\u8c50\\u5e74\\u8857\\u0031\\u865f"}', '942180', '711', 'zh-tw', 1000),
(1589, 156, '11-156', 1, '廣豐', '{"number":"162818","shop":"\\u5ee3\\u8c50","phone":"087380538","address":"\\u5927\\u9023\\u91cc\\u5ee3\\u6771\\u8def\\u0032\\u0038\\u0030\\u865f\\u0032\\u0038\\u0030\\u002d\\u0031\\u865f"}', '162818', '711', 'zh-tw', 1000),
(1590, 156, '11-156', 1, '新德蕙', '{"number":"952729","shop":"\\u65b0\\u5fb7\\u8559","phone":"087387007","address":"\\u5927\\u9023\\u91cc\\u8208\\u8c50\\u8def\\u0031\\u0039\\u0033\\u865f"}', '952729', '711', 'zh-tw', 1000),
(1591, 156, '11-156', 1, '屏基', '{"number":"167422","shop":"\\u5c4f\\u57fa","phone":"087365941","address":"\\u5927\\u9023\\u8def\\u0036\\u0030\\u865f"}', '167422', '711', 'zh-tw', 1000),
(1592, 156, '11-156', 1, '永大', '{"number":"128999","shop":"\\u6c38\\u5927","phone":"087551329","address":"\\u5927\\u6b66\\u8def\\u0031\\u0032\\u0032\\u865f\\u0031\\u0032\\u0034\\u865f"}', '128999', '711', 'zh-tw', 1000),
(1593, 156, '11-156', 1, '新豐榮', '{"number":"136750","shop":"\\u65b0\\u8c50\\u69ae","phone":"087224433","address":"\\u8c50\\u6e90\\u91cc\\u5ee3\\u6771\\u8def\\u0038\\u0036\\u865f"}', '136750', '711', 'zh-tw', 1000),
(1594, 156, '11-156', 1, '和興', '{"number":"192587","shop":"\\u548c\\u8208","phone":"087517557","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0033\\u002e\\u0031\\u0035\\u0035\\u865f\\u0031\\u6a13\\u002e\\u548c\\u751f\\u8def\\u4e00\\u6bb5\\u0039\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '192587', '711', 'zh-tw', 1000),
(1595, 156, '11-156', 1, '廣吉', '{"number":"189134","shop":"\\u5ee3\\u5409","phone":"087328572","address":"\\u5ee3\\u6771\\u8def\\u0039\\u0039\\u0031\\u4e4b\\u0031\\u002c\\u0039\\u0039\\u0031\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '189134', '711', 'zh-tw', 1000),
(1596, 156, '11-156', 1, '厚生', '{"number":"854351","shop":"\\u539a\\u751f","phone":"087527083","address":"\\u548c\\u5e73\\u8def\\u0032\\u865f"}', '854351', '711', 'zh-tw', 1000),
(1597, 156, '11-156', 1, '歸來', '{"number":"195575","shop":"\\u6b78\\u4f86","phone":"087216278","address":"\\u548c\\u751f\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0037\\u002d\\u0033\\u865f"}', '195575', '711', 'zh-tw', 1000),
(1598, 156, '11-156', 1, '東山河', '{"number":"167662","shop":"\\u6771\\u5c71\\u6cb3","phone":"087328341","address":"\\u6a5f\\u5834\\u5317\\u8def\\u0035\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '167662', '711', 'zh-tw', 1000),
(1599, 156, '11-156', 1, '公華', '{"number":"110895","shop":"\\u516c\\u83ef","phone":"087516324","address":"\\u9f8d\\u83ef\\u91cc\\u9f8d\\u83ef\\u8def\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '110895', '711', 'zh-tw', 1000),
(1600, 156, '11-156', 1, '瑞光', '{"number":"964009","shop":"\\u745e\\u5149","phone":"087238479","address":"\\u6c11\\u751f\\u6771\\u8def\\u0034\\u0038\\u865f"}', '964009', '711', 'zh-tw', 1000),
(1601, 156, '11-156', 1, '頭前溪', '{"number":"933245","shop":"\\u982d\\u524d\\u6eaa","phone":"087515041","address":"\\u524d\\u9032\\u91cc\\u6e05\\u9032\\u5df7\\u0031\\u0035\\u0030\\u865f"}', '933245', '711', 'zh-tw', 1000),
(1602, 156, '11-156', 1, '愛買', '{"number":"137627","shop":"\\u611b\\u8cb7","phone":"087514710","address":"\\u6e05\\u6eaa\\u91cc\\u6e05\\u5be7\\u8857\\u0032\\u865f"}', '137627', '711', 'zh-tw', 1000),
(1603, 156, '11-156', 1, '廣大', '{"number":"110530","shop":"\\u5ee3\\u5927","phone":"087368032","address":"\\u4ec1\\u611b\\u91cc\\u5ee3\\u6771\\u8def\\u0035\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '110530', '711', 'zh-tw', 1000),
(1604, 156, '11-156', 1, '金樹', '{"number":"200974","shop":"\\u91d1\\u6a39","phone":"087329631","address":"\\u4ec1\\u611b\\u8def\\u0031\\u0036\\u865f"}', '200974', '711', 'zh-tw', 1000),
(1605, 156, '11-156', 1, '屏生', '{"number":"914233","shop":"\\u5c4f\\u751f","phone":"087214612","address":"\\u745e\\u5149\\u91cc\\u6c11\\u751f\\u8def\\u0033\\u0033\\u865f"}', '914233', '711', 'zh-tw', 1000),
(1606, 156, '11-156', 1, '香楊', '{"number":"870711","shop":"\\u9999\\u694a","phone":"087212123","address":"\\u745e\\u5149\\u91cc\\u9999\\u694a\\u5df7\\u0035\\u0039\\u002d\\u0031\\u0032\\u865f"}', '870711', '711', 'zh-tw', 1000),
(1607, 156, '11-156', 1, '合家宜', '{"number":"963017","shop":"\\u5408\\u5bb6\\u5b9c","phone":"087387828","address":"\\u4e09\\u5c71\\u91cc\\u6d77\\u8c50\\u8857\\u0037\\u002d\\u0031\\u0032\\u865f"}', '963017', '711', 'zh-tw', 1000),
(1608, 156, '11-156', 1, '潭墘', '{"number":"864587","shop":"\\u6f6d\\u5898","phone":"087662392","address":"\\u52dd\\u5229\\u8def\\u0032\\u0032\\u0034\\u865f"}', '864587', '711', 'zh-tw', 1000),
(1609, 156, '11-156', 1, '崇蘭', '{"number":"126269","shop":"\\u5d07\\u862d","phone":"087337084","address":"\\u6f6d\\u6f27\\u91cc\\u5ee3\\u6771\\u8def\\u0031\\u0035\\u0038\\u0038\\u865f\\u0031\\u0035\\u0039\\u0030\\u865f"}', '126269', '711', 'zh-tw', 1000),
(1610, 156, '11-156', 1, '同勝', '{"number":"165378","shop":"\\u540c\\u52dd","phone":"087664207","address":"\\u6f6d\\u5898\\u91cc\\u5927\\u540c\\u5317\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '165378', '711', 'zh-tw', 1000),
(1611, 156, '11-156', 1, '堡勤', '{"number":"174109","shop":"\\u5821\\u52e4","phone":"087511927","address":"\\u65b0\\u751f\\u91cc\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '174109', '711', 'zh-tw', 1000),
(1612, 156, '11-156', 1, '光榮', '{"number":"153917","shop":"\\u5149\\u69ae","phone":"087323254","address":"\\u4fe1\\u7fa9\\u8def\\u0037\\u0033\\u4e4b\\u0036\\u865f\\u0037\\u0033\\u4e4b\\u0037\\u865f\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '153917', '711', 'zh-tw', 1000),
(1613, 156, '11-156', 1, '新樂興', '{"number":"171030","shop":"\\u65b0\\u6a02\\u8208","phone":"087328134","address":"\\u8208\\u6a02\\u91cc\\u676d\\u5dde\\u8857\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '171030', '711', 'zh-tw', 1000),
(1614, 156, '11-156', 1, '瑞廣', '{"number":"188153","shop":"\\u745e\\u5ee3","phone":"087518292","address":"\\u4e00\\u5fc3\\u91cc\\u5ee3\\u6771\\u5357\\u8def\\u0038\\u0038\\u002d\\u0031\\u0035\\u865f"}', '188153', '711', 'zh-tw', 1000),
(1615, 156, '11-156', 1, '統棒', '{"number":"922980","shop":"\\u7d71\\u68d2","phone":"087511410","address":"\\u6c38\\u5b89\\u91cc\\u68d2\\u7403\\u8def\\u0034\\u0035\\u865f"}', '922980', '711', 'zh-tw', 1000),
(1616, 156, '11-156', 1, '永發', '{"number":"125129","shop":"\\u6c38\\u767c","phone":"087562244","address":"\\u6c38\\u5b89\\u91cc\\u5fa9\\u8208\\u8def\\u0032\\u0035\\u0038\\u865f"}', '125129', '711', 'zh-tw', 1000),
(1617, 156, '11-156', 1, '國站', '{"number":"197593","shop":"\\u570b\\u7ad9","phone":"087325441","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u002e\\u0033\\u865f\\u4e00\\u6a13"}', '197593', '711', 'zh-tw', 1000),
(1618, 156, '11-156', 1, '華敬', '{"number":"194295","shop":"\\u83ef\\u656c","phone":"087367024","address":"\\u4e2d\\u6b63\\u91cc\\u83ef\\u6b63\\u8def\\u0031\\u0032\\u865f\\u0031\\u6a13\\u002e\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '194295', '711', 'zh-tw', 1000),
(1619, 156, '11-156', 1, '屏醫', '{"number":"166588","shop":"\\u5c4f\\u91ab","phone":"087362930","address":"\\u81ea\\u7531\\u8def\\u0032\\u0037\\u0030\\u865f"}', '166588', '711', 'zh-tw', 1000),
(1620, 157, '11-157', 1, '頭目', '{"number":"131331","shop":"\\u982d\\u76ee","phone":"087993903","address":"\\u4e09\\u5730\\u6751\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0033\\u865f\\u0031\\u6a13"}', '131331', '711', 'zh-tw', 1000),
(1621, 158, '11-158', 1, '社皮', '{"number":"131238","shop":"\\u793e\\u76ae","phone":"087075841","address":"\\u5927\\u660c\\u8def\\u0035\\u0035\\u0032\\u865f\\u0035\\u0035\\u0036\\u865f"}', '131238', '711', 'zh-tw', 1000),
(1622, 158, '11-158', 1, '廣得亨', '{"number":"166005","shop":"\\u5ee3\\u5f97\\u4ea8","phone":"087074616","address":"\\u5ec8\\u5317\\u6751\\u4e0b\\u86b6\\u0031\\u0038\\u0037\\u002d\\u0031\\u0030\\u865f"}', '166005', '711', 'zh-tw', 1000),
(1623, 158, '11-158', 1, '社上', '{"number":"112307","shop":"\\u793e\\u4e0a","phone":"087074750","address":"\\u793e\\u4e2d\\u6751\\u793e\\u76ae\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0036\\u865f\\u0032\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '112307', '711', 'zh-tw', 1000),
(1624, 158, '11-158', 1, '萬惠', '{"number":"970598","shop":"\\u842c\\u60e0","phone":"087771790","address":"\\u842c\\u4e39\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '970598', '711', 'zh-tw', 1000),
(1625, 158, '11-158', 1, '囍洋洋', '{"number":"990503","shop":"\\u56cd\\u6d0b\\u6d0b","phone":"087760327","address":"\\u842c\\u4e39\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0036\\u865f\\u0033\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '990503', '711', 'zh-tw', 1000),
(1626, 158, '11-158', 1, '翔發', '{"number":"187840","shop":"\\u7fd4\\u767c","phone":"087761245","address":"\\u842c\\u5f8c\\u6751\\u897f\\u74b0\\u8def\\u0036\\u0033\\u0037\\u865f"}', '187840', '711', 'zh-tw', 1000),
(1627, 158, '11-158', 1, '丹榮', '{"number":"119685","shop":"\\u4e39\\u69ae","phone":"087764624","address":"\\u842c\\u5168\\u6751\\u4e39\\u69ae\\u8def\\u0036\\u0032\\u0035\\u865f"}', '119685', '711', 'zh-tw', 1000),
(1628, 158, '11-158', 1, '萬新', '{"number":"952110","shop":"\\u842c\\u65b0","phone":"087763331","address":"\\u65b0\\u9418\\u6751\\u842c\\u65b0\\u8def\\u0033\\u0034\\u0032\\u865f"}', '952110', '711', 'zh-tw', 1000),
(1629, 159, '11-159', 1, '欣佳和', '{"number":"120973","shop":"\\u6b23\\u4f73\\u548c","phone":"087836509","address":"\\u4f73\\u548c\\u6751\\u4f73\\u8208\\u8def\\u0033\\u0038\\u4e4b\\u0039\\u865f"}', '120973', '711', 'zh-tw', 1000),
(1630, 159, '11-159', 1, '萬巒', '{"number":"142386","shop":"\\u842c\\u5dd2","phone":"087815818","address":"\\u842c\\u548c\\u6751\\u4e2d\\u6b63\\u8def\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '142386', '711', 'zh-tw', 1000),
(1631, 159, '11-159', 1, '萬金', '{"number":"166108","shop":"\\u842c\\u91d1","phone":"087836328","address":"\\u842c\\u91d1\\u6751\\u842c\\u8208\\u8def\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '166108', '711', 'zh-tw', 1000),
(1632, 159, '11-159', 1, '青允', '{"number":"965655","shop":"\\u9752\\u5141","phone":"087851556","address":"\\u65b0\\u7f6e\\u6751\\u65b0\\u9686\\u8def\\u0037\\u0035\\u865f"}', '965655', '711', 'zh-tw', 1000),
(1633, 160, '11-160', 1, '新埤', '{"number":"151807","shop":"\\u65b0\\u57e4","phone":"087973525","address":"\\u65b0\\u57e4\\u6751\\u4e2d\\u6b63\\u8def\\u0037\\u0032\\u865f"}', '151807', '711', 'zh-tw', 1000),
(1634, 161, '11-161', 1, '鹽洲', '{"number":"155452","shop":"\\u9e7d\\u6d32","phone":"088321705","address":"\\u5171\\u548c\\u6751\\u5149\\u5fa9\\u8def\\u0031\\u865f"}', '155452', '711', 'zh-tw', 1000),
(1635, 161, '11-161', 1, '五房', '{"number":"972697","shop":"\\u4e94\\u623f","phone":"088692183","address":"\\u4e94\\u623f\\u6751\\u4e94\\u623f\\u8def\\u0037\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '972697', '711', 'zh-tw', 1000),
(1636, 161, '11-161', 1, '欣仙吉', '{"number":"990112","shop":"\\u6b23\\u4ed9\\u5409","phone":"088686184","address":"\\u4ed9\\u5409\\u8def\\u0031\\u0032\\u0038\\u865f\\u0031\\u0033\\u0030\\u865f\\u0031\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '990112', '711', 'zh-tw', 1000),
(1637, 161, '11-161', 1, '新園', '{"number":"860057","shop":"\\u65b0\\u5712","phone":"088336288","address":"\\u8208\\u9f8d\\u6751\\u0031\\u0034\\u9130\\u5357\\u8208\\u8def\\u0033\\u0031\\u0039\\u865f"}', '860057', '711', 'zh-tw', 1000),
(1638, 162, '11-162', 1, '鹽埔', '{"number":"188821","shop":"\\u9e7d\\u57d4","phone":"087935794","address":"\\u7dad\\u65b0\\u8def\\u0031\\u0033\\u0034\\u002d\\u0033\\u865f\\u0031\\u0033\\u0036\\u865f"}', '188821', '711', 'zh-tw', 1000),
(1639, 162, '11-162', 1, '永盛', '{"number":"130291","shop":"\\u6c38\\u76db","phone":"087931503","address":"\\u9e7d\\u4e2d\\u6751\\u52dd\\u5229\\u8def\\u0038\\u0031\\u4e4b\\u0033\\u865f"}', '130291', '711', 'zh-tw', 1000),
(1640, 163, '11-163', 1, '竹田', '{"number":"942869","shop":"\\u7af9\\u7530","phone":"087711933","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f"}', '942869', '711', 'zh-tw', 1000),
(1641, 164, '12-164', 1, '立農', '{"number":"165839","shop":"\\u7acb\\u8fb2","phone":"0228203682","address":"\\u627f\\u5fb7\\u8def\\u4e03\\u6bb5\\u0033\\u0037\\u0038\\u865f"}', '165839', '711', 'zh-tw', 1000),
(1642, 164, '12-164', 1, '奇岩', '{"number":"865454","shop":"\\u5947\\u5ca9","phone":"0228952945","address":"\\u5d07\\u4ec1\\u8def\\u4e00\\u6bb5\\u0037\\u0036\\u865f"}', '865454', '711', 'zh-tw', 1000),
(1643, 164, '12-164', 1, '西安', '{"number":"187286","shop":"\\u897f\\u5b89","phone":"0228949299","address":"\\u5927\\u8208\\u8857\\u0034\\u0034\\u865f\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '187286', '711', 'zh-tw', 1000),
(1644, 164, '12-164', 1, '天富', '{"number":"980436","shop":"\\u5929\\u5bcc","phone":"0228226934","address":"\\u5bcc\\u8cb4\\u4e00\\u8def\\u0033\\u865f\\u0031\\u6a13"}', '980436', '711', 'zh-tw', 1000),
(1645, 164, '12-164', 1, '清江', '{"number":"993454","shop":"\\u6e05\\u6c5f","phone":"0228950047","address":"\\u516c\\u9928\\u8def\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '993454', '711', 'zh-tw', 1000),
(1646, 164, '12-164', 1, '公岩', '{"number":"155496","shop":"\\u516c\\u5ca9","phone":"0228946735","address":"\\u516c\\u9928\\u8def\\u0032\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '155496', '711', 'zh-tw', 1000),
(1647, 164, '12-164', 1, '公館', '{"number":"936244","shop":"\\u516c\\u9928","phone":"0228965936","address":"\\u516c\\u9928\\u8def\\u0033\\u0031\\u865f"}', '936244', '711', 'zh-tw', 1000),
(1648, 164, '12-164', 1, '光中', '{"number":"935805","shop":"\\u5149\\u4e2d","phone":"0228971043","address":"\\u5149\\u660e\\u8def\\u0031\\u0032\\u0032\\u865f"}', '935805', '711', 'zh-tw', 1000),
(1649, 164, '12-164', 1, '光寶', '{"number":"181060","shop":"\\u5149\\u5bf6","phone":"0228911841","address":"\\u5149\\u660e\\u8def\\u0031\\u0033\\u0032\\u4e4b\\u0032\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '181060', '711', 'zh-tw', 1000),
(1650, 164, '12-164', 1, '擎天崗', '{"number":"964995","shop":"\\u64ce\\u5929\\u5d17","phone":"0228613652","address":"\\u6e56\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u865f"}', '964995', '711', 'zh-tw', 1000),
(1651, 164, '12-164', 1, '懷得', '{"number":"972479","shop":"\\u61f7\\u5f97","phone":"0228279042","address":"\\u61f7\\u5fb7\\u8857\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '972479', '711', 'zh-tw', 1000),
(1652, 164, '12-164', 1, '華碩二', '{"number":"195438","shop":"\\u83ef\\u78a9\\u4e8c","phone":"0228973924","address":"\\u7acb\\u5fb7\\u8def\\u0031\\u0031\\u0035\\u865f\\u0033\\u6a13"}', '195438', '711', 'zh-tw', 1000),
(1653, 164, '12-164', 1, '和信醫', '{"number":"993649","shop":"\\u548c\\u4fe1\\u91ab","phone":"0228936831","address":"\\u7acb\\u5fb7\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '993649', '711', 'zh-tw', 1000),
(1654, 164, '12-164', 1, '和碩二', '{"number":"183859","shop":"\\u548c\\u78a9\\u4e8c","phone":"0228916312","address":"\\u7acb\\u5fb7\\u8def\\u0031\\u0035\\u0030\\u4e4b\\u0033\\u865f\\u0042\\u0031\\u6a13"}', '183859', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(1655, 164, '12-164', 1, '華碩', '{"number":"181369","shop":"\\u83ef\\u78a9","phone":"0228917572","address":"\\u7acb\\u5fb7\\u8def\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '181369', '711', 'zh-tw', 1000),
(1656, 164, '12-164', 1, '和碩', '{"number":"132976","shop":"\\u548c\\u78a9","phone":"0228988710","address":"\\u7acb\\u529f\\u8857\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '132976', '711', 'zh-tw', 1000),
(1657, 164, '12-164', 1, '明德', '{"number":"948649","shop":"\\u660e\\u5fb7","phone":"0228220224","address":"\\u660e\\u5fb7\\u8def\\u0031\\u0031\\u0034\\u865f"}', '948649', '711', 'zh-tw', 1000),
(1658, 164, '12-164', 1, '德致', '{"number":"177038","shop":"\\u5fb7\\u81f4","phone":"0228231984","address":"\\u660e\\u5fb7\\u8def\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '177038', '711', 'zh-tw', 1000),
(1659, 164, '12-164', 1, '明華', '{"number":"162885","shop":"\\u660e\\u83ef","phone":"0228262195","address":"\\u660e\\u5fb7\\u8def\\u0039\\u0039\\u865f"}', '162885', '711', 'zh-tw', 1000),
(1660, 164, '12-164', 1, '春天', '{"number":"993720","shop":"\\u6625\\u5929","phone":"0228950720","address":"\\u6cc9\\u6e90\\u8def\\u0031\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '993720', '711', 'zh-tw', 1000),
(1661, 164, '12-164', 1, '泉源', '{"number":"138170","shop":"\\u6cc9\\u6e90","phone":"0228975244","address":"\\u6cc9\\u6e90\\u8def\\u0033\\u0030\\u865f\\u5730\\u4e0b\\u4e00\\u6a13"}', '138170', '711', 'zh-tw', 1000),
(1662, 164, '12-164', 1, '榮護', '{"number":"185464","shop":"\\u69ae\\u8b77","phone":"0228216943","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '185464', '711', 'zh-tw', 1000),
(1663, 164, '12-164', 1, '榮總', '{"number":"186087","shop":"\\u69ae\\u7e3d","phone":"0228715743","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\u0033\\u0030\\u0031\\u865f"}', '186087', '711', 'zh-tw', 1000),
(1664, 164, '12-164', 1, '行義', '{"number":"186526","shop":"\\u884c\\u7fa9","phone":"0228728452","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u0038\\u5df7\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '186526', '711', 'zh-tw', 1000),
(1665, 164, '12-164', 1, '振華', '{"number":"928531","shop":"\\u632f\\u83ef","phone":"0228218145","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\u0038\\u0030\\u865f\\u0038\\u0032\\u865f"}', '928531', '711', 'zh-tw', 1000),
(1666, 164, '12-164', 1, '石捷', '{"number":"962483","shop":"\\u77f3\\u6377","phone":"0228208526","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\u0038\\u865f"}', '962483', '711', 'zh-tw', 1000),
(1667, 164, '12-164', 1, '致遠', '{"number":"874573","shop":"\\u81f4\\u9060","phone":"0228208072","address":"\\u77f3\\u724c\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0036\\u865f"}', '874573', '711', 'zh-tw', 1000),
(1668, 164, '12-164', 1, '百齡', '{"number":"196084","shop":"\\u767e\\u9f61","phone":"0228219107","address":"\\u77f3\\u724c\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u865f"}', '196084', '711', 'zh-tw', 1000),
(1669, 164, '12-164', 1, '富邦', '{"number":"960753","shop":"\\u5bcc\\u90a6","phone":"0228214947","address":"\\u5be6\\u8e10\\u8857\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f"}', '960753', '711', 'zh-tw', 1000),
(1670, 164, '12-164', 1, '泉北', '{"number":"138169","shop":"\\u6cc9\\u5317","phone":"0228930420","address":"\\u6eab\\u6cc9\\u8def\\u0037\\u0030\\u865f"}', '138169', '711', 'zh-tw', 1000),
(1671, 164, '12-164', 1, '加賀屋', '{"number":"135975","shop":"\\u52a0\\u8cc0\\u5c4b","phone":"0228941650","address":"\\u6eab\\u6cc9\\u8def\\u0037\\u0033\\u5df7\\u0035\\u865f\\u5730\\u4e0b\\u4e8c\\u6a13\\u4e4b\\u0031"}', '135975', '711', 'zh-tw', 1000),
(1672, 164, '12-164', 1, '新豪美', '{"number":"962209","shop":"\\u65b0\\u8c6a\\u7f8e","phone":"0228233553","address":"\\u6587\\u6797\\u5317\\u8def\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f"}', '962209', '711', 'zh-tw', 1000),
(1673, 164, '12-164', 1, '福瀛', '{"number":"167466","shop":"\\u798f\\u701b","phone":"0228239491","address":"\\u897f\\u5b89\\u8857\\u4e8c\\u6bb5\\u0033\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '167466', '711', 'zh-tw', 1000),
(1674, 164, '12-164', 1, '商城', '{"number":"194756","shop":"\\u5546\\u57ce","phone":"0228218731","address":"\\u88d5\\u6c11\\u516d\\u8def\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '194756', '711', 'zh-tw', 1000),
(1675, 164, '12-164', 1, '東華', '{"number":"170071","shop":"\\u6771\\u83ef","phone":"0228262900","address":"\\u88d5\\u6c11\\u4e00\\u8def\\u0034\\u0030\\u5df7\\u0031\\u865f"}', '170071', '711', 'zh-tw', 1000),
(1676, 164, '12-164', 1, '護專', '{"number":"162221","shop":"\\u8b77\\u5c08","phone":"0228264184","address":"\\u632f\\u8208\\u8857\\u0033\\u0031\\u865f"}', '162221', '711', 'zh-tw', 1000),
(1677, 164, '12-164', 1, '知心', '{"number":"139140","shop":"\\u77e5\\u5fc3","phone":"0228585721","address":"\\u77e5\\u884c\\u8def\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '139140', '711', 'zh-tw', 1000),
(1678, 164, '12-164', 1, '關渡', '{"number":"833332","shop":"\\u95dc\\u6e21","phone":"0228581719","address":"\\u77e5\\u884c\\u8def\\u0032\\u0038\\u0032\\u865f"}', '833332', '711', 'zh-tw', 1000),
(1679, 164, '12-164', 1, '安遠', '{"number":"128818","shop":"\\u5b89\\u9060","phone":"0228261043","address":"\\u81f4\\u9060\\u4e8c\\u8def\\u0031\\u0034\\u0039\\u865f"}', '128818', '711', 'zh-tw', 1000),
(1680, 164, '12-164', 1, '福致', '{"number":"188005","shop":"\\u798f\\u81f4","phone":"0228223783","address":"\\u81f4\\u9060\\u4e00\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '188005', '711', 'zh-tw', 1000),
(1681, 164, '12-164', 1, '和業', '{"number":"996637","shop":"\\u548c\\u696d","phone":"0228951924","address":"\\u4e2d\\u548c\\u8857\\u0031\\u0030\\u865f"}', '996637', '711', 'zh-tw', 1000),
(1682, 164, '12-164', 1, '北投', '{"number":"136141","shop":"\\u5317\\u6295","phone":"0228941151","address":"\\u4e2d\\u548c\\u8857\\u0032\\u0032\\u0032\\u865f"}', '136141', '711', 'zh-tw', 1000),
(1683, 164, '12-164', 1, '金和', '{"number":"141604","shop":"\\u91d1\\u548c","phone":"0228919043","address":"\\u4e2d\\u548c\\u8857\\u0033\\u0031\\u0034\\u865f\\u0033\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '141604', '711', 'zh-tw', 1000),
(1684, 164, '12-164', 1, '秀山', '{"number":"171166","shop":"\\u79c0\\u5c71","phone":"0228947141","address":"\\u4e2d\\u548c\\u8857\\u0034\\u0037\\u0036\\u865f\\u0034\\u0037\\u0038\\u865f"}', '171166', '711', 'zh-tw', 1000),
(1685, 164, '12-164', 1, '政戰', '{"number":"149402","shop":"\\u653f\\u6230","phone":"0228914209","address":"\\u4e2d\\u592e\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u865f\\u0031\\u0037\\u865f"}', '149402', '711', 'zh-tw', 1000),
(1686, 164, '12-164', 1, '中陽', '{"number":"128874","shop":"\\u4e2d\\u967d","phone":"0228953832","address":"\\u4e2d\\u592e\\u5317\\u8def\\u4e09\\u6bb5\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '128874', '711', 'zh-tw', 1000),
(1687, 164, '12-164', 1, '一德', '{"number":"851721","shop":"\\u4e00\\u5fb7","phone":"0228984000","address":"\\u4e2d\\u592e\\u5317\\u8def\\u56db\\u6bb5\\u0035\\u0031\\u0033\\u865f"}', '851721', '711', 'zh-tw', 1000),
(1688, 164, '12-164', 1, '薇閣', '{"number":"936255","shop":"\\u8587\\u95a3","phone":"0228944880","address":"\\u4e2d\\u592e\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0038\\u865f"}', '936255', '711', 'zh-tw', 1000),
(1689, 164, '12-164', 1, '大中', '{"number":"187552","shop":"\\u5927\\u4e2d","phone":"0228963137","address":"\\u4e2d\\u592e\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0034\\u865f"}', '187552', '711', 'zh-tw', 1000),
(1690, 164, '12-164', 1, '雙全', '{"number":"197205","shop":"\\u96d9\\u5168","phone":"0228940338","address":"\\u4e2d\\u5eb8\\u91cc\\u5927\\u696d\\u8def\\u0037\\u0031\\u0035\\u002d\\u0037\\u0031\\u0037\\u865f"}', '197205', '711', 'zh-tw', 1000),
(1691, 164, '12-164', 1, '統勝', '{"number":"128335","shop":"\\u7d71\\u52dd","phone":"0228234063","address":"\\u81ea\\u5f37\\u8857\\u0038\\u0032\\u865f"}', '128335', '711', 'zh-tw', 1000),
(1692, 164, '12-164', 1, '鐏賢', '{"number":"186696","shop":"\\u940f\\u8ce2","phone":"0228272331","address":"\\u5c0a\\u8ce2\\u8857\\u0032\\u0034\\u0037\\u865f"}', '186696', '711', 'zh-tw', 1000),
(1693, 165, '12-165', 1, '安松', '{"number":"167581","shop":"\\u5b89\\u677e","phone":"0227118647","address":"\\u5b89\\u6771\\u8857\\u0035\\u0030\\u4e4b\\u0032\\u865f\\u0035\\u0030\\u4e4b\\u0033\\u865f\\u0035\\u0030\\u4e4b\\u0034\\u865f"}', '167581', '711', 'zh-tw', 1000),
(1694, 165, '12-165', 1, '臨江', '{"number":"151911","shop":"\\u81e8\\u6c5f","phone":"0227844961","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\u0036\\u0037\\u865f"}', '151911', '711', 'zh-tw', 1000),
(1695, 165, '12-165', 1, '立仁', '{"number":"901293","shop":"\\u7acb\\u4ec1","phone":"0227066660","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\u0037\\u0034\\u5df7\\u0031\\u865f"}', '901293', '711', 'zh-tw', 1000),
(1696, 165, '12-165', 1, '欣安和', '{"number":"985246","shop":"\\u6b23\\u5b89\\u548c","phone":"0287730039","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\u0034\\u0037\\u865f"}', '985246', '711', 'zh-tw', 1000),
(1697, 165, '12-165', 1, '敦安', '{"number":"916712","shop":"\\u6566\\u5b89","phone":"0227081857","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\u0038\\u0036\\u865f"}', '916712', '711', 'zh-tw', 1000),
(1698, 165, '12-165', 1, '安居', '{"number":"127631","shop":"\\u5b89\\u5c45","phone":"0227332560","address":"\\u5b89\\u5c45\\u8857\\u0033\\u0033\\u865f"}', '127631', '711', 'zh-tw', 1000),
(1699, 165, '12-165', 1, '豫銘', '{"number":"863698","shop":"\\u8c6b\\u9298","phone":"0227540615","address":"\\u5927\\u5b89\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0032\\u865f"}', '863698', '711', 'zh-tw', 1000),
(1700, 165, '12-165', 1, '信安', '{"number":"135492","shop":"\\u4fe1\\u5b89","phone":"0227048829","address":"\\u5927\\u5b89\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0038\\u865f"}', '135492', '711', 'zh-tw', 1000),
(1701, 165, '12-165', 1, '頂東', '{"number":"956248","shop":"\\u9802\\u6771","phone":"0227521297","address":"\\u5927\\u5b89\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u865f"}', '956248', '711', 'zh-tw', 1000),
(1702, 165, '12-165', 1, '敦維', '{"number":"110242","shop":"\\u6566\\u7dad","phone":"0223255362","address":"\\u6771\\u8c50\\u8857\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '110242', '711', 'zh-tw', 1000),
(1703, 165, '12-165', 1, '豐安', '{"number":"959122","shop":"\\u8c50\\u5b89","phone":"0227542996","address":"\\u6771\\u8c50\\u8857\\u0039\\u865f"}', '959122', '711', 'zh-tw', 1000),
(1704, 165, '12-165', 1, '敦隆', '{"number":"190570","shop":"\\u6566\\u9686","phone":"0227329700","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0032\\u865f"}', '190570', '711', 'zh-tw', 1000),
(1705, 165, '12-165', 1, '昇隆', '{"number":"115959","shop":"\\u6607\\u9686","phone":"0227328454","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0038\\u865f"}', '115959', '711', 'zh-tw', 1000),
(1706, 165, '12-165', 1, '敦禾', '{"number":"114668","shop":"\\u6566\\u79be","phone":"0227322654","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u0035\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '114668', '711', 'zh-tw', 1000),
(1707, 165, '12-165', 1, '樂隆', '{"number":"121275","shop":"\\u6a02\\u9686","phone":"0287321701","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0033\\u0031\\u5df7\\u0031\\u0034\\u865f"}', '121275', '711', 'zh-tw', 1000),
(1708, 165, '12-165', 1, '大敦', '{"number":"184586","shop":"\\u5927\\u6566","phone":"0227045633","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0036\\u0033\\u5df7\\u0037\\u865f\\u0031\\u6a13"}', '184586', '711', 'zh-tw', 1000),
(1709, 165, '12-165', 1, '新東帝', '{"number":"122289","shop":"\\u65b0\\u6771\\u5e1d","phone":"0227540987","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '122289', '711', 'zh-tw', 1000),
(1710, 165, '12-165', 1, '建安', '{"number":"127620","shop":"\\u5efa\\u5b89","phone":"0287730985","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0037\\u5df7\\u0032\\u0039\\u865f"}', '127620', '711', 'zh-tw', 1000),
(1711, 165, '12-165', 1, '龍普', '{"number":"957241","shop":"\\u9f8d\\u666e","phone":"0227751069","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0033\\u5df7\\u0032\\u0035\\u865f"}', '957241', '711', 'zh-tw', 1000),
(1712, 165, '12-165', 1, '敦南', '{"number":"975087","shop":"\\u6566\\u5357","phone":"0227728928","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0036\\u5df7\\u0031\\u0033\\u865f"}', '975087', '711', 'zh-tw', 1000),
(1713, 165, '12-165', 1, '誠安', '{"number":"167190","shop":"\\u8aa0\\u5b89","phone":"0227112781","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0034\\u0037\\u5df7\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '167190', '711', 'zh-tw', 1000),
(1714, 165, '12-165', 1, '教育大學', '{"number":"970288","shop":"\\u6559\\u80b2\\u5927\\u5b78","phone":"0227359529","address":"\\u6566\\u5357\\u8857\\u0033\\u0038\\u865f"}', '970288', '711', 'zh-tw', 1000),
(1715, 165, '12-165', 1, '合旺', '{"number":"187921","shop":"\\u5408\\u65fa","phone":"0227026159","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0031\\u5df7\\u0034\\u0031\\u865f"}', '187921', '711', 'zh-tw', 1000),
(1716, 165, '12-165', 1, '復維', '{"number":"136705","shop":"\\u5fa9\\u7dad","phone":"0227070732","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u865f"}', '136705', '711', 'zh-tw', 1000),
(1717, 165, '12-165', 1, '科技站', '{"number":"185268","shop":"\\u79d1\\u6280\\u7ad9","phone":"0227059323","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0033\\u865f"}', '185268', '711', 'zh-tw', 1000),
(1718, 165, '12-165', 1, '科興', '{"number":"193960","shop":"\\u79d1\\u8208","phone":"0227013438","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0031\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '193960', '711', 'zh-tw', 1000),
(1719, 165, '12-165', 1, '喜悅', '{"number":"186319","shop":"\\u559c\\u6085","phone":"0227067601","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0038\\u0032\\u002d\\u0031\\u53ca\\u0038\\u0032\\u002d\\u0032\\u865f"}', '186319', '711', 'zh-tw', 1000),
(1720, 165, '12-165', 1, '光忠', '{"number":"182269","shop":"\\u5149\\u5fe0","phone":"0227319254","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0037\\u5df7\\u0035\\u5f04\\u0031\\u865f\\u0031\\u6a13"}', '182269', '711', 'zh-tw', 1000),
(1721, 165, '12-165', 1, '鑫泰', '{"number":"171731","shop":"\\u946b\\u6cf0","phone":"0223623520","address":"\\u53e4\\u98a8\\u91cc\\u6cf0\\u9806\\u8857\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '171731', '711', 'zh-tw', 1000),
(1722, 165, '12-165', 1, '新國聯', '{"number":"962184","shop":"\\u65b0\\u570b\\u806f","phone":"0227752026","address":"\\u5149\\u5fa9\\u5357\\u8def\\u0031\\u0038\\u0030\\u5df7\\u0031\\u0032\\u865f"}', '962184', '711', 'zh-tw', 1000),
(1723, 165, '12-165', 1, '國館', '{"number":"121770","shop":"\\u570b\\u9928","phone":"0227761700","address":"\\u5149\\u5fa9\\u5357\\u8def\\u0032\\u0034\\u0030\\u5df7\\u0032\\u0035\\u865f"}', '121770', '711', 'zh-tw', 1000),
(1724, 165, '12-165', 1, '靜安', '{"number":"929110","shop":"\\u975c\\u5b89","phone":"0227739618","address":"\\u5149\\u5fa9\\u5357\\u8def\\u0032\\u0036\\u0032\\u865f"}', '929110', '711', 'zh-tw', 1000),
(1725, 165, '12-165', 1, '復忠', '{"number":"182258","shop":"\\u5fa9\\u5fe0","phone":"0287734342","address":"\\u5149\\u5fa9\\u5357\\u8def\\u0039\\u0038\\u4e4b\\u0033\\u865f\\u0039\\u0038\\u4e4b\\u0035\\u865f"}', '182258', '711', 'zh-tw', 1000),
(1726, 165, '12-165', 1, '瑞升', '{"number":"186467","shop":"\\u745e\\u5347","phone":"0223435837","address":"\\u676d\\u5dde\\u5357\\u8def\\u4e8c\\u6bb5\\u0039\\u0031\\u865f"}', '186467', '711', 'zh-tw', 1000),
(1727, 165, '12-165', 1, '龍淵', '{"number":"174796","shop":"\\u9f8d\\u6df5","phone":"0227336247","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0038\\u5df7\\u0033\\u0033\\u865f"}', '174796', '711', 'zh-tw', 1000),
(1728, 165, '12-165', 1, '龍門', '{"number":"125602","shop":"\\u9f8d\\u9580","phone":"0223625327","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u865f"}', '125602', '711', 'zh-tw', 1000),
(1729, 165, '12-165', 1, '龍和', '{"number":"193661","shop":"\\u9f8d\\u548c","phone":"0227017163","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0037\\u865f\\u0031\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '193661', '711', 'zh-tw', 1000),
(1730, 165, '12-165', 1, '禾光', '{"number":"975973","shop":"\\u79be\\u5149","phone":"0227027770","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '975973', '711', 'zh-tw', 1000),
(1731, 165, '12-165', 1, '和安', '{"number":"855572","shop":"\\u548c\\u5b89","phone":"0227355311","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u0030\\u865f"}', '855572', '711', 'zh-tw', 1000),
(1732, 165, '12-165', 1, '富陽', '{"number":"144290","shop":"\\u5bcc\\u967d","phone":"0227373519","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0039\\u0038\\u865f\\u0033\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '144290', '711', 'zh-tw', 1000),
(1733, 165, '12-165', 1, '技安', '{"number":"128058","shop":"\\u6280\\u5b89","phone":"0227375613","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\u0039\\u0037\\u865f"}', '128058', '711', 'zh-tw', 1000),
(1734, 165, '12-165', 1, '和泰', '{"number":"944795","shop":"\\u548c\\u6cf0","phone":"0223915933","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0039\\u865f"}', '944795', '711', 'zh-tw', 1000),
(1735, 165, '12-165', 1, '溫東', '{"number":"170819","shop":"\\u6eab\\u6771","phone":"0223623019","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0036\\u865f"}', '170819', '711', 'zh-tw', 1000),
(1736, 165, '12-165', 1, '和金', '{"number":"171063","shop":"\\u548c\\u91d1","phone":"0223414965","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e00\\u6bb5\\u0039\\u0031\\u865f"}', '171063', '711', 'zh-tw', 1000),
(1737, 165, '12-165', 1, '欣隆昌', '{"number":"170934","shop":"\\u6b23\\u9686\\u660c","phone":"0223782716","address":"\\u57fa\\u9686\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0032\\u4e4b\\u0031\\u865f\\u53ca\\u0031\\u0034\\u0032\\u4e4b\\u0032\\u865f"}', '170934', '711', 'zh-tw', 1000),
(1738, 165, '12-165', 1, '長星', '{"number":"972594","shop":"\\u9577\\u661f","phone":"0227395493","address":"\\u57fa\\u9686\\u8def\\u4e09\\u6bb5\\u0038\\u0035\\u865f"}', '972594', '711', 'zh-tw', 1000),
(1739, 165, '12-165', 1, '台科一', '{"number":"190503","shop":"\\u53f0\\u79d1\\u4e00","phone":"0227386727","address":"\\u57fa\\u9686\\u8def\\u56db\\u6bb5\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '190503', '711', 'zh-tw', 1000),
(1740, 165, '12-165', 1, '濟南', '{"number":"146931","shop":"\\u6fdf\\u5357","phone":"0227409693","address":"\\u6fdf\\u5357\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '146931', '711', 'zh-tw', 1000),
(1741, 165, '12-165', 1, '建南', '{"number":"895020","shop":"\\u5efa\\u5357","phone":"0227549832","address":"\\u5efa\\u570b\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0031\\u5df7\\u0036\\u4e4b\\u0038\\u865f"}', '895020', '711', 'zh-tw', 1000),
(1742, 165, '12-165', 1, '花市', '{"number":"962601","shop":"\\u82b1\\u5e02","phone":"0227552540","address":"\\u5efa\\u570b\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0034\\u865f"}', '962601', '711', 'zh-tw', 1000),
(1743, 165, '12-165', 1, '科建', '{"number":"882482","shop":"\\u79d1\\u5efa","phone":"0287721391","address":"\\u5efa\\u570b\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f"}', '882482', '711', 'zh-tw', 1000),
(1744, 165, '12-165', 1, '金華', '{"number":"166739","shop":"\\u91d1\\u83ef","phone":"0223914326","address":"\\u91d1\\u83ef\\u8857\\u0031\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '166739', '711', 'zh-tw', 1000),
(1745, 165, '12-165', 1, '金信', '{"number":"197744","shop":"\\u91d1\\u4fe1","phone":"0223215183","address":"\\u91d1\\u5c71\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '197744', '711', 'zh-tw', 1000),
(1746, 165, '12-165', 1, '龍泉', '{"number":"180920","shop":"\\u9f8d\\u6cc9","phone":"0223682936","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '180920', '711', 'zh-tw', 1000),
(1747, 165, '12-165', 1, '溫州', '{"number":"121356","shop":"\\u6eab\\u5dde","phone":"0223626249","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0035\\u865f"}', '121356', '711', 'zh-tw', 1000),
(1748, 165, '12-165', 1, '大台', '{"number":"153319","shop":"\\u5927\\u53f0","phone":"0223636229","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\u0032\\u0038\\u0033\\u5df7\\u0031\\u0034\\u5f04\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '153319', '711', 'zh-tw', 1000),
(1749, 165, '12-165', 1, '卓聯', '{"number":"196268","shop":"\\u5353\\u806f","phone":"0223627127","address":"\\u7f85\\u65af\\u798f\\u8def\\u56db\\u6bb5\\u0031\\u865f\\u0031\\u6a13\\u5353\\u806f\\u5927\\u6a13"}', '196268', '711', 'zh-tw', 1000),
(1750, 165, '12-165', 1, '中廣', '{"number":"175032","shop":"\\u4e2d\\u5ee3","phone":"0227526751","address":"\\u4ec1\\u611b\\u8def\\u4e09\\u6bb5\\u0032\\u0035\\u002d\\u0031\\u865f\\u0032\\u0037\\u865f"}', '175032', '711', 'zh-tw', 1000),
(1751, 165, '12-165', 1, '芙蓉', '{"number":"170772","shop":"\\u8299\\u84c9","phone":"0227007482","address":"\\u4ec1\\u611b\\u8def\\u4e09\\u6bb5\\u0037\\u0034\\u865f\\u0031\\u6a13"}', '170772', '711', 'zh-tw', 1000),
(1752, 165, '12-165', 1, '敦信', '{"number":"147141","shop":"\\u6566\\u4fe1","phone":"0227556047","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\u0031\\u0032\\u0032\\u5df7\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '147141', '711', 'zh-tw', 1000),
(1753, 165, '12-165', 1, '建綸', '{"number":"193384","shop":"\\u5efa\\u7db8","phone":"0227754237","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\u0031\\u0035\\u0031\\u5df7\\u0033\\u0033\\u865f\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0031\\u0036\\u5df7\\u0033\\u0032\\u5f04\\u0031\\u0039\\u865f\\u0032\\u0031\\u865f"}', '193384', '711', 'zh-tw', 1000),
(1754, 165, '12-165', 1, '泰利', '{"number":"158956","shop":"\\u6cf0\\u5229","phone":"0227058645","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\u0032\\u0036\\u0036\\u5df7\\u0031\\u0035\\u5f04\\u0032\\u0032\\u865f"}', '158956', '711', 'zh-tw', 1000),
(1755, 165, '12-165', 1, '仁安', '{"number":"975962","shop":"\\u4ec1\\u5b89","phone":"0287732749","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\u0032\\u0037\\u5df7\\u0031\\u865f"}', '975962', '711', 'zh-tw', 1000),
(1756, 165, '12-165', 1, '頂好', '{"number":"143253","shop":"\\u9802\\u597d","phone":"0287714781","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\u0037\\u0039\\u865f\\u0031\\u865f"}', '143253', '711', 'zh-tw', 1000),
(1757, 165, '12-165', 1, '瑞安', '{"number":"936336","shop":"\\u745e\\u5b89","phone":"0227021483","address":"\\u745e\\u5b89\\u8857\\u0031\\u0038\\u0032\\u865f"}', '936336', '711', 'zh-tw', 1000),
(1758, 165, '12-165', 1, '龍延', '{"number":"915568","shop":"\\u9f8d\\u5ef6","phone":"0223648913","address":"\\u5e2b\\u5927\\u8def\\u0035\\u0039\\u5df7\\u0031\\u0033\\u865f"}', '915568', '711', 'zh-tw', 1000),
(1759, 165, '12-165', 1, '師大', '{"number":"865362","shop":"\\u5e2b\\u5927","phone":"0223693200","address":"\\u5e2b\\u5927\\u8def\\u0038\\u0037\\u865f"}', '865362', '711', 'zh-tw', 1000),
(1760, 165, '12-165', 1, '合維', '{"number":"111441","shop":"\\u5408\\u7dad","phone":"0227077030","address":"\\u56db\\u7dad\\u8def\\u0031\\u0037\\u0030\\u5df7\\u0038\\u865f\\u0031\\u6a13"}', '111441', '711', 'zh-tw', 1000),
(1761, 165, '12-165', 1, '新泰順', '{"number":"186434","shop":"\\u65b0\\u6cf0\\u9806","phone":"0223643011","address":"\\u6cf0\\u9806\\u8857\\u0031\\u0033\\u865f"}', '186434', '711', 'zh-tw', 1000),
(1762, 165, '12-165', 1, '華電', '{"number":"149125","shop":"\\u83ef\\u96fb","phone":"0227329694","address":"\\u901a\\u5316\\u8857\\u0031\\u0037\\u0037\\u865f"}', '149125', '711', 'zh-tw', 1000),
(1763, 165, '12-165', 1, '通化', '{"number":"975630","shop":"\\u901a\\u5316","phone":"0227083071","address":"\\u901a\\u5316\\u8857\\u0032\\u0036\\u4e4b\\u0038\\u865f"}', '975630', '711', 'zh-tw', 1000),
(1764, 165, '12-165', 1, '復昌', '{"number":"170392","shop":"\\u5fa9\\u660c","phone":"0227076154","address":"\\u901a\\u5316\\u91cc\\u5149\\u5fa9\\u5357\\u8def\\u0036\\u0031\\u0036\\u865f"}', '170392', '711', 'zh-tw', 1000),
(1765, 165, '12-165', 1, '黎元', '{"number":"129350","shop":"\\u9ece\\u5143","phone":"0223778253","address":"\\u81e5\\u9f8d\\u8857\\u0031\\u0038\\u0038\\u5df7\\u0031\\u865f"}', '129350', '711', 'zh-tw', 1000),
(1766, 165, '12-165', 1, '麟光', '{"number":"121600","shop":"\\u9e9f\\u5149","phone":"0227339761","address":"\\u81e5\\u9f8d\\u8857\\u0032\\u0035\\u0032\\u865f\\u53ca\\u0032\\u0035\\u0032\\u002d\\u0031\\u865f"}', '121600', '711', 'zh-tw', 1000),
(1767, 165, '12-165', 1, '敦親', '{"number":"186009","shop":"\\u6566\\u89aa","phone":"0227366095","address":"\\u8f9b\\u4ea5\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0031\\u5df7\\u0038\\u865f"}', '186009', '711', 'zh-tw', 1000),
(1768, 165, '12-165', 1, '辛亥', '{"number":"894359","shop":"\\u8f9b\\u4ea5","phone":"0223630291","address":"\\u8f9b\\u4ea5\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u865f"}', '894359', '711', 'zh-tw', 1000),
(1769, 165, '12-165', 1, '東門', '{"number":"167950","shop":"\\u6771\\u9580","phone":"0233224717","address":"\\u4fe1\\u7fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0038\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '167950', '711', 'zh-tw', 1000),
(1770, 165, '12-165', 1, '信中', '{"number":"959155","shop":"\\u4fe1\\u4e2d","phone":"0227033810","address":"\\u4fe1\\u7fa9\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0031\\u865f"}', '959155', '711', 'zh-tw', 1000),
(1771, 165, '12-165', 1, '鑫復', '{"number":"155083","shop":"\\u946b\\u5fa9","phone":"0227085803","address":"\\u4fe1\\u7fa9\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '155083', '711', 'zh-tw', 1000),
(1772, 165, '12-165', 1, '大信', '{"number":"921633","shop":"\\u5927\\u4fe1","phone":"0227096471","address":"\\u4fe1\\u7fa9\\u8def\\u4e09\\u6bb5\\u0033\\u0033\\u865f"}', '921633', '711', 'zh-tw', 1000),
(1773, 165, '12-165', 1, '森美', '{"number":"195760","shop":"\\u68ee\\u7f8e","phone":"0227097500","address":"\\u4fe1\\u7fa9\\u8def\\u4e09\\u6bb5\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '195760', '711', 'zh-tw', 1000),
(1774, 165, '12-165', 1, '信義', '{"number":"158509","shop":"\\u4fe1\\u7fa9","phone":"0227005388","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\u0032\\u0036\\u0035\\u5df7\\u0031\\u0032\\u5f04\\u0031\\u865f"}', '158509', '711', 'zh-tw', 1000),
(1775, 165, '12-165', 1, '鑫通', '{"number":"167259","shop":"\\u946b\\u901a","phone":"0227018472","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\u0032\\u0039\\u0034\\u5df7\\u0037\\u865f\\u0031\\u6a13"}', '167259', '711', 'zh-tw', 1000),
(1776, 165, '12-165', 1, '信興', '{"number":"961217","shop":"\\u4fe1\\u8208","phone":"0227018486","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\u0033\\u0032\\u865f"}', '961217', '711', 'zh-tw', 1000),
(1777, 165, '12-165', 1, '安信', '{"number":"110334","shop":"\\u5b89\\u4fe1","phone":"0227050827","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\u0037\\u0034\\u865f\\u0031\\u6a13"}', '110334', '711', 'zh-tw', 1000),
(1778, 165, '12-165', 1, '延吉', '{"number":"200848","shop":"\\u5ef6\\u5409","phone":"0227087348","address":"\\u5ef6\\u5409\\u8857\\u0032\\u0033\\u0037\\u865f"}', '200848', '711', 'zh-tw', 1000),
(1779, 165, '12-165', 1, '吉忠', '{"number":"957285","shop":"\\u5409\\u5fe0","phone":"0287725413","address":"\\u5ef6\\u5409\\u8857\\u0037\\u0032\\u865f"}', '957285', '711', 'zh-tw', 1000),
(1780, 165, '12-165', 1, '恆安', '{"number":"180366","shop":"\\u6046\\u5b89","phone":"0223952535","address":"\\u6c38\\u5eb7\\u8857\\u0032\\u5df7\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '180366', '711', 'zh-tw', 1000),
(1781, 165, '12-165', 1, '永康', '{"number":"189271","shop":"\\u6c38\\u5eb7","phone":"0223216948","address":"\\u6c38\\u5eb7\\u8857\\u0034\\u0033\\u865f"}', '189271', '711', 'zh-tw', 1000),
(1782, 165, '12-165', 1, '樂和', '{"number":"170691","shop":"\\u6a02\\u548c","phone":"0287323391","address":"\\u6a02\\u5229\\u8def\\u0032\\u0039\\u865f\\u0032\\u0039\\u002d\\u0031\\u865f"}', '170691', '711', 'zh-tw', 1000),
(1783, 165, '12-165', 1, '樂利', '{"number":"189983","shop":"\\u6a02\\u5229","phone":"0227332646","address":"\\u6a02\\u5229\\u8def\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '189983', '711', 'zh-tw', 1000),
(1784, 165, '12-165', 1, '樂安', '{"number":"965079","shop":"\\u6a02\\u5b89","phone":"0287325204","address":"\\u6a02\\u696d\\u8857\\u0037\\u0031\\u865f\\u0037\\u0033\\u865f"}', '965079', '711', 'zh-tw', 1000),
(1785, 165, '12-165', 1, '義村', '{"number":"963305","shop":"\\u7fa9\\u6751","phone":"0227312912","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0030\\u865f"}', '963305', '711', 'zh-tw', 1000),
(1786, 165, '12-165', 1, '北科大', '{"number":"946883","shop":"\\u5317\\u79d1\\u5927","phone":"0287733142","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e09\\u6bb5\\u0031\\u865f\\u0028\\u53f0\\u5317\\u79d1\\u6280\\u5927\\u5b78\\u5927\\u5ddd\\u5802\\u0029"}', '946883', '711', 'zh-tw', 1000),
(1787, 165, '12-165', 1, '佑安', '{"number":"970428","shop":"\\u4f51\\u5b89","phone":"0227752136","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u0037\\u5df7\\u0031\\u5f04\\u0032\\u865f"}', '970428', '711', 'zh-tw', 1000),
(1788, 165, '12-165', 1, '懷生', '{"number":"197353","shop":"\\u61f7\\u751f","phone":"0227811473","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0038\\u5df7\\u0039\\u865f"}', '197353', '711', 'zh-tw', 1000),
(1789, 165, '12-165', 1, '建忠', '{"number":"975869","shop":"\\u5efa\\u5fe0","phone":"0227416501","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0039\\u865f"}', '975869', '711', 'zh-tw', 1000),
(1790, 165, '12-165', 1, '敦頂', '{"number":"186537","shop":"\\u6566\\u9802","phone":"0287716011","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0031\\u5df7\\u0037\\u865f"}', '186537', '711', 'zh-tw', 1000),
(1791, 165, '12-165', 1, '鑫富民', '{"number":"183756","shop":"\\u946b\\u5bcc\\u6c11","phone":"0227754172","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0031\\u0038\\u0031\\u5df7\\u0034\\u0030\\u5f04\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '183756', '711', 'zh-tw', 1000),
(1792, 165, '12-165', 1, '統領', '{"number":"121161","shop":"\\u7d71\\u9818","phone":"0227319841","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0030\\u0035\\u5df7\\u0037\\u5f04\\u0035\\u865f\\u0031\\u6a13"}', '121161', '711', 'zh-tw', 1000),
(1793, 165, '12-165', 1, '統家', '{"number":"113676","shop":"\\u7d71\\u5bb6","phone":"0227212029","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0031\\u0036\\u5df7\\u0032\\u0037\\u5f04\\u0031\\u865f\\u0031\\u6a13"}', '113676', '711', 'zh-tw', 1000),
(1794, 165, '12-165', 1, '鳳翔', '{"number":"996154","shop":"\\u9cf3\\u7fd4","phone":"0287710411","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0031\\u0036\\u5df7\\u0036\\u0038\\u865f"}', '996154', '711', 'zh-tw', 1000),
(1795, 165, '12-165', 1, '仕吉', '{"number":"977359","shop":"\\u4ed5\\u5409","phone":"0287730907","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0032\\u0033\\u5df7\\u0034\\u0032\\u865f"}', '977359', '711', 'zh-tw', 1000),
(1796, 165, '12-165', 1, '錢忠', '{"number":"140689","shop":"\\u9322\\u5fe0","phone":"0227526260","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u0036\\u5df7\\u0035\\u865f"}', '140689', '711', 'zh-tw', 1000),
(1797, 165, '12-165', 1, '鑫忠孝', '{"number":"192576","shop":"\\u946b\\u5fe0\\u5b5d","phone":"0227754406","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0033\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '192576', '711', 'zh-tw', 1000),
(1798, 166, '12-166', 1, '大龍', '{"number":"962542","shop":"\\u5927\\u9f8d","phone":"0225947220","address":"\\u660c\\u5409\\u8857\\u0037\\u0032\\u865f\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '962542', '711', 'zh-tw', 1000),
(1799, 166, '12-166', 1, '塔城', '{"number":"184988","shop":"\\u5854\\u57ce","phone":"0225584706","address":"\\u9577\\u5b89\\u897f\\u8def\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13\\u53ca\\u0032\\u0037\\u0033\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '184988', '711', 'zh-tw', 1000),
(1800, 166, '12-166', 1, '長峰', '{"number":"143677","shop":"\\u9577\\u5cf0","phone":"0225556859","address":"\\u9577\\u5b89\\u897f\\u8def\\u0034\\u0035\\u4e4b\\u0032\\u865f\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '143677', '711', 'zh-tw', 1000),
(1801, 166, '12-166', 1, '德倫', '{"number":"992336","shop":"\\u5fb7\\u502b","phone":"0225875361","address":"\\u627f\\u5fb7\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0030\\u865f\\u0032\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '992336', '711', 'zh-tw', 1000),
(1802, 166, '12-166', 1, '三德', '{"number":"122463","shop":"\\u4e09\\u5fb7","phone":"0225955432","address":"\\u627f\\u5fb7\\u8def\\u4e09\\u6bb5\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '122463', '711', 'zh-tw', 1000),
(1803, 166, '12-166', 1, '昌吉', '{"number":"993742","shop":"\\u660c\\u5409","phone":"0225927056","address":"\\u627f\\u5fb7\\u8def\\u4e09\\u6bb5\\u0036\\u0030\\u865f\\u0036\\u0030\\u002d\\u0031\\u865f"}', '993742', '711', 'zh-tw', 1000),
(1804, 166, '12-166', 1, '承華', '{"number":"198677","shop":"\\u627f\\u83ef","phone":"0225562955","address":"\\u627f\\u5fb7\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u865f"}', '198677', '711', 'zh-tw', 1000),
(1805, 166, '12-166', 1, '京站', '{"number":"180056","shop":"\\u4eac\\u7ad9","phone":"0225554526","address":"\\u83ef\\u9670\\u8857\\u0039\\u0031\\u865f"}', '180056', '711', 'zh-tw', 1000),
(1806, 166, '12-166', 1, '圓泉', '{"number":"120526","shop":"\\u5713\\u6cc9","phone":"0225997457","address":"\\u9152\\u6cc9\\u8857\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '120526', '711', 'zh-tw', 1000),
(1807, 166, '12-166', 1, '保聖', '{"number":"185327","shop":"\\u4fdd\\u8056","phone":"0225992807","address":"\\u9152\\u6cc9\\u8857\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f"}', '185327', '711', 'zh-tw', 1000),
(1808, 166, '12-166', 1, '權鑫', '{"number":"982661","shop":"\\u6b0a\\u946b","phone":"0225995942","address":"\\u6c11\\u6b0a\\u897f\\u8def\\u0031\\u0035\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '982661', '711', 'zh-tw', 1000),
(1809, 166, '12-166', 1, '雙連', '{"number":"136831","shop":"\\u96d9\\u9023","phone":"0225558245","address":"\\u6c11\\u751f\\u897f\\u8def\\u0031\\u0037\\u0036\\u865f"}', '136831', '711', 'zh-tw', 1000),
(1810, 166, '12-166', 1, '鑫寧', '{"number":"162438","shop":"\\u946b\\u5be7","phone":"0225508002","address":"\\u6c11\\u751f\\u897f\\u8def\\u0032\\u0031\\u0034\\u865f\\u0032\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '162438', '711', 'zh-tw', 1000),
(1811, 166, '12-166', 1, '迪化', '{"number":"934891","shop":"\\u8fea\\u5316","phone":"0225529032","address":"\\u6c11\\u751f\\u897f\\u8def\\u0033\\u0034\\u0033\\u865f\\u0033\\u0034\\u0035\\u865f"}', '934891', '711', 'zh-tw', 1000),
(1812, 166, '12-166', 1, '仟瑞', '{"number":"183848","shop":"\\u4edf\\u745e","phone":"0225590648","address":"\\u6c11\\u751f\\u897f\\u8def\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '183848', '711', 'zh-tw', 1000),
(1813, 166, '12-166', 1, '仟發', '{"number":"936196","shop":"\\u4edf\\u767c","phone":"0225570749","address":"\\u6c11\\u751f\\u897f\\u8def\\u0039\\u0035\\u865f\\u0039\\u0037\\u865f"}', '936196', '711', 'zh-tw', 1000),
(1814, 166, '12-166', 1, '延民', '{"number":"143965","shop":"\\u5ef6\\u6c11","phone":"0225952932","address":"\\u6c11\\u65cf\\u897f\\u8def\\u0032\\u0034\\u0036\\u865f\\u0032\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '143965', '711', 'zh-tw', 1000),
(1815, 166, '12-166', 1, '圓慶', '{"number":"977290","shop":"\\u5713\\u6176","phone":"0225567571","address":"\\u5357\\u4eac\\u897f\\u8def\\u0031\\u0032\\u0037\\u865f"}', '977290', '711', 'zh-tw', 1000),
(1816, 166, '12-166', 1, '詠樂', '{"number":"148339","shop":"\\u8a60\\u6a02","phone":"0225569749","address":"\\u5357\\u4eac\\u897f\\u8def\\u0032\\u0033\\u0033\\u5df7\\u0031\\u0035\\u865f\\u0031\\u0037\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '148339', '711', 'zh-tw', 1000),
(1817, 166, '12-166', 1, '南西', '{"number":"190916","shop":"\\u5357\\u897f","phone":"0225522065","address":"\\u5357\\u4eac\\u897f\\u8def\\u0032\\u0039\\u0036\\u865f\\u0032\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '190916', '711', 'zh-tw', 1000),
(1818, 166, '12-166', 1, '稻埕', '{"number":"128494","shop":"\\u7a3b\\u57d5","phone":"0225525790","address":"\\u5357\\u4eac\\u897f\\u8def\\u0034\\u0033\\u0036\\u865f\\u0031\\u0046"}', '128494', '711', 'zh-tw', 1000),
(1819, 166, '12-166', 1, '篷萊', '{"number":"996523","shop":"\\u7bf7\\u840a","phone":"0225539665","address":"\\u5be7\\u590f\\u8def\\u0031\\u0033\\u0031\\u002d\\u0031\\u865f"}', '996523', '711', 'zh-tw', 1000),
(1820, 166, '12-166', 1, '靜中', '{"number":"891176","shop":"\\u975c\\u4e2d","phone":"0225529387","address":"\\u5be7\\u590f\\u8def\\u0037\\u0031\\u865f"}', '891176', '711', 'zh-tw', 1000),
(1821, 166, '12-166', 1, '鑫太原', '{"number":"971672","shop":"\\u946b\\u592a\\u539f","phone":"0225591974","address":"\\u592a\\u539f\\u8def\\u0034\\u0030\\u865f\\u0034\\u0032\\u865f\\u0034\\u0034\\u865f"}', '971672', '711', 'zh-tw', 1000),
(1822, 166, '12-166', 1, '延埕', '{"number":"190938","shop":"\\u5ef6\\u57d5","phone":"0225520267","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0039\\u865f\\u0031\\u0036\\u0031\\u865f"}', '190938', '711', 'zh-tw', 1000),
(1823, 166, '12-166', 1, '涼州', '{"number":"121149","shop":"\\u6dbc\\u5dde","phone":"0225538157","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '121149', '711', 'zh-tw', 1000),
(1824, 166, '12-166', 1, '景星', '{"number":"180687","shop":"\\u666f\\u661f","phone":"0225957826","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u4e4b\\u0035\\u865f\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '180687', '711', 'zh-tw', 1000),
(1825, 166, '12-166', 1, '延年', '{"number":"137052","shop":"\\u5ef6\\u5e74","phone":"0225978111","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e09\\u6bb5\\u0036\\u0031\\u002d\\u0035\\u865f"}', '137052', '711', 'zh-tw', 1000),
(1826, 166, '12-166', 1, '湧久', '{"number":"197700","shop":"\\u6e67\\u4e45","phone":"0225982186","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u56db\\u6bb5\\u0031\\u0035\\u0037\\u865f\\u0031\\u0035\\u0039\\u865f"}', '197700', '711', 'zh-tw', 1000),
(1827, 166, '12-166', 1, '延龍', '{"number":"113908","shop":"\\u5ef6\\u9f8d","phone":"0225969446","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u56db\\u6bb5\\u0031\\u0036\\u865f\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '113908', '711', 'zh-tw', 1000),
(1828, 166, '12-166', 1, '延華', '{"number":"155418","shop":"\\u5ef6\\u83ef","phone":"0225506316","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e00\\u6bb5\\u0038\\u0039\\u865f\\u0039\\u0031\\u865f\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '155418', '711', 'zh-tw', 1000),
(1829, 166, '12-166', 1, '中興醫', '{"number":"966164","shop":"\\u4e2d\\u8208\\u91ab","phone":"0225501134","address":"\\u912d\\u5dde\\u8def\\u0031\\u0034\\u0035\\u865f\\u0042\\u0031"}', '966164', '711', 'zh-tw', 1000),
(1830, 166, '12-166', 1, '新慶陽', '{"number":"186515","shop":"\\u65b0\\u6176\\u967d","phone":"0225565584","address":"\\u91cd\\u6176\\u5317\\u8def\\u4e8c\\u6bb5\\u0036\\u0030\\u865f"}', '186515', '711', 'zh-tw', 1000),
(1831, 166, '12-166', 1, '酒泉', '{"number":"992967","shop":"\\u9152\\u6cc9","phone":"0225959849","address":"\\u91cd\\u6176\\u5317\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u0030\\u865f\\u0031\\u002d\\u0032\\u6a13"}', '992967', '711', 'zh-tw', 1000),
(1832, 166, '12-166', 1, '哈蜜', '{"number":"202534","shop":"\\u54c8\\u871c","phone":"0225970450","address":"\\u91cd\\u6176\\u5317\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0039\\u3001\\u0033\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '202534', '711', 'zh-tw', 1000),
(1833, 166, '12-166', 1, '慶吉', '{"number":"166049","shop":"\\u6176\\u5409","phone":"0225954240","address":"\\u91cd\\u6176\\u5317\\u8def\\u4e09\\u6bb5\\u0034\\u0037\\u865f\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '166049', '711', 'zh-tw', 1000),
(1834, 167, '12-167', 1, '凱松', '{"number":"135078","shop":"\\u51f1\\u677e","phone":"0227886050","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0037\\u0037\\u0038\\u865f\\u0037\\u0038\\u0030\\u865f"}', '135078', '711', 'zh-tw', 1000),
(1835, 167, '12-167', 1, '新福玉', '{"number":"164641","shop":"\\u65b0\\u798f\\u7389","phone":"0227853061","address":"\\u6210\\u798f\\u8def\\u0031\\u0034\\u0035\\u865f\\u0031\\u0034\\u0037\\u865f"}', '164641', '711', 'zh-tw', 1000),
(1836, 167, '12-167', 1, '聯坊', '{"number":"976633","shop":"\\u806f\\u574a","phone":"0227893915","address":"\\u6771\\u65b0\\u8857\\u0031\\u0031\\u0038\\u5df7\\u0031\\u865f"}', '976633', '711', 'zh-tw', 1000),
(1837, 167, '12-167', 1, '林坊', '{"number":"978628","shop":"\\u6797\\u574a","phone":"0227893961","address":"\\u6771\\u65b0\\u8857\\u0038\\u0030\\u5df7\\u0031\\u865f"}', '978628', '711', 'zh-tw', 1000),
(1838, 167, '12-167', 1, '港德', '{"number":"186076","shop":"\\u6e2f\\u5fb7","phone":"0227857774","address":"\\u798f\\u5fb7\\u8857\\u0033\\u0037\\u0033\\u5df7\\u0032\\u0035\\u865f"}', '186076', '711', 'zh-tw', 1000),
(1839, 167, '12-167', 1, '鑫貿', '{"number":"142917","shop":"\\u946b\\u8cbf","phone":"0227837329","address":"\\u7d93\\u8cbf\\u4e8c\\u8def\\u0031\\u0036\\u0038\\u865f\\u0034\\u6a13"}', '142917', '711', 'zh-tw', 1000),
(1840, 167, '12-167', 1, '中貿', '{"number":"144795","shop":"\\u4e2d\\u8cbf","phone":"0227839835","address":"\\u7d93\\u8cbf\\u4e8c\\u8def\\u0031\\u0038\\u0036\\u865f\\u0032\\u6a13"}', '144795', '711', 'zh-tw', 1000),
(1841, 167, '12-167', 1, '港捷', '{"number":"197375","shop":"\\u6e2f\\u6377","phone":"0226519408","address":"\\u7d93\\u8cbf\\u4e8c\\u8def\\u0031\\u865f"}', '197375', '711', 'zh-tw', 1000),
(1842, 167, '12-167', 1, '港勝', '{"number":"192875","shop":"\\u6e2f\\u52dd","phone":"0226519605","address":"\\u7d93\\u8cbf\\u4e8c\\u8def\\u0032\\u865f\\u0042\\u0031\\u6a13"}', '192875', '711', 'zh-tw', 1000),
(1843, 167, '12-167', 1, '聯成', '{"number":"138815","shop":"\\u806f\\u6210","phone":"0227893542","address":"\\u806f\\u6210\\u91cc\\u6606\\u967d\\u8857\\u0031\\u0035\\u0030\\u002d\\u0031\\u865f\\u0031\\u0035\\u0030\\u002d\\u0033\\u865f"}', '138815', '711', 'zh-tw', 1000),
(1844, 167, '12-167', 1, '鵬馳', '{"number":"170864","shop":"\\u9d6c\\u99b3","phone":"0227833783","address":"\\u5357\\u6e2f\\u8def\\u4e09\\u6bb5\\u0034\\u0039\\u002d\\u0031\\u865f"}', '170864', '711', 'zh-tw', 1000),
(1845, 167, '12-167', 1, '香城', '{"number":"186353","shop":"\\u9999\\u57ce","phone":"0226515362","address":"\\u5357\\u6e2f\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '186353', '711', 'zh-tw', 1000),
(1846, 167, '12-167', 1, '佳樂', '{"number":"202501","shop":"\\u4f73\\u6a02","phone":"0226533511","address":"\\u5357\\u6e2f\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0033\\u865f\\u0033\\u0030\\u0035\\u865f\\u0033\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '202501', '711', 'zh-tw', 1000),
(1847, 167, '12-167', 1, '經貿', '{"number":"127516","shop":"\\u7d93\\u8cbf","phone":"0227820489","address":"\\u4e09\\u91cd\\u8def\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '127516', '711', 'zh-tw', 1000),
(1848, 167, '12-167', 1, '馥樺', '{"number":"991182","shop":"\\u99a5\\u6a3a","phone":"0226521390","address":"\\u4e09\\u91cd\\u8def\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '991182', '711', 'zh-tw', 1000),
(1849, 167, '12-167', 1, '玉成', '{"number":"194354","shop":"\\u7389\\u6210","phone":"0227852937","address":"\\u897f\\u65b0\\u91cc\\u5357\\u6e2f\\u8def\\u4e09\\u6bb5\\u0033\\u865f\\u0031\\u6a13"}', '194354', '711', 'zh-tw', 1000),
(1850, 167, '12-167', 1, '向揚', '{"number":"148100","shop":"\\u5411\\u63da","phone":"0227831061","address":"\\u5411\\u967d\\u8def\\u0031\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '148100', '711', 'zh-tw', 1000),
(1851, 167, '12-167', 1, '港興', '{"number":"159384","shop":"\\u6e2f\\u8208","phone":"0226516380","address":"\\u8208\\u83ef\\u8def\\u0031\\u0031\\u0039\\u865f\\u0031\\u0032\\u0031\\u865f\\u0031\\u0032\\u0033\\u865f\\u0031\\u0032\\u0035\\u865f"}', '159384', '711', 'zh-tw', 1000),
(1852, 167, '12-167', 1, '研究', '{"number":"185822","shop":"\\u7814\\u7a76","phone":"0226511171","address":"\\u7814\\u7a76\\u9662\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u865f"}', '185822', '711', 'zh-tw', 1000),
(1853, 167, '12-167', 1, '庄研', '{"number":"961527","shop":"\\u5e84\\u7814","phone":"0226539357","address":"\\u7814\\u7a76\\u9662\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0032\\u865f"}', '961527', '711', 'zh-tw', 1000),
(1854, 167, '12-167', 1, '胡適', '{"number":"132998","shop":"\\u80e1\\u9069","phone":"0226512201","address":"\\u7814\\u7a76\\u9662\\u8def\\u4e8c\\u6bb5\\u0039\\u0034\\u865f\\u0039\\u0036\\u865f\\u0039\\u0038\\u5df7\\u0031\\u865f"}', '132998', '711', 'zh-tw', 1000),
(1855, 167, '12-167', 1, '華技', '{"number":"142870","shop":"\\u83ef\\u6280","phone":"0227835010","address":"\\u7814\\u7a76\\u9662\\u8def\\u4e09\\u6bb5\\u0037\\u0032\\u865f\\u0037\\u0034\\u865f\\u0031\\u6a13"}', '142870', '711', 'zh-tw', 1000),
(1856, 167, '12-167', 1, '耀港', '{"number":"896458","shop":"\\u8000\\u6e2f","phone":"0227881332","address":"\\u7814\\u7a76\\u9662\\u8def\\u4e00\\u6bb5\\u0039\\u0039\\u865f\\u0031\\u6a13\\u4e4b\\u0031\\u0034"}', '896458', '711', 'zh-tw', 1000),
(1857, 167, '12-167', 1, '玉德', '{"number":"121622","shop":"\\u7389\\u5fb7","phone":"0227863772","address":"\\u7389\\u6210\\u8857\\u0031\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '121622', '711', 'zh-tw', 1000),
(1858, 167, '12-167', 1, '港運', '{"number":"169864","shop":"\\u6e2f\\u904b","phone":"0227859920","address":"\\u7389\\u6210\\u8857\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '169864', '711', 'zh-tw', 1000),
(1859, 167, '12-167', 1, '中坡', '{"number":"140210","shop":"\\u4e2d\\u5761","phone":"0227864543","address":"\\u4e2d\\u5761\\u5357\\u8def\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '140210', '711', 'zh-tw', 1000),
(1860, 167, '12-167', 1, '雄強', '{"number":"188326","shop":"\\u96c4\\u5f37","phone":"0226516017","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u516d\\u6bb5\\u0032\\u0037\\u0036\\u865f"}', '188326', '711', 'zh-tw', 1000),
(1861, 167, '12-167', 1, '昆陽', '{"number":"896539","shop":"\\u6606\\u967d","phone":"0227865732","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u516d\\u6bb5\\u0034\\u0034\\u0038\\u865f"}', '896539', '711', 'zh-tw', 1000),
(1862, 167, '12-167', 1, '忠陽', '{"number":"185213","shop":"\\u5fe0\\u967d","phone":"0227885107","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u516d\\u6bb5\\u0034\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '185213', '711', 'zh-tw', 1000),
(1863, 167, '12-167', 1, '港泰', '{"number":"144326","shop":"\\u6e2f\\u6cf0","phone":"0226512992","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e03\\u6bb5\\u0033\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '144326', '711', 'zh-tw', 1000),
(1864, 167, '12-167', 1, '港麗', '{"number":"193524","shop":"\\u6e2f\\u9e97","phone":"0226510842","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e03\\u6bb5\\u0033\\u0036\\u0039\\u865f\\u0032\\u6a13"}', '193524', '711', 'zh-tw', 1000),
(1865, 167, '12-167', 1, '慈愛', '{"number":"902805","shop":"\\u6148\\u611b","phone":"0226513567","address":"\\u91cd\\u967d\\u8def\\u0031\\u0036\\u0034\\u865f"}', '902805', '711', 'zh-tw', 1000),
(1866, 168, '12-168', 1, '安保', '{"number":"183435","shop":"\\u5b89\\u4fdd","phone":"0227953964","address":"\\u5b89\\u5eb7\\u8def\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '183435', '711', 'zh-tw', 1000),
(1867, 168, '12-168', 1, '成功', '{"number":"860770","shop":"\\u6210\\u529f","phone":"0227929460","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0032\\u865f"}', '860770', '711', 'zh-tw', 1000),
(1868, 168, '12-168', 1, '國醫', '{"number":"158118","shop":"\\u570b\\u91ab","phone":"0287929421","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\u0033\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '158118', '711', 'zh-tw', 1000),
(1869, 168, '12-168', 1, '紫新', '{"number":"964869","shop":"\\u7d2b\\u65b0","phone":"0287920524","address":"\\u6210\\u529f\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '964869', '711', 'zh-tw', 1000),
(1870, 168, '12-168', 1, '德福', '{"number":"900636","shop":"\\u5fb7\\u798f","phone":"0227943371","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\u0033\\u0030\\u5df7\\u0032\\u0037\\u865f\\u0032\\u0039\\u865f\\u0033\\u0031\\u865f"}', '900636', '711', 'zh-tw', 1000),
(1871, 168, '12-168', 1, '成湖', '{"number":"961848","shop":"\\u6210\\u6e56","phone":"0287910570","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\u0033\\u0034\\u0036\\u865f"}', '961848', '711', 'zh-tw', 1000),
(1872, 168, '12-168', 1, '秀湖', '{"number":"113089","shop":"\\u79c0\\u6e56","phone":"0227960399","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\u0033\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '113089', '711', 'zh-tw', 1000),
(1873, 168, '12-168', 1, '康醫', '{"number":"900913","shop":"\\u5eb7\\u91ab","phone":"0226347094","address":"\\u6210\\u529f\\u8def\\u4e94\\u6bb5\\u0034\\u0032\\u0030\\u5df7\\u0033\\u0030\\u865f"}', '900913', '711', 'zh-tw', 1000),
(1874, 168, '12-168', 1, '長鴻', '{"number":"991850","shop":"\\u9577\\u9d3b","phone":"0287910970","address":"\\u5927\\u6e56\\u5c71\\u838a\\u8857\\u0032\\u0031\\u0039\\u5df7\\u0036\\u865f\\u0038\\u865f\\u0031\\u6a13"}', '991850', '711', 'zh-tw', 1000),
(1875, 168, '12-168', 1, '堤頂', '{"number":"181200","shop":"\\u5824\\u9802","phone":"0226597738","address":"\\u5824\\u9802\\u5927\\u9053\\u4e8c\\u6bb5\\u0034\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '181200', '711', 'zh-tw', 1000),
(1876, 168, '12-168', 1, '清圳', '{"number":"123123","shop":"\\u6e05\\u5733","phone":"0226329402","address":"\\u6771\\u6e56\\u8def\\u0031\\u0031\\u0033\\u5df7\\u0038\\u0038\\u865f"}', '123123', '711', 'zh-tw', 1000),
(1877, 168, '12-168', 1, '鑫輝煌', '{"number":"158657","shop":"\\u946b\\u8f1d\\u714c","phone":"0226311820","address":"\\u6771\\u6e56\\u8def\\u0031\\u0031\\u0039\\u5df7\\u0034\\u0039\\u5f04\\u0032\\u865f\\u0031\\u6a13"}', '158657', '711', 'zh-tw', 1000),
(1878, 168, '12-168', 1, '樂湖', '{"number":"166614","shop":"\\u6a02\\u6e56","phone":"0226306567","address":"\\u6771\\u6e56\\u8def\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '166614', '711', 'zh-tw', 1000),
(1879, 168, '12-168', 1, '明湖', '{"number":"177485","shop":"\\u660e\\u6e56","phone":"0226323734","address":"\\u6771\\u6e56\\u8def\\u0034\\u0035\\u865f"}', '177485', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(1880, 168, '12-168', 1, '港華', '{"number":"110828","shop":"\\u6e2f\\u83ef","phone":"0227986183","address":"\\u6e2f\\u83ef\\u8857\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '110828', '711', 'zh-tw', 1000),
(1881, 168, '12-168', 1, '大眾', '{"number":"186401","shop":"\\u5927\\u773e","phone":"0226586048","address":"\\u6e2f\\u5898\\u8def\\u0032\\u0032\\u0031\\u5df7\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '186401', '711', 'zh-tw', 1000),
(1882, 168, '12-168', 1, '富港', '{"number":"185338","shop":"\\u5bcc\\u6e2f","phone":"0287512984","address":"\\u6e2f\\u5898\\u8def\\u0034\\u0036\\u865f\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '185338', '711', 'zh-tw', 1000),
(1883, 168, '12-168', 1, '行龍', '{"number":"188452","shop":"\\u884c\\u9f8d","phone":"0227917850","address":"\\u884c\\u611b\\u8def\\u0031\\u0032\\u0038\\u865f"}', '188452', '711', 'zh-tw', 1000),
(1884, 168, '12-168', 1, '彩龍', '{"number":"185888","shop":"\\u5f69\\u9f8d","phone":"0287902990","address":"\\u884c\\u5584\\u8def\\u0033\\u0035\\u865f\\u0031\\u0046"}', '185888', '711', 'zh-tw', 1000),
(1885, 168, '12-168', 1, '參龍', '{"number":"186124","shop":"\\u53c3\\u9f8d","phone":"0227939884","address":"\\u884c\\u5584\\u8def\\u0036\\u0034\\u865f"}', '186124', '711', 'zh-tw', 1000),
(1886, 168, '12-168', 1, '華經', '{"number":"956743","shop":"\\u83ef\\u7d93","phone":"0227906651","address":"\\u884c\\u5fe0\\u8def\\u0033\\u0030\\u865f"}', '956743', '711', 'zh-tw', 1000),
(1887, 168, '12-168', 1, '環金', '{"number":"114772","shop":"\\u74b0\\u91d1","phone":"0227997036","address":"\\u74b0\\u5c71\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u865f\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '114772', '711', 'zh-tw', 1000),
(1888, 168, '12-168', 1, '環湖', '{"number":"143172","shop":"\\u74b0\\u6e56","phone":"0287974566","address":"\\u74b0\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u0030\\u865f"}', '143172', '711', 'zh-tw', 1000),
(1889, 168, '12-168', 1, '湖光', '{"number":"181451","shop":"\\u6e56\\u5149","phone":"0287513447","address":"\\u57fa\\u6e56\\u8def\\u0033\\u0035\\u5df7\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '181451', '711', 'zh-tw', 1000),
(1890, 168, '12-168', 1, '瑞湖', '{"number":"163822","shop":"\\u745e\\u6e56","phone":"0226588016","address":"\\u6c5f\\u5357\\u8857\\u0031\\u0032\\u0038\\u865f"}', '163822', '711', 'zh-tw', 1000),
(1891, 168, '12-168', 1, '權金', '{"number":"173874","shop":"\\u6b0a\\u91d1","phone":"0226324440","address":"\\u91d1\\u6e56\\u8def\\u0034\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '173874', '711', 'zh-tw', 1000),
(1892, 168, '12-168', 1, '清湖', '{"number":"968643","shop":"\\u6e05\\u6e56","phone":"0227901341","address":"\\u91d1\\u6e56\\u8def\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '968643', '711', 'zh-tw', 1000),
(1893, 168, '12-168', 1, '金碧', '{"number":"177289","shop":"\\u91d1\\u78a7","phone":"0227921145","address":"\\u91d1\\u9f8d\\u8def\\u0032\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '177289', '711', 'zh-tw', 1000),
(1894, 168, '12-168', 1, '金德', '{"number":"962416","shop":"\\u91d1\\u5fb7","phone":"0287923496","address":"\\u91d1\\u9f8d\\u8def\\u0035\\u865f\\u0031\\u0046"}', '962416', '711', 'zh-tw', 1000),
(1895, 168, '12-168', 1, '康明', '{"number":"975434","shop":"\\u5eb7\\u660e","phone":"0226309123","address":"\\u5eb7\\u5be7\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0035\\u5df7\\u0032\\u0033\\u5f04\\u0031\\u865f"}', '975434', '711', 'zh-tw', 1000),
(1896, 168, '12-168', 1, '康寧', '{"number":"948502","shop":"\\u5eb7\\u5be7","phone":"0226328942","address":"\\u5eb7\\u5be7\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u5df7\\u0031\\u865f"}', '948502', '711', 'zh-tw', 1000),
(1897, 168, '12-168', 1, '鑫碁泰', '{"number":"972893","shop":"\\u946b\\u7881\\u6cf0","phone":"0226347648","address":"\\u5eb7\\u5be7\\u8def\\u4e09\\u6bb5\\u0036\\u0033\\u865f\\u0036\\u0035\\u865f\\u0036\\u0037\\u865f"}', '972893', '711', 'zh-tw', 1000),
(1898, 168, '12-168', 1, '晏揚', '{"number":"882792","shop":"\\u664f\\u63da","phone":"0226345565","address":"\\u5eb7\\u5be7\\u8def\\u4e09\\u6bb5\\u0039\\u0039\\u5df7\\u0031\\u0034\\u865f"}', '882792', '711', 'zh-tw', 1000),
(1899, 168, '12-168', 1, '康雲', '{"number":"165334","shop":"\\u5eb7\\u96f2","phone":"0227922754","address":"\\u5eb7\\u5be7\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0030\\u865f"}', '165334', '711', 'zh-tw', 1000),
(1900, 168, '12-168', 1, '瓏山林', '{"number":"197227","shop":"\\u74cf\\u5c71\\u6797","phone":"0226329723","address":"\\u5eb7\\u6a02\\u8857\\u0031\\u0032\\u0035\\u5df7\\u0032\\u865f"}', '197227', '711', 'zh-tw', 1000),
(1901, 168, '12-168', 1, '瓏馬', '{"number":"164733","shop":"\\u74cf\\u99ac","phone":"0226342774","address":"\\u5eb7\\u6a02\\u8857\\u0032\\u0031\\u0033\\u865f"}', '164733', '711', 'zh-tw', 1000),
(1902, 168, '12-168', 1, '欣福', '{"number":"171720","shop":"\\u6b23\\u798f","phone":"0227916033","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\u0031\\u0032\\u0030\\u5df7\\u0037\\u5f04\\u0038\\u865f"}', '171720', '711', 'zh-tw', 1000),
(1903, 168, '12-168', 1, '名寶', '{"number":"158303","shop":"\\u540d\\u5bf6","phone":"0287914208","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\u0031\\u0038\\u0030\\u5df7\\u0031\\u0037\\u865f\\u0031\\u0039\\u865f"}', '158303', '711', 'zh-tw', 1000),
(1904, 168, '12-168', 1, '寶湖', '{"number":"201014","shop":"\\u5bf6\\u6e56","phone":"0287912647","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\u0031\\u0038\\u0030\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '201014', '711', 'zh-tw', 1000),
(1905, 168, '12-168', 1, '康葫', '{"number":"200594","shop":"\\u5eb7\\u846b","phone":"0226317093","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\u0032\\u0039\\u0036\\u5df7\\u0033\\u865f\\u0031\\u6a13"}', '200594', '711', 'zh-tw', 1000),
(1906, 168, '12-168', 1, '民東', '{"number":"154507","shop":"\\u6c11\\u6771","phone":"0227949878","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '154507', '711', 'zh-tw', 1000),
(1907, 168, '12-168', 1, '達人', '{"number":"159292","shop":"\\u9054\\u4eba","phone":"0227945695","address":"\\u5167\\u6e56\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0039\\u865f\\u0032\\u0035\\u0031\\u865f"}', '159292', '711', 'zh-tw', 1000),
(1908, 168, '12-168', 1, '德成', '{"number":"864325","shop":"\\u5fb7\\u6210","phone":"0227954608","address":"\\u5167\\u6e56\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0036\\u865f"}', '864325', '711', 'zh-tw', 1000),
(1909, 168, '12-168', 1, '金龍', '{"number":"122430","shop":"\\u91d1\\u9f8d","phone":"0287917475","address":"\\u5167\\u6e56\\u8def\\u4e8c\\u6bb5\\u0034\\u0030\\u0037\\u865f\\u0034\\u0030\\u0039\\u865f\\u0034\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '122430', '711', 'zh-tw', 1000),
(1910, 168, '12-168', 1, '金聯發', '{"number":"137111","shop":"\\u91d1\\u806f\\u767c","phone":"0287922259","address":"\\u5167\\u6e56\\u8def\\u4e09\\u6bb5\\u0031\\u0034\\u0031\\u5df7\\u0037\\u865f"}', '137111', '711', 'zh-tw', 1000),
(1911, 168, '12-168', 1, '碧綠', '{"number":"135104","shop":"\\u78a7\\u7da0","phone":"0287917023","address":"\\u5167\\u6e56\\u8def\\u4e09\\u6bb5\\u0035\\u0039\\u5df7\\u0031\\u865f\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f"}', '135104', '711', 'zh-tw', 1000),
(1912, 168, '12-168', 1, '西武', '{"number":"171085","shop":"\\u897f\\u6b66","phone":"0226279171","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0035\\u5df7\\u0036\\u0035\\u5f04\\u0033\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '171085', '711', 'zh-tw', 1000),
(1913, 168, '12-168', 1, '西湖', '{"number":"962391","shop":"\\u897f\\u6e56","phone":"0227988882","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0031\\u865f"}', '962391', '711', 'zh-tw', 1000),
(1914, 168, '12-168', 1, '福湖', '{"number":"127505","shop":"\\u798f\\u6e56","phone":"0226274816","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0034\\u0031\\u0031\\u5df7\\u0031\\u0037\\u865f\\u0031\\u0039\\u5f04\\u0031\\u865f"}', '127505', '711', 'zh-tw', 1000),
(1915, 168, '12-168', 1, '麗安', '{"number":"190477","shop":"\\u9e97\\u5b89","phone":"0226274284","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0034\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '190477', '711', 'zh-tw', 1000),
(1916, 168, '12-168', 1, '墘都', '{"number":"197043","shop":"\\u5898\\u90fd","phone":"0287977260","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0036\\u0036\\u0039\\u865f"}', '197043', '711', 'zh-tw', 1000),
(1917, 168, '12-168', 1, '港鑫', '{"number":"960638","shop":"\\u6e2f\\u946b","phone":"0226270994","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0037\\u0033\\u0037\\u5df7\\u0033\\u0035\\u865f"}', '960638', '711', 'zh-tw', 1000),
(1918, 168, '12-168', 1, '馨瑩', '{"number":"913621","shop":"\\u99a8\\u7469","phone":"0226574995","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\u0039\\u0031\\u5df7\\u0032\\u865f"}', '913621', '711', 'zh-tw', 1000),
(1919, 168, '12-168', 1, '瑞富', '{"number":"166094","shop":"\\u745e\\u5bcc","phone":"0226589047","address":"\\u745e\\u5149\\u8def\\u0031\\u0038\\u0038\\u5df7\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '166094', '711', 'zh-tw', 1000),
(1920, 168, '12-168', 1, '見晴', '{"number":"199186","shop":"\\u898b\\u6674","phone":"0226599918","address":"\\u745e\\u5149\\u8def\\u0031\\u0039\\u0036\\u865f"}', '199186', '711', 'zh-tw', 1000),
(1921, 168, '12-168', 1, '瑞和', '{"number":"171199","shop":"\\u745e\\u548c","phone":"0226584041","address":"\\u745e\\u5149\\u8def\\u0033\\u0031\\u0036\\u5df7\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '171199', '711', 'zh-tw', 1000),
(1922, 168, '12-168', 1, '里昂', '{"number":"158912","shop":"\\u91cc\\u6602","phone":"0287514839","address":"\\u745e\\u5149\\u8def\\u0034\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '158912', '711', 'zh-tw', 1000),
(1923, 168, '12-168', 1, '洲子', '{"number":"170314","shop":"\\u6d32\\u5b50","phone":"0226586174","address":"\\u745e\\u5149\\u8def\\u0035\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '170314', '711', 'zh-tw', 1000),
(1924, 168, '12-168', 1, '瑞鑫', '{"number":"985707","shop":"\\u745e\\u946b","phone":"0226579574","address":"\\u745e\\u5149\\u8def\\u0035\\u0038\\u0030\\u865f"}', '985707', '711', 'zh-tw', 1000),
(1925, 168, '12-168', 1, '瑞寶', '{"number":"903244","shop":"\\u745e\\u5bf6","phone":"0287512228","address":"\\u745e\\u5149\\u8def\\u0035\\u0038\\u0033\\u5df7\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '903244', '711', 'zh-tw', 1000),
(1926, 168, '12-168', 1, '瑞景', '{"number":"183996","shop":"\\u745e\\u666f","phone":"0287513436","address":"\\u745e\\u5149\\u8def\\u0035\\u0038\\u0033\\u5df7\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '183996', '711', 'zh-tw', 1000),
(1927, 168, '12-168', 1, '日內瓦', '{"number":"982915","shop":"\\u65e5\\u5167\\u74e6","phone":"0287912964","address":"\\u745e\\u5149\\u8def\\u0037\\u0036\\u5df7\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '982915', '711', 'zh-tw', 1000),
(1928, 168, '12-168', 1, '瑞江', '{"number":"137100","shop":"\\u745e\\u6c5f","phone":"0226587055","address":"\\u745e\\u967d\\u91cc\\u6c5f\\u5357\\u8857\\u0037\\u0031\\u5df7\\u0031\\u0036\\u5f04\\u0037\\u0036\\u865f"}', '137100', '711', 'zh-tw', 1000),
(1929, 168, '12-168', 1, '安美', '{"number":"194882","shop":"\\u5b89\\u7f8e","phone":"0227948522","address":"\\u77f3\\u6f6d\\u91cc\\u5b89\\u5eb7\\u8def\\u0033\\u0032\\u5df7\\u0032\\u0034\\u5f04\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '194882', '711', 'zh-tw', 1000),
(1930, 168, '12-168', 1, '鑫江南', '{"number":"980355","shop":"\\u946b\\u6c5f\\u5357","phone":"0226589241","address":"\\u6587\\u5fb7\\u8def\\u0036\\u865f\\u0031\\u6a13"}', '980355', '711', 'zh-tw', 1000),
(1931, 168, '12-168', 1, '鑫文德', '{"number":"119261","shop":"\\u946b\\u6587\\u5fb7","phone":"0287977622","address":"\\u6587\\u5fb7\\u8def\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '119261', '711', 'zh-tw', 1000),
(1932, 168, '12-168', 1, '金湖', '{"number":"136222","shop":"\\u91d1\\u6e56","phone":"0226583308","address":"\\u6587\\u6e56\\u8857\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '136222', '711', 'zh-tw', 1000),
(1933, 168, '12-168', 1, '克里斯', '{"number":"122452","shop":"\\u514b\\u91cc\\u65af","phone":"0226327140","address":"\\u4e94\\u5206\\u8857\\u0033\\u0033\\u865f\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '122452', '711', 'zh-tw', 1000),
(1934, 168, '12-168', 1, '東湖', '{"number":"195519","shop":"\\u6771\\u6e56","phone":"0226332539","address":"\\u4e94\\u5206\\u8857\\u0036\\u0032\\u865f"}', '195519', '711', 'zh-tw', 1000),
(1935, 168, '12-168', 1, '悅來', '{"number":"186179","shop":"\\u6085\\u4f86","phone":"0226338912","address":"\\u4e94\\u5206\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '186179', '711', 'zh-tw', 1000),
(1936, 168, '12-168', 1, '毓鄰', '{"number":"182524","shop":"\\u6bd3\\u9130","phone":"0227953014","address":"\\u65b0\\u6e56\\u4e8c\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '182524', '711', 'zh-tw', 1000),
(1937, 168, '12-168', 1, '全球', '{"number":"187862","shop":"\\u5168\\u7403","phone":"0287927149","address":"\\u65b0\\u6e56\\u4e8c\\u8def\\u0033\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '187862', '711', 'zh-tw', 1000),
(1938, 168, '12-168', 1, '成美', '{"number":"159513","shop":"\\u6210\\u7f8e","phone":"0227911006","address":"\\u65b0\\u660e\\u8def\\u0033\\u0031\\u0037\\u865f"}', '159513', '711', 'zh-tw', 1000),
(1939, 168, '12-168', 1, '新潭美', '{"number":"952615","shop":"\\u65b0\\u6f6d\\u7f8e","phone":"0227942796","address":"\\u65b0\\u660e\\u8def\\u0034\\u0032\\u0035\\u865f\\u0034\\u0032\\u0037\\u865f"}', '952615', '711', 'zh-tw', 1000),
(1940, 168, '12-168', 1, '金雲', '{"number":"962139","shop":"\\u91d1\\u96f2","phone":"0227945804","address":"\\u661f\\u96f2\\u8857\\u0031\\u0033\\u0036\\u865f"}', '962139', '711', 'zh-tw', 1000),
(1941, 168, '12-168', 1, '星成', '{"number":"189400","shop":"\\u661f\\u6210","phone":"0227942674","address":"\\u661f\\u96f2\\u8857\\u0031\\u0037\\u865f"}', '189400', '711', 'zh-tw', 1000),
(1942, 168, '12-168', 1, '樂陽', '{"number":"166474","shop":"\\u6a02\\u967d","phone":"0226597352","address":"\\u967d\\u5149\\u8857\\u0033\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '166474', '711', 'zh-tw', 1000),
(1943, 168, '12-168', 1, '匯陽', '{"number":"999083","shop":"\\u532f\\u967d","phone":"0287977391","address":"\\u967d\\u5149\\u8857\\u0033\\u0038\\u0033\\u865f"}', '999083', '711', 'zh-tw', 1000),
(1944, 168, '12-168', 1, '瑞東', '{"number":"159454","shop":"\\u745e\\u6771","phone":"0287514830","address":"\\u6d32\\u5b50\\u8857\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '159454', '711', 'zh-tw', 1000),
(1945, 168, '12-168', 1, '墘運', '{"number":"184472","shop":"\\u5898\\u904b","phone":"0287515031","address":"\\u6d32\\u5b50\\u8857\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '184472', '711', 'zh-tw', 1000),
(1946, 168, '12-168', 1, '德馨', '{"number":"902861","shop":"\\u5fb7\\u99a8","phone":"0287511020","address":"\\u6d32\\u5b50\\u8857\\u0034\\u0036\\u865f"}', '902861', '711', 'zh-tw', 1000),
(1947, 168, '12-168', 1, '德瑞', '{"number":"195210","shop":"\\u5fb7\\u745e","phone":"0287515167","address":"\\u6d32\\u5b50\\u8857\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '195210', '711', 'zh-tw', 1000),
(1948, 168, '12-168', 1, '紫陽', '{"number":"189411","shop":"\\u7d2b\\u967d","phone":"0287512875","address":"\\u7d2b\\u967d\\u91cc\\u967d\\u5149\\u8857\\u0031\\u0035\\u0039\\u865f"}', '189411', '711', 'zh-tw', 1000),
(1949, 169, '12-169', 1, '新承德', '{"number":"140416","shop":"\\u65b0\\u627f\\u5fb7","phone":"0228857157","address":"\\u627f\\u5fb7\\u8def\\u56db\\u6bb5\\u0033\\u0030\\u865f"}', '140416', '711', 'zh-tw', 1000),
(1950, 169, '12-169', 1, '承富', '{"number":"135414","shop":"\\u627f\\u5bcc","phone":"0228862627","address":"\\u627f\\u5fb7\\u8def\\u56db\\u6bb5\\u0033\\u0039\\u865f"}', '135414', '711', 'zh-tw', 1000),
(1951, 169, '12-169', 1, '文林', '{"number":"127826","shop":"\\u6587\\u6797","phone":"0228810417","address":"\\u5927\\u5317\\u8def\\u0031\\u0034\\u865f\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '127826', '711', 'zh-tw', 1000),
(1952, 169, '12-169', 1, '新士林', '{"number":"132574","shop":"\\u65b0\\u58eb\\u6797","phone":"0228835732","address":"\\u5927\\u6771\\u8def\\u0031\\u0032\\u0033\\u865f\\u0031\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '132574', '711', 'zh-tw', 1000),
(1953, 169, '12-169', 1, '京饌', '{"number":"195737","shop":"\\u4eac\\u994c","phone":"0228835619","address":"\\u5927\\u6771\\u8def\\u0031\\u0035\\u002d\\u0036\\u865f\\u0031\\u0035\\u002d\\u0037\\u865f\\u0031\\u6a13"}', '195737', '711', 'zh-tw', 1000),
(1954, 169, '12-169', 1, '大饌', '{"number":"184508","shop":"\\u5927\\u994c","phone":"0228838865","address":"\\u5927\\u6771\\u8def\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '184508', '711', 'zh-tw', 1000),
(1955, 169, '12-169', 1, '豫鋒', '{"number":"988326","shop":"\\u8c6b\\u92d2","phone":"0228832762","address":"\\u5927\\u5357\\u8def\\u0033\\u0032\\u0032\\u865f"}', '988326', '711', 'zh-tw', 1000),
(1956, 169, '12-169', 1, '福通', '{"number":"992381","shop":"\\u798f\\u901a","phone":"0228881028","address":"\\u5927\\u5357\\u8def\\u0034\\u0030\\u0030\\u865f\\u0034\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '992381', '711', 'zh-tw', 1000),
(1957, 169, '12-169', 1, '德誠', '{"number":"190097","shop":"\\u5fb7\\u8aa0","phone":"0228344429","address":"\\u5fb7\\u884c\\u6771\\u8def\\u0031\\u0030\\u0036\\u865f\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '190097', '711', 'zh-tw', 1000),
(1958, 169, '12-169', 1, '德寶', '{"number":"181118","shop":"\\u5fb7\\u5bf6","phone":"0228311750","address":"\\u5fb7\\u884c\\u6771\\u8def\\u0031\\u0030\\u0039\\u5df7\\u0031\\u0030\\u0032\\u5f04\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '181118', '711', 'zh-tw', 1000),
(1959, 169, '12-169', 1, '德東', '{"number":"149549","shop":"\\u5fb7\\u6771","phone":"0228342488","address":"\\u5fb7\\u884c\\u6771\\u8def\\u0032\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '149549', '711', 'zh-tw', 1000),
(1960, 169, '12-169', 1, '蘭雅', '{"number":"155223","shop":"\\u862d\\u96c5","phone":"0228345909","address":"\\u5fb7\\u884c\\u6771\\u8def\\u0036\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '155223', '711', 'zh-tw', 1000),
(1961, 169, '12-169', 1, '德天', '{"number":"190592","shop":"\\u5fb7\\u5929","phone":"0228344941","address":"\\u5fb7\\u884c\\u897f\\u8def\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '190592', '711', 'zh-tw', 1000),
(1962, 169, '12-169', 1, '福溢', '{"number":"901570","shop":"\\u798f\\u6ea2","phone":"0228312758","address":"\\u5fb7\\u884c\\u897f\\u8def\\u0039\\u0036\\u865f"}', '901570', '711', 'zh-tw', 1000),
(1963, 169, '12-169', 1, '新劍潭', '{"number":"161217","shop":"\\u65b0\\u528d\\u6f6d","phone":"0228882016","address":"\\u798f\\u6e2f\\u8857\\u0032\\u0034\\u0036\\u865f"}', '161217', '711', 'zh-tw', 1000),
(1964, 169, '12-169', 1, '福芝', '{"number":"896160","shop":"\\u798f\\u829d","phone":"0228358739","address":"\\u798f\\u570b\\u8def\\u0039\\u0034\\u865f"}', '896160', '711', 'zh-tw', 1000),
(1965, 169, '12-169', 1, '芝山', '{"number":"153238","shop":"\\u829d\\u5c71","phone":"0228316143","address":"\\u798f\\u83ef\\u8def\\u0031\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '153238', '711', 'zh-tw', 1000),
(1966, 169, '12-169', 1, '草山', '{"number":"960775","shop":"\\u8349\\u5c71","phone":"0228626422","address":"\\u683c\\u81f4\\u8def\\u0032\\u0038\\u865f"}', '960775', '711', 'zh-tw', 1000),
(1967, 169, '12-169', 1, '文大', '{"number":"928427","shop":"\\u6587\\u5927","phone":"0228623443","address":"\\u683c\\u81f4\\u8def\\u0035\\u0037\\u865f"}', '928427', '711', 'zh-tw', 1000),
(1968, 169, '12-169', 1, '文學', '{"number":"170473","shop":"\\u6587\\u5b78","phone":"0228613776","address":"\\u5149\\u83ef\\u8def\\u0032\\u0036\\u5df7\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '170473', '711', 'zh-tw', 1000),
(1969, 169, '12-169', 1, '華岡', '{"number":"872832","shop":"\\u83ef\\u5ca1","phone":"0228625528","address":"\\u5149\\u83ef\\u8def\\u0032\\u0036\\u5df7\\u0037\\u002d\\u0031\\u865f"}', '872832', '711', 'zh-tw', 1000),
(1970, 169, '12-169', 1, '鑫港', '{"number":"167905","shop":"\\u946b\\u6e2f","phone":"0228836276","address":"\\u5f8c\\u6e2f\\u8857\\u0032\\u0031\\u0030\\u865f"}', '167905', '711', 'zh-tw', 1000),
(1971, 169, '12-169', 1, '前港', '{"number":"111278","shop":"\\u524d\\u6e2f","phone":"0228818943","address":"\\u5f8c\\u6e2f\\u8857\\u0039\\u0038\\u4e4b\\u0031\\u865f\\u0032\\u865f\\u0031\\u6a13"}', '111278', '711', 'zh-tw', 1000),
(1972, 169, '12-169', 1, '太學', '{"number":"132909","shop":"\\u592a\\u5b78","phone":"0228627655","address":"\\u83ef\\u5ca1\\u8def\\u0034\\u0035\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '132909', '711', 'zh-tw', 1000),
(1973, 169, '12-169', 1, '華齡', '{"number":"153261","shop":"\\u83ef\\u9f61","phone":"0228835452","address":"\\u83ef\\u9f61\\u8857\\u0031\\u0037\\u5df7\\u0032\\u865f\\u0034\\u865f\\u0031\\u6a13"}', '153261', '711', 'zh-tw', 1000),
(1974, 169, '12-169', 1, '承河', '{"number":"121127","shop":"\\u627f\\u6cb3","phone":"0228817180","address":"\\u57fa\\u6cb3\\u8def\\u0031\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '121127', '711', 'zh-tw', 1000),
(1975, 169, '12-169', 1, '新福慶', '{"number":"966278","shop":"\\u65b0\\u798f\\u6176","phone":"0228813445","address":"\\u57fa\\u6cb3\\u8def\\u0031\\u865f\\u0031\\u6a13\\u0028\\u90e8\\u4efd\\u0029"}', '966278', '711', 'zh-tw', 1000),
(1976, 169, '12-169', 1, '豐基', '{"number":"185556","shop":"\\u8c50\\u57fa","phone":"0228344187","address":"\\u57fa\\u6cb3\\u8def\\u0033\\u0036\\u0038\\u865f\\u0033\\u0037\\u0030\\u865f"}', '185556', '711', 'zh-tw', 1000),
(1977, 169, '12-169', 1, '三樂', '{"number":"131984","shop":"\\u4e09\\u6a02","phone":"0228832921","address":"\\u528d\\u6f6d\\u8def\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '131984', '711', 'zh-tw', 1000),
(1978, 169, '12-169', 1, '新天強', '{"number":"131294","shop":"\\u65b0\\u5929\\u5f37","phone":"0228385947","address":"\\u514b\\u5f37\\u8def\\u0031\\u0031\\u53ca\\u0031\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '131294', '711', 'zh-tw', 1000),
(1979, 169, '12-169', 1, '東吳', '{"number":"195416","shop":"\\u6771\\u5433","phone":"0228835820","address":"\\u81e8\\u6eaa\\u8def\\u0037\\u0030\\u865f"}', '195416', '711', 'zh-tw', 1000),
(1980, 169, '12-169', 1, '冬樂', '{"number":"190293","shop":"\\u51ac\\u6a02","phone":"0228345642","address":"\\u7f8e\\u5d19\\u8857\\u0031\\u0031\\u0032\\u865f\\u4e00\\u6a13"}', '190293', '711', 'zh-tw', 1000),
(1981, 169, '12-169', 1, '友成', '{"number":"139003","shop":"\\u53cb\\u6210","phone":"0288112514","address":"\\u793e\\u4e2d\\u8857\\u0032\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '139003', '711', 'zh-tw', 1000),
(1982, 169, '12-169', 1, '社中', '{"number":"992945","shop":"\\u793e\\u4e2d","phone":"0228119270","address":"\\u793e\\u4e2d\\u8857\\u0033\\u0032\\u0030\\u865f\\u0033\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '992945', '711', 'zh-tw', 1000),
(1983, 169, '12-169', 1, '德芝', '{"number":"180861","shop":"\\u5fb7\\u829d","phone":"0228347532","address":"\\u58eb\\u6771\\u8def\\u0032\\u0036\\u0036\\u5df7\\u0035\\u5f04\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '180861', '711', 'zh-tw', 1000),
(1984, 169, '12-169', 1, '士東', '{"number":"955348","shop":"\\u58eb\\u6771","phone":"0228359152","address":"\\u58eb\\u6771\\u8def\\u0034\\u0038\\u865f"}', '955348', '711', 'zh-tw', 1000),
(1985, 169, '12-169', 1, '天越', '{"number":"976286","shop":"\\u5929\\u8d8a","phone":"0228724484","address":"\\u5929\\u6bcd\\u6771\\u8def\\u0035\\u0030\\u5df7\\u0032\\u0035\\u865f"}', '976286', '711', 'zh-tw', 1000),
(1986, 169, '12-169', 1, '三玉', '{"number":"174028","shop":"\\u4e09\\u7389","phone":"0228744580","address":"\\u5929\\u6bcd\\u6771\\u8def\\u0038\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '174028', '711', 'zh-tw', 1000),
(1987, 169, '12-169', 1, '天福', '{"number":"177463","shop":"\\u5929\\u798f","phone":"0228762502","address":"\\u5929\\u6bcd\\u6771\\u8def\\u0038\\u5df7\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '177463', '711', 'zh-tw', 1000),
(1988, 169, '12-169', 1, '天美', '{"number":"129372","shop":"\\u5929\\u7f8e","phone":"0228762701","address":"\\u5929\\u6bcd\\u6771\\u8def\\u0038\\u5df7\\u0039\\u0038\\u865f"}', '129372', '711', 'zh-tw', 1000),
(1989, 169, '12-169', 1, '天北', '{"number":"170587","shop":"\\u5929\\u5317","phone":"0228760659","address":"\\u5929\\u6bcd\\u91cc\\u5929\\u6bcd\\u897f\\u8def\\u0033\\u0039\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '170587', '711', 'zh-tw', 1000),
(1990, 169, '12-169', 1, '天鑫', '{"number":"190891","shop":"\\u5929\\u946b","phone":"0228754546","address":"\\u5929\\u7389\\u8857\\u0038\\u865f"}', '190891', '711', 'zh-tw', 1000),
(1991, 169, '12-169', 1, '新文', '{"number":"957366","shop":"\\u65b0\\u6587","phone":"0228353709","address":"\\u6587\\u660c\\u8def\\u0036\\u0034\\u865f"}', '957366', '711', 'zh-tw', 1000),
(1992, 169, '12-169', 1, '士鑽', '{"number":"146355","shop":"\\u58eb\\u947d","phone":"0228820935","address":"\\u6587\\u6797\\u8def\\u0031\\u0030\\u0032\\u865f\\u0042\\u0031"}', '146355', '711', 'zh-tw', 1000),
(1993, 169, '12-169', 1, '珍饌', '{"number":"195900","shop":"\\u73cd\\u994c","phone":"0228839937","address":"\\u6587\\u6797\\u8def\\u0031\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '195900', '711', 'zh-tw', 1000),
(1994, 169, '12-169', 1, '丹樺', '{"number":"148524","shop":"\\u4e39\\u6a3a","phone":"0228314649","address":"\\u6587\\u6797\\u8def\\u0035\\u0033\\u0030\\u865f"}', '148524', '711', 'zh-tw', 1000),
(1995, 169, '12-169', 1, '德華', '{"number":"187541","shop":"\\u5fb7\\u83ef","phone":"0228310427","address":"\\u6587\\u6797\\u8def\\u0036\\u0036\\u0039\\u865f\\u0031\\u6a13\\u53ca\\u0042\\u0031"}', '187541', '711', 'zh-tw', 1000),
(1996, 169, '12-169', 1, '福氣', '{"number":"170130","shop":"\\u798f\\u6c23","phone":"0228162416","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u516d\\u6bb5\\u0031\\u0032\\u0032\\u865f\\u0031\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '170130', '711', 'zh-tw', 1000),
(1997, 169, '12-169', 1, '集鑫', '{"number":"184405","shop":"\\u96c6\\u946b","phone":"0228113784","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u516d\\u6bb5\\u0032\\u0032\\u0039\\u865f\\u0032\\u0033\\u0031\\u865f"}', '184405', '711', 'zh-tw', 1000),
(1998, 169, '12-169', 1, '聚鑫', '{"number":"997571","shop":"\\u805a\\u946b","phone":"0288111492","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u516d\\u6bb5\\u0033\\u0035\\u0030\\u865f"}', '997571', '711', 'zh-tw', 1000),
(1999, 169, '12-169', 1, '洲美', '{"number":"200930","shop":"\\u6d32\\u7f8e","phone":"0228162633","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u516d\\u6bb5\\u0035\\u0030\\u0035\\u865f"}', '200930', '711', 'zh-tw', 1000),
(2000, 169, '12-169', 1, '葫蘆', '{"number":"151416","shop":"\\u846b\\u8606","phone":"0228112919","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e94\\u6bb5\\u0031\\u0033\\u0034\\u865f\\u0031\\u0033\\u0034\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '151416', '711', 'zh-tw', 1000),
(2001, 169, '12-169', 1, '葫東', '{"number":"154297","shop":"\\u846b\\u6771","phone":"0228137082","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e94\\u6bb5\\u0032\\u0032\\u0038\\u865f\\u0032\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '154297', '711', 'zh-tw', 1000),
(2002, 169, '12-169', 1, '福陽', '{"number":"161549","shop":"\\u798f\\u967d","phone":"0228162119","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e94\\u6bb5\\u0032\\u0036\\u0039\\u865f\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '161549', '711', 'zh-tw', 1000),
(2003, 169, '12-169', 1, '鑫仰德', '{"number":"199256","shop":"\\u946b\\u4ef0\\u5fb7","phone":"0228618640","address":"\\u4ef0\\u5fb7\\u5927\\u9053\\u4e09\\u6bb5\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f"}', '199256', '711', 'zh-tw', 1000),
(2004, 169, '12-169', 1, '福志', '{"number":"890900","shop":"\\u798f\\u5fd7","phone":"0288663358","address":"\\u96e8\\u8fb2\\u8def\\u0032\\u0035\\u865f"}', '890900', '711', 'zh-tw', 1000),
(2005, 169, '12-169', 1, '至誠', '{"number":"960948","shop":"\\u81f3\\u8aa0","phone":"0228359740","address":"\\u81f3\\u8aa0\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u865f"}', '960948', '711', 'zh-tw', 1000),
(2006, 169, '12-169', 1, '鑫成', '{"number":"193731","shop":"\\u946b\\u6210","phone":"0228346370","address":"\\u81f3\\u8aa0\\u8def\\u4e8c\\u6bb5\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '193731', '711', 'zh-tw', 1000),
(2007, 169, '12-169', 1, '至善天下', '{"number":"960513","shop":"\\u81f3\\u5584\\u5929\\u4e0b","phone":"0228830232","address":"\\u81f3\\u5584\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u0034\\u865f"}', '960513', '711', 'zh-tw', 1000),
(2008, 169, '12-169', 1, '新忠誠', '{"number":"185578","shop":"\\u65b0\\u5fe0\\u8aa0","phone":"0228314978","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u516d\\u6bb5\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '185578', '711', 'zh-tw', 1000),
(2009, 169, '12-169', 1, '天真', '{"number":"198817","shop":"\\u5929\\u771f","phone":"0228728894","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e03\\u6bb5\\u0031\\u0034\\u0031\\u5df7\\u0036\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '198817', '711', 'zh-tw', 1000),
(2010, 169, '12-169', 1, '東洋', '{"number":"187758","shop":"\\u6771\\u6d0b","phone":"0228753409","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e03\\u6bb5\\u0031\\u0034\\u5df7\\u0031\\u0039\\u865f\\uff22\\u0031"}', '187758', '711', 'zh-tw', 1000),
(2011, 169, '12-169', 1, '天東', '{"number":"200815","shop":"\\u5929\\u6771","phone":"0228734093","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e03\\u6bb5\\u0031\\u0034\\u5df7\\u0032\\u002d\\u0031\\u865f"}', '200815', '711', 'zh-tw', 1000),
(2012, 169, '12-169', 1, '天裕', '{"number":"164559","shop":"\\u5929\\u88d5","phone":"0228724419","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e03\\u6bb5\\u0031\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '164559', '711', 'zh-tw', 1000),
(2013, 169, '12-169', 1, '銘傳', '{"number":"197515","shop":"\\u9298\\u50b3","phone":"0228836632","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e94\\u6bb5\\u0032\\u0035\\u0030\\u865f"}', '197515', '711', 'zh-tw', 1000),
(2014, 169, '12-169', 1, '福榮', '{"number":"171764","shop":"\\u798f\\u69ae","phone":"0228330676","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0032\\u0030\\u865f\\u0032\\u0032\\u0032\\u865f"}', '171764', '711', 'zh-tw', 1000),
(2015, 169, '12-169', 1, '士正', '{"number":"131401","shop":"\\u58eb\\u6b63","phone":"0228813350","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '131401', '711', 'zh-tw', 1000),
(2016, 169, '12-169', 1, '福鑫', '{"number":"171432","shop":"\\u798f\\u946b","phone":"0228356026","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0032\\u0034\\u865f"}', '171432', '711', 'zh-tw', 1000),
(2017, 169, '12-169', 1, '社鑽', '{"number":"187460","shop":"\\u793e\\u947d","phone":"0228137115","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '187460', '711', 'zh-tw', 1000),
(2018, 169, '12-169', 1, '德行', '{"number":"128807","shop":"\\u5fb7\\u884c","phone":"0228341724","address":"\\u5fe0\\u8aa0\\u8def\\u4e8c\\u6bb5\\u0037\\u865f\\u0031\\u6a13"}', '128807', '711', 'zh-tw', 1000),
(2019, 169, '12-169', 1, '誠義', '{"number":"200929","shop":"\\u8aa0\\u7fa9","phone":"0228353013","address":"\\u5fe0\\u8aa0\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0036\\u865f"}', '200929', '711', 'zh-tw', 1000),
(2020, 169, '12-169', 1, '芝玉', '{"number":"163707","shop":"\\u829d\\u7389","phone":"0228350887","address":"\\u5fe0\\u7fa9\\u8857\\u0031\\u0032\\u0031\\u865f"}', '163707', '711', 'zh-tw', 1000),
(2021, 169, '12-169', 1, '凱立', '{"number":"190617","shop":"\\u51f1\\u7acb","phone":"0228329371","address":"\\u5fe0\\u7fa9\\u8857\\u0036\\u0038\\u865f"}', '190617', '711', 'zh-tw', 1000),
(2022, 169, '12-169', 1, '福順', '{"number":"992370","shop":"\\u798f\\u9806","phone":"0228166747","address":"\\u91cd\\u6176\\u5317\\u8def\\u56db\\u6bb5\\u0031\\u0034\\u0039\\u865f\\u0031\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '992370', '711', 'zh-tw', 1000),
(2023, 170, '12-170', 1, '庫德', '{"number":"175043","shop":"\\u5eab\\u5fb7","phone":"0287719076","address":"\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0036\\u5df7\\u0037\\u865f\\u0031\\u6a13"}', '175043', '711', 'zh-tw', 1000),
(2024, 170, '12-170', 1, '清愿', '{"number":"916527","shop":"\\u6e05\\u613f","phone":"0227729274","address":"\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0034\\u0033\\u0039\\u865f"}', '916527', '711', 'zh-tw', 1000),
(2025, 170, '12-170', 1, '新復勢', '{"number":"990673","shop":"\\u65b0\\u5fa9\\u52e2","phone":"0225785350","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0030\\u865f\\u0032\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '990673', '711', 'zh-tw', 1000),
(2026, 170, '12-170', 1, '台場', '{"number":"159340","shop":"\\u53f0\\u5834","phone":"0225794824","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u002d\\u0032\\u865f"}', '159340', '711', 'zh-tw', 1000),
(2027, 170, '12-170', 1, '中崙', '{"number":"960661","shop":"\\u4e2d\\u5d19","phone":"0225774806","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\u0032\\u0037\\u865f"}', '960661', '711', 'zh-tw', 1000),
(2028, 170, '12-170', 1, '威京', '{"number":"975906","shop":"\\u5a01\\u4eac","phone":"0227564116","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0031\\u0035\\u0031\\u865f"}', '975906', '711', 'zh-tw', 1000),
(2029, 170, '12-170', 1, '影城', '{"number":"164618","shop":"\\u5f71\\u57ce","phone":"0227634585","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0032\\u0034\\u0035\\u5df7\\u0033\\u0035\\u865f"}', '164618', '711', 'zh-tw', 1000),
(2030, 170, '12-170', 1, '寶德', '{"number":"190363","shop":"\\u5bf6\\u5fb7","phone":"0227476621","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0033\\u0032\\u0031\\u865f"}', '190363', '711', 'zh-tw', 1000),
(2031, 170, '12-170', 1, '松鑽', '{"number":"170152","shop":"\\u677e\\u947d","phone":"0227457876","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0036\\u0038\\u0036\\u865f"}', '170152', '711', 'zh-tw', 1000),
(2032, 170, '12-170', 1, '新饒河', '{"number":"185165","shop":"\\u65b0\\u9952\\u6cb3","phone":"0227632434","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0036\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '185165', '711', 'zh-tw', 1000),
(2033, 170, '12-170', 1, '聰明', '{"number":"186331","shop":"\\u8070\\u660e","phone":"0287874670","address":"\\u5bf6\\u6e05\\u8857\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '186331', '711', 'zh-tw', 1000),
(2034, 170, '12-170', 1, '北體', '{"number":"158923","shop":"\\u5317\\u9ad4","phone":"0225771113","address":"\\u5317\\u5be7\\u8def\\u0036\\u0036\\u865f"}', '158923', '711', 'zh-tw', 1000),
(2035, 170, '12-170', 1, '松饒', '{"number":"883223","shop":"\\u677e\\u9952","phone":"0227475146","address":"\\u6148\\u7950\\u91cc\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\u0037\\u0036\\u0037\\u865f\\u0037\\u0036\\u0039\\u865f"}', '883223', '711', 'zh-tw', 1000),
(2036, 170, '12-170', 1, '統威', '{"number":"171421","shop":"\\u7d71\\u5a01","phone":"0227481762","address":"\\u6771\\u8208\\u8def\\u0031\\u0033\\u4e4b\\u0031\\u865f"}', '171421', '711', 'zh-tw', 1000),
(2037, 170, '12-170', 1, '錢京', '{"number":"131593","shop":"\\u9322\\u4eac","phone":"0227177520","address":"\\u6566\\u5316\\u5317\\u8def\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '131593', '711', 'zh-tw', 1000),
(2038, 170, '12-170', 1, '敦北', '{"number":"114554","shop":"\\u6566\\u5317","phone":"0225472052","address":"\\u6566\\u5316\\u5317\\u8def\\u0031\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '114554', '711', 'zh-tw', 1000),
(2039, 170, '12-170', 1, '上弘', '{"number":"170945","shop":"\\u4e0a\\u5f18","phone":"0225472928","address":"\\u6566\\u5316\\u5317\\u8def\\u0031\\u0036\\u0038\\u865f\\u0042\\u0032"}', '170945', '711', 'zh-tw', 1000),
(2040, 170, '12-170', 1, '長塑', '{"number":"189710","shop":"\\u9577\\u5851","phone":"0225148851","address":"\\u6566\\u5316\\u5317\\u8def\\u0031\\u0039\\u0039\\u5df7\\u0032\\u5f04\\u0039\\u865f\\u0031\\u6a13"}', '189710', '711', 'zh-tw', 1000),
(2041, 170, '12-170', 1, '松機', '{"number":"181185","shop":"\\u677e\\u6a5f","phone":"0225461584","address":"\\u6566\\u5316\\u5317\\u8def\\u0033\\u0034\\u0030\\u4e4b\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '181185', '711', 'zh-tw', 1000),
(2042, 170, '12-170', 1, '復旦', '{"number":"915270","shop":"\\u5fa9\\u65e6","phone":"0225777873","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\u0035\\u865f"}', '915270', '711', 'zh-tw', 1000),
(2043, 170, '12-170', 1, '塔優', '{"number":"112684","shop":"\\u5854\\u512a","phone":"0227648499","address":"\\u64ab\\u9060\\u8857\\u0031\\u0039\\u0037\\u865f\\u0031\\u0039\\u0039\\u865f"}', '112684', '711', 'zh-tw', 1000),
(2044, 170, '12-170', 1, '復星', '{"number":"194642","shop":"\\u5fa9\\u661f","phone":"0227400103","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0031\\u0035\\u4e4b\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '194642', '711', 'zh-tw', 1000),
(2045, 170, '12-170', 1, '復春', '{"number":"184782","shop":"\\u5fa9\\u6625","phone":"0227151190","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0031\\u0037\\u0039\\u865f"}', '184782', '711', 'zh-tw', 1000),
(2046, 170, '12-170', 1, '東復', '{"number":"165068","shop":"\\u6771\\u5fa9","phone":"0225472325","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0033\\u0031\\u0033\\u5df7\\u0032\\u0035\\u865f"}', '165068', '711', 'zh-tw', 1000),
(2047, 170, '12-170', 1, '樂得', '{"number":"906209","shop":"\\u6a02\\u5f97","phone":"0227401886","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0033\\u0035\\u865f"}', '906209', '711', 'zh-tw', 1000),
(2048, 170, '12-170', 1, '風復', '{"number":"902908","shop":"\\u98a8\\u5fa9","phone":"0227110868","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u865f"}', '902908', '711', 'zh-tw', 1000),
(2049, 170, '12-170', 1, '京復', '{"number":"190064","shop":"\\u4eac\\u5fa9","phone":"0227425644","address":"\\u5149\\u5fa9\\u5317\\u8def\\u0031\\u0031\\u5df7\\u0034\\u0034\\u865f"}', '190064', '711', 'zh-tw', 1000),
(2050, 170, '12-170', 1, '健一', '{"number":"141992","shop":"\\u5065\\u4e00","phone":"0225149369","address":"\\u5065\\u5eb7\\u8def\\u0031\\u0031\\u865f"}', '141992', '711', 'zh-tw', 1000),
(2051, 170, '12-170', 1, '婦聯', '{"number":"173531","shop":"\\u5a66\\u806f","phone":"0227609484","address":"\\u5065\\u5eb7\\u8def\\u0032\\u0032\\u0034\\u865f"}', '173531', '711', 'zh-tw', 1000),
(2052, 170, '12-170', 1, '民有', '{"number":"961295","shop":"\\u6c11\\u6709","phone":"0227154294","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0038\\u865f"}', '961295', '711', 'zh-tw', 1000),
(2053, 170, '12-170', 1, '敦化', '{"number":"199267","shop":"\\u6566\\u5316","phone":"0287129627","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0030\\u5df7\\u0039\\u865f\\u0031\\u6a13"}', '199267', '711', 'zh-tw', 1000),
(2054, 170, '12-170', 1, '復安', '{"number":"170657","shop":"\\u5fa9\\u5b89","phone":"0227127923","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\u0031\\u0033\\u0030\\u5df7\\u0032\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '170657', '711', 'zh-tw', 1000),
(2055, 170, '12-170', 1, '民復', '{"number":"185707","shop":"\\u6c11\\u5fa9","phone":"0225140673","address":"\\u6c11\\u751f\\u6771\\u8def\\u56db\\u6bb5\\u0031\\u0033\\u0030\\u865f"}', '185707', '711', 'zh-tw', 1000),
(2056, 170, '12-170', 1, '明塑', '{"number":"135089","shop":"\\u660e\\u5851","phone":"0227187590","address":"\\u6c11\\u751f\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0034\\u865f\\u4e4b\\u0032\\u4e00\\u6a13"}', '135089', '711', 'zh-tw', 1000),
(2057, 170, '12-170', 1, '東鑫', '{"number":"164803","shop":"\\u6771\\u946b","phone":"0227196327","address":"\\u6c11\\u751f\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0035\\u5df7\\u0031\\u0030\\u865f"}', '164803', '711', 'zh-tw', 1000),
(2058, 170, '12-170', 1, '東吉', '{"number":"148579","shop":"\\u6771\\u5409","phone":"0227622908","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e94\\u6bb5\\u0031\\u0030\\u0030\\u865f"}', '148579', '711', 'zh-tw', 1000),
(2059, 170, '12-170', 1, '東榮', '{"number":"896241","shop":"\\u6771\\u69ae","phone":"0227622216","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e94\\u6bb5\\u0036\\u0035\\u865f"}', '896241', '711', 'zh-tw', 1000),
(2060, 170, '12-170', 1, '南京', '{"number":"961055","shop":"\\u5357\\u4eac","phone":"0225466532","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0033\\u5df7\\u0035\\u865f"}', '961055', '711', 'zh-tw', 1000),
(2061, 170, '12-170', 1, '東勢', '{"number":"160074","shop":"\\u6771\\u52e2","phone":"0225456294","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\u0031\\u0033\\u0033\\u5df7\\u0036\\u5f04\\u0031\\u865f"}', '160074', '711', 'zh-tw', 1000),
(2062, 170, '12-170', 1, '小巨蛋', '{"number":"167352","shop":"\\u5c0f\\u5de8\\u86cb","phone":"0225774236","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\u0032\\u865f"}', '167352', '711', 'zh-tw', 1000),
(2063, 170, '12-170', 1, '首都', '{"number":"164179","shop":"\\u9996\\u90fd","phone":"0225453085","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0031\\u865f\\u4e4b\\u0032"}', '164179', '711', 'zh-tw', 1000),
(2064, 170, '12-170', 1, '京育', '{"number":"166706","shop":"\\u4eac\\u80b2","phone":"0225794292","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0032\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '166706', '711', 'zh-tw', 1000),
(2065, 170, '12-170', 1, '京城', '{"number":"183011","shop":"\\u4eac\\u57ce","phone":"0225474817","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\u0037\\u0035\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '183011', '711', 'zh-tw', 1000),
(2066, 170, '12-170', 1, '京發', '{"number":"991551","shop":"\\u4eac\\u767c","phone":"0237652632","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0031\\u0033\\u0039\\u4e4b\\u0034\\u53ca\\u0031\\u0033\\u0039\\u4e4b\\u0038\\u865f"}', '991551', '711', 'zh-tw', 1000),
(2067, 170, '12-170', 1, '東光', '{"number":"174006","shop":"\\u6771\\u5149","phone":"0237651082","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '174006', '711', 'zh-tw', 1000),
(2068, 170, '12-170', 1, '京東', '{"number":"167477","shop":"\\u4eac\\u6771","phone":"0227656132","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '167477', '711', 'zh-tw', 1000),
(2069, 170, '12-170', 1, '京佳', '{"number":"197652","shop":"\\u4eac\\u4f73","phone":"0227487485","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0032\\u0032\\u0039\\u865f\\u0032\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '197652', '711', 'zh-tw', 1000),
(2070, 170, '12-170', 1, '京寶', '{"number":"193236","shop":"\\u4eac\\u5bf6","phone":"0227606498","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0032\\u0039\\u0031\\u5df7\\u0034\\u4e4b\\u0031\\u865f\\u0034\\u4e4b\\u0032\\u865f"}', '193236', '711', 'zh-tw', 1000),
(2071, 170, '12-170', 1, '通盈', '{"number":"186168","shop":"\\u901a\\u76c8","phone":"0227604390","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0033\\u0031\\u0035\\u865f"}', '186168', '711', 'zh-tw', 1000),
(2072, 170, '12-170', 1, '新寶清', '{"number":"171638","shop":"\\u65b0\\u5bf6\\u6e05","phone":"0227624852","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0033\\u0033\\u0034\\u865f\\u0033\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '171638', '711', 'zh-tw', 1000),
(2073, 170, '12-170', 1, '吉盛', '{"number":"185682","shop":"\\u5409\\u76db","phone":"0227479591","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\u0036\\u0036\\u5df7\\u0033\\u5f04\\u0031\\u865f\\u0031\\u6a13"}', '185682', '711', 'zh-tw', 1000),
(2074, 170, '12-170', 1, '新育商', '{"number":"165976","shop":"\\u65b0\\u80b2\\u5546","phone":"0225774269","address":"\\u5be7\\u5b89\\u8857\\u0033\\u5df7\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '165976', '711', 'zh-tw', 1000),
(2075, 170, '12-170', 1, '松慶', '{"number":"181680","shop":"\\u677e\\u6176","phone":"0225450149","address":"\\u6176\\u57ce\\u8857\\u0031\\u865f\\u0031\\u6a13"}', '181680', '711', 'zh-tw', 1000),
(2076, 170, '12-170', 1, '松民', '{"number":"188681","shop":"\\u677e\\u6c11","phone":"0227480323","address":"\\u4e09\\u6c11\\u8def\\u0031\\u0030\\u865f"}', '188681', '711', 'zh-tw', 1000),
(2077, 170, '12-170', 1, '朝福', '{"number":"164445","shop":"\\u671d\\u798f","phone":"0237652976","address":"\\u4e09\\u6c11\\u8def\\u0031\\u0031\\u0035\\u865f"}', '164445', '711', 'zh-tw', 1000),
(2078, 170, '12-170', 1, '市大', '{"number":"138583","shop":"\\u5e02\\u5927","phone":"0287710481","address":"\\u5e02\\u6c11\\u5927\\u9053\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0035\\u865f"}', '138583', '711', 'zh-tw', 1000),
(2079, 170, '12-170', 1, '松禾', '{"number":"990352","shop":"\\u677e\\u79be","phone":"0237651361","address":"\\u5854\\u60a0\\u8def\\u0033\\u0031\\u865f\\u0033\\u0033\\u865f"}', '990352', '711', 'zh-tw', 1000),
(2080, 170, '12-170', 1, '征東', '{"number":"140276","shop":"\\u5f81\\u6771","phone":"0227534174","address":"\\u65b0\\u6771\\u8857\\u0031\\u0035\\u5df7\\u0031\\u865f"}', '140276', '711', 'zh-tw', 1000),
(2081, 170, '12-170', 1, '征唐', '{"number":"187806","shop":"\\u5f81\\u5510","phone":"0227616499","address":"\\u65b0\\u6771\\u8857\\u0034\\u0031\\u002d\\u0037\\u865f"}', '187806', '711', 'zh-tw', 1000),
(2082, 170, '12-170', 1, '福源', '{"number":"135610","shop":"\\u798f\\u6e90","phone":"0227649672","address":"\\u65b0\\u6771\\u8857\\u0036\\u0030\\u5df7\\u0031\\u0036\\u865f\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '135610', '711', 'zh-tw', 1000),
(2083, 170, '12-170', 1, '吉仁', '{"number":"166832","shop":"\\u5409\\u4ec1","phone":"0225793557","address":"\\u5ef6\\u5409\\u8857\\u0032\\u0037\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '166832', '711', 'zh-tw', 1000),
(2084, 170, '12-170', 1, '鑫壽', '{"number":"190145","shop":"\\u946b\\u58fd","phone":"0227694858","address":"\\u5ef6\\u58fd\\u8857\\u0033\\u0032\\u0033\\u865f"}', '190145', '711', 'zh-tw', 1000),
(2085, 170, '12-170', 1, '延壽', '{"number":"173988","shop":"\\u5ef6\\u58fd","phone":"0227622884","address":"\\u5ef6\\u58fd\\u8857\\u0034\\u0032\\u0032\\u865f"}', '173988', '711', 'zh-tw', 1000),
(2086, 170, '12-170', 1, '延新', '{"number":"161402","shop":"\\u5ef6\\u65b0","phone":"0287873357","address":"\\u5ef6\\u58fd\\u8857\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '161402', '711', 'zh-tw', 1000),
(2087, 171, '12-171', 1, '寶昌', '{"number":"129095","shop":"\\u5bf6\\u660c","phone":"0223045536","address":"\\u5bf6\\u8208\\u8857\\u0031\\u0038\\u0036\\u865f"}', '129095', '711', 'zh-tw', 1000),
(2088, 171, '12-171', 1, '鑫寶', '{"number":"153250","shop":"\\u946b\\u5bf6","phone":"0223057962","address":"\\u5bf6\\u8208\\u8857\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '153250', '711', 'zh-tw', 1000),
(2089, 171, '12-171', 1, '新起', '{"number":"149321","shop":"\\u65b0\\u8d77","phone":"0223147269","address":"\\u9577\\u6c99\\u8857\\u4e8c\\u6bb5\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '149321', '711', 'zh-tw', 1000),
(2090, 171, '12-171', 1, '明日', '{"number":"143666","shop":"\\u660e\\u65e5","phone":"0223149156","address":"\\u6210\\u90fd\\u8def\\u0032\\u0037\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '143666', '711', 'zh-tw', 1000),
(2091, 171, '12-171', 1, '成昆', '{"number":"184494","shop":"\\u6210\\u6606","phone":"0223832594","address":"\\u6210\\u90fd\\u8def\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '184494', '711', 'zh-tw', 1000),
(2092, 171, '12-171', 1, '成都', '{"number":"131799","shop":"\\u6210\\u90fd","phone":"0223882392","address":"\\u6210\\u90fd\\u8def\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '131799', '711', 'zh-tw', 1000),
(2093, 171, '12-171', 1, '萬忠', '{"number":"957229","shop":"\\u842c\\u5fe0","phone":"0223034250","address":"\\u6771\\u5712\\u8857\\u0032\\u0038\\u5df7\\u0035\\u0038\\u865f"}', '957229', '711', 'zh-tw', 1000),
(2094, 171, '12-171', 1, '萬長', '{"number":"153308","shop":"\\u842c\\u9577","phone":"0223039076","address":"\\u6771\\u5712\\u8857\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '153308', '711', 'zh-tw', 1000),
(2095, 171, '12-171', 1, '新峨嵋', '{"number":"957827","shop":"\\u65b0\\u5ce8\\u5d4b","phone":"0223704539","address":"\\u5ce8\\u5d4b\\u8857\\u0031\\u0031\\u0031\\u4e4b\\u0032\\u865f\\u4e4b\\u0033\\u865f"}', '957827', '711', 'zh-tw', 1000),
(2096, 171, '12-171', 1, '昆嵋', '{"number":"195623","shop":"\\u6606\\u5d4b","phone":"0223114646","address":"\\u5ce8\\u5d4b\\u8857\\u0037\\u0034\\u865f\\u0031\\u6a13"}', '195623', '711', 'zh-tw', 1000),
(2097, 171, '12-171', 1, '龍廣', '{"number":"125967","shop":"\\u9f8d\\u5ee3","phone":"0223362548","address":"\\u5ee3\\u5dde\\u8857\\u0031\\u0034\\u0038\\u865f"}', '125967', '711', 'zh-tw', 1000),
(2098, 171, '12-171', 1, '桂林', '{"number":"886222","shop":"\\u6842\\u6797","phone":"0223040689","address":"\\u6842\\u6797\\u8def\\u0031\\u0036\\u0030\\u865f"}', '886222', '711', 'zh-tw', 1000),
(2099, 171, '12-171', 1, '桂明', '{"number":"189776","shop":"\\u6842\\u660e","phone":"0223892844","address":"\\u6842\\u6797\\u8def\\u0035\\u0035\\u865f"}', '189776', '711', 'zh-tw', 1000),
(2100, 171, '12-171', 1, '六福', '{"number":"136406","shop":"\\u516d\\u798f","phone":"0223311176","address":"\\u6f22\\u53e3\\u8857\\u4e8c\\u6bb5\\u0037\\u0033\\u865f\\u0031\\u6a13"}', '136406', '711', 'zh-tw', 1000),
(2101, 171, '12-171', 1, '漢中', '{"number":"992130","shop":"\\u6f22\\u4e2d","phone":"0223120633","address":"\\u6f22\\u4e2d\\u8857\\u0031\\u0038\\u0035\\u865f\\u0031\\u0038\\u0037\\u865f"}', '992130', '711', 'zh-tw', 1000),
(2102, 171, '12-171', 1, '捷盟', '{"number":"197559","shop":"\\u6377\\u76df","phone":"0223895672","address":"\\u6f22\\u4e2d\\u8857\\u0035\\u0031\\u865f"}', '197559', '711', 'zh-tw', 1000),
(2103, 171, '12-171', 1, '華江', '{"number":"187781","shop":"\\u83ef\\u6c5f","phone":"0223088154","address":"\\u83ef\\u6c5f\\u91cc\\u0032\\u0030\\u9130\\u74b0\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0030\\u865f"}', '187781', '711', 'zh-tw', 1000),
(2104, 171, '12-171', 1, '富帆', '{"number":"117748","shop":"\\u5bcc\\u5e06","phone":"0223012146","address":"\\u83ef\\u4e2d\\u91cc\\u842c\\u5927\\u8def\\u0034\\u0036\\u0034\\u865f\\u4e00\\u6a13"}', '117748', '711', 'zh-tw', 1000),
(2105, 171, '12-171', 1, '雙環', '{"number":"846604","shop":"\\u96d9\\u74b0","phone":"0223361021","address":"\\u74b0\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0037\\u865f"}', '846604', '711', 'zh-tw', 1000),
(2106, 171, '12-171', 1, '華雙', '{"number":"975951","shop":"\\u83ef\\u96d9","phone":"0223065408","address":"\\u74b0\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0032\\u865f"}', '975951', '711', 'zh-tw', 1000),
(2107, 171, '12-171', 1, '萬華', '{"number":"120559","shop":"\\u842c\\u83ef","phone":"0223041593","address":"\\u8392\\u5149\\u8def\\u0032\\u0031\\u0036\\u865f\\u842c\\u5927\\u8def\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '120559', '711', 'zh-tw', 1000),
(2108, 171, '12-171', 1, '龍山', '{"number":"158853","shop":"\\u9f8d\\u5c71","phone":"0223068368","address":"\\u5eb7\\u5b9a\\u8def\\u0032\\u0030\\u0033\\u865f\\u0032\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '158853', '711', 'zh-tw', 1000),
(2109, 171, '12-171', 1, '漢陽', '{"number":"190927","shop":"\\u6f22\\u967d","phone":"0223310744","address":"\\u6606\\u660e\\u8857\\u0031\\u0039\\u0037\\u865f\\u0031\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '190927', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(2110, 171, '12-171', 1, '廣明', '{"number":"187389","shop":"\\u5ee3\\u660e","phone":"0223023362","address":"\\u6606\\u660e\\u8857\\u0032\\u0038\\u0035\\u865f\\u4e4b\\u0033\\u4e4b\\u0034"}', '187389', '711', 'zh-tw', 1000),
(2111, 171, '12-171', 1, '昆福', '{"number":"130361","shop":"\\u6606\\u798f","phone":"0223717744","address":"\\u6606\\u660e\\u8857\\u0033\\u0030\\u002d\\u0031\\u865f\\u0033\\u0030\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '130361', '711', 'zh-tw', 1000),
(2112, 171, '12-171', 1, '昆明', '{"number":"196039","shop":"\\u6606\\u660e","phone":"0223810140","address":"\\u6606\\u660e\\u8857\\u0037\\u0036\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '196039', '711', 'zh-tw', 1000),
(2113, 171, '12-171', 1, '世運', '{"number":"975663","shop":"\\u4e16\\u904b","phone":"0223753064","address":"\\u6606\\u660e\\u8857\\u0038\\u0031\\u865f\\u0038\\u0033\\u865f"}', '975663', '711', 'zh-tw', 1000),
(2114, 171, '12-171', 1, '鑫青天', '{"number":"188599","shop":"\\u946b\\u9752\\u5929","phone":"0223378341","address":"\\u9752\\u5e74\\u8def\\u0031\\u0034\\u0034\\u865f"}', '188599', '711', 'zh-tw', 1000),
(2115, 171, '12-171', 1, '青年', '{"number":"195139","shop":"\\u9752\\u5e74","phone":"0223079706","address":"\\u9752\\u5e74\\u8def\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '195139', '711', 'zh-tw', 1000),
(2116, 171, '12-171', 1, '青園', '{"number":"148052","shop":"\\u9752\\u5712","phone":"0223012464","address":"\\u9752\\u5e74\\u8def\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '148052', '711', 'zh-tw', 1000),
(2117, 171, '12-171', 1, '萬和', '{"number":"197272","shop":"\\u842c\\u548c","phone":"0223055379","address":"\\u842c\\u5927\\u8def\\u0031\\u0038\\u0032\\u865f\\u0031\\u0038\\u0034\\u865f"}', '197272', '711', 'zh-tw', 1000),
(2118, 171, '12-171', 1, '萬大', '{"number":"162977","shop":"\\u842c\\u5927","phone":"0223057808","address":"\\u842c\\u5927\\u8def\\u0032\\u0034\\u0035\\u865f\\u0032\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '162977', '711', 'zh-tw', 1000),
(2119, 171, '12-171', 1, '新艋舺', '{"number":"186652","shop":"\\u65b0\\u824b\\u823a","phone":"0223046585","address":"\\u842c\\u5927\\u8def\\u0032\\u0039\\u0032\\u865f"}', '186652', '711', 'zh-tw', 1000),
(2120, 171, '12-171', 1, '萬東', '{"number":"166876","shop":"\\u842c\\u6771","phone":"0223379121","address":"\\u842c\\u5927\\u8def\\u0034\\u0038\\u0036\\u5df7\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '166876', '711', 'zh-tw', 1000),
(2121, 171, '12-171', 1, '大華', '{"number":"184737","shop":"\\u5927\\u83ef","phone":"0223390762","address":"\\u842c\\u5927\\u8def\\u0034\\u0039\\u0035\\u865f\\u0034\\u0039\\u0037\\u865f"}', '184737', '711', 'zh-tw', 1000),
(2122, 171, '12-171', 1, '克難', '{"number":"149022","shop":"\\u514b\\u96e3","phone":"0223379081","address":"\\u842c\\u9752\\u8857\\u0031\\u0036\\u0038\\u865f"}', '149022', '711', 'zh-tw', 1000),
(2123, 171, '12-171', 1, '鑫樂昇', '{"number":"171306","shop":"\\u946b\\u6a02\\u6607","phone":"0223754357","address":"\\u6b66\\u660c\\u8857\\u4e8c\\u6bb5\\u0031\\u0031\\u0034\\u4e4b\\u0033\\u865f\\u002e\\u4e4b\\u0034\\u865f"}', '171306', '711', 'zh-tw', 1000),
(2124, 171, '12-171', 1, '鑫日新', '{"number":"183192","shop":"\\u946b\\u65e5\\u65b0","phone":"0223712502","address":"\\u6b66\\u660c\\u8857\\u4e8c\\u6bb5\\u0031\\u0032\\u0032\\u4e4b\\u0031\\u865f"}', '183192', '711', 'zh-tw', 1000),
(2125, 171, '12-171', 1, '鑫武昌', '{"number":"996372","shop":"\\u946b\\u6b66\\u660c","phone":"0223314737","address":"\\u6b66\\u660c\\u8857\\u4e8c\\u6bb5\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '996372', '711', 'zh-tw', 1000),
(2126, 171, '12-171', 1, '華藏', '{"number":"197124","shop":"\\u83ef\\u85cf","phone":"0223034547","address":"\\u897f\\u85cf\\u8def\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '197124', '711', 'zh-tw', 1000),
(2127, 171, '12-171', 1, '西寧南', '{"number":"180540","shop":"\\u897f\\u5be7\\u5357","phone":"0223831295","address":"\\u897f\\u5be7\\u5357\\u8def\\u0031\\u0034\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '180540', '711', 'zh-tw', 1000),
(2128, 171, '12-171', 1, '開寧', '{"number":"922197","shop":"\\u958b\\u5be7","phone":"0223884024","address":"\\u897f\\u5be7\\u5357\\u8def\\u0031\\u0036\\u865f"}', '922197', '711', 'zh-tw', 1000),
(2129, 171, '12-171', 1, '昆寧', '{"number":"185833","shop":"\\u6606\\u5be7","phone":"0223709656","address":"\\u897f\\u5be7\\u5357\\u8def\\u0035\\u0030\\u5df7\\u0033\\u865f\\u0035\\u865f"}', '185833', '711', 'zh-tw', 1000),
(2130, 171, '12-171', 1, '新寧南', '{"number":"960340","shop":"\\u65b0\\u5be7\\u5357","phone":"0223708471","address":"\\u897f\\u5be7\\u5357\\u8def\\u0038\\u0030\\u865f"}', '960340', '711', 'zh-tw', 1000),
(2131, 171, '12-171', 1, '漢寧', '{"number":"119146","shop":"\\u6f22\\u5be7","phone":"0223899050","address":"\\u897f\\u5be7\\u5357\\u8def\\u0038\\u0035\\u865f"}', '119146', '711', 'zh-tw', 1000),
(2132, 171, '12-171', 1, '園舺', '{"number":"149675","shop":"\\u5712\\u823a","phone":"0223086420","address":"\\u897f\\u5712\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0030\\u5df7\\u0035\\u0032\\u865f"}', '149675', '711', 'zh-tw', 1000),
(2133, 171, '12-171', 1, '萬運', '{"number":"181808","shop":"\\u842c\\u904b","phone":"0223088704","address":"\\u897f\\u5712\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0033\\u865f\\u5730\\u4e0b\\u5ba4"}', '181808', '711', 'zh-tw', 1000),
(2134, 171, '12-171', 1, '宏旭', '{"number":"177072","shop":"\\u5b8f\\u65ed","phone":"0223025905","address":"\\u897f\\u5712\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0038\\u865f\\u0031\\u4e4b\\u0032\\u6a13"}', '177072', '711', 'zh-tw', 1000),
(2135, 171, '12-171', 1, '凱富', '{"number":"184416","shop":"\\u51f1\\u5bcc","phone":"0223024836","address":"\\u897f\\u5712\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '184416', '711', 'zh-tw', 1000),
(2136, 171, '12-171', 1, '國雙', '{"number":"151117","shop":"\\u570b\\u96d9","phone":"0223390812","address":"\\u65b0\\u5fe0\\u91cc\\u897f\\u85cf\\u8def\\u0031\\u0032\\u0035\\u5df7\\u0031\\u0037\\u865f"}', '151117', '711', 'zh-tw', 1000),
(2137, 171, '12-171', 1, '興義', '{"number":"186711","shop":"\\u8208\\u7fa9","phone":"0223034630","address":"\\u8208\\u7fa9\\u8857\\u0036\\u865f\\u0038\\u865f\\u0031\\u6a13"}', '186711', '711', 'zh-tw', 1000),
(2138, 171, '12-171', 1, '中寧', '{"number":"149446","shop":"\\u4e2d\\u5be7","phone":"0223014902","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0036\\u0030\\u0032\\u002d\\u0031\\u002d\\u0032\\u865f\\u4e00\\u6a13"}', '149446', '711', 'zh-tw', 1000),
(2139, 172, '12-172', 1, '景捷', '{"number":"985718","shop":"\\u666f\\u6377","phone":"0229316909","address":"\\u666f\\u798f\\u8857\\u0032\\u0035\\u0032\\u865f"}', '985718', '711', 'zh-tw', 1000),
(2140, 172, '12-172', 1, '羅捷', '{"number":"961424","shop":"\\u7f85\\u6377","phone":"0286638381","address":"\\u666f\\u884c\\u91cc\\u7f85\\u65af\\u798f\\u8def\\u516d\\u6bb5\\u0033\\u0039\\u0031\\u865f"}', '961424', '711', 'zh-tw', 1000),
(2141, 172, '12-172', 1, '景高', '{"number":"174888","shop":"\\u666f\\u9ad8","phone":"0289316863","address":"\\u666f\\u83ef\\u91cc\\u666f\\u8208\\u8def\\u0031\\u0034\\u865f"}', '174888', '711', 'zh-tw', 1000),
(2142, 172, '12-172', 1, '景中', '{"number":"905815","shop":"\\u666f\\u4e2d","phone":"0286637537","address":"\\u666f\\u6587\\u91cc\\u666f\\u6587\\u8857\\u0039\\u0036\\u865f\\u0039\\u0038\\u865f"}', '905815', '711', 'zh-tw', 1000),
(2143, 172, '12-172', 1, '景興', '{"number":"975847","shop":"\\u666f\\u8208","phone":"0229341840","address":"\\u666f\\u8208\\u8def\\u0031\\u0031\\u0033\\u865f\\u0031\\u0031\\u0035\\u865f"}', '975847', '711', 'zh-tw', 1000),
(2144, 172, '12-172', 1, '漢神', '{"number":"135229","shop":"\\u6f22\\u795e","phone":"0229338701","address":"\\u666f\\u4e2d\\u8857\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '135229', '711', 'zh-tw', 1000),
(2145, 172, '12-172', 1, '新萬隆', '{"number":"190156","shop":"\\u65b0\\u842c\\u9686","phone":"0229353483","address":"\\u7f85\\u65af\\u798f\\u8def\\u516d\\u6bb5\\u0032\\u0030\\u865f\\u0032\\u0032\\u865f"}', '190156', '711', 'zh-tw', 1000),
(2146, 172, '12-172', 1, '滬江', '{"number":"187909","shop":"\\u6eec\\u6c5f","phone":"0229358120","address":"\\u7f85\\u65af\\u798f\\u8def\\u516d\\u6bb5\\u0033\\u0030\\u0038\\u865f\\u0033\\u0031\\u0030\\u865f"}', '187909', '711', 'zh-tw', 1000),
(2147, 172, '12-172', 1, '羅斯福', '{"number":"190042","shop":"\\u7f85\\u65af\\u798f","phone":"0229342178","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\u0032\\u0031\\u0036\\u865f"}', '190042', '711', 'zh-tw', 1000),
(2148, 172, '12-172', 1, '新萬盛', '{"number":"149594","shop":"\\u65b0\\u842c\\u76db","phone":"0286635872","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '149594', '711', 'zh-tw', 1000),
(2149, 172, '12-172', 1, '萬隆站', '{"number":"148683","shop":"\\u842c\\u9686\\u7ad9","phone":"0286632730","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\u0032\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '148683', '711', 'zh-tw', 1000),
(2150, 172, '12-172', 1, '木新', '{"number":"875200","shop":"\\u6728\\u65b0","phone":"0229385892","address":"\\u6728\\u65b0\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0035\\u865f"}', '875200', '711', 'zh-tw', 1000),
(2151, 172, '12-172', 1, '新景美', '{"number":"128287","shop":"\\u65b0\\u666f\\u7f8e","phone":"0229388317","address":"\\u6728\\u65b0\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0039\\u865f\\u0031\\u0038\\u0031\\u865f"}', '128287', '711', 'zh-tw', 1000),
(2152, 172, '12-172', 1, '文一', '{"number":"177359","shop":"\\u6587\\u4e00","phone":"0229383654","address":"\\u6728\\u65b0\\u8def\\u4e09\\u6bb5\\u0033\\u0032\\u0037\\u865f"}', '177359', '711', 'zh-tw', 1000),
(2153, 172, '12-172', 1, '文儀', '{"number":"968388","shop":"\\u6587\\u5100","phone":"0286618765","address":"\\u6728\\u65b0\\u8def\\u4e09\\u6bb5\\u0035\\u0034\\u865f\\u0035\\u0036\\u865f"}', '968388', '711', 'zh-tw', 1000),
(2154, 172, '12-172', 1, '木柵', '{"number":"855398","shop":"\\u6728\\u67f5","phone":"0229371739","address":"\\u6728\\u67f5\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0037\\u865f"}', '855398', '711', 'zh-tw', 1000),
(2155, 172, '12-172', 1, '新安康', '{"number":"990053","shop":"\\u65b0\\u5b89\\u5eb7","phone":"0229361151","address":"\\u6728\\u67f5\\u8def\\u4e8c\\u6bb5\\u0038\\u0038\\u865f\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '990053', '711', 'zh-tw', 1000),
(2156, 172, '12-172', 1, '木盛', '{"number":"185394","shop":"\\u6728\\u76db","phone":"0286611837","address":"\\u6728\\u67f5\\u8def\\u4e09\\u6bb5\\u0038\\u0038\\u865f"}', '185394', '711', 'zh-tw', 1000),
(2157, 172, '12-172', 1, '博嘉', '{"number":"180595","shop":"\\u535a\\u5609","phone":"0282300388","address":"\\u6728\\u67f5\\u8def\\u56db\\u6bb5\\u0031\\u0031\\u0037\\u865f\\u0031\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '180595', '711', 'zh-tw', 1000),
(2158, 172, '12-172', 1, '世成', '{"number":"196198","shop":"\\u4e16\\u6210","phone":"0222363271","address":"\\u6728\\u67f5\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0031\\u865f\\u0031\\u6a13\\u0028\\u4e16\\u65b0\\u5927\\u7ba1\\u9662\\u0029"}', '196198', '711', 'zh-tw', 1000),
(2159, 172, '12-172', 1, '試院', '{"number":"996143","shop":"\\u8a66\\u9662","phone":"0222360262","address":"\\u6728\\u67f5\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0039\\u865f"}', '996143', '711', 'zh-tw', 1000),
(2160, 172, '12-172', 1, '世新大', '{"number":"190123","shop":"\\u4e16\\u65b0\\u5927","phone":"0222361484","address":"\\u6728\\u67f5\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '190123', '711', 'zh-tw', 1000),
(2161, 172, '12-172', 1, '華興', '{"number":"183572","shop":"\\u83ef\\u8208","phone":"0229371244","address":"\\u6728\\u67f5\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0034\\u865f\\u0032\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '183572', '711', 'zh-tw', 1000),
(2162, 172, '12-172', 1, '台師大', '{"number":"991894","shop":"\\u53f0\\u5e2b\\u5927","phone":"0286635162","address":"\\u6c40\\u5dde\\u8def\\u56db\\u6bb5\\u0038\\u0038\\u865f\\u884c\\u653f\\u5927\\u6a13\\u0031\\u6a13"}', '991894', '711', 'zh-tw', 1000),
(2163, 172, '12-172', 1, '萬芳', '{"number":"885609","shop":"\\u842c\\u82b3","phone":"0222390910","address":"\\u842c\\u5b89\\u8857\\u0032\\u0033\\u865f\\u0032\\u0035\\u865f"}', '885609', '711', 'zh-tw', 1000),
(2164, 172, '12-172', 1, '萬美', '{"number":"165943","shop":"\\u842c\\u7f8e","phone":"0222398986","address":"\\u842c\\u548c\\u8857\\u0036\\u865f\\u0032\\u6a13\\u4e4b\\u0031"}', '165943', '711', 'zh-tw', 1000),
(2165, 172, '12-172', 1, '萬福', '{"number":"187817","shop":"\\u842c\\u798f","phone":"0229307076","address":"\\u842c\\u5e74\\u91cc\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\u0031\\u0037\\u0030\\u5df7\\u0033\\u0033\\u53ca\\u0033\\u0035\\u865f"}', '187817', '711', 'zh-tw', 1000),
(2166, 172, '12-172', 1, '仙岩', '{"number":"962346","shop":"\\u4ed9\\u5ca9","phone":"0229335139","address":"\\u4ed9\\u5ca9\\u8def\\u0031\\u0038\\u865f"}', '962346', '711', 'zh-tw', 1000),
(2167, 172, '12-172', 1, '辛亥站', '{"number":"127550","shop":"\\u8f9b\\u4ea5\\u7ad9","phone":"0286639792","address":"\\u8f9b\\u4ea5\\u8def\\u56db\\u6bb5\\u0031\\u0033\\u0032\\u865f"}', '127550', '711', 'zh-tw', 1000),
(2168, 172, '12-172', 1, '政新', '{"number":"195003","shop":"\\u653f\\u65b0","phone":"0229369304","address":"\\u65b0\\u5149\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u865f\\u0031\\u0032\\u865f\\u0031\\u0034\\u865f\\u0031\\u6a13\\u53ca\\u0042\\u0031"}', '195003', '711', 'zh-tw', 1000),
(2169, 172, '12-172', 1, '景華', '{"number":"190282","shop":"\\u666f\\u83ef","phone":"0229314829","address":"\\u8208\\u6771\\u91cc\\u666f\\u83ef\\u8857\\u0031\\u0033\\u0030\\u865f"}', '190282', '711', 'zh-tw', 1000),
(2170, 172, '12-172', 1, '興芳', '{"number":"975054","shop":"\\u8208\\u82b3","phone":"0222399843","address":"\\u8208\\u5149\\u91cc\\u8208\\u9686\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0033\\u002d\\u0031\\u0037\\u0035\\u865f"}', '975054', '711', 'zh-tw', 1000),
(2171, 172, '12-172', 1, '興隆', '{"number":"170381","shop":"\\u8208\\u9686","phone":"0229309249","address":"\\u8208\\u9686\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0039\\u865f"}', '170381', '711', 'zh-tw', 1000),
(2172, 172, '12-172', 1, '興岩', '{"number":"119489","shop":"\\u8208\\u5ca9","phone":"0229335405","address":"\\u8208\\u9686\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0034\\u5df7\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '119489', '711', 'zh-tw', 1000),
(2173, 172, '12-172', 1, '興北', '{"number":"135528","shop":"\\u8208\\u5317","phone":"0229356514","address":"\\u8208\\u9686\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0038\\u865f"}', '135528', '711', 'zh-tw', 1000),
(2174, 172, '12-172', 1, '萬芳醫', '{"number":"158772","shop":"\\u842c\\u82b3\\u91ab","phone":"0229341971","address":"\\u8208\\u9686\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0031\\u865f"}', '158772', '711', 'zh-tw', 1000),
(2175, 172, '12-172', 1, '康喜', '{"number":"200561","shop":"\\u5eb7\\u559c","phone":"0229332978","address":"\\u8208\\u9686\\u8def\\u4e09\\u6bb5\\u0034\\u0032\\u865f"}', '200561', '711', 'zh-tw', 1000),
(2176, 172, '12-172', 1, '北福興', '{"number":"960993","shop":"\\u5317\\u798f\\u8208","phone":"0229350416","address":"\\u8208\\u65fa\\u91cc\\u798f\\u8208\\u8def\\u0032\\u0030\\u865f"}', '960993', '711', 'zh-tw', 1000),
(2177, 172, '12-172', 1, '新秀', '{"number":"121068","shop":"\\u65b0\\u79c0","phone":"0229398096","address":"\\u79c0\\u660e\\u8def\\u4e8c\\u6bb5\\u0038\\u865f\\u0031\\u0030\\u865f"}', '121068', '711', 'zh-tw', 1000),
(2178, 172, '12-172', 1, '文山', '{"number":"119711","shop":"\\u6587\\u5c71","phone":"0229368284","address":"\\u6c38\\u5b89\\u8857\\u0032\\u0032\\u5df7\\u0032\\u0033\\u865f\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '119711', '711', 'zh-tw', 1000),
(2179, 172, '12-172', 1, '文新', '{"number":"189363","shop":"\\u6587\\u65b0","phone":"0222349624","address":"\\u6a1f\\u65b0\\u91cc\\u6728\\u65b0\\u8def\\u4e09\\u6bb5\\u0032\\u0037\\u0036\\u865f"}', '189363', '711', 'zh-tw', 1000),
(2180, 172, '12-172', 1, '金恩', '{"number":"883544","shop":"\\u91d1\\u6069","phone":"0286617034","address":"\\u6307\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0039\\u865f"}', '883544', '711', 'zh-tw', 1000),
(2181, 172, '12-172', 1, '政大', '{"number":"170668","shop":"\\u653f\\u5927","phone":"0229362025","address":"\\u6307\\u5357\\u8def\\u4e8c\\u6bb5\\u0039\\u0039\\u865f\\u0031\\u0030\\u0031\\u865f"}', '170668', '711', 'zh-tw', 1000),
(2182, 172, '12-172', 1, '添恩', '{"number":"855354","shop":"\\u6dfb\\u6069","phone":"0222343580","address":"\\u6307\\u5357\\u8def\\u4e09\\u6bb5\\u0038\\u865f\\u0031\\u0030\\u865f"}', '855354', '711', 'zh-tw', 1000),
(2183, 172, '12-172', 1, '指南', '{"number":"113160","shop":"\\u6307\\u5357","phone":"0229363203","address":"\\u6307\\u5357\\u8def\\u4e00\\u6bb5\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '113160', '711', 'zh-tw', 1000),
(2184, 172, '12-172', 1, '文忠', '{"number":"189695","shop":"\\u6587\\u5fe0","phone":"0229379722","address":"\\u5fe0\\u9806\\u8857\\u4e8c\\u6bb5\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '189695', '711', 'zh-tw', 1000),
(2185, 172, '12-172', 1, '忠順', '{"number":"138446","shop":"\\u5fe0\\u9806","phone":"0222345721","address":"\\u5fe0\\u9806\\u8857\\u4e00\\u6bb5\\u0032\\u0036\\u5df7\\u0031\\u0035\\u865f"}', '138446', '711', 'zh-tw', 1000),
(2186, 173, '12-173', 1, '崇德', '{"number":"122212","shop":"\\u5d07\\u5fb7","phone":"0287324275","address":"\\u5d07\\u5fb7\\u8857\\u0031\\u0030\\u0034\\u865f\\u0031\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '122212', '711', 'zh-tw', 1000),
(2187, 173, '12-173', 1, '福中', '{"number":"120353","shop":"\\u798f\\u4e2d","phone":"0227266631","address":"\\u798f\\u5fb7\\u8857\\u0031\\u0035\\u0039\\u865f\\u0031\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '120353', '711', 'zh-tw', 1000),
(2188, 173, '12-173', 1, '留公', '{"number":"201047","shop":"\\u7559\\u516c","phone":"0227591442","address":"\\u798f\\u5fb7\\u8857\\u0032\\u0034\\u0039\\u865f"}', '201047', '711', 'zh-tw', 1000),
(2189, 173, '12-173', 1, '信福', '{"number":"186065","shop":"\\u4fe1\\u798f","phone":"0227273047","address":"\\u798f\\u5fb7\\u8857\\u0033\\u0030\\u0038\\u865f\\u0033\\u0031\\u0030\\u5df7\\u0031\\u865f"}', '186065', '711', 'zh-tw', 1000),
(2190, 173, '12-173', 1, '光復', '{"number":"136716","shop":"\\u5149\\u5fa9","phone":"0227290723","address":"\\u5149\\u5fa9\\u5357\\u8def\\u0034\\u0037\\u0031\\u865f"}', '136716', '711', 'zh-tw', 1000),
(2191, 173, '12-173', 1, '麟運', '{"number":"135562","shop":"\\u9e9f\\u904b","phone":"0287327894","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\u0034\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '135562', '711', 'zh-tw', 1000),
(2192, 173, '12-173', 1, '慶林', '{"number":"193247","shop":"\\u6176\\u6797","phone":"0287864998","address":"\\u864e\\u6797\\u8857\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '193247', '711', 'zh-tw', 1000),
(2193, 173, '12-173', 1, '信林', '{"number":"158738","shop":"\\u4fe1\\u6797","phone":"0227278220","address":"\\u864e\\u6797\\u8857\\u0032\\u0032\\u0032\\u5df7\\u0037\\u865f\\u0039\\u865f\\u0031\\u6a13"}', '158738', '711', 'zh-tw', 1000),
(2194, 173, '12-173', 1, '鑫吉', '{"number":"174534","shop":"\\u946b\\u5409","phone":"0287874152","address":"\\u864e\\u6797\\u8857\\u0038\\u0035\\u865f"}', '174534', '711', 'zh-tw', 1000),
(2195, 173, '12-173', 1, '惠安', '{"number":"961000","shop":"\\u60e0\\u5b89","phone":"0227582394","address":"\\u60e0\\u5b89\\u91cc\\u5433\\u8208\\u8857\\u0035\\u0032\\u0030\\u865f"}', '961000', '711', 'zh-tw', 1000),
(2196, 173, '12-173', 1, '昌隆', '{"number":"185143","shop":"\\u660c\\u9686","phone":"0287323266","address":"\\u57fa\\u9686\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0031\\u002d\\u0034\\u865f"}', '185143', '711', 'zh-tw', 1000),
(2197, 173, '12-173', 1, '喬治', '{"number":"120515","shop":"\\u55ac\\u6cbb","phone":"0227329619","address":"\\u57fa\\u9686\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '120515', '711', 'zh-tw', 1000),
(2198, 173, '12-173', 1, '中興', '{"number":"128542","shop":"\\u4e2d\\u8208","phone":"0227586997","address":"\\u57fa\\u9686\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u865f"}', '128542', '711', 'zh-tw', 1000),
(2199, 173, '12-173', 1, '松高', '{"number":"993041","shop":"\\u677e\\u9ad8","phone":"0227670810","address":"\\u57fa\\u9686\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '993041', '711', 'zh-tw', 1000),
(2200, 173, '12-173', 1, '必成', '{"number":"190330","shop":"\\u5fc5\\u6210","phone":"0227640912","address":"\\u57fa\\u9686\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0038\\u865f\\u0031\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '190330', '711', 'zh-tw', 1000),
(2201, 173, '12-173', 1, '國貿', '{"number":"165987","shop":"\\u570b\\u8cbf","phone":"0227576752","address":"\\u57fa\\u9686\\u8def\\u4e00\\u6bb5\\u0033\\u0033\\u0033\\u865f\\u0042\\u0033"}', '165987', '711', 'zh-tw', 1000),
(2202, 173, '12-173', 1, '凱悅', '{"number":"164216","shop":"\\u51f1\\u6085","phone":"0287864836","address":"\\u57fa\\u9686\\u8def\\u4e00\\u6bb5\\u0033\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '164216', '711', 'zh-tw', 1000),
(2203, 173, '12-173', 1, '信嘉', '{"number":"965194","shop":"\\u4fe1\\u5609","phone":"0227325703","address":"\\u5609\\u8208\\u8857\\u0031\\u0038\\u0031\\u5df7\\u0032\\u0031\\u865f"}', '965194', '711', 'zh-tw', 1000),
(2204, 173, '12-173', 1, '興貿', '{"number":"963556","shop":"\\u8208\\u8cbf","phone":"0287867692","address":"\\u666f\\u65b0\\u91cc\\u838a\\u656c\\u8def\\u0031\\u0037\\u0038\\u5df7\\u0032\\u865f"}', '963556', '711', 'zh-tw', 1000),
(2205, 173, '12-173', 1, '萊福', '{"number":"135942","shop":"\\u840a\\u798f","phone":"0227279541","address":"\\u6797\\u53e3\\u8857\\u0034\\u0038\\u865f"}', '135942', '711', 'zh-tw', 1000),
(2206, 173, '12-173', 1, '台金', '{"number":"153294","shop":"\\u53f0\\u91d1","phone":"0281018195","address":"\\u5e02\\u5e9c\\u8def\\u0034\\u0035\\u865f\\u0042\\u0031\\u4e4b\\u0035\\u0033"}', '153294', '711', 'zh-tw', 1000),
(2207, 173, '12-173', 1, '德鄰', '{"number":"144669","shop":"\\u5fb7\\u9130","phone":"0227272819","address":"\\u677e\\u5fb7\\u8def\\u0031\\u0032\\u0037\\u865f\\u0031\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '144669', '711', 'zh-tw', 1000),
(2208, 173, '12-173', 1, '信德', '{"number":"190259","shop":"\\u4fe1\\u5fb7","phone":"0223455160","address":"\\u677e\\u5fb7\\u8def\\u0032\\u0030\\u0030\\u5df7\\u0031\\u0030\\u865f"}', '190259', '711', 'zh-tw', 1000),
(2209, 173, '12-173', 1, '松義', '{"number":"147299","shop":"\\u677e\\u7fa9","phone":"0227274474","address":"\\u677e\\u5fb7\\u8def\\u0032\\u0037\\u0031\\u865f"}', '147299', '711', 'zh-tw', 1000),
(2210, 173, '12-173', 1, '松錢', '{"number":"159269","shop":"\\u677e\\u9322","phone":"0227658380","address":"\\u677e\\u9686\\u8def\\u0031\\u0039\\u0032\\u865f\\u0031\\u0039\\u0034\\u865f\\u0031\\u6a13"}', '159269', '711', 'zh-tw', 1000),
(2211, 173, '12-173', 1, '信運', '{"number":"119054","shop":"\\u4fe1\\u904b","phone":"0227206815","address":"\\u677e\\u52e4\\u8857\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '119054', '711', 'zh-tw', 1000),
(2212, 173, '12-173', 1, '北府', '{"number":"170738","shop":"\\u5317\\u5e9c","phone":"0227586295","address":"\\u677e\\u4ec1\\u8def\\u0031\\u0036\\u0032\\u865f\\u0031\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '170738', '711', 'zh-tw', 1000),
(2213, 173, '12-173', 1, '松仁', '{"number":"906564","shop":"\\u677e\\u4ec1","phone":"0227299057","address":"\\u677e\\u4ec1\\u8def\\u0032\\u0031\\u0033\\u865f"}', '906564', '711', 'zh-tw', 1000),
(2214, 173, '12-173', 1, '富比世', '{"number":"195807","shop":"\\u5bcc\\u6bd4\\u4e16","phone":"0227202571","address":"\\u677e\\u4ec1\\u8def\\u0032\\u0034\\u0036\\u865f\\u0032\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '195807', '711', 'zh-tw', 1000),
(2215, 173, '12-173', 1, '宏泰', '{"number":"981901","shop":"\\u5b8f\\u6cf0","phone":"0287804531","address":"\\u677e\\u4ec1\\u8def\\u0039\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '981901', '711', 'zh-tw', 1000),
(2216, 173, '12-173', 1, '松泰', '{"number":"136783","shop":"\\u677e\\u6cf0","phone":"0227475337","address":"\\u677e\\u5c71\\u8def\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '136783', '711', 'zh-tw', 1000),
(2217, 173, '12-173', 1, '開源', '{"number":"170141","shop":"\\u958b\\u6e90","phone":"0227627486","address":"\\u677e\\u5c71\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u0033\\u0038\\u865f"}', '170141', '711', 'zh-tw', 1000),
(2218, 173, '12-173', 1, '新東宮', '{"number":"200907","shop":"\\u65b0\\u6771\\u5bae","phone":"0223466878","address":"\\u677e\\u5c71\\u8def\\u0034\\u0035\\u0035\\u865f"}', '200907', '711', 'zh-tw', 1000),
(2219, 173, '12-173', 1, '松家', '{"number":"991702","shop":"\\u677e\\u5bb6","phone":"0227263426","address":"\\u677e\\u5c71\\u8def\\u0036\\u0030\\u0038\\u865f\\u0036\\u0031\\u0030\\u865f"}', '991702', '711', 'zh-tw', 1000),
(2220, 173, '12-173', 1, '松信', '{"number":"198781","shop":"\\u677e\\u4fe1","phone":"0227656147","address":"\\u677e\\u4fe1\\u8def\\u0031\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '198781', '711', 'zh-tw', 1000),
(2221, 173, '12-173', 1, '三興', '{"number":"149697","shop":"\\u4e09\\u8208","phone":"0227335027","address":"\\u5433\\u8208\\u8857\\u0031\\u0035\\u0036\\u5df7\\u0032\\u5f04\\u0032\\u865f\\u0034\\u865f\\u0031\\u6a13"}', '149697', '711', 'zh-tw', 1000),
(2222, 173, '12-173', 1, '北醫大', '{"number":"153216","shop":"\\u5317\\u91ab\\u5927","phone":"0227393090","address":"\\u5433\\u8208\\u8857\\u0032\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '153216', '711', 'zh-tw', 1000),
(2223, 173, '12-173', 1, '北醫', '{"number":"978798","shop":"\\u5317\\u91ab","phone":"0227325119","address":"\\u5433\\u8208\\u8857\\u0032\\u0035\\u0032\\u865f"}', '978798', '711', 'zh-tw', 1000),
(2224, 173, '12-173', 1, '醫學', '{"number":"119478","shop":"\\u91ab\\u5b78","phone":"0287803729","address":"\\u5433\\u8208\\u8857\\u0032\\u0035\\u0037\\u865f\\u0032\\u0035\\u0039\\u865f"}', '119478', '711', 'zh-tw', 1000),
(2225, 173, '12-173', 1, '吳興', '{"number":"164490","shop":"\\u5433\\u8208","phone":"0227388391","address":"\\u5433\\u8208\\u8857\\u0032\\u0038\\u0034\\u5df7\\u0031\\u0038\\u5f04\\u0032\\u865f"}', '164490', '711', 'zh-tw', 1000),
(2226, 173, '12-173', 1, '信醫', '{"number":"970901","shop":"\\u4fe1\\u91ab","phone":"0227229305","address":"\\u5433\\u8208\\u8857\\u0033\\u0034\\u0036\\u865f\\u0033\\u0034\\u0038\\u865f"}', '970901', '711', 'zh-tw', 1000),
(2227, 173, '12-173', 1, '總站', '{"number":"186364","shop":"\\u7e3d\\u7ad9","phone":"0227585386","address":"\\u5433\\u8208\\u8857\\u0034\\u0038\\u0036\\u865f\\u0034\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '186364', '711', 'zh-tw', 1000),
(2228, 173, '12-173', 1, '道生', '{"number":"870504","shop":"\\u9053\\u751f","phone":"0287682914","address":"\\u65b0\\u4ec1\\u91cc\\u6771\\u8208\\u8def\\u0035\\u0037\\u865f"}', '870504', '711', 'zh-tw', 1000),
(2229, 173, '12-173', 1, '嘉馥', '{"number":"988016","shop":"\\u5609\\u99a5","phone":"0227592619","address":"\\u4fe1\\u7fa9\\u8def\\u516d\\u6bb5\\u0031\\u0031\\u865f"}', '988016', '711', 'zh-tw', 1000),
(2230, 173, '12-173', 1, '一零一', '{"number":"167651","shop":"\\u4e00\\u96f6\\u4e00","phone":"0227222342","address":"\\u4fe1\\u7fa9\\u8def\\u4e94\\u6bb5\\u0037\\u865f\\u0033\\u0035\\u6a13"}', '167651', '711', 'zh-tw', 1000),
(2231, 173, '12-173', 1, '新三連', '{"number":"121079","shop":"\\u65b0\\u4e09\\u9023","phone":"0287891461","address":"\\u9038\\u4ed9\\u8def\\u0034\\u0032\\u5df7\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '121079', '711', 'zh-tw', 1000),
(2232, 173, '12-173', 1, '信吉', '{"number":"188094","shop":"\\u4fe1\\u5409","phone":"0227569832","address":"\\u6c38\\u5409\\u8def\\u0032\\u0037\\u0038\\u5df7\\u0035\\u0038\\u5f04\\u0032\\u865f"}', '188094', '711', 'zh-tw', 1000),
(2233, 173, '12-173', 1, '永信', '{"number":"135241","shop":"\\u6c38\\u4fe1","phone":"0227469874","address":"\\u6c38\\u5409\\u8def\\u0033\\u0030\\u5df7\\u0031\\u0030\\u0033\\u865f"}', '135241', '711', 'zh-tw', 1000),
(2234, 173, '12-173', 1, '敦厚', '{"number":"130132","shop":"\\u6566\\u539a","phone":"0227677884","address":"\\u6c38\\u5409\\u8def\\u0033\\u0030\\u5df7\\u0031\\u0036\\u0038\\u5f04\\u0031\\u865f\\u0031\\u6a13"}', '130132', '711', 'zh-tw', 1000),
(2235, 173, '12-173', 1, '革新', '{"number":"200871","shop":"\\u9769\\u65b0","phone":"0227688917","address":"\\u6c38\\u5409\\u8def\\u0033\\u0032\\u865f\\u0033\\u0034\\u865f"}', '200871', '711', 'zh-tw', 1000),
(2236, 173, '12-173', 1, '仁和', '{"number":"151335","shop":"\\u4ec1\\u548c","phone":"0287891891","address":"\\u6b63\\u548c\\u91cc\\u5149\\u5fa9\\u5357\\u8def\\u0034\\u0031\\u0039\\u5df7\\u0034\\u0031\\u865f"}', '151335', '711', 'zh-tw', 1000),
(2237, 173, '12-173', 1, '東暉', '{"number":"127723","shop":"\\u6771\\u6689","phone":"0227205019","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0031\\u0034\\u865f"}', '127723', '711', 'zh-tw', 1000),
(2238, 173, '12-173', 1, '松聯', '{"number":"196040","shop":"\\u677e\\u806f","phone":"0237621705","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0035\\u0039\\u5df7\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '196040', '711', 'zh-tw', 1000),
(2239, 173, '12-173', 1, '聯合', '{"number":"184575","shop":"\\u806f\\u5408","phone":"0227663728","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\u0035\\u0035\\u0039\\u5df7\\u0036\\u865f"}', '184575', '711', 'zh-tw', 1000),
(2240, 173, '12-173', 1, '松捷', '{"number":"135425","shop":"\\u677e\\u6377","phone":"0227638813","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0031\\u4e4b\\u0036\\u865f"}', '135425', '711', 'zh-tw', 1000),
(2241, 173, '12-173', 1, '新工農', '{"number":"128036","shop":"\\u65b0\\u5de5\\u8fb2","phone":"0223456634","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0032\\u0033\\u0036\\u5df7\\u0036\\u002d\\u0033\\u865f\\u0038\\u865f\\u0031\\u6a13"}', '128036', '711', 'zh-tw', 1000),
(2242, 173, '12-173', 1, '松山', '{"number":"118970","shop":"\\u677e\\u5c71","phone":"0227229915","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0033\\u0038\\u0036\\u865f"}', '118970', '711', 'zh-tw', 1000),
(2243, 173, '12-173', 1, '忠林', '{"number":"144315","shop":"\\u5fe0\\u6797","phone":"0287893751","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0034\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '144315', '711', 'zh-tw', 1000),
(2244, 173, '12-173', 1, '光東', '{"number":"930637","shop":"\\u5149\\u6771","phone":"0223467948","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0035\\u0032\\u0034\\u5df7\\u0031\\u5f04\\u0031\\u865f"}', '930637', '711', 'zh-tw', 1000),
(2245, 173, '12-173', 1, '捷忠', '{"number":"198758","shop":"\\u6377\\u5fe0","phone":"0287856027","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0036\\u0031\\u0037\\u865f"}', '198758', '711', 'zh-tw', 1000),
(2246, 173, '12-173', 1, '鑫國泰', '{"number":"197733","shop":"\\u946b\\u570b\\u6cf0","phone":"0227227334","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0036\\u0038\\u865f\\u0032\\u0034\\u6a13"}', '197733', '711', 'zh-tw', 1000),
(2247, 173, '12-173', 1, '忠隆', '{"number":"195955","shop":"\\u5fe0\\u9686","phone":"0227654906","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\u0037\\u0031\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '195955', '711', 'zh-tw', 1000),
(2248, 173, '12-173', 1, '松智', '{"number":"174970","shop":"\\u677e\\u667a","phone":"0227206585","address":"\\u838a\\u656c\\u8def\\u0033\\u0032\\u0035\\u5df7\\u0034\\u0033\\u865f"}', '174970', '711', 'zh-tw', 1000),
(2249, 174, '12-174', 1, '東崙', '{"number":"886059","shop":"\\u6771\\u5d19","phone":"0227754769","address":"\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0032\\u865f"}', '886059', '711', 'zh-tw', 1000),
(2250, 174, '12-174', 1, '潤泰', '{"number":"996534","shop":"\\u6f64\\u6cf0","phone":"0227765865","address":"\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0034\\u865f"}', '996534', '711', 'zh-tw', 1000),
(2251, 174, '12-174', 1, '欣旺', '{"number":"929006","shop":"\\u6b23\\u65fa","phone":"0225321290","address":"\\u5317\\u5b89\\u8def\\u0036\\u0030\\u0034\\u865f\\u0036\\u0030\\u0036\\u865f"}', '929006', '711', 'zh-tw', 1000),
(2252, 174, '12-174', 1, '新大直', '{"number":"185051","shop":"\\u65b0\\u5927\\u76f4","phone":"0225329890","address":"\\u5317\\u5b89\\u8def\\u0036\\u0032\\u0031\\u5df7\\u0034\\u0038\\u865f"}', '185051', '711', 'zh-tw', 1000),
(2253, 174, '12-174', 1, '直安', '{"number":"165183","shop":"\\u76f4\\u5b89","phone":"0225330894","address":"\\u5317\\u5b89\\u8def\\u0036\\u0034\\u0039\\u865f"}', '165183', '711', 'zh-tw', 1000),
(2254, 174, '12-174', 1, '美麗華', '{"number":"185154","shop":"\\u7f8e\\u9e97\\u83ef","phone":"0285093170","address":"\\u5317\\u5b89\\u8def\\u0038\\u0033\\u0039\\u002d\\u0031\\u865f"}', '185154', '711', 'zh-tw', 1000),
(2255, 174, '12-174', 1, '長通', '{"number":"170325","shop":"\\u9577\\u901a","phone":"0225157845","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0031\\u865f"}', '170325', '711', 'zh-tw', 1000),
(2256, 174, '12-174', 1, '鑫安江', '{"number":"148133","shop":"\\u946b\\u5b89\\u6c5f","phone":"0227774809","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0038\\u865f\\u0031\\u0037\\u0038\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '148133', '711', 'zh-tw', 1000),
(2257, 174, '12-174', 1, '江東', '{"number":"111636","shop":"\\u6c5f\\u6771","phone":"0225223791","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\u0034\\u0033\\u865f\\u0034\\u0035\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '111636', '711', 'zh-tw', 1000),
(2258, 174, '12-174', 1, '長津', '{"number":"960096","shop":"\\u9577\\u6d25","phone":"0225812531","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u865f"}', '960096', '711', 'zh-tw', 1000),
(2259, 174, '12-174', 1, '鑫長安', '{"number":"970749","shop":"\\u946b\\u9577\\u5b89","phone":"0225813841","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u5df7\\u0031\\u4e4b\\u0033\\u865f"}', '970749', '711', 'zh-tw', 1000),
(2260, 174, '12-174', 1, '長新', '{"number":"136842","shop":"\\u9577\\u65b0","phone":"0225676401","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e00\\u6bb5\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '136842', '711', 'zh-tw', 1000),
(2261, 174, '12-174', 1, '長北', '{"number":"865890","shop":"\\u9577\\u5317","phone":"0225112677","address":"\\u9577\\u6625\\u8def\\u0031\\u0031\\u865f"}', '865890', '711', 'zh-tw', 1000),
(2262, 174, '12-174', 1, '春城', '{"number":"906782","shop":"\\u6625\\u57ce","phone":"0225316181","address":"\\u9577\\u6625\\u8def\\u0031\\u0033\\u0035\\u865f\\u0031\\u0033\\u0035\\u4e4b\\u0031\\u865f"}', '906782', '711', 'zh-tw', 1000),
(2263, 174, '12-174', 1, '莊福', '{"number":"931607","shop":"\\u838a\\u798f","phone":"0225045845","address":"\\u9577\\u6625\\u8def\\u0031\\u0036\\u0038\\u865f"}', '931607', '711', 'zh-tw', 1000),
(2264, 174, '12-174', 1, '國學', '{"number":"186559","shop":"\\u570b\\u5b78","phone":"0225068651","address":"\\u9577\\u6625\\u8def\\u0031\\u0038\\u0032\\u865f"}', '186559', '711', 'zh-tw', 1000),
(2265, 174, '12-174', 1, '春龍', '{"number":"164777","shop":"\\u6625\\u9f8d","phone":"0225021405","address":"\\u9577\\u6625\\u8def\\u0032\\u0035\\u0037\\u865f"}', '164777', '711', 'zh-tw', 1000),
(2266, 174, '12-174', 1, '春森', '{"number":"956156","shop":"\\u6625\\u68ee","phone":"0225641630","address":"\\u9577\\u6625\\u8def\\u0036\\u0037\\u865f"}', '956156', '711', 'zh-tw', 1000),
(2267, 174, '12-174', 1, '實踐大學', '{"number":"186663","shop":"\\u5be6\\u8e10\\u5927\\u5b78","phone":"0285091737","address":"\\u5927\\u76f4\\u8857\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '186663', '711', 'zh-tw', 1000),
(2268, 174, '12-174', 1, '鑫德惠', '{"number":"200804","shop":"\\u946b\\u5fb7\\u60e0","phone":"0225995347","address":"\\u5fb7\\u60e0\\u8857\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '200804', '711', 'zh-tw', 1000),
(2269, 174, '12-174', 1, '復北', '{"number":"132493","shop":"\\u5fa9\\u5317","phone":"0227184351","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0031\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '132493', '711', 'zh-tw', 1000),
(2270, 174, '12-174', 1, '復錦', '{"number":"194572","shop":"\\u5fa9\\u9326","phone":"0225160812","address":"\\u5fa9\\u8208\\u5317\\u8def\\u0033\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '194572', '711', 'zh-tw', 1000),
(2271, 174, '12-174', 1, '錦合', '{"number":"189259","shop":"\\u9326\\u5408","phone":"0225040526","address":"\\u5408\\u6c5f\\u8857\\u0031\\u0031\\u0037\\u865f"}', '189259', '711', 'zh-tw', 1000),
(2272, 174, '12-174', 1, '合江', '{"number":"166175","shop":"\\u5408\\u6c5f","phone":"0225054339","address":"\\u5408\\u6c5f\\u8857\\u0036\\u0030\\u865f"}', '166175', '711', 'zh-tw', 1000),
(2273, 174, '12-174', 1, '大吉', '{"number":"985305","shop":"\\u5927\\u5409","phone":"0225114007","address":"\\u5409\\u6797\\u8def\\u0031\\u0030\\u0031\\u865f"}', '985305', '711', 'zh-tw', 1000),
(2274, 174, '12-174', 1, '吉林', '{"number":"130394","shop":"\\u5409\\u6797","phone":"0225312934","address":"\\u5409\\u6797\\u8def\\u0032\\u0030\\u0039\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '130394', '711', 'zh-tw', 1000),
(2275, 174, '12-174', 1, '圓武', '{"number":"188588","shop":"\\u5713\\u6b66","phone":"0225314574","address":"\\u5409\\u6797\\u8def\\u0032\\u0038\\u865f"}', '188588', '711', 'zh-tw', 1000),
(2276, 174, '12-174', 1, '吉安', '{"number":"928357","shop":"\\u5409\\u5b89","phone":"0225943806","address":"\\u5409\\u6797\\u8def\\u0033\\u0036\\u0035\\u865f\\u0033\\u0036\\u0037\\u865f"}', '928357', '711', 'zh-tw', 1000),
(2277, 174, '12-174', 1, '建錦', '{"number":"146850","shop":"\\u5efa\\u9326","phone":"0225080523","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0037\\u865f\\u0031\\u6a13\\u0042\\u0031\\u6a13"}', '146850', '711', 'zh-tw', 1000),
(2278, 174, '12-174', 1, '建欣', '{"number":"185659","shop":"\\u5efa\\u6b23","phone":"0225177302","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '185659', '711', 'zh-tw', 1000),
(2279, 174, '12-174', 1, '金宴', '{"number":"163659","shop":"\\u91d1\\u5bb4","phone":"0225168142","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0031\\u5df7\\u0038\\u865f\\u0031\\u6a13"}', '163659', '711', 'zh-tw', 1000),
(2280, 174, '12-174', 1, '榮鑫', '{"number":"951195","shop":"\\u69ae\\u946b","phone":"0225069116","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e09\\u6bb5\\u0039\\u0031\\u865f"}', '951195', '711', 'zh-tw', 1000),
(2281, 174, '12-174', 1, '新寶', '{"number":"883865","shop":"\\u65b0\\u5bf6","phone":"0225079128","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0036\\u865f"}', '883865', '711', 'zh-tw', 1000),
(2282, 174, '12-174', 1, '新錦祥', '{"number":"185796","shop":"\\u65b0\\u9326\\u7965","phone":"0225311037","address":"\\u9326\\u897f\\u8857\\u0031\\u0036\\u865f"}', '185796', '711', 'zh-tw', 1000),
(2283, 174, '12-174', 1, '曾德', '{"number":"874388","shop":"\\u66fe\\u5fb7","phone":"0225819250","address":"\\u9326\\u5dde\\u8857\\u0032\\u0031\\u002d\\u0032\\u865f"}', '874388', '711', 'zh-tw', 1000),
(2284, 174, '12-174', 1, '錦捷', '{"number":"171258","shop":"\\u9326\\u6377","phone":"0225628396","address":"\\u9326\\u5dde\\u8857\\u0032\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '171258', '711', 'zh-tw', 1000),
(2285, 174, '12-174', 1, '鑫錦州', '{"number":"184999","shop":"\\u946b\\u9326\\u5dde","phone":"0225122462","address":"\\u9326\\u5dde\\u8857\\u0032\\u0036\\u0033\\u865f"}', '184999', '711', 'zh-tw', 1000),
(2286, 174, '12-174', 1, '錦北', '{"number":"956732","shop":"\\u9326\\u5317","phone":"0225418586","address":"\\u9326\\u5dde\\u8857\\u0038\\u865f"}', '956732', '711', 'zh-tw', 1000),
(2287, 174, '12-174', 1, '薇美', '{"number":"197685","shop":"\\u8587\\u7f8e","phone":"0285026219","address":"\\u656c\\u696d\\u4e09\\u8def\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '197685', '711', 'zh-tw', 1000),
(2288, 174, '12-174', 1, '萬濠', '{"number":"194077","shop":"\\u842c\\u6fe0","phone":"0285029120","address":"\\u656c\\u696d\\u56db\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '194077', '711', 'zh-tw', 1000),
(2289, 174, '12-174', 1, '明美', '{"number":"183125","shop":"\\u660e\\u7f8e","phone":"0285011701","address":"\\u656c\\u696d\\u4e00\\u8def\\u0031\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '183125', '711', 'zh-tw', 1000),
(2290, 174, '12-174', 1, '元大', '{"number":"996741","shop":"\\u5143\\u5927","phone":"0225148676","address":"\\u907c\\u5be7\\u8857\\u0031\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '996741', '711', 'zh-tw', 1000),
(2291, 174, '12-174', 1, '森鑽', '{"number":"186548","shop":"\\u68ee\\u947d","phone":"0225236349","address":"\\u6797\\u68ee\\u5317\\u8def\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '186548', '711', 'zh-tw', 1000),
(2292, 174, '12-174', 1, '六條通', '{"number":"131995","shop":"\\u516d\\u689d\\u901a","phone":"0225239327","address":"\\u6797\\u68ee\\u5317\\u8def\\u0031\\u0030\\u0037\\u5df7\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '131995', '711', 'zh-tw', 1000),
(2293, 174, '12-174', 1, '森北', '{"number":"149789","shop":"\\u68ee\\u5317","phone":"0225372282","address":"\\u6797\\u68ee\\u5317\\u8def\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '149789', '711', 'zh-tw', 1000),
(2294, 174, '12-174', 1, '晶華', '{"number":"865694","shop":"\\u6676\\u83ef","phone":"0225217133","address":"\\u6797\\u68ee\\u5317\\u8def\\u0032\\u0036\\u0032\\u865f"}', '865694', '711', 'zh-tw', 1000),
(2295, 174, '12-174', 1, '歡唱', '{"number":"128069","shop":"\\u6b61\\u5531","phone":"0225719203","address":"\\u6797\\u68ee\\u5317\\u8def\\u0033\\u0031\\u0030\\u5df7\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '128069', '711', 'zh-tw', 1000),
(2296, 174, '12-174', 1, '林森北', '{"number":"200963","shop":"\\u6797\\u68ee\\u5317","phone":"0225362285","address":"\\u6797\\u68ee\\u5317\\u8def\\u0033\\u0038\\u0030\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '200963', '711', 'zh-tw', 1000),
(2297, 174, '12-174', 1, '京都', '{"number":"946230","shop":"\\u4eac\\u90fd","phone":"0225636575","address":"\\u6797\\u68ee\\u5317\\u8def\\u0034\\u0031\\u0031\\u865f"}', '946230', '711', 'zh-tw', 1000),
(2298, 174, '12-174', 1, '林森', '{"number":"874230","shop":"\\u6797\\u68ee","phone":"0225111563","address":"\\u6797\\u68ee\\u5317\\u8def\\u0035\\u0030\\u0030\\u865f"}', '874230', '711', 'zh-tw', 1000),
(2299, 174, '12-174', 1, '林安', '{"number":"171100","shop":"\\u6797\\u5b89","phone":"0225931799","address":"\\u6797\\u68ee\\u5317\\u8def\\u0035\\u0037\\u0032\\u865f"}', '171100', '711', 'zh-tw', 1000),
(2300, 174, '12-174', 1, '森吉', '{"number":"193030","shop":"\\u68ee\\u5409","phone":"0225958727","address":"\\u6797\\u68ee\\u5317\\u8def\\u0036\\u0032\\u0034\\u865f\\u0036\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '193030', '711', 'zh-tw', 1000),
(2301, 174, '12-174', 1, '龍京', '{"number":"142814","shop":"\\u9f8d\\u4eac","phone":"0225079295","address":"\\u9f8d\\u6c5f\\u8def\\u0031\\u0030\\u0034\\u865f\\u0031\\u6a13"}', '142814', '711', 'zh-tw', 1000),
(2302, 174, '12-174', 1, '建龍', '{"number":"140955","shop":"\\u5efa\\u9f8d","phone":"0225167713","address":"\\u9f8d\\u6c5f\\u8def\\u0032\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '140955', '711', 'zh-tw', 1000),
(2303, 174, '12-174', 1, '錦龍', '{"number":"864864","shop":"\\u9326\\u9f8d","phone":"0225080595","address":"\\u9f8d\\u6c5f\\u8def\\u0032\\u0038\\u0031\\u002d\\u0031\\u865f"}', '864864', '711', 'zh-tw', 1000),
(2304, 174, '12-174', 1, '榮星', '{"number":"170794","shop":"\\u69ae\\u661f","phone":"0225094506","address":"\\u9f8d\\u6c5f\\u8def\\u0033\\u0032\\u0032\\u865f"}', '170794', '711', 'zh-tw', 1000),
(2305, 174, '12-174', 1, '濱江', '{"number":"131674","shop":"\\u6ff1\\u6c5f","phone":"0225171393","address":"\\u9f8d\\u6c5f\\u8def\\u0033\\u0035\\u0036\\u5df7\\u0033\\u0039\\u53ca\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '131674', '711', 'zh-tw', 1000),
(2306, 174, '12-174', 1, '榮金', '{"number":"956673","shop":"\\u69ae\\u91d1","phone":"0225013144","address":"\\u9f8d\\u6c5f\\u8def\\u0033\\u0038\\u0034\\u5df7\\u0031\\u865f"}', '956673', '711', 'zh-tw', 1000),
(2307, 174, '12-174', 1, '勝權', '{"number":"165172","shop":"\\u52dd\\u6b0a","phone":"0221001511","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u865f"}', '165172', '711', 'zh-tw', 1000),
(2308, 174, '12-174', 1, '福權', '{"number":"121655","shop":"\\u798f\\u6b0a","phone":"0225679782","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e8c\\u6bb5\\u0039\\u0036\\u865f\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '121655', '711', 'zh-tw', 1000),
(2309, 174, '12-174', 1, '權東', '{"number":"119445","shop":"\\u6b0a\\u6771","phone":"0225159982","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\u0037\\u0033\\u865f"}', '119445', '711', 'zh-tw', 1000),
(2310, 174, '12-174', 1, '金鑽', '{"number":"197766","shop":"\\u91d1\\u947d","phone":"0225116854","address":"\\u6c11\\u6b0a\\u897f\\u8def\\u0036\\u0036\\u865f"}', '197766', '711', 'zh-tw', 1000),
(2311, 174, '12-174', 1, '中福', '{"number":"865834","shop":"\\u4e2d\\u798f","phone":"0225434337","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0033\\u865f"}', '865834', '711', 'zh-tw', 1000),
(2312, 174, '12-174', 1, '佳佳', '{"number":"141051","shop":"\\u4f73\\u4f73","phone":"0225164363","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0037\\u865f"}', '141051', '711', 'zh-tw', 1000),
(2313, 174, '12-174', 1, '新西華', '{"number":"148580","shop":"\\u65b0\\u897f\\u83ef","phone":"0225036845","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\u0033\\u0031\\u865f"}', '148580', '711', 'zh-tw', 1000),
(2314, 174, '12-174', 1, '林北', '{"number":"159236","shop":"\\u6797\\u5317","phone":"0225216905","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u865f\\u0034\\u0036\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '159236', '711', 'zh-tw', 1000),
(2315, 174, '12-174', 1, '永明', '{"number":"171683","shop":"\\u6c38\\u660e","phone":"0225329027","address":"\\u660e\\u6c34\\u8def\\u0033\\u0039\\u0037\\u5df7\\u0037\\u5f04\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '171683', '711', 'zh-tw', 1000),
(2316, 174, '12-174', 1, '大永', '{"number":"160247","shop":"\\u5927\\u6c38","phone":"0285098737","address":"\\u660e\\u6c34\\u8def\\u0035\\u0038\\u0031\\u5df7\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '160247', '711', 'zh-tw', 1000),
(2317, 174, '12-174', 1, '明水', '{"number":"197032","shop":"\\u660e\\u6c34","phone":"0285027760","address":"\\u660e\\u6c34\\u8def\\u0036\\u0033\\u0036\\u865f\\u6a02\\u7fa4\\u4e09\\u8def\\u0031\\u865f"}', '197032', '711', 'zh-tw', 1000),
(2318, 174, '12-174', 1, '京山', '{"number":"193041","shop":"\\u4eac\\u5c71","phone":"0225377819","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '193041', '711', 'zh-tw', 1000),
(2319, 174, '12-174', 1, '松盛', '{"number":"148144","shop":"\\u677e\\u76db","phone":"0225022910","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0035\\u5df7\\u0031\\u865f"}', '148144', '711', 'zh-tw', 1000),
(2320, 174, '12-174', 1, '吉鑫', '{"number":"167260","shop":"\\u5409\\u946b","phone":"0225420316","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '167260', '711', 'zh-tw', 1000),
(2321, 174, '12-174', 1, '松京', '{"number":"197135","shop":"\\u677e\\u4eac","phone":"0225069601","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0034\\u865f\\u0031\\u6a13"}', '197135', '711', 'zh-tw', 1000),
(2322, 174, '12-174', 1, '威克', '{"number":"991584","shop":"\\u5a01\\u514b","phone":"0287738717","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '991584', '711', 'zh-tw', 1000),
(2323, 174, '12-174', 1, '國京', '{"number":"185316","shop":"\\u570b\\u4eac","phone":"0225075809","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '185316', '711', 'zh-tw', 1000),
(2324, 174, '12-174', 1, '國旺', '{"number":"138206","shop":"\\u570b\\u65fa","phone":"0225425330","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0032\\u5df7\\u0038\\u865f"}', '138206', '711', 'zh-tw', 1000),
(2325, 174, '12-174', 1, '鑫越', '{"number":"128025","shop":"\\u946b\\u8d8a","phone":"0225219360","address":"\\u5357\\u4eac\\u897f\\u8def\\u0031\\u0032\\u5df7\\u0039\\u865f\\u0031\\u6a13"}', '128025', '711', 'zh-tw', 1000),
(2326, 174, '12-174', 1, '行天', '{"number":"197191","shop":"\\u884c\\u5929","phone":"0225050197","address":"\\u8fb2\\u5b89\\u8857\\u0031\\u0037\\u0038\\u865f"}', '197191', '711', 'zh-tw', 1000),
(2327, 174, '12-174', 1, '農安', '{"number":"833468","shop":"\\u8fb2\\u5b89","phone":"0225954401","address":"\\u8fb2\\u5b89\\u8857\\u0032\\u0038\\u002d\\u0032\\u865f"}', '833468', '711', 'zh-tw', 1000),
(2328, 174, '12-174', 1, '麥田', '{"number":"137144","shop":"\\u9ea5\\u7530","phone":"0225854392","address":"\\u6674\\u5149\\u91cc\\u4e2d\\u5c71\\u5317\\u8def\\u4e09\\u6bb5\\u0034\\u0037\\u865f"}', '137144', '711', 'zh-tw', 1000),
(2329, 174, '12-174', 1, '新晴光', '{"number":"163464","shop":"\\u65b0\\u6674\\u5149","phone":"0225951416","address":"\\u96d9\\u57ce\\u8857\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '163464', '711', 'zh-tw', 1000),
(2330, 174, '12-174', 1, '松運', '{"number":"972778","shop":"\\u677e\\u904b","phone":"0225179248","address":"\\u677e\\u6c5f\\u8def\\u0031\\u0030\\u0031\\u865f"}', '972778', '711', 'zh-tw', 1000),
(2331, 174, '12-174', 1, '鑫櫃', '{"number":"170196","shop":"\\u946b\\u6ac3","phone":"0225153336","address":"\\u677e\\u6c5f\\u8def\\u0031\\u0038\\u0033\\u865f\\u0031\\u0038\\u0033\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '170196', '711', 'zh-tw', 1000),
(2332, 174, '12-174', 1, '松鑫', '{"number":"985279","shop":"\\u677e\\u946b","phone":"0225412232","address":"\\u677e\\u6c5f\\u8def\\u0032\\u0030\\u0038\\u865f"}', '985279', '711', 'zh-tw', 1000),
(2333, 174, '12-174', 1, '統佳', '{"number":"197560","shop":"\\u7d71\\u4f73","phone":"0225175930","address":"\\u677e\\u6c5f\\u8def\\u0032\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '197560', '711', 'zh-tw', 1000),
(2334, 174, '12-174', 1, '松錦', '{"number":"114510","shop":"\\u677e\\u9326","phone":"0225170793","address":"\\u677e\\u6c5f\\u8def\\u0032\\u0039\\u0035\\u865f\\u0032\\u0039\\u0035\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '114510', '711', 'zh-tw', 1000),
(2335, 174, '12-174', 1, '權松', '{"number":"148292","shop":"\\u6b0a\\u677e","phone":"0225184764","address":"\\u677e\\u6c5f\\u8def\\u0033\\u0036\\u0033\\u865f"}', '148292', '711', 'zh-tw', 1000),
(2336, 174, '12-174', 1, '長松', '{"number":"916572","shop":"\\u9577\\u677e","phone":"0225045817","address":"\\u677e\\u6c5f\\u8def\\u0036\\u0035\\u865f"}', '916572', '711', 'zh-tw', 1000),
(2337, 174, '12-174', 1, '天津', '{"number":"170989","shop":"\\u5929\\u6d25","phone":"0225434306","address":"\\u5929\\u6d25\\u8857\\u0036\\u0035\\u865f"}', '170989', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(2338, 174, '12-174', 1, '稻江', '{"number":"865926","shop":"\\u7a3b\\u6c5f","phone":"0225850268","address":"\\u65b0\\u751f\\u5317\\u8def\\u4e09\\u6bb5\\u0033\\u0035\\u865f"}', '865926', '711', 'zh-tw', 1000),
(2339, 174, '12-174', 1, '興復', '{"number":"190905","shop":"\\u8208\\u5fa9","phone":"0225026965","address":"\\u8208\\u5b89\\u8857\\u0031\\u0031\\u0032\\u865f\\u4e00\\u6a13"}', '190905', '711', 'zh-tw', 1000),
(2340, 174, '12-174', 1, '鑫東一', '{"number":"971867","shop":"\\u946b\\u6771\\u4e00","phone":"0225815255","address":"\\u4e00\\u6c5f\\u8857\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f"}', '971867', '711', 'zh-tw', 1000),
(2341, 174, '12-174', 1, '江陵', '{"number":"136129","shop":"\\u6c5f\\u9675","phone":"0225815356","address":"\\u4e00\\u6c5f\\u8857\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '136129', '711', 'zh-tw', 1000),
(2342, 174, '12-174', 1, '伊東', '{"number":"999751","shop":"\\u4f0a\\u6771","phone":"0225092665","address":"\\u4f0a\\u901a\\u8857\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '999751', '711', 'zh-tw', 1000),
(2343, 174, '12-174', 1, '民美', '{"number":"185604","shop":"\\u6c11\\u7f8e","phone":"0225957805","address":"\\u5713\\u5c71\\u91cc\\u4e2d\\u5c71\\u5317\\u8def\\u4e09\\u6bb5\\u0035\\u0037\\u865f"}', '185604', '711', 'zh-tw', 1000),
(2344, 174, '12-174', 1, '敬群', '{"number":"112374","shop":"\\u656c\\u7fa4","phone":"0285012964","address":"\\u6a02\\u7fa4\\u4e8c\\u8def\\u0031\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '112374', '711', 'zh-tw', 1000),
(2345, 174, '12-174', 1, '基河', '{"number":"185718","shop":"\\u57fa\\u6cb3","phone":"0285029131","address":"\\u6a02\\u7fa4\\u4e8c\\u8def\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '185718', '711', 'zh-tw', 1000),
(2346, 174, '12-174', 1, '柯鑫', '{"number":"123260","shop":"\\u67ef\\u946b","phone":"0225819363","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u5df7\\u0033\\u865f\\u0031\\u6a13"}', '123260', '711', 'zh-tw', 1000),
(2347, 174, '12-174', 1, '晶鑽', '{"number":"181392","shop":"\\u6676\\u947d","phone":"0225115092","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u5df7\\u0038\\u865f\\u0031\\u6a13"}', '181392', '711', 'zh-tw', 1000),
(2348, 174, '12-174', 1, '長中', '{"number":"185408","shop":"\\u9577\\u4e2d","phone":"0225676232","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0034\\u0030\\u002d\\u0031\\u865f"}', '185408', '711', 'zh-tw', 1000),
(2349, 174, '12-174', 1, '翔運', '{"number":"136118","shop":"\\u7fd4\\u904b","phone":"0225819619","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0034\\u0034\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '136118', '711', 'zh-tw', 1000),
(2350, 174, '12-174', 1, '長城', '{"number":"183697","shop":"\\u9577\\u57ce","phone":"0225233982","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '183697', '711', 'zh-tw', 1000),
(2351, 174, '12-174', 1, '國賓', '{"number":"188717","shop":"\\u570b\\u8cd3","phone":"0225677004","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0037\\u0037\\u5df7\\u0033\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '188717', '711', 'zh-tw', 1000),
(2352, 174, '12-174', 1, '中錦', '{"number":"185110","shop":"\\u4e2d\\u9326","phone":"0225616582","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0039\\u0038\\u865f"}', '185110', '711', 'zh-tw', 1000),
(2353, 174, '12-174', 1, '撫順', '{"number":"958107","shop":"\\u64ab\\u9806","phone":"0225978663","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u002d\\u0036\\u865f"}', '958107', '711', 'zh-tw', 1000),
(2354, 174, '12-174', 1, '崑崙', '{"number":"960074","shop":"\\u5d11\\u5d19","phone":"0225604745","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0035\\u5df7\\u0031\\u0033\\u865f"}', '960074', '711', 'zh-tw', 1000),
(2355, 174, '12-174', 1, '原中', '{"number":"833077","shop":"\\u539f\\u4e2d","phone":"0225919553","address":"\\u4e2d\\u539f\\u8857\\u0031\\u0032\\u0031\\u865f\\u0031\\u6a13\\u3001\\u65b0\\u751f\\u5317\\u8def\\u4e09\\u6bb5\\u0033\\u5df7\\u0034\\u0031\\u865f\\u0032\\u6a13"}', '833077', '711', 'zh-tw', 1000),
(2356, 174, '12-174', 1, '朱崙', '{"number":"170543","shop":"\\u6731\\u5d19","phone":"0227788824","address":"\\u6731\\u5d19\\u8857\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '170543', '711', 'zh-tw', 1000),
(2357, 175, '12-175', 1, '大永博', '{"number":"186157","shop":"\\u5927\\u6c38\\u535a","phone":"0223826912","address":"\\u535a\\u611b\\u8def\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '186157', '711', 'zh-tw', 1000),
(2358, 175, '12-175', 1, '英雄館', '{"number":"202512","shop":"\\u82f1\\u96c4\\u9928","phone":"0223888493","address":"\\u9577\\u6c99\\u8857\\u4e00\\u6bb5\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '202512', '711', 'zh-tw', 1000),
(2359, 175, '12-175', 1, '萬翔', '{"number":"900474","shop":"\\u842c\\u7fd4","phone":"0223757275","address":"\\u516c\\u5712\\u8def\\u0031\\u0033\\u865f"}', '900474', '711', 'zh-tw', 1000),
(2360, 175, '12-175', 1, '興信鑫', '{"number":"166359","shop":"\\u8208\\u4fe1\\u946b","phone":"0223821642","address":"\\u9928\\u524d\\u8def\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '166359', '711', 'zh-tw', 1000),
(2361, 175, '12-175', 1, '警廣', '{"number":"184793","shop":"\\u8b66\\u5ee3","phone":"0223717603","address":"\\u5ee3\\u5dde\\u8857\\u0031\\u0030\\u002d\\u0032\\u865f\\u0031\\u0030\\u002d\\u0033\\u865f\\u0031\\u0030\\u002d\\u0034\\u90e8\\u5206\\u865f\\u0031\\u6a13"}', '184793', '711', 'zh-tw', 1000),
(2362, 175, '12-175', 1, '漢慶', '{"number":"135872","shop":"\\u6f22\\u6176","phone":"0223122948","address":"\\u6f22\\u53e3\\u8857\\u4e00\\u6bb5\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '135872', '711', 'zh-tw', 1000),
(2363, 175, '12-175', 1, '鑫杭', '{"number":"972321","shop":"\\u946b\\u676d","phone":"0223579224","address":"\\u676d\\u5dde\\u5357\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u865f"}', '972321', '711', 'zh-tw', 1000),
(2364, 175, '12-175', 1, '丹陽', '{"number":"128302","shop":"\\u4e39\\u967d","phone":"0223516914","address":"\\u676d\\u5dde\\u5357\\u8def\\u4e00\\u6bb5\\u0038\\u0033\\u865f"}', '128302', '711', 'zh-tw', 1000),
(2365, 175, '12-175', 1, '大埔', '{"number":"197157","shop":"\\u5927\\u57d4","phone":"0223024530","address":"\\u548c\\u5e73\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0032\\u4e4b\\u0031\\u865f\\u0031\\u0035\\u0034\\u865f\\u0031\\u0035\\u0034\\u4e4b\\u0031\\u865f"}', '197157', '711', 'zh-tw', 1000),
(2366, 175, '12-175', 1, '晉江', '{"number":"844860","shop":"\\u6649\\u6c5f","phone":"0223654771","address":"\\u548c\\u5e73\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u865f"}', '844860', '711', 'zh-tw', 1000),
(2367, 175, '12-175', 1, '新格蘭', '{"number":"119582","shop":"\\u65b0\\u683c\\u862d","phone":"0223705929","address":"\\u8861\\u967d\\u8def\\u0032\\u0037\\u865f"}', '119582', '711', 'zh-tw', 1000),
(2368, 175, '12-175', 1, '鑫衡陽', '{"number":"202497","shop":"\\u946b\\u8861\\u967d","phone":"0223316456","address":"\\u8861\\u967d\\u8def\\u0036\\u865f\\u0031\\u6a13"}', '202497', '711', 'zh-tw', 1000),
(2369, 175, '12-175', 1, '千翔', '{"number":"110817","shop":"\\u5343\\u7fd4","phone":"0223123025","address":"\\u8a31\\u660c\\u8857\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '110817', '711', 'zh-tw', 1000),
(2370, 175, '12-175', 1, '鑫華福', '{"number":"149413","shop":"\\u946b\\u83ef\\u798f","phone":"0223707435","address":"\\u61f7\\u5be7\\u8857\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '149413', '711', 'zh-tw', 1000),
(2371, 175, '12-175', 1, '濟新', '{"number":"136565","shop":"\\u6fdf\\u65b0","phone":"0233224217","address":"\\u6fdf\\u5357\\u8def\\u4e8c\\u6bb5\\u0035\\u0030\\u865f"}', '136565', '711', 'zh-tw', 1000),
(2372, 175, '12-175', 1, '金山', '{"number":"833239","shop":"\\u91d1\\u5c71","phone":"0223560002","address":"\\u91d1\\u5c71\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0038\\u865f"}', '833239', '711', 'zh-tw', 1000),
(2373, 175, '12-175', 1, '開博', '{"number":"170299","shop":"\\u958b\\u535a","phone":"0223119208","address":"\\u958b\\u5c01\\u8857\\u4e00\\u6bb5\\u0034\\u0030\\u865f\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '170299', '711', 'zh-tw', 1000),
(2374, 175, '12-175', 1, '鑫台北', '{"number":"149583","shop":"\\u946b\\u53f0\\u5317","phone":"0223312768","address":"\\u9ece\\u660e\\u91cc\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u865f\\u4e00\\u6a13"}', '149583', '711', 'zh-tw', 1000),
(2375, 175, '12-175', 1, '鑫大孝', '{"number":"996110","shop":"\\u946b\\u5927\\u5b5d","phone":"0223719010","address":"\\u9ece\\u660e\\u91cc\\u91cd\\u6176\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u002d\\u0031\\u865f\\u4e00\\u6a13"}', '996110', '711', 'zh-tw', 1000),
(2376, 175, '12-175', 1, '中航', '{"number":"170978","shop":"\\u4e2d\\u822a","phone":"0223278931","address":"\\u6797\\u68ee\\u5357\\u8def\\u0031\\u0032\\u865f"}', '170978', '711', 'zh-tw', 1000),
(2377, 175, '12-175', 1, '千成', '{"number":"158864","shop":"\\u5343\\u6210","phone":"0223577481","address":"\\u6797\\u68ee\\u5357\\u8def\\u0034\\u865f\\u4e4b\\u0033"}', '158864', '711', 'zh-tw', 1000),
(2378, 175, '12-175', 1, '台大', '{"number":"975788","shop":"\\u53f0\\u5927","phone":"0223928922","address":"\\u6797\\u68ee\\u5357\\u8def\\u0035\\u0033\\u865f\\u0035\\u0035\\u865f"}', '975788', '711', 'zh-tw', 1000),
(2379, 175, '12-175', 1, '八德', '{"number":"193557","shop":"\\u516b\\u5fb7","phone":"0223517404","address":"\\u81e8\\u6c82\\u8857\\u0031\\u865f\\u0031\\u6a13"}', '193557', '711', 'zh-tw', 1000),
(2380, 175, '12-175', 1, '統新', '{"number":"184139","shop":"\\u7d71\\u65b0","phone":"0223944861","address":"\\u81e8\\u6c82\\u8857\\u0032\\u0037\\u5df7\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '184139', '711', 'zh-tw', 1000),
(2381, 175, '12-175', 1, '羅亭', '{"number":"921965","shop":"\\u7f85\\u4ead","phone":"0223929446","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e8c\\u6bb5\\u0036\\u0038\\u865f"}', '921965', '711', 'zh-tw', 1000),
(2382, 175, '12-175', 1, '羅館', '{"number":"154482","shop":"\\u7f85\\u9928","phone":"0223672814","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\u0033\\u0031\\u0036\\u5df7\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '154482', '711', 'zh-tw', 1000),
(2383, 175, '12-175', 1, '新羅福', '{"number":"942722","shop":"\\u65b0\\u7f85\\u798f","phone":"0223686283","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\u0038\\u0032\\u865f"}', '942722', '711', 'zh-tw', 1000),
(2384, 175, '12-175', 1, '同昌', '{"number":"956134","shop":"\\u540c\\u660c","phone":"0223679923","address":"\\u5357\\u660c\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0033\\u865f"}', '956134', '711', 'zh-tw', 1000),
(2385, 175, '12-175', 1, '羅昌', '{"number":"196246","shop":"\\u7f85\\u660c","phone":"0223678289","address":"\\u5357\\u660c\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '196246', '711', 'zh-tw', 1000),
(2386, 175, '12-175', 1, '鑫國語', '{"number":"183309","shop":"\\u946b\\u570b\\u8a9e","phone":"0223584429","address":"\\u5357\\u660c\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '183309', '711', 'zh-tw', 1000),
(2387, 175, '12-175', 1, '南昌', '{"number":"167411","shop":"\\u5357\\u660c","phone":"0223971206","address":"\\u5357\\u660c\\u8def\\u4e00\\u6bb5\\u0036\\u0037\\u865f\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '167411', '711', 'zh-tw', 1000),
(2388, 175, '12-175', 1, '南海', '{"number":"199245","shop":"\\u5357\\u6d77","phone":"0223962768","address":"\\u5357\\u6d77\\u8def\\u0035\\u0030\\u865f"}', '199245', '711', 'zh-tw', 1000),
(2389, 175, '12-175', 1, '中愛', '{"number":"185280","shop":"\\u4e2d\\u611b","phone":"0223415461","address":"\\u5be7\\u6ce2\\u6771\\u8857\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '185280', '711', 'zh-tw', 1000),
(2390, 175, '12-175', 1, '寧波', '{"number":"956260","shop":"\\u5be7\\u6ce2","phone":"0223221617","address":"\\u5be7\\u6ce2\\u897f\\u8857\\u0033\\u865f"}', '956260', '711', 'zh-tw', 1000),
(2391, 175, '12-175', 1, '鑫重寧', '{"number":"118420","shop":"\\u946b\\u91cd\\u5be7","phone":"0233225836","address":"\\u5be7\\u6ce2\\u897f\\u8857\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '118420', '711', 'zh-tw', 1000),
(2392, 175, '12-175', 1, '青島', '{"number":"129110","shop":"\\u9752\\u5cf6","phone":"0223516965","address":"\\u9752\\u5cf6\\u6771\\u8def\\u0034\\u865f"}', '129110', '711', 'zh-tw', 1000),
(2393, 175, '12-175', 1, '兒醫', '{"number":"155577","shop":"\\u5152\\u91ab","phone":"0223813972","address":"\\u9752\\u5cf6\\u897f\\u8def\\u0037\\u865f\\u0031\\u6a13"}', '155577', '711', 'zh-tw', 1000),
(2394, 175, '12-175', 1, '仁金', '{"number":"135296","shop":"\\u4ec1\\u91d1","phone":"0223583428","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u865f\\u0033\\u0039\\u002d\\u0031\\u865f"}', '135296', '711', 'zh-tw', 1000),
(2395, 175, '12-175', 1, '新雲', '{"number":"985280","shop":"\\u65b0\\u96f2","phone":"0223939186","address":"\\u4e09\\u611b\\u91cc\\u9023\\u96f2\\u8857\\u0038\\u0031\\u865f"}', '985280', '711', 'zh-tw', 1000),
(2396, 175, '12-175', 1, '新廈門', '{"number":"148591","shop":"\\u65b0\\u5ec8\\u9580","phone":"0223677374","address":"\\u5ec8\\u9580\\u8857\\u0034\\u0032\\u865f\\u0034\\u0036\\u865f"}', '148591', '711', 'zh-tw', 1000),
(2397, 175, '12-175', 1, '牯嶺', '{"number":"121987","shop":"\\u726f\\u5dba","phone":"0223686248","address":"\\u5ec8\\u9580\\u8857\\u0039\\u0039\\u5df7\\u0031\\u0039\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '121987', '711', 'zh-tw', 1000),
(2398, 175, '12-175', 1, '紹興', '{"number":"128070","shop":"\\u7d39\\u8208","phone":"0223224595","address":"\\u7d39\\u8208\\u5317\\u8857\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '128070', '711', 'zh-tw', 1000),
(2399, 175, '12-175', 1, '秋葉原', '{"number":"143655","shop":"\\u79cb\\u8449\\u539f","phone":"0223411823","address":"\\u5e02\\u6c11\\u5927\\u9053\\u4e09\\u6bb5\\u0032\\u865f\\u0042\\u0032\\u6a13"}', '143655', '711', 'zh-tw', 1000),
(2400, 175, '12-175', 1, '博源', '{"number":"190743","shop":"\\u535a\\u6e90","phone":"0223684419","address":"\\u601d\\u6e90\\u8857\\u0031\\u0036\\u865f"}', '190743', '711', 'zh-tw', 1000),
(2401, 175, '12-175', 1, '古亭', '{"number":"110448","shop":"\\u53e4\\u4ead","phone":"0223646532","address":"\\u6c40\\u5dde\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0030\\u865f"}', '110448', '711', 'zh-tw', 1000),
(2402, 175, '12-175', 1, '軍總', '{"number":"189178","shop":"\\u8ecd\\u7e3d","phone":"0223653720","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u0039\\u865f"}', '189178', '711', 'zh-tw', 1000),
(2403, 175, '12-175', 1, '統全', '{"number":"874872","shop":"\\u7d71\\u5168","phone":"0223658638","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0039\\u865f"}', '874872', '711', 'zh-tw', 1000),
(2404, 175, '12-175', 1, '鑫館', '{"number":"186489","shop":"\\u946b\\u9928","phone":"0223679745","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u0039\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '186489', '711', 'zh-tw', 1000),
(2405, 175, '12-175', 1, '汀州', '{"number":"165323","shop":"\\u6c40\\u5dde","phone":"0223098147","address":"\\u6c40\\u5dde\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0039\\u865f"}', '165323', '711', 'zh-tw', 1000),
(2406, 175, '12-175', 1, '鑫泉州', '{"number":"187057","shop":"\\u946b\\u6cc9\\u5dde","phone":"0223054054","address":"\\u6c40\\u5dde\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0035\\u865f\\u4e00\\u6a13"}', '187057', '711', 'zh-tw', 1000),
(2407, 175, '12-175', 1, '同州', '{"number":"194206","shop":"\\u540c\\u5dde","phone":"0223677326","address":"\\u540c\\u5b89\\u8857\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '194206', '711', 'zh-tw', 1000),
(2408, 175, '12-175', 1, '臨沂', '{"number":"190628","shop":"\\u81e8\\u6c82","phone":"0223938772","address":"\\u6587\\u7965\\u91cc\\u81e8\\u6c82\\u8857\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '190628', '711', 'zh-tw', 1000),
(2409, 175, '12-175', 1, '重南', '{"number":"127790","shop":"\\u91cd\\u5357","phone":"0223884895","address":"\\u6b66\\u660c\\u8857\\u4e00\\u6bb5\\u0031\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '127790', '711', 'zh-tw', 1000),
(2410, 175, '12-175', 1, '博美', '{"number":"122522","shop":"\\u535a\\u7f8e","phone":"0223712385","address":"\\u6b66\\u660c\\u8857\\u4e00\\u6bb5\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '122522', '711', 'zh-tw', 1000),
(2411, 175, '12-175', 1, '新南', '{"number":"148236","shop":"\\u65b0\\u5357","phone":"0223435207","address":"\\u65b0\\u751f\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0036\\u002d\\u0037\\u865f"}', '148236', '711', 'zh-tw', 1000),
(2412, 175, '12-175', 1, '瑞德', '{"number":"184461","shop":"\\u745e\\u5fb7","phone":"0223432419","address":"\\u65b0\\u751f\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0030\\u5df7\\u0031\\u0034\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '184461', '711', 'zh-tw', 1000),
(2413, 175, '12-175', 1, '鑫公信', '{"number":"971890","shop":"\\u946b\\u516c\\u4fe1","phone":"0223898704","address":"\\u4fe1\\u967d\\u8857\\u0032\\u002d\\u0031\\u865f"}', '971890', '711', 'zh-tw', 1000),
(2414, 175, '12-175', 1, '杭信', '{"number":"130796","shop":"\\u676d\\u4fe1","phone":"0223584603","address":"\\u4fe1\\u7fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '130796', '711', 'zh-tw', 1000),
(2415, 175, '12-175', 1, '新紹南', '{"number":"952040","shop":"\\u65b0\\u7d39\\u5357","phone":"0223219916","address":"\\u4fe1\\u7fa9\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u002d\\u0031\\u865f"}', '952040', '711', 'zh-tw', 1000),
(2416, 175, '12-175', 1, '中華電', '{"number":"991562","shop":"\\u4e2d\\u83ef\\u96fb","phone":"0233433607","address":"\\u4fe1\\u7fa9\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u002d\\u0033\\u865f\\u0042\\u0031\\u6a13"}', '991562', '711', 'zh-tw', 1000),
(2417, 175, '12-175', 1, '新愛國', '{"number":"185279","shop":"\\u65b0\\u611b\\u570b","phone":"0223710027","address":"\\u5ef6\\u5e73\\u5357\\u8def\\u0031\\u0037\\u0037\\u865f"}', '185279', '711', 'zh-tw', 1000),
(2418, 175, '12-175', 1, '中樂', '{"number":"932910","shop":"\\u4e2d\\u6a02","phone":"0223122424","address":"\\u5ef6\\u5e73\\u5357\\u8def\\u0034\\u0037\\u865f"}', '932910', '711', 'zh-tw', 1000),
(2419, 175, '12-175', 1, '萬光', '{"number":"164939","shop":"\\u842c\\u5149","phone":"0223021224","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0037\\u865f"}', '164939', '711', 'zh-tw', 1000),
(2420, 175, '12-175', 1, '掬華', '{"number":"118899","shop":"\\u63ac\\u83ef","phone":"0223375810","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0034\\u0030\\u0037\\u865f"}', '118899', '711', 'zh-tw', 1000),
(2421, 175, '12-175', 1, '欣漢華', '{"number":"148764","shop":"\\u6b23\\u6f22\\u83ef","phone":"0223613686","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '148764', '711', 'zh-tw', 1000),
(2422, 175, '12-175', 1, '華慶', '{"number":"184955","shop":"\\u83ef\\u6176","phone":"0223886735","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0035\\u0039\\u4e4b\\u0031\\u0036\\u865f"}', '184955', '711', 'zh-tw', 1000),
(2423, 175, '12-175', 1, '國圖', '{"number":"171269","shop":"\\u570b\\u5716","phone":"0223141506","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0032\\u0030\\u865f\\u0042\\u0031\\u6a13"}', '171269', '711', 'zh-tw', 1000),
(2424, 175, '12-175', 1, '忠聯', '{"number":"113551","shop":"\\u5fe0\\u806f","phone":"0223215793","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '113551', '711', 'zh-tw', 1000),
(2425, 175, '12-175', 1, '統聯', '{"number":"896067","shop":"\\u7d71\\u806f","phone":"0223579051","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0030\\u002d\\u0032\\u865f\\u0031\\u0033\\u0030\\u002d\\u0033\\u865f"}', '896067', '711', 'zh-tw', 1000),
(2426, 175, '12-175', 1, '華山', '{"number":"874252","shop":"\\u83ef\\u5c71","phone":"0223214407","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0038\\u865f"}', '874252', '711', 'zh-tw', 1000),
(2427, 175, '12-175', 1, '捷戰', '{"number":"960339","shop":"\\u6377\\u6230","phone":"0223826275","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\u0035\\u0030\\u002d\\u0031\\u865f\\u0028\\u6377\\u904b\\u5730\\u4e0b\\u8857\\u0029"}', '960339', '711', 'zh-tw', 1000),
(2428, 176, '13-176', 1, '初鹿', '{"number":"163958","shop":"\\u521d\\u9e7f","phone":"089570709","address":"\\u660e\\u5cf0\\u6751\\u5fe0\\u5b5d\\u8def\\u0031\\u0036\\u0034\\u865f\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0038\\u865f"}', '163958', '711', 'zh-tw', 1000),
(2429, 176, '13-176', 1, '東泉', '{"number":"126476","shop":"\\u6771\\u6cc9","phone":"089514558","address":"\\u6eab\\u6cc9\\u6751\\u9f8d\\u6cc9\\u8def\\u0035\\u0039\\u865f"}', '126476', '711', 'zh-tw', 1000),
(2430, 176, '13-176', 1, '東遊季', '{"number":"122795","shop":"\\u6771\\u904a\\u5b63","phone":"089511046","address":"\\u6eab\\u6cc9\\u8def\\u0033\\u0038\\u0038\\u865f"}', '122795', '711', 'zh-tw', 1000),
(2431, 177, '13-177', 1, '長濱', '{"number":"150826","shop":"\\u9577\\u6ff1","phone":"089832918","address":"\\u9577\\u6ff1\\u6751\\u9577\\u6ff1\\u8def\\u0032\\u002d\\u0035\\u865f"}', '150826', '711', 'zh-tw', 1000),
(2432, 178, '13-178', 1, '欣功', '{"number":"173852","shop":"\\u6b23\\u529f","phone":"089854201","address":"\\u4e09\\u6c11\\u91cc\\u5927\\u540c\\u8def\\u0037\\u0030\\u865f"}', '173852', '711', 'zh-tw', 1000),
(2433, 178, '13-178', 1, '欣東旺', '{"number":"978101","shop":"\\u6b23\\u6771\\u65fa","phone":"089850230","address":"\\u5fe0\\u4ec1\\u91cc\\u4e2d\\u83ef\\u8def\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '978101', '711', 'zh-tw', 1000),
(2434, 179, '13-179', 1, '池上', '{"number":"110677","shop":"\\u6c60\\u4e0a","phone":"089865774","address":"\\u5927\\u57d4\\u6751\\u4e2d\\u5c71\\u8def\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '110677', '711', 'zh-tw', 1000),
(2435, 179, '13-179', 1, '東馳', '{"number":"142825","shop":"\\u6771\\u99b3","phone":"089862291","address":"\\u4e2d\\u6771\\u4e09\\u8def\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '142825', '711', 'zh-tw', 1000),
(2436, 180, '13-180', 1, '安朔', '{"number":"120076","shop":"\\u5b89\\u6714","phone":"089702085","address":"\\u68ee\\u6c38\\u6751\\u68ee\\u6c38\\u0032\\u0031\\u0036\\u865f"}', '120076', '711', 'zh-tw', 1000),
(2437, 181, '13-181', 1, '大武', '{"number":"153928","shop":"\\u5927\\u6b66","phone":"089792722","address":"\\u5fa9\\u8208\\u8def\\u0031\\u0032\\u0034\\u865f\\u0031\\u0032\\u0036\\u865f\\u0031\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '153928', '711', 'zh-tw', 1000),
(2438, 181, '13-181', 1, '尚武', '{"number":"940472","shop":"\\u5c1a\\u6b66","phone":"089792406","address":"\\u5c1a\\u6b66\\u6751\\u74b0\\u6e2f\\u8def\\u0033\\u865f"}', '940472', '711', 'zh-tw', 1000),
(2439, 182, '13-182', 1, '東河', '{"number":"952833","shop":"\\u6771\\u6cb3","phone":"089896515","address":"\\u6771\\u6cb3\\u6751\\u5357\\u6771\\u6cb3\\u0032\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '952833', '711', 'zh-tw', 1000),
(2440, 182, '13-182', 1, '都蘭', '{"number":"892962","shop":"\\u90fd\\u862d","phone":"089530439","address":"\\u90fd\\u862d\\u6751\\u90fd\\u862d\\u0031\\u0035\\u0035\\u865f"}', '892962', '711', 'zh-tw', 1000),
(2441, 183, '13-183', 1, '關山', '{"number":"122957","shop":"\\u95dc\\u5c71","phone":"089812792","address":"\\u548c\\u5e73\\u8def\\u0034\\u865f\\u0034\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '122957', '711', 'zh-tw', 1000),
(2442, 184, '13-184', 1, '東清灣', '{"number":"167754","shop":"\\u6771\\u6e05\\u7063","phone":"089732917","address":"\\u6771\\u6e05\\u6751\\u6771\\u6e05\\u8def\\u0037\\u865f"}', '167754', '711', 'zh-tw', 1000),
(2443, 184, '13-184', 1, '蘭嶼', '{"number":"142892","shop":"\\u862d\\u5dbc","phone":"089731061","address":"\\u6930\\u6cb9\\u6751\\u6930\\u6cb9\\u0032\\u0039\\u0036\\u4e4b\\u0031\\u0032\\u865f"}', '142892', '711', 'zh-tw', 1000),
(2444, 185, '13-185', 1, '新鹿野', '{"number":"126339","shop":"\\u65b0\\u9e7f\\u91ce","phone":"089550209","address":"\\u9e7f\\u91ce\\u6751\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u0030\\u865f"}', '126339', '711', 'zh-tw', 1000),
(2445, 186, '13-186', 1, '綠島', '{"number":"942973","shop":"\\u7da0\\u5cf6","phone":"089671387","address":"\\u5357\\u5bee\\u6751\\u5357\\u5bee\\u8def\\u0031\\u0033\\u0039\\u865f"}', '942973', '711', 'zh-tw', 1000),
(2446, 187, '13-187', 1, '東京', '{"number":"921231","shop":"\\u6771\\u4eac","phone":"089228238","address":"\\u5351\\u5357\\u91cc\\u66f4\\u751f\\u5317\\u8def\\u0031\\u0039\\u0038\\u865f"}', '921231', '711', 'zh-tw', 1000),
(2447, 187, '13-187', 1, '東佳', '{"number":"110161","shop":"\\u6771\\u4f73","phone":"089321888","address":"\\u9577\\u6c99\\u8857\\u0031\\u0037\\u0038\\u865f\\u0031\\u0038\\u0030\\u865f\\u0031\\u0038\\u0032\\u865f"}', '110161', '711', 'zh-tw', 1000),
(2448, 187, '13-187', 1, '東偕', '{"number":"167053","shop":"\\u6771\\u5055","phone":"089345172","address":"\\u9577\\u6c99\\u8857\\u0033\\u0030\\u0033\\u5df7\\u0031\\u865f"}', '167053', '711', 'zh-tw', 1000),
(2449, 187, '13-187', 1, '東廣', '{"number":"131685","shop":"\\u6771\\u5ee3","phone":"089233676","address":"\\u50b3\\u5ee3\\u8def\\u0034\\u0039\\u0036\\u865f\\u0034\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '131685', '711', 'zh-tw', 1000),
(2450, 187, '13-187', 1, '睿豐', '{"number":"184379","shop":"\\u777f\\u8c50","phone":"089516087","address":"\\u5927\\u548c\\u8def\\u0038\\u002d\\u0031\\u002e\\u0031\\u0036\\u002d\\u0031\\u865f\\u4e00\\u6a13"}', '184379', '711', 'zh-tw', 1000),
(2451, 187, '13-187', 1, '東大', '{"number":"143895","shop":"\\u6771\\u5927","phone":"089518145","address":"\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0039\\u865f"}', '143895', '711', 'zh-tw', 1000),
(2452, 187, '13-187', 1, '吉川', '{"number":"902296","shop":"\\u5409\\u5ddd","phone":"089353723","address":"\\u8c50\\u8c37\\u91cc\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0032\\u865f"}', '902296', '711', 'zh-tw', 1000),
(2453, 187, '13-187', 1, '成貞', '{"number":"970071","shop":"\\u6210\\u8c9e","phone":"089236464","address":"\\u8c50\\u5e74\\u91cc\\u4e2d\\u8208\\u8def\\u4e09\\u6bb5\\u0033\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '970071', '711', 'zh-tw', 1000),
(2454, 187, '13-187', 1, '東捷', '{"number":"997652","shop":"\\u6771\\u6377","phone":"089326614","address":"\\u8c50\\u69ae\\u91cc\\u8c50\\u76db\\u8def\\u0031\\u865f"}', '997652', '711', 'zh-tw', 1000),
(2455, 187, '13-187', 1, '冠美', '{"number":"932998","shop":"\\u51a0\\u7f8e","phone":"089342164","address":"\\u8c50\\u69ae\\u91cc\\u4ec1\\u660c\\u8857\\u0031\\u0034\\u0038\\u865f"}', '932998', '711', 'zh-tw', 1000),
(2456, 187, '13-187', 1, '東定', '{"number":"914141","shop":"\\u6771\\u5b9a","phone":"089382946","address":"\\u8c50\\u7530\\u91cc\\u4e2d\\u8208\\u8def\\u56db\\u6bb5\\u0034\\u0030\\u0036\\u865f"}', '914141', '711', 'zh-tw', 1000),
(2457, 187, '13-187', 1, '富岡', '{"number":"991665","shop":"\\u5bcc\\u5ca1","phone":"089281726","address":"\\u5bcc\\u5ca1\\u91cc\\u5409\\u6797\\u8def\\u4e8c\\u6bb5\\u0036\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '991665', '711', 'zh-tw', 1000),
(2458, 187, '13-187', 1, '新南王', '{"number":"968078","shop":"\\u65b0\\u5357\\u738b","phone":"089237115","address":"\\u66f4\\u751f\\u5317\\u8def\\u0036\\u0037\\u0035\\u865f\\u0036\\u0037\\u0037\\u865f"}', '968078', '711', 'zh-tw', 1000),
(2459, 187, '13-187', 1, '東安', '{"number":"180702","shop":"\\u6771\\u5b89","phone":"089342946","address":"\\u676d\\u5dde\\u8857\\u0032\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '180702', '711', 'zh-tw', 1000),
(2460, 187, '13-187', 1, '知本', '{"number":"987736","shop":"\\u77e5\\u672c","phone":"089516428","address":"\\u5efa\\u8208\\u91cc\\u77e5\\u672c\\u8def\\u56db\\u6bb5\\u0032\\u865f"}', '987736', '711', 'zh-tw', 1000),
(2461, 187, '13-187', 1, '東亮', '{"number":"154585","shop":"\\u6771\\u4eae","phone":"089233228","address":"\\u9023\\u822a\\u8def\\u0038\\u0038\\u5df7\\u0033\\u0031\\u865f\\u0033\\u0033\\u865f\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '154585', '711', 'zh-tw', 1000),
(2462, 187, '13-187', 1, '仁毅', '{"number":"160188","shop":"\\u4ec1\\u6bc5","phone":"089239371","address":"\\u99ac\\u862d\\u91cc\\u65b0\\u751f\\u8def\\u0036\\u0038\\u0030\\u865f\\u0036\\u0038\\u0032\\u865f\\u0036\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '160188', '711', 'zh-tw', 1000),
(2463, 187, '13-187', 1, '東博', '{"number":"127033","shop":"\\u6771\\u535a","phone":"089348476","address":"\\u6c11\\u6b0a\\u91cc\\u4e2d\\u6b63\\u8def\\u0034\\u0031\\u0034\\u865f\\u0034\\u0031\\u0038\\u865f"}', '127033', '711', 'zh-tw', 1000),
(2464, 187, '13-187', 1, '東航', '{"number":"872599","shop":"\\u6771\\u822a","phone":"089338105","address":"\\u6c11\\u751f\\u91cc\\u66f4\\u751f\\u8def\\u0032\\u0037\\u0030\\u865f\\u0031\\u0046"}', '872599', '711', 'zh-tw', 1000),
(2465, 187, '13-187', 1, '卑南', '{"number":"174615","shop":"\\u5351\\u5357","phone":"089236153","address":"\\u5357\\u69ae\\u91cc\\u66f4\\u751f\\u8def\\u0031\\u0032\\u0036\\u0037\\u865f"}', '174615', '711', 'zh-tw', 1000),
(2466, 187, '13-187', 1, '東樂', '{"number":"954574","shop":"\\u6771\\u6a02","phone":"089229434","address":"\\u5c71\\u897f\\u8def\\u4e00\\u6bb5\\u0033\\u0033\\u0030\\u865f"}', '954574', '711', 'zh-tw', 1000),
(2467, 187, '13-187', 1, '東昇', '{"number":"160258","shop":"\\u6771\\u6607","phone":"089311100","address":"\\u9435\\u82b1\\u91cc\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '160258', '711', 'zh-tw', 1000),
(2468, 187, '13-187', 1, '利嘉', '{"number":"151232","shop":"\\u5229\\u5609","phone":"089385164","address":"\\u65b0\\u5712\\u91cc\\u4e2d\\u8208\\u8def\\u516d\\u6bb5\\u0036\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '151232', '711', 'zh-tw', 1000),
(2469, 187, '13-187', 1, '東喜', '{"number":"155005","shop":"\\u6771\\u559c","phone":"089239543","address":"\\u8208\\u5b89\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '155005', '711', 'zh-tw', 1000),
(2470, 187, '13-187', 1, '東漢', '{"number":"888099","shop":"\\u6771\\u6f22","phone":"089357252","address":"\\u6b63\\u6c23\\u5317\\u8def\\u0031\\u0038\\u0032\\u865f"}', '888099', '711', 'zh-tw', 1000),
(2471, 187, '13-187', 1, '東輝', '{"number":"138077","shop":"\\u6771\\u8f1d","phone":"089355923","address":"\\u6b63\\u6c23\\u5317\\u8def\\u0033\\u0038\\u0039\\u865f"}', '138077', '711', 'zh-tw', 1000),
(2472, 187, '13-187', 1, '東星', '{"number":"180724","shop":"\\u6771\\u661f","phone":"089341581","address":"\\u6b63\\u6c23\\u8def\\u0031\\u0035\\u0039\\u002e\\u0031\\u0035\\u0039\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '180724', '711', 'zh-tw', 1000),
(2473, 187, '13-187', 1, '東太陽', '{"number":"120685","shop":"\\u6771\\u592a\\u967d","phone":"089352313","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0037\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '120685', '711', 'zh-tw', 1000),
(2474, 187, '13-187', 1, '三越', '{"number":"181015","shop":"\\u4e09\\u8d8a","phone":"089341513","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0039\\u002e\\u0031\\u0037\\u0031\\u002e\\u0031\\u0037\\u0033\\u865f\\u0031\\u6a13\\u53ca\\u0031\\u0036\\u0039\\u865f\\u0032\\u6a13"}', '181015', '711', 'zh-tw', 1000),
(2475, 187, '13-187', 1, '正東', '{"number":"132806","shop":"\\u6b63\\u6771","phone":"089342634","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0032\\u865f"}', '132806', '711', 'zh-tw', 1000),
(2476, 187, '13-187', 1, '東糖', '{"number":"166382","shop":"\\u6771\\u7cd6","phone":"089238466","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '166382', '711', 'zh-tw', 1000),
(2477, 187, '13-187', 1, '享溫馨', '{"number":"201003","shop":"\\u4eab\\u6eab\\u99a8","phone":"089347698","address":"\\u4e2d\\u6b63\\u91cc\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '201003', '711', 'zh-tw', 1000),
(2478, 187, '13-187', 1, '東盛', '{"number":"873189","shop":"\\u6771\\u76db","phone":"089320745","address":"\\u81ea\\u5f37\\u91cc\\u66f4\\u751f\\u8def\\u0033\\u0039\\u0031\\u865f"}', '873189', '711', 'zh-tw', 1000),
(2479, 188, '13-188', 1, '金倫', '{"number":"163796","shop":"\\u91d1\\u502b","phone":"089771739","address":"\\u91d1\\u5d19\\u6751\\u91d1\\u5d19\\u8def\\u0032\\u0036\\u0032\\u865f\\u0032\\u0036\\u0032\\u002d\\u0031\\u865f"}', '163796', '711', 'zh-tw', 1000),
(2480, 188, '13-188', 1, '東和美', '{"number":"154057","shop":"\\u6771\\u548c\\u7f8e","phone":"089512605","address":"\\u4e09\\u548c\\u6751\\u5927\\u4e2d\\u5bee\\u8def\\u0036\\u0038\\u4e4b\\u0036\\u865f"}', '154057', '711', 'zh-tw', 1000),
(2481, 188, '13-188', 1, '香蘭', '{"number":"193878","shop":"\\u9999\\u862d","phone":"089783341","address":"\\u592a\\u9ebb\\u91cc\\u8857\\u0035\\u0037\\u0035\\u865f"}', '193878', '711', 'zh-tw', 1000),
(2482, 188, '13-188', 1, '新太麻里', '{"number":"130028","shop":"\\u65b0\\u592a\\u9ebb\\u91cc","phone":"089780351","address":"\\u6cf0\\u548c\\u6751\\u5916\\u74b0\\u8def\\u0031\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '130028', '711', 'zh-tw', 1000),
(2483, 189, '14-189', 1, '新安發', '{"number":"182502","shop":"\\u65b0\\u5b89\\u767c","phone":"065975449","address":"\\u5b89\\u52a0\\u91cc\\u5b89\\u5b9a\\u0034\\u0030\\u0037\\u865f"}', '182502', '711', 'zh-tw', 1000),
(2484, 189, '14-189', 1, 'F18', '{"number":"193616","shop":"\\u0046\\u0031\\u0038","phone":"065058633","address":"\\u5317\\u5712\\u4e8c\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '193616', '711', 'zh-tw', 1000),
(2485, 189, '14-189', 1, '港達', '{"number":"112673","shop":"\\u6e2f\\u9054","phone":"065935442","address":"\\u6e2f\\u53e3\\u91cc\\u0032\\u0034\\u0035\\u002d\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '112673', '711', 'zh-tw', 1000),
(2486, 189, '14-189', 1, '港龍', '{"number":"873363","shop":"\\u6e2f\\u9f8d","phone":"065937738","address":"\\u6e2f\\u5357\\u91cc\\u0031\\u0036\\u0033\\u865f"}', '873363', '711', 'zh-tw', 1000),
(2487, 189, '14-189', 1, '安高', '{"number":"965633","shop":"\\u5b89\\u9ad8","phone":"065976231","address":"\\u6e2f\\u5c3e\\u91cc\\u6e2f\\u5b50\\u5c3e\\u0033\\u0037\\u002d\\u0032\\u0038\\u865f"}', '965633', '711', 'zh-tw', 1000),
(2488, 189, '14-189', 1, '海寮', '{"number":"116011","shop":"\\u6d77\\u5bee","phone":"065937359","address":"\\u6d77\\u5bee\\u91cc\\u6d77\\u5bee\\u8857\\u0038\\u865f"}', '116011', '711', 'zh-tw', 1000),
(2489, 189, '14-189', 1, '善安', '{"number":"126993","shop":"\\u5584\\u5b89","phone":"065975843","address":"\\u8607\\u6797\\u91cc\\u0037\\u865f"}', '126993', '711', 'zh-tw', 1000),
(2490, 189, '14-189', 1, '新吉', '{"number":"971487","shop":"\\u65b0\\u5409","phone":"065937776","address":"\\u65b0\\u5409\\u91cc\\u65b0\\u5409\\u0031\\u0032\\u0036\\u4e4b\\u0031\\u0032\\u005f\\u0031\\u0032\\u0036\\u4e4b\\u0031\\u0033\\u865f"}', '971487', '711', 'zh-tw', 1000),
(2491, 190, '14-190', 1, '安富', '{"number":"912097","shop":"\\u5b89\\u5bcc","phone":"062599397","address":"\\u5b89\\u5bcc\\u8857\\u0033\\u0034\\u0033\\u865f"}', '912097', '711', 'zh-tw', 1000),
(2492, 190, '14-190', 1, '富里', '{"number":"188474","shop":"\\u5bcc\\u91cc","phone":"063506537","address":"\\u5b89\\u5bcc\\u91cc\\u5e9c\\u5b89\\u8def\\u4e94\\u6bb5\\u0031\\u0035\\u0034\\u865f\\u0031\\u0035\\u0035\\u865f\\u0031\\u0035\\u0036\\u865f"}', '188474', '711', 'zh-tw', 1000),
(2493, 190, '14-190', 1, '怡安', '{"number":"940254","shop":"\\u6021\\u5b89","phone":"063568863","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u865f\\u4e4b\\u0032"}', '940254', '711', 'zh-tw', 1000),
(2494, 190, '14-190', 1, '新安順', '{"number":"980126","shop":"\\u65b0\\u5b89\\u9806","phone":"063564170","address":"\\u5b89\\u548c\\u8def\\u4e09\\u6bb5\\u0035\\u0035\\u002d\\u0031\\u865f\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '980126', '711', 'zh-tw', 1000),
(2495, 190, '14-190', 1, '安南', '{"number":"137742","shop":"\\u5b89\\u5357","phone":"063554906","address":"\\u5b89\\u548c\\u8def\\u56db\\u6bb5\\u0035\\u0032\\u0030\\u865f"}', '137742', '711', 'zh-tw', 1000),
(2496, 190, '14-190', 1, '總安', '{"number":"883256","shop":"\\u7e3d\\u5b89","phone":"063559452","address":"\\u5b89\\u548c\\u8def\\u56db\\u6bb5\\u0039\\u865f"}', '883256', '711', 'zh-tw', 1000),
(2497, 190, '14-190', 1, '和順', '{"number":"780827","shop":"\\u548c\\u9806","phone":"063565013","address":"\\u5b89\\u548c\\u8def\\u4e94\\u6bb5\\u0031\\u0036\\u0036\\u865f"}', '780827', '711', 'zh-tw', 1000),
(2498, 190, '14-190', 1, '安東', '{"number":"891763","shop":"\\u5b89\\u6771","phone":"062554045","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '891763', '711', 'zh-tw', 1000),
(2499, 190, '14-190', 1, '安安', '{"number":"966290","shop":"\\u5b89\\u5b89","phone":"062574233","address":"\\u5b89\\u660e\\u8def\\u56db\\u6bb5\\u0032\\u0036\\u0030\\u002d\\u0037\\u0030\\u865f"}', '966290', '711', 'zh-tw', 1000),
(2500, 190, '14-190', 1, '長溪', '{"number":"965057","shop":"\\u9577\\u6eaa","phone":"062568719","address":"\\u5b89\\u6176\\u91cc\\u9577\\u6eaa\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0037\\u865f"}', '965057', '711', 'zh-tw', 1000),
(2501, 190, '14-190', 1, '台江', '{"number":"194996","shop":"\\u53f0\\u6c5f","phone":"062472643","address":"\\u5b89\\u4e2d\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '194996', '711', 'zh-tw', 1000),
(2502, 190, '14-190', 1, '城中', '{"number":"909529","shop":"\\u57ce\\u4e2d","phone":"062570930","address":"\\u5b89\\u4e2d\\u8def\\u516d\\u6bb5\\u0035\\u0039\\u0039\\u865f\\u0036\\u0030\\u0031\\u865f"}', '909529', '711', 'zh-tw', 1000),
(2503, 190, '14-190', 1, '聖安', '{"number":"195243","shop":"\\u8056\\u5b89","phone":"062574626","address":"\\u5b89\\u4e2d\\u8def\\u516d\\u6bb5\\u0038\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '195243', '711', 'zh-tw', 1000),
(2504, 190, '14-190', 1, '淵中', '{"number":"138251","shop":"\\u6df5\\u4e2d","phone":"062556297","address":"\\u5b89\\u4e2d\\u8def\\u4e09\\u6bb5\\u0034\\u0033\\u0035\\u865f\\u0034\\u0033\\u0037\\u865f"}', '138251', '711', 'zh-tw', 1000),
(2505, 190, '14-190', 1, '安立', '{"number":"970819","shop":"\\u5b89\\u7acb","phone":"062473773","address":"\\u5b89\\u4e2d\\u8def\\u56db\\u6bb5\\u0031\\u0035\\u0030\\u865f"}', '970819', '711', 'zh-tw', 1000),
(2506, 190, '14-190', 1, '安北', '{"number":"121035","shop":"\\u5b89\\u5317","phone":"062474698","address":"\\u5b89\\u4e2d\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0036\\u865f\\u0035\\u0035\\u0032\\u865f"}', '121035', '711', 'zh-tw', 1000),
(2507, 190, '14-190', 1, '和慶', '{"number":"192819","shop":"\\u548c\\u6176","phone":"062479259","address":"\\u5b89\\u4e2d\\u8def\\u4e00\\u6bb5\\u0037\\u0030\\u0031\\u5df7\\u0033\\u0033\\u002e\\u0033\\u0035\\u865f"}', '192819', '711', 'zh-tw', 1000),
(2508, 190, '14-190', 1, '安中', '{"number":"845597","shop":"\\u5b89\\u4e2d","phone":"062473285","address":"\\u5b89\\u4e2d\\u8def\\u4e00\\u6bb5\\u0037\\u0031\\u0031\\u865f"}', '845597', '711', 'zh-tw', 1000),
(2509, 190, '14-190', 1, '鳳凰', '{"number":"187219","shop":"\\u9cf3\\u51f0","phone":"062828100","address":"\\u5317\\u5b89\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0032\\u865f"}', '187219', '711', 'zh-tw', 1000),
(2510, 190, '14-190', 1, '環安', '{"number":"153825","shop":"\\u74b0\\u5b89","phone":"063571959","address":"\\u9577\\u548c\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u5df7\\u0032\\u0037\\u0032\\u865f"}', '153825', '711', 'zh-tw', 1000),
(2511, 190, '14-190', 1, '長和', '{"number":"199050","shop":"\\u9577\\u548c","phone":"063555088","address":"\\u9577\\u548c\\u4e00\\u8857\\u0033\\u0039\\u865f"}', '199050', '711', 'zh-tw', 1000),
(2512, 190, '14-190', 1, '總頭寮', '{"number":"155234","shop":"\\u7e3d\\u982d\\u5bee","phone":"062479503","address":"\\u9577\\u6eaa\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0036\\u865f"}', '155234', '711', 'zh-tw', 1000),
(2513, 190, '14-190', 1, '安新', '{"number":"923868","shop":"\\u5b89\\u65b0","phone":"062457294","address":"\\u9577\\u6eaa\\u8def\\u4e09\\u6bb5\\u0033\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '923868', '711', 'zh-tw', 1000),
(2514, 190, '14-190', 1, '祥安', '{"number":"911256","shop":"\\u7965\\u5b89","phone":"062556812","address":"\\u5927\\u5b89\\u8857\\u0036\\u0030\\u865f"}', '911256', '711', 'zh-tw', 1000),
(2515, 190, '14-190', 1, '安傑', '{"number":"151243","shop":"\\u5b89\\u5091","phone":"062566011","address":"\\u9802\\u5b89\\u91cc\\u5317\\u5b89\\u8def\\u4e8c\\u6bb5\\u0034\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '151243', '711', 'zh-tw', 1000),
(2516, 190, '14-190', 1, '本興', '{"number":"944577","shop":"\\u672c\\u8208","phone":"062477987","address":"\\u516c\\u5b78\\u8def\\u56db\\u6bb5\\u0031\\u0038\\u0030\\u865f"}', '944577', '711', 'zh-tw', 1000),
(2517, 190, '14-190', 1, '國銨', '{"number":"893482","shop":"\\u570b\\u92a8","phone":"062807583","address":"\\u570b\\u5b89\\u8857\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f"}', '893482', '711', 'zh-tw', 1000),
(2518, 190, '14-190', 1, '九份子', '{"number":"167569","shop":"\\u4e5d\\u4efd\\u5b50","phone":"063580592","address":"\\u570b\\u5b89\\u91cc\\u4e5d\\u4efd\\u5b50\\u5927\\u9053\\u0036\\u865f\\u0031\\u6a13"}', '167569', '711', 'zh-tw', 1000),
(2519, 190, '14-190', 1, '淵安', '{"number":"965105","shop":"\\u6df5\\u5b89","phone":"062568738","address":"\\u6d77\\u4f43\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0033\\u865f"}', '965105', '711', 'zh-tw', 1000),
(2520, 190, '14-190', 1, '本原', '{"number":"883898","shop":"\\u672c\\u539f","phone":"062464793","address":"\\u6d77\\u4f43\\u8def\\u56db\\u6bb5\\u0032\\u865f"}', '883898', '711', 'zh-tw', 1000),
(2521, 190, '14-190', 1, '安佃', '{"number":"932714","shop":"\\u5b89\\u4f43","phone":"062469087","address":"\\u6d77\\u4f43\\u8def\\u56db\\u6bb5\\u0035\\u0034\\u0038\\u865f"}', '932714', '711', 'zh-tw', 1000),
(2522, 190, '14-190', 1, '新海佃', '{"number":"146953","shop":"\\u65b0\\u6d77\\u4f43","phone":"063585834","address":"\\u6d77\\u4f43\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0039\\u865f\\u4e00\\u6a13"}', '146953', '711', 'zh-tw', 1000),
(2523, 190, '14-190', 1, '逢安', '{"number":"921518","shop":"\\u9022\\u5b89","phone":"062550832","address":"\\u6d77\\u897f\\u91cc\\u6d77\\u4e2d\\u8857\\u0037\\u0033\\u865f"}', '921518', '711', 'zh-tw', 1000),
(2524, 190, '14-190', 1, '新同安', '{"number":"969015","shop":"\\u65b0\\u540c\\u5b89","phone":"062461306","address":"\\u7406\\u60f3\\u91cc\\u6d77\\u4f43\\u8def\\u4e8c\\u6bb5\\u0034\\u0033\\u0032\\u865f"}', '969015', '711', 'zh-tw', 1000),
(2525, 190, '14-190', 1, '安學', '{"number":"174567","shop":"\\u5b89\\u5b78","phone":"062874351","address":"\\u5357\\u8208\\u91cc\\u0031\\u0032\\u9130\\u516c\\u5b78\\u8def\\u4e94\\u6bb5\\u0036\\u0038\\u0035\\u865f\\u4e00\\u6a13"}', '174567', '711', 'zh-tw', 1000),
(2526, 190, '14-190', 1, '安同', '{"number":"179986","shop":"\\u5b89\\u540c","phone":"062461351","address":"\\u540c\\u5b89\\u8def\\u0032\\u0033\\u0035\\u865f"}', '179986', '711', 'zh-tw', 1000),
(2527, 190, '14-190', 1, '安昌', '{"number":"188164","shop":"\\u5b89\\u660c","phone":"063568205","address":"\\u586d\\u5357\\u91cc\\u5b89\\u660c\\u8857\\u0031\\u0030\\u0031\\u865f"}', '188164', '711', 'zh-tw', 1000),
(2528, 190, '14-190', 1, '新郡安', '{"number":"988223","shop":"\\u65b0\\u90e1\\u5b89","phone":"062512571","address":"\\u6eaa\\u5317\\u91cc\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '988223', '711', 'zh-tw', 1000),
(2529, 190, '14-190', 1, '府安', '{"number":"997504","shop":"\\u5e9c\\u5b89","phone":"062507072","address":"\\u6eaa\\u6771\\u91cc\\u5317\\u5b89\\u8def\\u4e8c\\u6bb5\\u0035\\u0039\\u865f\\u0036\\u0031\\u865f"}', '997504', '711', 'zh-tw', 1000),
(2530, 190, '14-190', 1, '加吉吉', '{"number":"160052","shop":"\\u52a0\\u5409\\u5409","phone":"063550573","address":"\\u65b0\\u9806\\u91cc\\u57f9\\u5b89\\u8def\\u0031\\u0035\\u0035\\u865f"}', '160052', '711', 'zh-tw', 1000),
(2531, 190, '14-190', 1, '科工', '{"number":"943002","shop":"\\u79d1\\u5de5","phone":"063841731","address":"\\u9e7d\\u7530\\u91cc\\u9e7d\\u7530\\u8def\\u0032\\u865f"}', '943002', '711', 'zh-tw', 1000),
(2532, 190, '14-190', 1, '本安', '{"number":"912400","shop":"\\u672c\\u5b89","phone":"062550963","address":"\\u6df5\\u6771\\u91cc\\u5b89\\u4e2d\\u8def\\u4e09\\u6bb5\\u0033\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '912400', '711', 'zh-tw', 1000),
(2533, 190, '14-190', 1, '安醫', '{"number":"194321","shop":"\\u5b89\\u91ab","phone":"063565258","address":"\\u5dde\\u5357\\u91cc\\u0031\\u0032\\u9130\\u9577\\u548c\\u8def\\u4e8c\\u6bb5\\u0036\\u0036\\u865f\\u0042\\u0031"}', '194321', '711', 'zh-tw', 1000),
(2534, 191, '14-191', 1, '昜昇', '{"number":"122500","shop":"\\u661c\\u6607","phone":"062228860","address":"\\u5b89\\u5317\\u8def\\u0031\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '122500', '711', 'zh-tw', 1000),
(2535, 191, '14-191', 1, '同發', '{"number":"930796","shop":"\\u540c\\u767c","phone":"063911709","address":"\\u5b89\\u5317\\u8def\\u0031\\u0037\\u0030\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '930796', '711', 'zh-tw', 1000),
(2536, 191, '14-191', 1, '安平', '{"number":"140519","shop":"\\u5b89\\u5e73","phone":"062226940","address":"\\u5b89\\u5e73\\u8def\\u0039\\u0039\\u865f"}', '140519', '711', 'zh-tw', 1000),
(2537, 191, '14-191', 1, '文五', '{"number":"138066","shop":"\\u6587\\u4e94","phone":"062988638","address":"\\u570b\\u5e73\\u91cc\\u6587\\u5e73\\u8def\\u0032\\u0031\\u0037\\u865f"}', '138066', '711', 'zh-tw', 1000),
(2538, 191, '14-191', 1, '天期', '{"number":"195298","shop":"\\u5929\\u671f","phone":"062985675","address":"\\u570b\\u5e73\\u8def\\u0031\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '195298', '711', 'zh-tw', 1000),
(2539, 191, '14-191', 1, '建平', '{"number":"188810","shop":"\\u5efa\\u5e73","phone":"062953181","address":"\\u5efa\\u5e73\\u4e03\\u8857\\u0036\\u0038\\u0039\\u865f"}', '188810', '711', 'zh-tw', 1000),
(2540, 191, '14-191', 1, '華平', '{"number":"968104","shop":"\\u83ef\\u5e73","phone":"062939147","address":"\\u5065\\u5eb7\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0032\\u865f"}', '968104', '711', 'zh-tw', 1000),
(2541, 191, '14-191', 1, '康平', '{"number":"160351","shop":"\\u5eb7\\u5e73","phone":"062933064","address":"\\u5065\\u5eb7\\u4e09\\u8857\\u0038\\u0031\\u865f"}', '160351', '711', 'zh-tw', 1000),
(2542, 191, '14-191', 1, '郡豐', '{"number":"187253","shop":"\\u90e1\\u8c50","phone":"062936349","address":"\\u90e1\\u5e73\\u8def\\u0033\\u0030\\u0037\\u865f"}', '187253', '711', 'zh-tw', 1000),
(2543, 191, '14-191', 1, '安運', '{"number":"982410","shop":"\\u5b89\\u904b","phone":"063504407","address":"\\u5e73\\u5b89\\u91cc\\u83ef\\u5e73\\u8def\\u0037\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '982410', '711', 'zh-tw', 1000),
(2544, 191, '14-191', 1, '豐平', '{"number":"981602","shop":"\\u8c50\\u5e73","phone":"062999400","address":"\\u5e73\\u8c50\\u8def\\u0034\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '981602', '711', 'zh-tw', 1000),
(2545, 191, '14-191', 1, '國平', '{"number":"934732","shop":"\\u570b\\u5e73","phone":"062936552","address":"\\u5e73\\u901a\\u91cc\\u570b\\u5e73\\u8def\\u0033\\u0038\\u0031\\u865f"}', '934732', '711', 'zh-tw', 1000),
(2546, 191, '14-191', 1, '慶平', '{"number":"123019","shop":"\\u6176\\u5e73","phone":"062955284","address":"\\u6176\\u5e73\\u8def\\u0032\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '123019', '711', 'zh-tw', 1000),
(2547, 191, '14-191', 1, '慶國', '{"number":"978558","shop":"\\u6176\\u570b","phone":"062951171","address":"\\u6176\\u5e73\\u8def\\u0035\\u0033\\u0031\\u865f"}', '978558', '711', 'zh-tw', 1000),
(2548, 191, '14-191', 1, '安期', '{"number":"167983","shop":"\\u5b89\\u671f","phone":"062992927","address":"\\u6176\\u5e73\\u8def\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f"}', '167983', '711', 'zh-tw', 1000),
(2549, 191, '14-191', 1, '期建', '{"number":"143389","shop":"\\u671f\\u5efa","phone":"062952650","address":"\\u6587\\u5e73\\u91cc\\u5efa\\u5e73\\u8def\\u0032\\u0037\\u0037\\u865f"}', '143389', '711', 'zh-tw', 1000),
(2550, 191, '14-191', 1, '怡平', '{"number":"165127","shop":"\\u6021\\u5e73","phone":"062984002","address":"\\u6587\\u5e73\\u8def\\u0034\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '165127', '711', 'zh-tw', 1000),
(2551, 191, '14-191', 1, '永華東', '{"number":"149550","shop":"\\u6c38\\u83ef\\u6771","phone":"062984141","address":"\\u6c38\\u83ef\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0030\\u865f"}', '149550', '711', 'zh-tw', 1000),
(2552, 191, '14-191', 1, '府城', '{"number":"189167","shop":"\\u5e9c\\u57ce","phone":"062973245","address":"\\u6c38\\u83ef\\u8def\\u4e8c\\u6bb5\\u0035\\u0033\\u0032\\u865f"}', '189167', '711', 'zh-tw', 1000),
(2553, 192, '14-192', 1, '荷韻', '{"number":"188887","shop":"\\u8377\\u97fb","phone":"066832143","address":"\\u6cb3\\u6771\\u91cc\\u0039\\u9130\\u5180\\u8401\\u6e56\\u0031\\u0032\\u0032\\u002d\\u0033\\u0035\\u865f"}', '188887', '711', 'zh-tw', 1000),
(2554, 192, '14-192', 1, '鈺善', '{"number":"944555","shop":"\\u923a\\u5584","phone":"066832854","address":"\\u6607\\u5b89\\u91cc\\u0031\\u9130\\u4e09\\u9593\\u539d\\u0032\\u002d\\u0035\\u0036\\u865f"}', '944555', '711', 'zh-tw', 1000),
(2555, 192, '14-192', 1, '仙草埔', '{"number":"165699","shop":"\\u4ed9\\u8349\\u57d4","phone":"066832662","address":"\\u4ed9\\u8349\\u91cc\\u4ed9\\u8349\\u0036\\u4e4b\\u0033\\u0030\\u865f"}', '165699', '711', 'zh-tw', 1000),
(2556, 192, '14-192', 1, '白河', '{"number":"114532","shop":"\\u767d\\u6cb3","phone":"066859907","address":"\\u6c38\\u5b89\\u91cc\\u0031\\u0037\\u9130\\u570b\\u6cf0\\u8def\\u0031\\u0030\\u0031\\u865f"}', '114532', '711', 'zh-tw', 1000),
(2557, 192, '14-192', 1, '新蓮鄉', '{"number":"122588","shop":"\\u65b0\\u84ee\\u9109","phone":"066858752","address":"\\u6c38\\u5b89\\u91cc\\u5927\\u5fb7\\u8857\\u0031\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '122588', '711', 'zh-tw', 1000),
(2558, 192, '14-192', 1, '東楨', '{"number":"181598","shop":"\\u6771\\u6968","phone":"066856583","address":"\\u6c38\\u5b89\\u91cc\\u65b0\\u8208\\u8def\\u0035\\u0030\\u0037\\u865f\\u4e00\\u6a13"}', '181598', '711', 'zh-tw', 1000),
(2559, 193, '14-193', 1, '南鯤鯓', '{"number":"921655","shop":"\\u5357\\u9be4\\u9bd3","phone":"067864853","address":"\\u9be4\\u6c5f\\u91cc\\u0038\\u0034\\u0031\\u002d\\u0031\\u865f"}', '921655', '711', 'zh-tw', 1000),
(2560, 194, '14-194', 1, '華園', '{"number":"138387","shop":"\\u83ef\\u5712","phone":"062218726","address":"\\u5317\\u9580\\u91cc\\u516c\\u5712\\u5357\\u8def\\u0037\\u0031\\u865f"}', '138387', '711', 'zh-tw', 1000),
(2561, 194, '14-194', 1, '道成', '{"number":"943714","shop":"\\u9053\\u6210","phone":"062517084","address":"\\u5317\\u9580\\u8def\\u4e8c\\u6bb5\\u0035\\u0030\\u0030\\u865f"}', '943714', '711', 'zh-tw', 1000),
(2562, 194, '14-194', 1, '康健', '{"number":"181495","shop":"\\u5eb7\\u5065","phone":"062525923","address":"\\u5317\\u9580\\u8def\\u4e09\\u6bb5\\u0034\\u0039\\u865f"}', '181495', '711', 'zh-tw', 1000),
(2563, 194, '14-194', 1, '北園', '{"number":"193568","shop":"\\u5317\\u5712","phone":"062007206","address":"\\u5317\\u5712\\u8857\\u0036\\u865f\\u4e4b\\u0036\\u0031\\u3001\\u0032\\u6a13"}', '193568', '711', 'zh-tw', 1000),
(2564, 194, '14-194', 1, '常勝', '{"number":"953191","shop":"\\u5e38\\u52dd","phone":"062751056","address":"\\u9577\\u69ae\\u91cc\\u9577\\u52dd\\u8def\\u0031\\u865f"}', '953191', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(2565, 194, '14-194', 1, '鄭子寮', '{"number":"116734","shop":"\\u912d\\u5b50\\u5bee","phone":"062526031","address":"\\u6210\\u5fb7\\u91cc\\u0033\\u0038\\u9130\\u5317\\u6210\\u8def\\u0034\\u0034\\u0032\\u865f"}', '116734', '711', 'zh-tw', 1000),
(2566, 194, '14-194', 1, '北育', '{"number":"123112","shop":"\\u5317\\u80b2","phone":"062516477","address":"\\u6210\\u5fb7\\u91cc\\u5317\\u5b89\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0039\\u865f"}', '123112', '711', 'zh-tw', 1000),
(2567, 194, '14-194', 1, '德緯', '{"number":"153814","shop":"\\u5fb7\\u7def","phone":"062525864","address":"\\u6210\\u5fb7\\u91cc\\u80b2\\u5fb7\\u4e8c\\u8def\\u0032\\u0030\\u9130\\u0033\\u0030\\u0038\\u865f"}', '153814', '711', 'zh-tw', 1000),
(2568, 194, '14-194', 1, '和緯', '{"number":"163785","shop":"\\u548c\\u7def","phone":"062830287","address":"\\u6210\\u529f\\u91cc\\u548c\\u7def\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0032\\u865f"}', '163785', '711', 'zh-tw', 1000),
(2569, 194, '14-194', 1, '東都', '{"number":"117520","shop":"\\u6771\\u90fd","phone":"062220909","address":"\\u6210\\u529f\\u8def\\u0031\\u0034\\u0030\\u865f"}', '117520', '711', 'zh-tw', 1000),
(2570, 194, '14-194', 1, '龍成', '{"number":"143873","shop":"\\u9f8d\\u6210","phone":"062232679","address":"\\u6210\\u529f\\u8def\\u0032\\u865f"}', '143873', '711', 'zh-tw', 1000),
(2571, 194, '14-194', 1, '修齊', '{"number":"153973","shop":"\\u4fee\\u9f4a","phone":"062293723","address":"\\u6210\\u529f\\u8def\\u0035\\u0034\\u865f"}', '153973', '711', 'zh-tw', 1000),
(2572, 194, '14-194', 1, '湖美', '{"number":"962863","shop":"\\u6e56\\u7f8e","phone":"062805492","address":"\\u5927\\u8c50\\u91cc\\u0032\\u0037\\u9130\\u4e2d\\u83ef\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0033\\u865f"}', '962863', '711', 'zh-tw', 1000),
(2573, 194, '14-194', 1, '聖賢', '{"number":"871747","shop":"\\u8056\\u8ce2","phone":"062587164","address":"\\u5927\\u8c50\\u91cc\\u6587\\u8ce2\\u8def\\u0033\\u0031\\u0035\\u865f"}', '871747', '711', 'zh-tw', 1000),
(2574, 194, '14-194', 1, '新大港', '{"number":"200826","shop":"\\u65b0\\u5927\\u6e2f","phone":"063507047","address":"\\u5927\\u548c\\u91cc\\u5927\\u6e2f\\u8857\\u0031\\u0034\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '200826', '711', 'zh-tw', 1000),
(2575, 194, '14-194', 1, '公園', '{"number":"822169","shop":"\\u516c\\u5712","phone":"062813005","address":"\\u516c\\u5712\\u8def\\u0031\\u0030\\u0037\\u0032\\u002d\\u0031\\u865f\\u0032\\u865f\\u0033\\u865f"}', '822169', '711', 'zh-tw', 1000),
(2576, 194, '14-194', 1, '北安', '{"number":"184667","shop":"\\u5317\\u5b89","phone":"062814051","address":"\\u516c\\u5712\\u8def\\u0035\\u0039\\u0039\\u002d\\u0031\\u0031\\u865f"}', '184667', '711', 'zh-tw', 1000),
(2577, 194, '14-194', 1, '公平', '{"number":"855055","shop":"\\u516c\\u5e73","phone":"062511415","address":"\\u516c\\u5712\\u8def\\u0036\\u0039\\u0034\\u865f"}', '855055', '711', 'zh-tw', 1000),
(2578, 194, '14-194', 1, '新海成', '{"number":"990042","shop":"\\u65b0\\u6d77\\u6210","phone":"062281334","address":"\\u6d77\\u5b89\\u8def\\u4e09\\u6bb5\\u0032\\u865f\\u0031\\u6a13"}', '990042', '711', 'zh-tw', 1000),
(2579, 194, '14-194', 1, '立人', '{"number":"860688","shop":"\\u7acb\\u4eba","phone":"062205089","address":"\\u548c\\u9806\\u91cc\\u897f\\u9580\\u8def\\u4e09\\u6bb5\\u0038\\u0031\\u865f"}', '860688', '711', 'zh-tw', 1000),
(2580, 194, '14-194', 1, '大欣', '{"number":"185305","shop":"\\u5927\\u6b23","phone":"063581640","address":"\\u548c\\u7def\\u8def\\u4e94\\u6bb5\\u0037\\u0036\\u865f"}', '185305', '711', 'zh-tw', 1000),
(2581, 194, '14-194', 1, '東森', '{"number":"120386","shop":"\\u6771\\u68ee","phone":"062341552","address":"\\u6797\\u68ee\\u8def\\u4e09\\u6bb5\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f"}', '120386', '711', 'zh-tw', 1000),
(2582, 194, '14-194', 1, '丹比', '{"number":"177371","shop":"\\u4e39\\u6bd4","phone":"062822350","address":"\\u516d\\u7532\\u91cc\\u897f\\u9580\\u8def\\u56db\\u6bb5\\u0033\\u0033\\u0032\\u865f"}', '177371', '711', 'zh-tw', 1000),
(2583, 194, '14-194', 1, '育德', '{"number":"137122","shop":"\\u80b2\\u5fb7","phone":"062502040","address":"\\u6c11\\u5fb7\\u8def\\u0038\\u0037\\u865f"}', '137122', '711', 'zh-tw', 1000),
(2584, 194, '14-194', 1, '成大', '{"number":"180872","shop":"\\u6210\\u5927","phone":"062756065","address":"\\u52dd\\u5229\\u8def\\u0031\\u0033\\u0038\\u865f\\u0042\\u0031\\u6a13"}', '180872', '711', 'zh-tw', 1000),
(2585, 194, '14-194', 1, '豐盛', '{"number":"935735","shop":"\\u8c50\\u76db","phone":"062362556","address":"\\u52dd\\u5229\\u8def\\u0031\\u0039\\u0032\\u865f\\u0031\\u0039\\u0034\\u865f"}', '935735', '711', 'zh-tw', 1000),
(2586, 194, '14-194', 1, '康榮', '{"number":"944278","shop":"\\u5eb7\\u69ae","phone":"062822304","address":"\\u5be6\\u8e10\\u91cc\\u5317\\u9580\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '944278', '711', 'zh-tw', 1000),
(2587, 194, '14-194', 1, '海裕', '{"number":"180458","shop":"\\u6d77\\u88d5","phone":"063584347","address":"\\u96d9\\u5b89\\u91cc\\u6d77\\u5b89\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u0039\\u5df7\\u0035\\u865f\\u0031\\u6a13"}', '180458', '711', 'zh-tw', 1000),
(2588, 194, '14-194', 1, '文賢', '{"number":"174110","shop":"\\u6587\\u8ce2","phone":"062593008","address":"\\u6587\\u8ce2\\u8def\\u0031\\u0031\\u0031\\u0036\\u865f"}', '174110', '711', 'zh-tw', 1000),
(2589, 194, '14-194', 1, '文成', '{"number":"180757","shop":"\\u6587\\u6210","phone":"063588424","address":"\\u6587\\u5143\\u91cc\\u6587\\u6210\\u8def\\u0037\\u0037\\u0035\\u865f"}', '180757', '711', 'zh-tw', 1000),
(2590, 194, '14-194', 1, '西門', '{"number":"139265","shop":"\\u897f\\u9580","phone":"062511673","address":"\\u897f\\u9580\\u8def\\u56db\\u6bb5\\u0031\\u0033\\u0032\\u865f"}', '139265', '711', 'zh-tw', 1000),
(2591, 194, '14-194', 1, '小北', '{"number":"165149","shop":"\\u5c0f\\u5317","phone":"062810537","address":"\\u897f\\u9580\\u8def\\u56db\\u6bb5\\u0034\\u0035\\u0035\\u865f"}', '165149', '711', 'zh-tw', 1000),
(2592, 194, '14-194', 1, '鈺勝', '{"number":"130671","shop":"\\u923a\\u52dd","phone":"062007620","address":"\\u5c0f\\u6771\\u8def\\u0033\\u0030\\u0037\\u5df7\\u0037\\u0035\\u865f\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '130671', '711', 'zh-tw', 1000),
(2593, 194, '14-194', 1, '成醫', '{"number":"132910","shop":"\\u6210\\u91ab","phone":"062088905","address":"\\u5c0f\\u6771\\u8def\\u0033\\u0035\\u865f\\u0028\\u6210\\u5927\\u91ab\\u9662\\u9580\\u8a3a\\u4e00\\u6a13\\u0029"}', '132910', '711', 'zh-tw', 1000),
(2594, 194, '14-194', 1, '寶園', '{"number":"982443","shop":"\\u5bf6\\u5712","phone":"062366671","address":"\\u5143\\u5bf6\\u91cc\\u5317\\u5712\\u8857\\u0037\\u0038\\u865f\\u0037\\u0038\\u002d\\u0031\\u865f\\u0037\\u0038\\u002d\\u0032\\u865f\\u0037\\u0038\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '982443', '711', 'zh-tw', 1000),
(2595, 195, '14-195', 1, '新大內', '{"number":"970277","shop":"\\u65b0\\u5927\\u5167","phone":"065763553","address":"\\u77f3\\u57ce\\u91cc\\u77f3\\u5b50\\u7028\\u0031\\u0032\\u0032\\u4e4b\\u0031\\u0035\\u0033\\u865f"}', '970277', '711', 'zh-tw', 1000),
(2596, 196, '14-196', 1, '致聖', '{"number":"935779","shop":"\\u81f4\\u8056","phone":"062235686","address":"\\u5317\\u9580\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u865f"}', '935779', '711', 'zh-tw', 1000),
(2597, 196, '14-196', 1, '北門', '{"number":"865535","shop":"\\u5317\\u9580","phone":"062292308","address":"\\u5317\\u9580\\u8def\\u4e00\\u6bb5\\u0033\\u0031\\u0030\\u865f"}', '865535', '711', 'zh-tw', 1000),
(2598, 196, '14-196', 1, '長寧', '{"number":"833055","shop":"\\u9577\\u5be7","phone":"062363597","address":"\\u9577\\u69ae\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u865f"}', '833055', '711', 'zh-tw', 1000),
(2599, 196, '14-196', 1, '長榮', '{"number":"915203","shop":"\\u9577\\u69ae","phone":"062381098","address":"\\u9577\\u69ae\\u8def\\u4e09\\u6bb5\\u0031\\u0033\\u0039\\u865f"}', '915203', '711', 'zh-tw', 1000),
(2600, 196, '14-196', 1, '崇祐', '{"number":"113193","shop":"\\u5d07\\u7950","phone":"062902815","address":"\\u5d07\\u6210\\u91cc\\u5d07\\u660e\\u8def\\u0035\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '113193', '711', 'zh-tw', 1000),
(2601, 196, '14-196', 1, '德光', '{"number":"958602","shop":"\\u5fb7\\u5149","phone":"062607217","address":"\\u5d07\\u5fb7\\u8def\\u0032\\u0036\\u0039\\u865f"}', '958602', '711', 'zh-tw', 1000),
(2602, 196, '14-196', 1, '吉吉好', '{"number":"962771","shop":"\\u5409\\u5409\\u597d","phone":"062906462","address":"\\u5d07\\u5fb7\\u8def\\u0036\\u0037\\u0030\\u865f"}', '962771', '711', 'zh-tw', 1000),
(2603, 196, '14-196', 1, '市醫', '{"number":"874757","shop":"\\u5e02\\u91ab","phone":"062673784","address":"\\u5d07\\u5fb7\\u8def\\u0036\\u0038\\u0035\\u865f\\u0036\\u0038\\u0037\\u865f"}', '874757', '711', 'zh-tw', 1000),
(2604, 196, '14-196', 1, '福耀', '{"number":"198747","shop":"\\u798f\\u8000","phone":"062690374","address":"\\u5d07\\u660e\\u8def\\u0033\\u0037\\u0037\\u865f\\u0033\\u0037\\u0037\\u002d\\u0031\\u865f"}', '198747', '711', 'zh-tw', 1000),
(2605, 196, '14-196', 1, '崇學', '{"number":"198600","shop":"\\u5d07\\u5b78","phone":"062604847","address":"\\u5d07\\u5584\\u8def\\u0031\\u0036\\u0038\\u865f"}', '198600', '711', 'zh-tw', 1000),
(2606, 196, '14-196', 1, '崇華', '{"number":"991643","shop":"\\u5d07\\u83ef","phone":"062601426","address":"\\u5d07\\u5584\\u8def\\u0032\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '991643', '711', 'zh-tw', 1000),
(2607, 196, '14-196', 1, '崇道', '{"number":"886668","shop":"\\u5d07\\u9053","phone":"062894813","address":"\\u5d07\\u5584\\u8def\\u0035\\u0037\\u0031\\u865f"}', '886668', '711', 'zh-tw', 1000),
(2608, 196, '14-196', 1, '億載', '{"number":"895673","shop":"\\u5104\\u8f09","phone":"062145092","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0039\\u0035\\u002d\\u0033\\u865f"}', '895673', '711', 'zh-tw', 1000),
(2609, 196, '14-196', 1, '成商', '{"number":"194963","shop":"\\u6210\\u5546","phone":"062004190","address":"\\u5927\\u5b78\\u91cc\\u52dd\\u5229\\u8def\\u0031\\u0031\\u0038\\u865f\\u0031\\u3001\\u0032\\u6a13"}', '194963', '711', 'zh-tw', 1000),
(2610, 196, '14-196', 1, '新東育', '{"number":"941693","shop":"\\u65b0\\u6771\\u80b2","phone":"062360105","address":"\\u5927\\u5b78\\u8def\\u897f\\u6bb5\\u0035\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '941693', '711', 'zh-tw', 1000),
(2611, 196, '14-196', 1, '鼎亨', '{"number":"188991","shop":"\\u9f0e\\u4ea8","phone":"062908425","address":"\\u5fb7\\u6771\\u8857\\u0031\\u0030\\u0031\\u865f"}', '188991', '711', 'zh-tw', 1000),
(2612, 196, '14-196', 1, '東凱', '{"number":"996718","shop":"\\u6771\\u51f1","phone":"062091722","address":"\\u6771\\u5b89\\u8def\\u0031\\u0030\\u0032\\u865f"}', '996718', '711', 'zh-tw', 1000),
(2613, 196, '14-196', 1, '東和', '{"number":"199131","shop":"\\u6771\\u548c","phone":"062087403","address":"\\u6771\\u5b89\\u8def\\u0032\\u0039\\u0031\\u865f\\u0032\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '199131', '711', 'zh-tw', 1000),
(2614, 196, '14-196', 1, '席悅', '{"number":"183907","shop":"\\u5e2d\\u6085","phone":"062004432","address":"\\u6771\\u5149\\u91cc\\u6771\\u8208\\u8def\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '183907', '711', 'zh-tw', 1000),
(2615, 196, '14-196', 1, '森田', '{"number":"860448","shop":"\\u68ee\\u7530","phone":"062742079","address":"\\u6771\\u9580\\u91cc\\u6771\\u9580\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0039\\u865f"}', '860448', '711', 'zh-tw', 1000),
(2616, 196, '14-196', 1, '新新樓', '{"number":"198770","shop":"\\u65b0\\u65b0\\u6a13","phone":"062360434","address":"\\u6771\\u9580\\u91cc\\u524d\\u92d2\\u8def\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '198770', '711', 'zh-tw', 1000),
(2617, 196, '14-196', 1, '裕豐', '{"number":"166061","shop":"\\u88d5\\u8c50","phone":"062351946","address":"\\u6771\\u9580\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0031\\u865f"}', '166061', '711', 'zh-tw', 1000),
(2618, 196, '14-196', 1, '立東', '{"number":"950974","shop":"\\u7acb\\u6771","phone":"062691015","address":"\\u6771\\u9580\\u8def\\u4e09\\u6bb5\\u0032\\u0032\\u0030\\u865f"}', '950974', '711', 'zh-tw', 1000),
(2619, 196, '14-196', 1, '東龍', '{"number":"165264","shop":"\\u6771\\u9f8d","phone":"062008630","address":"\\u6771\\u9580\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0032\\u865f"}', '165264', '711', 'zh-tw', 1000),
(2620, 196, '14-196', 1, '裕興', '{"number":"951379","shop":"\\u88d5\\u8208","phone":"063317671","address":"\\u5fa9\\u8208\\u91cc\\u88d5\\u6587\\u8def\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '951379', '711', 'zh-tw', 1000),
(2621, 196, '14-196', 1, '東澓', '{"number":"144979","shop":"\\u6771\\u6f93","phone":"062673539","address":"\\u5bcc\\u8fb2\\u8857\\u4e00\\u6bb5\\u0031\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '144979', '711', 'zh-tw', 1000),
(2622, 196, '14-196', 1, '好富', '{"number":"950273","shop":"\\u597d\\u5bcc","phone":"062353005","address":"\\u5bcc\\u5f37\\u91cc\\u88d5\\u8fb2\\u8def\\u0033\\u0032\\u0030\\u865f"}', '950273', '711', 'zh-tw', 1000),
(2623, 196, '14-196', 1, '裕平', '{"number":"965264","shop":"\\u88d5\\u5e73","phone":"063318240","address":"\\u95dc\\u8056\\u91cc\\u88d5\\u4fe1\\u8def\\u0031\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '965264', '711', 'zh-tw', 1000),
(2624, 196, '14-196', 1, '自由', '{"number":"144980","shop":"\\u81ea\\u7531","phone":"062908094","address":"\\u548c\\u5e73\\u91cc\\u81ea\\u7531\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u865f"}', '144980', '711', 'zh-tw', 1000),
(2625, 196, '14-196', 1, '富裕', '{"number":"166544","shop":"\\u5bcc\\u88d5","phone":"062091395","address":"\\u5f8c\\u7532\\u91cc\\u88d5\\u8fb2\\u8def\\u0036\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '166544', '711', 'zh-tw', 1000),
(2626, 196, '14-196', 1, '衛國', '{"number":"194088","shop":"\\u885b\\u570b","phone":"062004499","address":"\\u6797\\u68ee\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0032\\u5df7\\u0032\\u0034\\u5f04\\u0035\\u865f\\u002e\\u0037\\u865f"}', '194088', '711', 'zh-tw', 1000),
(2627, 196, '14-196', 1, '新東', '{"number":"165138","shop":"\\u65b0\\u6771","phone":"062382073","address":"\\u6797\\u68ee\\u8def\\u4e8c\\u6bb5\\u0038\\u0034\\u865f"}', '165138', '711', 'zh-tw', 1000),
(2628, 196, '14-196', 1, '崇明', '{"number":"822790","shop":"\\u5d07\\u660e","phone":"062678084","address":"\\u6797\\u68ee\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0034\\u865f"}', '822790', '711', 'zh-tw', 1000),
(2629, 196, '14-196', 1, '帝標', '{"number":"173885","shop":"\\u5e1d\\u6a19","phone":"062602997","address":"\\u9f8d\\u5c71\\u8857\\u0031\\u0030\\u0039\\u865f\\u0031\\u0031\\u0031\\u865f"}', '173885', '711', 'zh-tw', 1000),
(2630, 196, '14-196', 1, '慶東', '{"number":"946193","shop":"\\u6176\\u6771","phone":"062352796","address":"\\u9752\\u5e74\\u8def\\u0034\\u0031\\u0036\\u865f"}', '946193', '711', 'zh-tw', 1000),
(2631, 196, '14-196', 1, '古都', '{"number":"880419","shop":"\\u53e4\\u90fd","phone":"062894755","address":"\\u4ec1\\u548c\\u8def\\u0031\\u0033\\u0033\\u865f"}', '880419', '711', 'zh-tw', 1000),
(2632, 196, '14-196', 1, '仁文', '{"number":"967639","shop":"\\u4ec1\\u6587","phone":"063362101","address":"\\u4ec1\\u548c\\u8def\\u0035\\u0037\\u002d\\u0037\\u865f\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '967639', '711', 'zh-tw', 1000),
(2633, 196, '14-196', 1, '榮譽', '{"number":"111809","shop":"\\u69ae\\u8b7d","phone":"062677923","address":"\\u69ae\\u8b7d\\u8857\\u0038\\u0036\\u865f\\u0038\\u0036\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '111809', '711', 'zh-tw', 1000),
(2634, 196, '14-196', 1, '力大', '{"number":"164951","shop":"\\u529b\\u5927","phone":"062683042","address":"\\u751f\\u7522\\u8def\\u0032\\u0039\\u0039\\u865f"}', '164951', '711', 'zh-tw', 1000),
(2635, 196, '14-196', 1, '小東', '{"number":"190813","shop":"\\u5c0f\\u6771","phone":"062341994","address":"\\u5c0f\\u6771\\u8def\\u0032\\u0035\\u0036\\u865f"}', '190813', '711', 'zh-tw', 1000),
(2636, 196, '14-196', 1, '祥發', '{"number":"947912","shop":"\\u7965\\u767c","phone":"062386965","address":"\\u88d5\\u8c50\\u8857\\u0031\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '947912', '711', 'zh-tw', 1000),
(2637, 196, '14-196', 1, '裕孝', '{"number":"194343","shop":"\\u88d5\\u5b5d","phone":"063318916","address":"\\u88d5\\u8fb2\\u8def\\u0038\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '194343', '711', 'zh-tw', 1000),
(2638, 196, '14-196', 1, '裕信', '{"number":"952291","shop":"\\u88d5\\u4fe1","phone":"063316406","address":"\\u88d5\\u4fe1\\u8def\\u0033\\u0035\\u0032\\u865f"}', '952291', '711', 'zh-tw', 1000),
(2639, 196, '14-196', 1, '裕文', '{"number":"130970","shop":"\\u88d5\\u6587","phone":"062909325","address":"\\u88d5\\u5b78\\u8def\\u0031\\u865f"}', '130970', '711', 'zh-tw', 1000),
(2640, 196, '14-196', 1, '財神', '{"number":"112075","shop":"\\u8ca1\\u795e","phone":"062894503","address":"\\u4e2d\\u83ef\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0031\\u002d\\u0031\\u0037\\u0037\\u865f"}', '112075', '711', 'zh-tw', 1000),
(2641, 196, '14-196', 1, '東城', '{"number":"118660","shop":"\\u6771\\u57ce","phone":"062694483","address":"\\u4e2d\\u83ef\\u6771\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0033\\u865f"}', '118660', '711', 'zh-tw', 1000),
(2642, 196, '14-196', 1, '東發', '{"number":"174693","shop":"\\u6771\\u767c","phone":"062908238","address":"\\u4e2d\\u83ef\\u6771\\u8def\\u4e09\\u6bb5\\u0033\\u0037\\u0039\\u865f"}', '174693', '711', 'zh-tw', 1000),
(2643, 196, '14-196', 1, '一心', '{"number":"854557","shop":"\\u4e00\\u5fc3","phone":"062084962","address":"\\u4e2d\\u83ef\\u6771\\u8def\\u4e00\\u6bb5\\u0032\\u0034\\u865f"}', '854557', '711', 'zh-tw', 1000),
(2644, 196, '14-196', 1, '東敬', '{"number":"916516","shop":"\\u6771\\u656c","phone":"062755113","address":"\\u838a\\u656c\\u8def\\u0039\\u0030\\u865f"}', '916516', '711', 'zh-tw', 1000),
(2645, 197, '14-197', 1, '東勝', '{"number":"932574","shop":"\\u6771\\u52dd","phone":"066805308","address":"\\u6771\\u5c71\\u91cc\\u0032\\u0033\\u0035\\u865f"}', '932574', '711', 'zh-tw', 1000),
(2646, 197, '14-197', 1, '崇原', '{"number":"124676","shop":"\\u5d07\\u539f","phone":"066861774","address":"\\u6771\\u539f\\u91cc\\u0032\\u0034\\u9130\\u524d\\u5927\\u57d4\\u0031\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '124676', '711', 'zh-tw', 1000),
(2647, 197, '14-197', 1, '東美', '{"number":"113517","shop":"\\u6771\\u7f8e","phone":"066805521","address":"\\u4e2d\\u8208\\u8def\\u0031\\u865f"}', '113517', '711', 'zh-tw', 1000),
(2648, 198, '14-198', 1, '南藝', '{"number":"923547","shop":"\\u5357\\u85dd","phone":"066930253","address":"\\u5927\\u5d0e\\u91cc\\u0036\\u0036\\u865f"}', '923547', '711', 'zh-tw', 1000),
(2649, 198, '14-198', 1, '二鎮', '{"number":"967086","shop":"\\u4e8c\\u93ae","phone":"066982725","address":"\\u4e8c\\u5340\\u91cc\\u5de5\\u793e\\u897f\\u8857\\u0032\\u0035\\u5df7\\u0038\\u0031\\u865f"}', '967086', '711', 'zh-tw', 1000),
(2650, 198, '14-198', 1, '烏山頭', '{"number":"942607","shop":"\\u70cf\\u5c71\\u982d","phone":"066985149","address":"\\u6e56\\u5c71\\u91cc\\u0039\\u0038\\u002d\\u0034\\u865f\\u0039\\u0038\\u002d\\u0035\\u865f"}', '942607', '711', 'zh-tw', 1000),
(2651, 198, '14-198', 1, '隆田', '{"number":"871714","shop":"\\u9686\\u7530","phone":"065791099","address":"\\u9686\\u7530\\u91cc\\u0031\\u0034\\u9130\\u6587\\u5316\\u8857\\u0031\\u0033\\u0030\\u865f"}', '871714', '711', 'zh-tw', 1000),
(2652, 199, '14-199', 1, '車讚', '{"number":"966061","shop":"\\u8eca\\u8b9a","phone":"065954561","address":"\\u5317\\u82b1\\u91cc\\u4e2d\\u6b63\\u8def\\u0035\\u0031\\u0037\\u865f"}', '966061', '711', 'zh-tw', 1000),
(2653, 199, '14-199', 1, '保東', '{"number":"943884","shop":"\\u4fdd\\u6771","phone":"065955944","address":"\\u95dc\\u65b0\\u8def\\u4e8c\\u6bb5\\u0037\\u865f"}', '943884', '711', 'zh-tw', 1000),
(2654, 199, '14-199', 1, '鼎富', '{"number":"188773","shop":"\\u9f0e\\u5bcc","phone":"065965999","address":"\\u5357\\u82b1\\u91cc\\u4e2d\\u6b63\\u8def\\u0038\\u0038\\u0031\\u865f"}', '188773', '711', 'zh-tw', 1000),
(2655, 199, '14-199', 1, '鼎利', '{"number":"188980","shop":"\\u9f0e\\u5229","phone":"065950701","address":"\\u5357\\u96c4\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0030\\u865f"}', '188980', '711', 'zh-tw', 1000),
(2656, 199, '14-199', 1, '關聖', '{"number":"971018","shop":"\\u95dc\\u8056","phone":"065957447","address":"\\u5357\\u96c4\\u8def\\u4e00\\u6bb5\\u0034\\u0037\\u0031\\u865f"}', '971018', '711', 'zh-tw', 1000),
(2657, 199, '14-199', 1, '威保', '{"number":"890140","shop":"\\u5a01\\u4fdd","phone":"065950963","address":"\\u5357\\u96c4\\u8def\\u4e00\\u6bb5\\u0038\\u0032\\u0039\\u865f"}', '890140', '711', 'zh-tw', 1000),
(2658, 199, '14-199', 1, '香洋', '{"number":"993340","shop":"\\u9999\\u6d0b","phone":"065950478","address":"\\u9999\\u6d0b\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '993340', '711', 'zh-tw', 1000),
(2659, 199, '14-199', 1, '鼎鑫', '{"number":"198921","shop":"\\u9f0e\\u946b","phone":"065966828","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '198921', '711', 'zh-tw', 1000),
(2660, 200, '14-200', 1, '八甲', '{"number":"902779","shop":"\\u516b\\u7532","phone":"062398072","address":"\\u516b\\u7532\\u91cc\\u4e2d\\u6b63\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0034\\u865f"}', '902779', '711', 'zh-tw', 1000),
(2661, 200, '14-200', 1, '加賀', '{"number":"188898","shop":"\\u52a0\\u8cc0","phone":"062055024","address":"\\u5927\\u5edf\\u91cc\\u5927\\u5edf\\u4e00\\u8857\\u0031\\u865f"}', '188898', '711', 'zh-tw', 1000),
(2662, 200, '14-200', 1, '大潭', '{"number":"143840","shop":"\\u5927\\u6f6d","phone":"062783243","address":"\\u5927\\u6f6d\\u91cc\\u9577\\u69ae\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0030\\u5df7\\u0031\\u0031\\u865f"}', '143840', '711', 'zh-tw', 1000),
(2663, 200, '14-200', 1, '長榮大', '{"number":"954529","shop":"\\u9577\\u69ae\\u5927","phone":"062785977","address":"\\u5927\\u6f6d\\u91cc\\u9577\\u69ae\\u8def\\u4e00\\u6bb5\\u0033\\u0039\\u0036\\u865f\\u0028\\u9577\\u69ae\\u5927\\u5b78\\u5167\\u7b2c\\u0034\\u5bbf\\u820d\\u0042\\u0031\\u0029"}', '954529', '711', 'zh-tw', 1000),
(2664, 200, '14-200', 1, '真潭', '{"number":"183516","shop":"\\u771f\\u6f6d","phone":"062783489","address":"\\u5927\\u6f6d\\u91cc\\u4e2d\\u6b63\\u5357\\u8def\\u4e09\\u6bb5\\u0032\\u0032\\u865f"}', '183516', '711', 'zh-tw', 1000),
(2665, 200, '14-200', 1, '伍誼', '{"number":"851064","shop":"\\u4f0d\\u8abc","phone":"062399459","address":"\\u5fa9\\u8208\\u8def\\u0031\\u0036\\u0032\\u4e4b\\u0031\\u865f"}', '851064', '711', 'zh-tw', 1000),
(2666, 200, '14-200', 1, '大通', '{"number":"155119","shop":"\\u5927\\u901a","phone":"062307664","address":"\\u548c\\u5e73\\u5317\\u8857\\u0033\\u0032\\u865f"}', '155119', '711', 'zh-tw', 1000),
(2667, 200, '14-200', 1, '豐生', '{"number":"118338","shop":"\\u8c50\\u751f","phone":"063308121","address":"\\u770b\\u6771\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0035\\u865f"}', '118338', '711', 'zh-tw', 1000),
(2668, 200, '14-200', 1, '六發', '{"number":"931272","shop":"\\u516d\\u767c","phone":"063307356","address":"\\u516d\\u7532\\u91cc\\u4e2d\\u6b63\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0032\\u0030\\u865f"}', '931272', '711', 'zh-tw', 1000),
(2669, 200, '14-200', 1, '立登', '{"number":"165471","shop":"\\u7acb\\u767b","phone":"062399080","address":"\\u6c11\\u751f\\u5317\\u8def\\u0031\\u0030\\u0036\\u865f"}', '165471', '711', 'zh-tw', 1000),
(2670, 200, '14-200', 1, '仁興', '{"number":"187231","shop":"\\u4ec1\\u8208","phone":"062395784","address":"\\u5357\\u4fdd\\u91cc\\u5927\\u5fb7\\u8def\\u0033\\u0030\\u0037\\u865f"}', '187231', '711', 'zh-tw', 1000),
(2671, 200, '14-200', 1, '立青', '{"number":"183734","shop":"\\u7acb\\u9752","phone":"062391997","address":"\\u5357\\u4fdd\\u91cc\\u6c11\\u6b0a\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '183734', '711', 'zh-tw', 1000),
(2672, 200, '14-200', 1, '歸仁', '{"number":"165253","shop":"\\u6b78\\u4ec1","phone":"062390164","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0036\\u0030\\u865f"}', '165253', '711', 'zh-tw', 1000),
(2673, 200, '14-200', 1, '騰揮', '{"number":"880811","shop":"\\u9a30\\u63ee","phone":"062300846","address":"\\u4e2d\\u6b63\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0030\\u865f"}', '880811', '711', 'zh-tw', 1000),
(2674, 201, '14-201', 1, '蓮營', '{"number":"931489","shop":"\\u84ee\\u71df","phone":"066358177","address":"\\u798f\\u5b89\\u91cc\\u0032\\u0030\\u0030\\u865f"}', '931489', '711', 'zh-tw', 1000),
(2675, 201, '14-201', 1, '後壁', '{"number":"903152","shop":"\\u5f8c\\u58c1","phone":"066873221","address":"\\u5f8c\\u58c1\\u91cc\\u5f8c\\u58c1\\u0037\\u0031\\u865f"}', '903152', '711', 'zh-tw', 1000),
(2676, 201, '14-201', 1, '菁寮', '{"number":"132862","shop":"\\u83c1\\u5bee","phone":"066621468","address":"\\u58a8\\u6797\\u91cc\\u0033\\u0034\\u0036\\u865f"}', '132862', '711', 'zh-tw', 1000),
(2677, 202, '14-202', 1, '新佳忠', '{"number":"990156","shop":"\\u65b0\\u4f73\\u5fe0","phone":"067237374","address":"\\u5b89\\u897f\\u91cc\\u5fe0\\u5b5d\\u8def\\u0032\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '990156', '711', 'zh-tw', 1000),
(2678, 202, '14-202', 1, '新佳興', '{"number":"981059","shop":"\\u65b0\\u4f73\\u8208","phone":"067224825","address":"\\u6771\\u5be7\\u91cc\\u6587\\u5316\\u8def\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '981059', '711', 'zh-tw', 1000),
(2679, 202, '14-202', 1, '佳立', '{"number":"183778","shop":"\\u4f73\\u7acb","phone":"067229051","address":"\\u4f73\\u6771\\u8def\\u0033\\u0036\\u0031\\u865f"}', '183778', '711', 'zh-tw', 1000),
(2680, 202, '14-202', 1, '佳文', '{"number":"122131","shop":"\\u4f73\\u6587","phone":"067238343","address":"\\u4f73\\u897f\\u8def\\u0032\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '122131', '711', 'zh-tw', 1000),
(2681, 202, '14-202', 1, '南龍', '{"number":"143862","shop":"\\u5357\\u9f8d","phone":"067224188","address":"\\u5efa\\u5357\\u91cc\\u5b89\\u5357\\u8def\\u0032\\u0032\\u9130\\u0032\\u0035\\u0036\\u865f"}', '143862', '711', 'zh-tw', 1000),
(2682, 202, '14-202', 1, '佳龍', '{"number":"120397","shop":"\\u4f73\\u9f8d","phone":"067237042","address":"\\u5efa\\u5357\\u91cc\\u52dd\\u5229\\u8def\\u0032\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '120397', '711', 'zh-tw', 1000),
(2683, 202, '14-202', 1, '佳成', '{"number":"175009","shop":"\\u4f73\\u6210","phone":"067266010","address":"\\u8208\\u5316\\u91cc\\u4f73\\u91cc\\u8208\\u0034\\u0039\\u0032\\u002d\\u0035\\u0030\\u865f"}', '175009', '711', 'zh-tw', 1000),
(2684, 202, '14-202', 1, '新北中', '{"number":"112525","shop":"\\u65b0\\u5317\\u4e2d","phone":"067225387","address":"\\u5ef6\\u5e73\\u8def\\u0031\\u0039\\u0035\\u865f"}', '112525', '711', 'zh-tw', 1000),
(2685, 202, '14-202', 1, '子龍', '{"number":"143851","shop":"\\u5b50\\u9f8d","phone":"067265194","address":"\\u5b50\\u9f8d\\u91cc\\u0031\\u9130\\u5b50\\u826f\\u5edf\\u0033\\u002d\\u0031\\u865f"}', '143851', '711', 'zh-tw', 1000),
(2686, 203, '14-203', 1, '將軍', '{"number":"132596","shop":"\\u5c07\\u8ecd","phone":"067945691","address":"\\u9577\\u69ae\\u91cc\\u9577\\u69ae\\u0032\\u0039\\u4e4b\\u0032\\u865f"}', '132596', '711', 'zh-tw', 1000),
(2687, 203, '14-203', 1, '將富', '{"number":"951760","shop":"\\u5c07\\u5bcc","phone":"067946598","address":"\\u5c07\\u5bcc\\u91cc\\u0034\\u0039\\u4e4b\\u516b\\u865f"}', '951760', '711', 'zh-tw', 1000),
(2688, 204, '14-204', 1, '新工', '{"number":"121172","shop":"\\u65b0\\u5de5","phone":"066225476","address":"\\u6771\\u6607\\u91cc\\u4e2d\\u5c71\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u865f\\u0031\\u6a13"}', '121172', '711', 'zh-tw', 1000),
(2689, 204, '14-204', 1, '柳營', '{"number":"860459","shop":"\\u67f3\\u71df","phone":"066223592","address":"\\u58eb\\u6797\\u91cc\\u67f3\\u71df\\u8def\\u4e8c\\u6bb5\\u0031\\u865f\\u0033\\u865f"}', '860459', '711', 'zh-tw', 1000),
(2690, 204, '14-204', 1, '新天地', '{"number":"167802","shop":"\\u65b0\\u5929\\u5730","phone":"066223507","address":"\\u592a\\u5eb7\\u91cc\\u0032\\u0032\\u9130\\u0032\\u0030\\u0031\\u002d\\u0031\\u0030\\u865f"}', '167802', '711', 'zh-tw', 1000),
(2691, 204, '14-204', 1, '宜翔', '{"number":"153939","shop":"\\u5b9c\\u7fd4","phone":"066226815","address":"\\u4e2d\\u57d5\\u91cc\\u4e2d\\u5c71\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u9130\\u0036\\u0031\\u865f"}', '153939', '711', 'zh-tw', 1000),
(2692, 204, '14-204', 1, '小腳腿', '{"number":"965345","shop":"\\u5c0f\\u8173\\u817f","phone":"066230327","address":"\\u91cd\\u6eaa\\u91cc\\u7fa9\\u58eb\\u8def\\u4e00\\u6bb5\\u0039\\u0033\\u0038\\u865f"}', '965345', '711', 'zh-tw', 1000),
(2693, 205, '14-205', 1, '六甲', '{"number":"863252","shop":"\\u516d\\u7532","phone":"066992090","address":"\\u516d\\u7532\\u91cc\\u0032\\u0032\\u9130\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u0032\\u865f"}', '863252', '711', 'zh-tw', 1000),
(2694, 205, '14-205', 1, '七甲', '{"number":"132482","shop":"\\u4e03\\u7532","phone":"066981130","address":"\\u516d\\u7532\\u91cc\\u4e2d\\u6b63\\u8def\\u0033\\u0032\\u0031\\u4e4b\\u0031\\u865f"}', '132482', '711', 'zh-tw', 1000),
(2695, 205, '14-205', 1, '林鳳營', '{"number":"130110","shop":"\\u6797\\u9cf3\\u71df","phone":"066989753","address":"\\u4e2d\\u793e\\u91cc\\u6797\\u9cf3\\u71df\\u0031\\u0031\\u0031\\u002d\\u0038\\u865f\\u0031\\u6a13"}', '130110', '711', 'zh-tw', 1000),
(2696, 206, '14-206', 1, '麻學', '{"number":"970358","shop":"\\u9ebb\\u5b78","phone":"065704806","address":"\\u5927\\u5c71\\u91cc\\u0038\\u9130\\u5927\\u5c71\\u8173\\u0031\\u4e4b\\u0038\\u0030\\u865f"}', '970358', '711', 'zh-tw', 1000),
(2697, 206, '14-206', 1, '新曾文', '{"number":"968263","shop":"\\u65b0\\u66fe\\u6587","phone":"065714049","address":"\\u6771\\u89d2\\u91cc\\u8208\\u4e2d\\u8def\\u0031\\u0037\\u0037\\u865f\\u0031\\u0037\\u0039\\u865f"}', '968263', '711', 'zh-tw', 1000),
(2698, 206, '14-206', 1, '新麻豆', '{"number":"120087","shop":"\\u65b0\\u9ebb\\u8c46","phone":"065717493","address":"\\u6996\\u8208\\u91cc\\u0031\\u0031\\u9130\\u4e2d\\u5c71\\u8def\\u0031\\u0031\\u865f"}', '120087', '711', 'zh-tw', 1000),
(2699, 206, '14-206', 1, '麻善', '{"number":"954183","shop":"\\u9ebb\\u5584","phone":"065718004","address":"\\u6649\\u6c5f\\u91cc\\u6c11\\u6b0a\\u8def\\u0031\\u0030\\u002d\\u0031\\u865f"}', '954183', '711', 'zh-tw', 1000),
(2700, 206, '14-206', 1, '麻佳', '{"number":"880143","shop":"\\u9ebb\\u4f73","phone":"065702885","address":"\\u82d3\\u5b50\\u6797\\u0031\\u0037\\u002d\\u0031\\u0033\\u865f"}', '880143', '711', 'zh-tw', 1000),
(2701, 206, '14-206', 1, '台首大', '{"number":"120777","shop":"\\u53f0\\u9996\\u5927","phone":"065718413","address":"\\u5357\\u52e2\\u91cc\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '120777', '711', 'zh-tw', 1000),
(2702, 206, '14-206', 1, '麻中', '{"number":"965600","shop":"\\u9ebb\\u4e2d","phone":"065719834","address":"\\u5357\\u52e2\\u91cc\\u5357\\u52e2\\u0033\\u0036\\u002d\\u0032\\u0030\\u0035\\u865f"}', '965600', '711', 'zh-tw', 1000),
(2703, 206, '14-206', 1, '新黎明', '{"number":"188496","shop":"\\u65b0\\u9ece\\u660e","phone":"065710761","address":"\\u8208\\u570b\\u8def\\u0034\\u0030\\u002d\\u0031\\u0030\\u865f"}', '188496', '711', 'zh-tw', 1000),
(2704, 206, '14-206', 1, '真新', '{"number":"181532","shop":"\\u771f\\u65b0","phone":"065707050","address":"\\u6cb9\\u8eca\\u91cc\\u6cb9\\u8eca\\u0032\\u0034\\u4e4b\\u0031\\u865f"}', '181532', '711', 'zh-tw', 1000),
(2705, 206, '14-206', 1, '麻新', '{"number":"931478","shop":"\\u9ebb\\u65b0","phone":"065719211","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0038\\u0039\\u865f"}', '931478', '711', 'zh-tw', 1000),
(2706, 207, '14-207', 1, '南化', '{"number":"183181","shop":"\\u5357\\u5316","phone":"065775209","address":"\\u5357\\u5316\\u91cc\\u0031\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '183181', '711', 'zh-tw', 1000),
(2707, 208, '14-208', 1, '上鈺', '{"number":"195014","shop":"\\u4e0a\\u923a","phone":"062631080","address":"\\u5927\\u6210\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0038\\u865f\\u0031\\u3001\\u0032\\u6a13"}', '195014', '711', 'zh-tw', 1000),
(2708, 208, '14-208', 1, '少觀', '{"number":"971498","shop":"\\u5c11\\u89c0","phone":"062134175","address":"\\u5927\\u6797\\u8def\\u0031\\u0031\\u0033\\u865f"}', '971498', '711', 'zh-tw', 1000),
(2709, 208, '14-208', 1, '大恩', '{"number":"865797","shop":"\\u5927\\u6069","phone":"062890509","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0036\\u0039\\u0032\\u865f\\u0036\\u0039\\u0034\\u865f"}', '865797', '711', 'zh-tw', 1000),
(2710, 208, '14-208', 1, '大忠', '{"number":"141800","shop":"\\u5927\\u5fe0","phone":"062143221","address":"\\u5927\\u5fe0\\u91cc\\u4e2d\\u83ef\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0038\\u865f"}', '141800', '711', 'zh-tw', 1000),
(2711, 208, '14-208', 1, '永成', '{"number":"182362","shop":"\\u6c38\\u6210","phone":"062623463","address":"\\u4f5b\\u58c7\\u91cc\\u660e\\u8208\\u8def\\u0031\\u0033\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '182362', '711', 'zh-tw', 1000),
(2712, 208, '14-208', 1, '新興', '{"number":"132149","shop":"\\u65b0\\u8208","phone":"062637118","address":"\\u5149\\u660e\\u91cc\\u65b0\\u8208\\u8def\\u0036\\u9130\\u0035\\u0032\\u0039\\u865f\\u0035\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '132149', '711', 'zh-tw', 1000),
(2713, 208, '14-208', 1, '國民', '{"number":"985822","shop":"\\u570b\\u6c11","phone":"062603696","address":"\\u570b\\u6c11\\u8def\\u0031\\u0035\\u0030\\u865f\\u0031\\u0035\\u0032\\u865f"}', '985822', '711', 'zh-tw', 1000),
(2714, 208, '14-208', 1, '文南', '{"number":"170185","shop":"\\u6587\\u5357","phone":"062635645","address":"\\u5065\\u5eb7\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0030\\u865f"}', '170185', '711', 'zh-tw', 1000),
(2715, 208, '14-208', 1, '金昇', '{"number":"194929","shop":"\\u91d1\\u6607","phone":"062632231","address":"\\u91d1\\u83ef\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u0031\\u865f"}', '194929', '711', 'zh-tw', 1000),
(2716, 208, '14-208', 1, '金都', '{"number":"990385","shop":"\\u91d1\\u90fd","phone":"062614924","address":"\\u91d1\\u83ef\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '990385', '711', 'zh-tw', 1000),
(2717, 208, '14-208', 1, '南都', '{"number":"114222","shop":"\\u5357\\u90fd","phone":"062614604","address":"\\u91d1\\u83ef\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '114222', '711', 'zh-tw', 1000),
(2718, 208, '14-208', 1, '正旺', '{"number":"943666","shop":"\\u6b63\\u65fa","phone":"062628861","address":"\\u660e\\u8208\\u8def\\u0039\\u0031\\u0037\\u865f"}', '943666', '711', 'zh-tw', 1000),
(2719, 208, '14-208', 1, '鯤鯓', '{"number":"968780","shop":"\\u9be4\\u9bd3","phone":"062648213","address":"\\u5357\\u90fd\\u91cc\\u9be4\\u9bd3\\u8def\\u0032\\u0030\\u865f"}', '968780', '711', 'zh-tw', 1000),
(2720, 208, '14-208', 1, '土定富', '{"number":"131423","shop":"\\u571f\\u5b9a\\u5bcc","phone":"062636173","address":"\\u7530\\u5bee\\u91cc\\u5927\\u6210\\u8def\\u4e8c\\u6bb5\\u0038\\u0036\\u865f\\u0038\\u0038\\u865f"}', '131423', '711', 'zh-tw', 1000),
(2721, 208, '14-208', 1, '立興', '{"number":"894407","shop":"\\u7acb\\u8208","phone":"062629520","address":"\\u7063\\u88e1\\u8def\\u0032\\u0036\\u0035\\u865f"}', '894407', '711', 'zh-tw', 1000),
(2722, 208, '14-208', 1, '建華', '{"number":"171177","shop":"\\u5efa\\u83ef","phone":"062611004","address":"\\u6587\\u83ef\\u91cc\\u4e2d\\u83ef\\u897f\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u0038\\u865f"}', '171177', '711', 'zh-tw', 1000),
(2723, 208, '14-208', 1, '新府緯', '{"number":"982236","shop":"\\u65b0\\u5e9c\\u7def","phone":"062281213","address":"\\u897f\\u9580\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '982236', '711', 'zh-tw', 1000),
(2724, 208, '14-208', 1, '喜樹', '{"number":"901466","shop":"\\u559c\\u6a39","phone":"062963467","address":"\\u559c\\u6771\\u91cc\\u0031\\u0030\\u9130\\u660e\\u8208\\u8def\\u0037\\u0033\\u0032\\u865f"}', '901466', '711', 'zh-tw', 1000),
(2725, 208, '14-208', 1, '公道', '{"number":"906726","shop":"\\u516c\\u9053","phone":"062233412","address":"\\u590f\\u6797\\u8def\\u0031\\u002d\\u0031\\u0036\\u865f"}', '906726', '711', 'zh-tw', 1000),
(2726, 208, '14-208', 1, '夏林', '{"number":"864668","shop":"\\u590f\\u6797","phone":"062288192","address":"\\u590f\\u6797\\u8def\\u0031\\u0033\\u0034\\u002d\\u0031\\u865f\\u0031\\u0033\\u0034\\u002d\\u0032\\u865f"}', '864668', '711', 'zh-tw', 1000),
(2727, 208, '14-208', 1, '樂豐', '{"number":"132253","shop":"\\u6a02\\u8c50","phone":"062630401","address":"\\u65b0\\u90fd\\u8def\\u0034\\u0036\\u0030\\u865f"}', '132253', '711', 'zh-tw', 1000),
(2728, 208, '14-208', 1, '國宅', '{"number":"946643","shop":"\\u570b\\u5b85","phone":"062917993","address":"\\u65b0\\u8208\\u8def\\u0034\\u0034\\u0031\\u865f"}', '946643', '711', 'zh-tw', 1000),
(2729, 208, '14-208', 1, '全興', '{"number":"150882","shop":"\\u5168\\u8208","phone":"062643866","address":"\\u65b0\\u6a02\\u8def\\u0037\\u0032\\u865f"}', '150882', '711', 'zh-tw', 1000),
(2730, 208, '14-208', 1, '南德', '{"number":"137801","shop":"\\u5357\\u5fb7","phone":"062625457","address":"\\u4e2d\\u83ef\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0031\\u4e4b\\u0031\\u865f"}', '137801', '711', 'zh-tw', 1000),
(2731, 208, '14-208', 1, '西濱', '{"number":"158820","shop":"\\u897f\\u6ff1","phone":"062657574","address":"\\u4e2d\\u83ef\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0037\\u865f\\u0033\\u0031\\u0039\\u865f"}', '158820', '711', 'zh-tw', 1000),
(2732, 208, '14-208', 1, '明和', '{"number":"197146","shop":"\\u660e\\u548c","phone":"062642546","address":"\\u4e2d\\u83ef\\u897f\\u8def\\u4e00\\u6bb5\\u0038\\u0039\\u865f"}', '197146', '711', 'zh-tw', 1000),
(2733, 209, '14-209', 1, '楠西', '{"number":"971878","shop":"\\u6960\\u897f","phone":"065753552","address":"\\u9e7f\\u7530\\u91cc\\u0031\\u0031\\u9130\\u6cb9\\u8eca\\u0036\\u0031\\u865f\\u4e4b\\u0031\\u0030"}', '971878', '711', 'zh-tw', 1000),
(2734, 209, '14-209', 1, '趣淘', '{"number":"167798","shop":"\\u8da3\\u6dd8","phone":"065754886","address":"\\u5bc6\\u679d\\u91cc\\u5bc6\\u679d\\u0031\\u0030\\u0032\\u4e4b\\u0035\\u865f\\u0031\\u6a13"}', '167798', '711', 'zh-tw', 1000),
(2735, 210, '14-210', 1, '大埕', '{"number":"111153","shop":"\\u5927\\u57d5","phone":"067873054","address":"\\u5927\\u57d5\\u91cc\\u0032\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '111153', '711', 'zh-tw', 1000),
(2736, 210, '14-210', 1, '七股', '{"number":"903439","shop":"\\u4e03\\u80a1","phone":"067872182","address":"\\u4e03\\u80a1\\u91cc\\u0031\\u0034\\u9130\\u0031\\u0035\\u0034\\u002d\\u0031\\u865f"}', '903439', '711', 'zh-tw', 1000),
(2737, 211, '14-211', 1, '嘉凱', '{"number":"161789","shop":"\\u5609\\u51f1","phone":"062669463","address":"\\u4fdd\\u5b89\\u91cc\\u4fdd\\u5b89\\u8def\\u4e00\\u6bb5\\u0035\\u0036\\u5df7\\u0035\\u0035\\u865f"}', '161789', '711', 'zh-tw', 1000),
(2738, 211, '14-211', 1, '嘉科大', '{"number":"117173","shop":"\\u5609\\u79d1\\u5927","phone":"062668785","address":"\\u4fdd\\u5b89\\u91cc\\u4e8c\\u4ec1\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u865f"}', '117173', '711', 'zh-tw', 1000),
(2739, 211, '14-211', 1, '嘉藥', '{"number":"184634","shop":"\\u5609\\u85e5","phone":"063660383","address":"\\u4fdd\\u5b89\\u91cc\\u4e8c\\u4ec1\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '184634', '711', 'zh-tw', 1000),
(2740, 211, '14-211', 1, '新正賢', '{"number":"967938","shop":"\\u65b0\\u6b63\\u8ce2","phone":"062669825","address":"\\u4fdd\\u5b89\\u91cc\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0039\\u865f"}', '967938', '711', 'zh-tw', 1000),
(2741, 211, '14-211', 1, '長安營', '{"number":"192978","shop":"\\u9577\\u5b89\\u71df","phone":"062675520","address":"\\u4fdd\\u4ec1\\u8def\\u0031\\u0039\\u0035\\u865f\\u0028\\u71df\\u5340\\u5167\\u0029"}', '192978', '711', 'zh-tw', 1000),
(2742, 211, '14-211', 1, '保華', '{"number":"967581","shop":"\\u4fdd\\u83ef","phone":"063369571","address":"\\u6210\\u529f\\u91cc\\u5d07\\u5fb7\\u8def\\u0038\\u0038\\u865f"}', '967581', '711', 'zh-tw', 1000),
(2743, 211, '14-211', 1, '德航', '{"number":"151357","shop":"\\u5fb7\\u822a","phone":"062684800","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0032\\u865f"}', '151357', '711', 'zh-tw', 1000),
(2744, 211, '14-211', 1, '嘉南', '{"number":"861544","shop":"\\u5609\\u5357","phone":"062667175","address":"\\u4e8c\\u884c\\u91cc\\u4e8c\\u4ec1\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0031\\u865f"}', '861544', '711', 'zh-tw', 1000),
(2745, 211, '14-211', 1, '大瑩', '{"number":"179768","shop":"\\u5927\\u7469","phone":"062667425","address":"\\u4e8c\\u884c\\u91cc\\u4e2d\\u6b63\\u897f\\u8def\\u0033\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '179768', '711', 'zh-tw', 1000),
(2746, 211, '14-211', 1, '仁伯', '{"number":"951966","shop":"\\u4ec1\\u4f2f","phone":"062491560","address":"\\u5f8c\\u58c1\\u91cc\\u5fb7\\u5b89\\u8def\\u0031\\u0038\\u0038\\u865f"}', '951966', '711', 'zh-tw', 1000),
(2747, 211, '14-211', 1, '高梓', '{"number":"198840","shop":"\\u9ad8\\u6893","phone":"062794891","address":"\\u5f8c\\u74a7\\u91cc\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0037\\u865f"}', '198840', '711', 'zh-tw', 1000),
(2748, 211, '14-211', 1, '華醫', '{"number":"951830","shop":"\\u83ef\\u91ab","phone":"063357173","address":"\\u6c11\\u5b89\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0035\\u865f"}', '951830', '711', 'zh-tw', 1000),
(2749, 211, '14-211', 1, '虎尾寮', '{"number":"967891","shop":"\\u864e\\u5c3e\\u5bee","phone":"062498487","address":"\\u4ec1\\u5fb7\\u91cc\\u6587\\u5fb7\\u8def\\u0031\\u0035\\u0037\\u865f"}', '967891', '711', 'zh-tw', 1000),
(2750, 211, '14-211', 1, '奇美實', '{"number":"132688","shop":"\\u5947\\u7f8e\\u5be6","phone":"062666124","address":"\\u4e09\\u7532\\u91cc\\u0035\\u0039\\u002d\\u0031\\u865f"}', '132688', '711', 'zh-tw', 1000),
(2751, 211, '14-211', 1, '仁大', '{"number":"966957","shop":"\\u4ec1\\u5927","phone":"062710234","address":"\\u592a\\u5b50\\u91cc\\u592a\\u5b50\\u8def\\u0031\\u0032\\u0030\\u865f\\u0031\\u0032\\u0032\\u865f"}', '966957', '711', 'zh-tw', 1000),
(2752, 211, '14-211', 1, '長益', '{"number":"151597","shop":"\\u9577\\u76ca","phone":"062052285","address":"\\u571f\\u5eab\\u91cc\\u592a\\u5b50\\u8def\\u0032\\u0033\\u0033\\u865f"}', '151597', '711', 'zh-tw', 1000),
(2753, 211, '14-211', 1, '文安', '{"number":"950538","shop":"\\u6587\\u5b89","phone":"062667371","address":"\\u6587\\u8ce2\\u8def\\u4e00\\u6bb5\\u0035\\u0037\\u0036\\u865f"}', '950538', '711', 'zh-tw', 1000),
(2754, 211, '14-211', 1, '奇勝', '{"number":"944658","shop":"\\u5947\\u52dd","phone":"062497315","address":"\\u65b0\\u7530\\u91cc\\u52dd\\u5229\\u8def\\u0031\\u0033\\u0039\\u865f"}', '944658', '711', 'zh-tw', 1000),
(2755, 211, '14-211', 1, '林頂', '{"number":"940999","shop":"\\u6797\\u9802","phone":"062496005","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0035\\u0035\\u865f"}', '940999', '711', 'zh-tw', 1000),
(2756, 211, '14-211', 1, '素心', '{"number":"166979","shop":"\\u7d20\\u5fc3","phone":"062794866","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0035\\u0038\\u865f\\u0032\\u0036\\u0030\\u865f"}', '166979', '711', 'zh-tw', 1000),
(2757, 211, '14-211', 1, '仁德', '{"number":"846659","shop":"\\u4ec1\\u5fb7","phone":"062703070","address":"\\u4e2d\\u5c71\\u8def\\u0035\\u0030\\u0031\\u865f"}', '846659', '711', 'zh-tw', 1000),
(2758, 211, '14-211', 1, '仁義', '{"number":"187736","shop":"\\u4ec1\\u7fa9","phone":"062490131","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0035\\u0032\\u865f"}', '187736', '711', 'zh-tw', 1000),
(2759, 211, '14-211', 1, '德南', '{"number":"891213","shop":"\\u5fb7\\u5357","phone":"062494918","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u0034\\u865f"}', '891213', '711', 'zh-tw', 1000),
(2760, 211, '14-211', 1, '德發', '{"number":"931559","shop":"\\u5fb7\\u767c","phone":"062495272","address":"\\u4e2d\\u6b63\\u8def\\u4e09\\u6bb5\\u0034\\u0032\\u865f"}', '931559', '711', 'zh-tw', 1000),
(2761, 211, '14-211', 1, '常興', '{"number":"187068","shop":"\\u5e38\\u8208","phone":"062721228","address":"\\u4e2d\\u6b63\\u8def\\u4e09\\u6bb5\\u0037\\u0030\\u0031\\u865f"}', '187068', '711', 'zh-tw', 1000),
(2762, 211, '14-211', 1, '保正', '{"number":"905963","shop":"\\u4fdd\\u6b63","phone":"063661321","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0035\\u0032\\u0039\\u865f"}', '905963', '711', 'zh-tw', 1000),
(2763, 211, '14-211', 1, '南站', '{"number":"190260","shop":"\\u5357\\u7ad9","phone":"063663985","address":"\\u4e2d\\u6d32\\u91cc\\u4e2d\\u6d32\\u0031\\u002d\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '190260', '711', 'zh-tw', 1000),
(2764, 211, '14-211', 1, '北站', '{"number":"197294","shop":"\\u5317\\u7ad9","phone":"062780853","address":"\\u4e2d\\u6d32\\u91cc\\u4e2d\\u6d32\\u0031\\u002d\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '197294', '711', 'zh-tw', 1000),
(2765, 211, '14-211', 1, '中洲', '{"number":"942548","shop":"\\u4e2d\\u6d32","phone":"063661512","address":"\\u4e2d\\u6d32\\u91cc\\u4e2d\\u6d32\\u0032\\u0037\\u0036\\u002d\\u0031\\u0036\\u865f\\u0032\\u0037\\u0036\\u002d\\u0031\\u0037\\u865f"}', '942548', '711', 'zh-tw', 1000),
(2766, 212, '14-212', 1, '山上', '{"number":"113126","shop":"\\u5c71\\u4e0a","phone":"065784711","address":"\\u5357\\u6d32\\u0033\\u0033\\u0037\\u002d\\u0033\\u865f"}', '113126', '711', 'zh-tw', 1000),
(2767, 213, '14-213', 1, '新樹人', '{"number":"143231","shop":"\\u65b0\\u6a39\\u4eba","phone":"065858736","address":"\\u5149\\u6587\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0033\\u002d\\u0032\\u865f"}', '143231', '711', 'zh-tw', 1000),
(2768, 213, '14-213', 1, '茄拔', '{"number":"150985","shop":"\\u8304\\u62d4","phone":"065851407","address":"\\u5609\\u5317\\u91cc\\u0031\\u0033\\u9130\\u0033\\u0035\\u0032\\u865f"}', '150985', '711', 'zh-tw', 1000),
(2769, 213, '14-213', 1, '群創B', '{"number":"179931","shop":"\\u7fa4\\u5275\\u0042","phone":"065057717","address":"\\u5357\\u95dc\\u91cc\\u5357\\u79d1\\u516b\\u8def\\u0031\\u0032\\u865f\\u0042\\u0031\\u6a13"}', '179931', '711', 'zh-tw', 1000),
(2770, 213, '14-213', 1, '群創C', '{"number":"132644","shop":"\\u7fa4\\u5275\\u0043","phone":"065056499","address":"\\u5357\\u79d1\\u516b\\u8def\\u0031\\u0032\\u865f\\u0042\\u0031"}', '132644', '711', 'zh-tw', 1000),
(2771, 213, '14-213', 1, '晶圓', '{"number":"112422","shop":"\\u6676\\u5713","phone":"065056103","address":"\\u5357\\u79d1\\u5317\\u8def\\u0031\\u002d\\u0031\\u865f\\u0028\\u0050\\u0033\\u5ee0\\u0029"}', '112422', '711', 'zh-tw', 1000),
(2772, 213, '14-213', 1, '新六廠', '{"number":"167019","shop":"\\u65b0\\u516d\\u5ee0","phone":"065057554","address":"\\u5357\\u79d1\\u5317\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '167019', '711', 'zh-tw', 1000),
(2773, 213, '14-213', 1, 'P1廠', '{"number":"167020","shop":"\\u0050\\u0031\\u5ee0","phone":"065057528","address":"\\u5357\\u79d1\\u5317\\u8def\\u0031\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '167020', '711', 'zh-tw', 1000),
(2774, 213, '14-213', 1, '新P5', '{"number":"133016","shop":"\\u65b0\\u0050\\u0035","phone":"065055694","address":"\\u5357\\u79d1\\u4e5d\\u8def\\u0031\\u0037\\u865f\\u0028\\u0050\\u0035\\u0050\\u0036\\u5ee0\\u004f\\u68df\\u0029"}', '133016', '711', 'zh-tw', 1000),
(2775, 213, '14-213', 1, '牛墟', '{"number":"951874","shop":"\\u725b\\u589f","phone":"065814527","address":"\\u4ec0\\u4e43\\u91cc\\u4ec0\\u4e43\\u0031\\u0039\\u0030\\u865f"}', '951874', '711', 'zh-tw', 1000),
(2776, 213, '14-213', 1, '六分寮', '{"number":"942652","shop":"\\u516d\\u5206\\u5bee","phone":"065850190","address":"\\u7530\\u5bee\\u91cc\\u516d\\u5206\\u5bee\\u0037\\u0034\\u002d\\u0031\\u865f\\u0037\\u0034\\u002d\\u0032\\u865f"}', '942652', '711', 'zh-tw', 1000),
(2777, 213, '14-213', 1, '善營', '{"number":"971465","shop":"\\u5584\\u71df","phone":"065856032","address":"\\u5c0f\\u65b0\\u91cc\\u6210\\u529f\\u8def\\u0031\\u0037\\u0033\\u4e4b\\u0031\\u865f"}', '971465', '711', 'zh-tw', 1000),
(2778, 213, '14-213', 1, '松美', '{"number":"127158","shop":"\\u677e\\u7f8e","phone":"065851826","address":"\\u5c0f\\u65b0\\u91cc\\u6210\\u529f\\u8def\\u0032\\u002d\\u0032\\u865f"}', '127158', '711', 'zh-tw', 1000),
(2779, 213, '14-213', 1, '興農', '{"number":"932884","shop":"\\u8208\\u8fb2","phone":"065813851","address":"\\u8208\\u8fb2\\u8def\\u0034\\u865f"}', '932884', '711', 'zh-tw', 1000),
(2780, 213, '14-213', 1, '善文', '{"number":"136978","shop":"\\u5584\\u6587","phone":"065811531","address":"\\u4e2d\\u5c71\\u8def\\u0035\\u0031\\u0038\\u865f"}', '136978', '711', 'zh-tw', 1000),
(2781, 213, '14-213', 1, '善良', '{"number":"184036","shop":"\\u5584\\u826f","phone":"065813736","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '184036', '711', 'zh-tw', 1000),
(2782, 213, '14-213', 1, '善成', '{"number":"138262","shop":"\\u5584\\u6210","phone":"065854215","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0038\\u0036\\u865f"}', '138262', '711', 'zh-tw', 1000),
(2783, 213, '14-213', 1, '善和', '{"number":"187242","shop":"\\u5584\\u548c","phone":"065854317","address":"\\u5750\\u99d5\\u91cc\\u5927\\u6210\\u8def\\u0033\\u0031\\u0039\\u865f"}', '187242', '711', 'zh-tw', 1000),
(2784, 214, '14-214', 1, '慶安', '{"number":"882552","shop":"\\u6176\\u5b89","phone":"067956671","address":"\\u6176\\u5b89\\u91cc\\u65b0\\u8208\\u8857\\u0032\\u0035\\u002d\\u0032\\u865f"}', '882552', '711', 'zh-tw', 1000),
(2785, 214, '14-214', 1, '喬興', '{"number":"193199","shop":"\\u55ac\\u8208","phone":"067957103","address":"\\u6176\\u5b89\\u91cc\\u65b0\\u8208\\u8857\\u0038\\u002d\\u0037\\u0037\\u002e\\u0038\\u002d\\u0037\\u0038\\u865f"}', '193199', '711', 'zh-tw', 1000),
(2786, 214, '14-214', 1, '西港', '{"number":"165079","shop":"\\u897f\\u6e2f","phone":"067954784","address":"\\u897f\\u6e2f\\u91cc\\u4e2d\\u5c71\\u8def\\u0033\\u0036\\u0036\\u002d\\u0031\\u865f"}', '165079', '711', 'zh-tw', 1000),
(2787, 214, '14-214', 1, '後營', '{"number":"138675","shop":"\\u5f8c\\u71df","phone":"067950374","address":"\\u71df\\u897f\\u91cc\\u0031\\u865f"}', '138675', '711', 'zh-tw', 1000),
(2788, 215, '14-215', 1, '新下營', '{"number":"990167","shop":"\\u65b0\\u4e0b\\u71df","phone":"066890134","address":"\\u4e0b\\u71df\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u865f\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '990167', '711', 'zh-tw', 1000),
(2789, 215, '14-215', 1, '上營', '{"number":"931836","shop":"\\u4e0a\\u71df","phone":"066890923","address":"\\u4e2d\\u71df\\u91cc\\u0031\\u0032\\u0038\\u0036\\u865f"}', '931836', '711', 'zh-tw', 1000),
(2790, 216, '14-216', 1, '遠德', '{"number":"965611","shop":"\\u9060\\u5fb7","phone":"065987483","address":"\\u5317\\u52e2\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0032\\u0031\\u0031\\u865f"}', '965611', '711', 'zh-tw', 1000),
(2791, 216, '14-216', 1, '新興運', '{"number":"990282","shop":"\\u65b0\\u8208\\u904b","phone":"065800340","address":"\\u8b77\\u570b\\u91cc\\u4e2d\\u5c71\\u8def\\u0032\\u0031\\u0031\\u865f"}', '990282', '711', 'zh-tw', 1000),
(2792, 216, '14-216', 1, '那菝', '{"number":"880165","shop":"\\u90a3\\u83dd","phone":"065912497","address":"\\u90a3\\u83dd\\u6797\\u0032\\u0034\\u0031\\u865f"}', '880165', '711', 'zh-tw', 1000),
(2793, 216, '14-216', 1, '星辰', '{"number":"931537","shop":"\\u661f\\u8fb0","phone":"065986694","address":"\\u5168\\u8208\\u91cc\\u7af9\\u5b50\\u8173\\u0031\\u0037\\u0037\\u002d\\u0032\\u865f"}', '931537', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(2794, 216, '14-216', 1, '清新', '{"number":"910334","shop":"\\u6e05\\u65b0","phone":"065800790","address":"\\u6b66\\u5b89\\u91cc\\u4e2d\\u6b63\\u8def\\u0033\\u0032\\u0031\\u865f"}', '910334', '711', 'zh-tw', 1000),
(2795, 216, '14-216', 1, '清美', '{"number":"147266","shop":"\\u6e05\\u7f8e","phone":"065982994","address":"\\u5354\\u8208\\u91cc\\u4e2d\\u5c71\\u8def\\u0036\\u0032\\u0034\\u865f"}', '147266', '711', 'zh-tw', 1000),
(2796, 216, '14-216', 1, '大目降', '{"number":"980296","shop":"\\u5927\\u76ee\\u964d","phone":"065984053","address":"\\u6b63\\u65b0\\u8def\\u0032\\u0033\\u0033\\u865f"}', '980296', '711', 'zh-tw', 1000),
(2797, 216, '14-216', 1, '知母義', '{"number":"130992","shop":"\\u77e5\\u6bcd\\u7fa9","phone":"065907105","address":"\\u77e5\\u7fa9\\u91cc\\u77e5\\u6bcd\\u7fa9\\u0031\\u0035\\u865f\\u4e4b\\u0032\\u0030\\u4e00\\u6a13"}', '130992', '711', 'zh-tw', 1000),
(2798, 216, '14-216', 1, '新化', '{"number":"958967","shop":"\\u65b0\\u5316","phone":"065907237","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u0037\\u865f"}', '958967', '711', 'zh-tw', 1000),
(2799, 217, '14-217', 1, '社頂', '{"number":"130626","shop":"\\u793e\\u9802","phone":"065894247","address":"\\u5927\\u793e\\u91cc\\u5927\\u793e\\u0037\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '130626', '711', 'zh-tw', 1000),
(2800, 217, '14-217', 1, '大營', '{"number":"151977","shop":"\\u5927\\u71df","phone":"065891679","address":"\\u5927\\u71df\\u91cc\\u0031\\u0033\\u0036\\u002d\\u0031\\u865f"}', '151977', '711', 'zh-tw', 1000),
(2801, 217, '14-217', 1, '新新善', '{"number":"137063","shop":"\\u65b0\\u65b0\\u5584","phone":"065014359","address":"\\u5fa9\\u8208\\u8def\\u0035\\u0039\\u865f\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f\\u4e00\\u6a13"}', '137063', '711', 'zh-tw', 1000),
(2802, 217, '14-217', 1, '新墘', '{"number":"954312","shop":"\\u65b0\\u5898","phone":"065897739","address":"\\u6e2f\\u5898\\u91cc\\u6c11\\u65cf\\u8def\\u0031\\u0031\\u0038\\u865f"}', '954312', '711', 'zh-tw', 1000),
(2803, 217, '14-217', 1, '新市', '{"number":"199027","shop":"\\u65b0\\u5e02","phone":"065896124","address":"\\u83ef\\u8208\\u8857\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '199027', '711', 'zh-tw', 1000),
(2804, 217, '14-217', 1, '群創三', '{"number":"188061","shop":"\\u7fa4\\u5275\\u4e09","phone":"065055693","address":"\\u74b0\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u865f\\u0031\\u6a13\\u0028\\u7fa4\\u5275\\u4e09\\u5ee0\\u0029"}', '188061', '711', 'zh-tw', 1000),
(2805, 217, '14-217', 1, '群創五', '{"number":"188072","shop":"\\u7fa4\\u5275\\u4e94","phone":"065057432","address":"\\u74b0\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u865f\\u0031\\u6a13\\u0028\\u7fa4\\u5275\\u4e94\\u5ee0\\u0029"}', '188072', '711', 'zh-tw', 1000),
(2806, 217, '14-217', 1, '高大', '{"number":"141578","shop":"\\u9ad8\\u5927","phone":"065897471","address":"\\u9298\\u50b3\\u8857\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '141578', '711', 'zh-tw', 1000),
(2807, 217, '14-217', 1, '瀚宇', '{"number":"143079","shop":"\\u701a\\u5b87","phone":"065057916","address":"\\u5357\\u79d1\\u4e8c\\u8def\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '143079', '711', 'zh-tw', 1000),
(2808, 217, '14-217', 1, '南茂', '{"number":"167215","shop":"\\u5357\\u8302","phone":"065057601","address":"\\u5357\\u79d1\\u4e03\\u8def\\u0035\\u865f\\u0032\\u6a13"}', '167215', '711', 'zh-tw', 1000),
(2809, 217, '14-217', 1, '新南科', '{"number":"136325","shop":"\\u65b0\\u5357\\u79d1","phone":"065050767","address":"\\u5357\\u79d1\\u4e09\\u8def\\u0031\\u0037\\u865f\\u0031\\u6a13\\u0028\\u53f0\\u5357\\u79d1\\u5b78\\u5de5\\u696d\\u5340\\u0029"}', '136325', '711', 'zh-tw', 1000),
(2810, 217, '14-217', 1, '東科', '{"number":"990075","shop":"\\u6771\\u79d1","phone":"065055155","address":"\\u4e09\\u820d\\u91cc\\u5927\\u9806\\u4e09\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '990075', '711', 'zh-tw', 1000),
(2811, 217, '14-217', 1, '三舍', '{"number":"181277","shop":"\\u4e09\\u820d","phone":"065894091","address":"\\u4e09\\u820d\\u91cc\\u4e09\\u820d\\u0035\\u0035\\u865f"}', '181277', '711', 'zh-tw', 1000),
(2812, 217, '14-217', 1, '新凱', '{"number":"970266","shop":"\\u65b0\\u51f1","phone":"065898774","address":"\\u793e\\u5167\\u91cc\\u0031\\u0032\\u4e4b\\u0035\\u865f"}', '970266', '711', 'zh-tw', 1000),
(2813, 217, '14-217', 1, '高長', '{"number":"941936","shop":"\\u9ad8\\u9577","phone":"065012170","address":"\\u65b0\\u548c\\u91cc\\u4ec1\\u611b\\u8857\\u0031\\u0037\\u0031\\u865f"}', '941936', '711', 'zh-tw', 1000),
(2814, 217, '14-217', 1, '新科', '{"number":"991849","shop":"\\u65b0\\u79d1","phone":"065893953","address":"\\u65b0\\u5e02\\u91cc\\u4e2d\\u8208\\u8857\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '991849', '711', 'zh-tw', 1000),
(2815, 217, '14-217', 1, '省新', '{"number":"153803","shop":"\\u7701\\u65b0","phone":"065896254","address":"\\u6c38\\u5c31\\u91cc\\u0039\\u9130\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '153803', '711', 'zh-tw', 1000),
(2816, 217, '14-217', 1, '遠專', '{"number":"149147","shop":"\\u9060\\u5c08","phone":"065987474","address":"\\u6c38\\u5c31\\u91cc\\u4e2d\\u83ef\\u8def\\u0035\\u0033\\u5df7\\u0039\\u865f"}', '149147', '711', 'zh-tw', 1000),
(2817, 217, '14-217', 1, '新雙新', '{"number":"980838","shop":"\\u65b0\\u96d9\\u65b0","phone":"065892146","address":"\\u6c38\\u5c31\\u91cc\\u4e2d\\u5c71\\u8def\\u0032\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '980838', '711', 'zh-tw', 1000),
(2818, 217, '14-217', 1, '樹谷', '{"number":"993384","shop":"\\u6a39\\u8c37","phone":"065895647","address":"\\u4e2d\\u5fc3\\u8def\\u0032\\u865f\\u0031\\u6a13"}', '993384', '711', 'zh-tw', 1000),
(2819, 218, '14-218', 1, '新國', '{"number":"111821","shop":"\\u65b0\\u570b","phone":"066326410","address":"\\u5927\\u5b8f\\u91cc\\u6c11\\u6cbb\\u6771\\u8def\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '111821', '711', 'zh-tw', 1000),
(2820, 218, '14-218', 1, '新高', '{"number":"992152","shop":"\\u65b0\\u9ad8","phone":"066524884","address":"\\u798f\\u5b89\\u91cc\\u5fa9\\u8208\\u8def\\u0037\\u0036\\u0032\\u865f"}', '992152', '711', 'zh-tw', 1000),
(2821, 218, '14-218', 1, '新醫', '{"number":"141039","shop":"\\u65b0\\u91ab","phone":"066327488","address":"\\u6c11\\u6b0a\\u91cc\\u6c11\\u6b0a\\u8def\\u0039\\u0036\\u865f\\u0039\\u0036\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '141039', '711', 'zh-tw', 1000),
(2822, 218, '14-218', 1, '新北', '{"number":"113931","shop":"\\u65b0\\u5317","phone":"066564239","address":"\\u6c11\\u6cbb\\u8def\\u0032\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '113931', '711', 'zh-tw', 1000),
(2823, 218, '14-218', 1, '好萊富', '{"number":"910323","shop":"\\u597d\\u840a\\u5bcc","phone":"066571898","address":"\\u5357\\u7d19\\u91cc\\u592a\\u5b50\\u8def\\u0031\\u0039\\u0031\\u865f"}', '910323', '711', 'zh-tw', 1000),
(2824, 218, '14-218', 1, '新憲', '{"number":"941419","shop":"\\u65b0\\u61b2","phone":"066334511","address":"\\u57e4\\u5bee\\u91cc\\u4e2d\\u6b63\\u8def\\u0035\\u0033\\u0030\\u865f"}', '941419', '711', 'zh-tw', 1000),
(2825, 218, '14-218', 1, '太子宮', '{"number":"116826","shop":"\\u592a\\u5b50\\u5bae","phone":"066532433","address":"\\u592a\\u5317\\u91cc\\u592a\\u5b50\\u5bae\\u0031\\u0034\\u0032\\u002d\\u0033\\u0034\\u865f"}', '116826', '711', 'zh-tw', 1000),
(2826, 218, '14-218', 1, '欣奇', '{"number":"970255","shop":"\\u6b23\\u5947","phone":"066328038","address":"\\u65b0\\u6771\\u91cc\\u6771\\u8208\\u8def\\u0032\\u0033\\u0036\\u865f"}', '970255', '711', 'zh-tw', 1000),
(2827, 218, '14-218', 1, '新新復', '{"number":"954448","shop":"\\u65b0\\u65b0\\u5fa9","phone":"066568708","address":"\\u65b0\\u9032\\u8def\\u4e8c\\u6bb5\\u0034\\u0036\\u0036\\u865f"}', '954448', '711', 'zh-tw', 1000),
(2828, 218, '14-218', 1, '新裕新', '{"number":"990271","shop":"\\u65b0\\u88d5\\u65b0","phone":"066329505","address":"\\u65b0\\u9032\\u8def\\u4e8c\\u6bb5\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '990271', '711', 'zh-tw', 1000),
(2829, 218, '14-218', 1, '新銀', '{"number":"870272","shop":"\\u65b0\\u9280","phone":"066328599","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0030\\u865f"}', '870272', '711', 'zh-tw', 1000),
(2830, 218, '14-218', 1, '新進', '{"number":"885115","shop":"\\u65b0\\u9032","phone":"066327544","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0033\\u4e4b\\u0031\\u0034\\u865f\\u0031\\u0035\\u865f"}', '885115', '711', 'zh-tw', 1000),
(2831, 218, '14-218', 1, '新圓', '{"number":"142537","shop":"\\u65b0\\u5713","phone":"066351841","address":"\\u5fe0\\u653f\\u91cc\\u4e2d\\u6b63\\u8def\\u0032\\u9130\\u0031\\u0032\\u0031\\u865f"}', '142537', '711', 'zh-tw', 1000),
(2832, 219, '14-219', 1, '學成', '{"number":"164489","shop":"\\u5b78\\u6210","phone":"067821204","address":"\\u6148\\u751f\\u91cc\\u4e2d\\u6b63\\u8def\\u0032\\u0039\\u0036\\u865f"}', '164489', '711', 'zh-tw', 1000),
(2833, 219, '14-219', 1, '學甲', '{"number":"153744","shop":"\\u5b78\\u7532","phone":"067835596","address":"\\u4ec1\\u5f97\\u91cc\\u83ef\\u5b97\\u8def\\u0033\\u0032\\u0031\\u865f"}', '153744', '711', 'zh-tw', 1000),
(2834, 219, '14-219', 1, '夢公園', '{"number":"198769","shop":"\\u5922\\u516c\\u5712","phone":"067833506","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '198769', '711', 'zh-tw', 1000),
(2835, 219, '14-219', 1, '超順', '{"number":"881308","shop":"\\u8d85\\u9806","phone":"067831793","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0034\\u0033\\u865f"}', '881308', '711', 'zh-tw', 1000),
(2836, 220, '14-220', 1, '新朝琴', '{"number":"982096","shop":"\\u65b0\\u671d\\u7434","phone":"066525540","address":"\\u5cb8\\u5167\\u91cc\\u671d\\u7434\\u8def\\u0031\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '982096', '711', 'zh-tw', 1000),
(2837, 220, '14-220', 1, '歡雅', '{"number":"116620","shop":"\\u6b61\\u96c5","phone":"066553117","address":"\\u6b61\\u96c5\\u91cc\\u0032\\u0036\\u865f"}', '116620', '711', 'zh-tw', 1000),
(2838, 220, '14-220', 1, '鹽生', '{"number":"114705","shop":"\\u9e7d\\u751f","phone":"066529626","address":"\\u5357\\u9580\\u8def\\u0031\\u865f"}', '114705', '711', 'zh-tw', 1000),
(2839, 220, '14-220', 1, '鹽新', '{"number":"966212","shop":"\\u9e7d\\u65b0","phone":"066522984","address":"\\u6a4b\\u5357\\u91cc\\u5fe0\\u5b5d\\u8def\\u0039\\u0033\\u865f"}', '966212', '711', 'zh-tw', 1000),
(2840, 220, '14-220', 1, '鹽金', '{"number":"150848","shop":"\\u9e7d\\u91d1","phone":"066526971","address":"\\u7fa9\\u7a20\\u91cc\\u0038\\u9130\\u7fa9\\u7a20\\u0031\\u0031\\u0030\\u4e4b\\u0031\\u0039\\u865f"}', '150848', '711', 'zh-tw', 1000),
(2841, 220, '14-220', 1, '鹽水', '{"number":"187208","shop":"\\u9e7d\\u6c34","phone":"066534572","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0035\\u865f"}', '187208', '711', 'zh-tw', 1000),
(2842, 221, '14-221', 1, '好巧', '{"number":"169875","shop":"\\u597d\\u5de7","phone":"063027920","address":"\\u5b89\\u5eb7\\u91cc\\u4e2d\\u83ef\\u897f\\u8857\\u0031\\u0035\\u0032\\u865f"}', '169875', '711', 'zh-tw', 1000),
(2843, 221, '14-221', 1, '安興', '{"number":"144197","shop":"\\u5b89\\u8208","phone":"062071941","address":"\\u5317\\u7063\\u91cc\\u0032\\u0030\\u9130\\u5317\\u8208\\u8def\\u0035\\u0031\\u865f"}', '144197', '711', 'zh-tw', 1000),
(2844, 221, '14-221', 1, '永愛', '{"number":"967570","shop":"\\u6c38\\u611b","phone":"062726912","address":"\\u5317\\u7063\\u91cc\\u6587\\u8ce2\\u8857\\u0038\\u0030\\u002d\\u0031\\u865f"}', '967570', '711', 'zh-tw', 1000),
(2845, 221, '14-221', 1, '忠勇', '{"number":"164766","shop":"\\u5fe0\\u52c7","phone":"063121548","address":"\\u6210\\u529f\\u91cc\\u5c0f\\u6771\\u8def\\u0034\\u9130\\u0036\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '164766', '711', 'zh-tw', 1000),
(2846, 221, '14-221', 1, '新康華', '{"number":"162014","shop":"\\u65b0\\u5eb7\\u83ef","phone":"063036846","address":"\\u5927\\u6a4b\\u4e8c\\u8857\\u0033\\u0038\\u865f"}', '162014', '711', 'zh-tw', 1000),
(2847, 221, '14-221', 1, '大橋', '{"number":"874399","shop":"\\u5927\\u6a4b","phone":"062333228","address":"\\u5927\\u6a4b\\u91cc\\u4e2d\\u83ef\\u8def\\u0037\\u0034\\u0037\\u865f"}', '874399', '711', 'zh-tw', 1000),
(2848, 221, '14-221', 1, '仁灣', '{"number":"943208","shop":"\\u4ec1\\u7063","phone":"062716914","address":"\\u5927\\u4ec1\\u8857\\u0031\\u0031\\u5df7\\u0031\\u865f"}', '943208', '711', 'zh-tw', 1000),
(2849, 221, '14-221', 1, '鈺廣', '{"number":"970174","shop":"\\u923a\\u5ee3","phone":"062715212","address":"\\u5927\\u7063\\u91cc\\u6c11\\u65cf\\u8def\\u0034\\u0030\\u0039\\u865f\\u4e00\\u6a13"}', '970174', '711', 'zh-tw', 1000),
(2850, 221, '14-221', 1, '灣中', '{"number":"116181","shop":"\\u7063\\u4e2d","phone":"062720510","address":"\\u5927\\u7063\\u8def\\u0036\\u0032\\u865f"}', '116181', '711', 'zh-tw', 1000),
(2851, 221, '14-221', 1, '大灣', '{"number":"171214","shop":"\\u5927\\u7063","phone":"062056060","address":"\\u5927\\u7063\\u8def\\u0039\\u0035\\u0031\\u865f"}', '171214', '711', 'zh-tw', 1000),
(2852, 221, '14-221', 1, '仁發', '{"number":"180621","shop":"\\u4ec1\\u767c","phone":"063025783","address":"\\u6771\\u6a4b\\u91cc\\u6771\\u6a4b\\u516d\\u8857\\u0036\\u0031\\u865f"}', '180621', '711', 'zh-tw', 1000),
(2853, 221, '14-221', 1, '橋鈺', '{"number":"194103","shop":"\\u6a4b\\u923a","phone":"063027215","address":"\\u6771\\u6a4b\\u4e03\\u8def\\u0033\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '194103', '711', 'zh-tw', 1000),
(2854, 221, '14-221', 1, '東橋', '{"number":"131113","shop":"\\u6771\\u6a4b","phone":"063020234","address":"\\u6771\\u6a4b\\u4e00\\u8def\\u0032\\u0038\\u865f"}', '131113', '711', 'zh-tw', 1000),
(2855, 221, '14-221', 1, '復康', '{"number":"155164","shop":"\\u5fa9\\u5eb7","phone":"063025276","address":"\\u4e8c\\u738b\\u91cc\\u5fe0\\u5b5d\\u8def\\u0034\\u0032\\u0039\\u5df7\\u0031\\u0035\\u5f04\\u0036\\u865f"}', '155164', '711', 'zh-tw', 1000),
(2856, 221, '14-221', 1, '永嘉', '{"number":"950620","shop":"\\u6c38\\u5609","phone":"062332200","address":"\\u4e8c\\u738b\\u8def\\u0031\\u0033\\u0039\\u865f"}', '950620', '711', 'zh-tw', 1000),
(2857, 221, '14-221', 1, '白金', '{"number":"154998","shop":"\\u767d\\u91d1","phone":"062013496","address":"\\u5fa9\\u570b\\u4e00\\u8def\\u0033\\u0035\\u0037\\u865f"}', '154998', '711', 'zh-tw', 1000),
(2858, 221, '14-221', 1, '永復', '{"number":"893792","shop":"\\u6c38\\u5fa9","phone":"063128173","address":"\\u5fa9\\u83ef\\u91cc\\u5fa9\\u83ef\\u4e00\\u8857\\u0032\\u865f"}', '893792', '711', 'zh-tw', 1000),
(2859, 221, '14-221', 1, '詠信', '{"number":"922670","shop":"\\u8a60\\u4fe1","phone":"062311798","address":"\\u5fa9\\u83ef\\u4e03\\u8857\\u0036\\u0038\\u865f"}', '922670', '711', 'zh-tw', 1000),
(2860, 221, '14-221', 1, '正新', '{"number":"136015","shop":"\\u6b63\\u65b0","phone":"062510140","address":"\\u7532\\u9802\\u91cc\\u5927\\u6b66\\u8857\\u0033\\u0033\\u865f"}', '136015', '711', 'zh-tw', 1000),
(2861, 221, '14-221', 1, '新奇美', '{"number":"186858","shop":"\\u65b0\\u5947\\u7f8e","phone":"062834564","address":"\\u7532\\u9802\\u8def\\u0031\\u0038\\u002e\\u0032\\u0030\\u865f\\u4e00\\u6a13"}', '186858', '711', 'zh-tw', 1000),
(2862, 221, '14-221', 1, '工館', '{"number":"199119","shop":"\\u5de5\\u9928","phone":"062734870","address":"\\u5d11\\u5927\\u8def\\u0031\\u0039\\u0035\\u865f"}', '199119', '711', 'zh-tw', 1000),
(2863, 221, '14-221', 1, '崑教', '{"number":"977784","shop":"\\u5d11\\u6559","phone":"062056419","address":"\\u5d11\\u5927\\u8def\\u0031\\u0039\\u0035\\u865f"}', '977784', '711', 'zh-tw', 1000),
(2864, 221, '14-221', 1, '鈺華', '{"number":"892179","shop":"\\u923a\\u83ef","phone":"062058076","address":"\\u5d11\\u5357\\u91cc\\u0033\\u0037\\u9130\\u5927\\u4ec1\\u8857\\u0032\\u0032\\u0030\\u865f"}', '892179', '711', 'zh-tw', 1000),
(2865, 221, '14-221', 1, '永勝', '{"number":"186216","shop":"\\u6c38\\u52dd","phone":"062362091","address":"\\u516d\\u5408\\u91cc\\u4e2d\\u83ef\\u4e8c\\u8def\\u0033\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '186216', '711', 'zh-tw', 1000),
(2866, 221, '14-221', 1, '瓏埔', '{"number":"997995","shop":"\\u74cf\\u57d4","phone":"062023184","address":"\\u9f8d\\u57d4\\u8857\\u0031\\u0030\\u0038\\u865f"}', '997995', '711', 'zh-tw', 1000),
(2867, 221, '14-221', 1, '永玉', '{"number":"153777","shop":"\\u6c38\\u7389","phone":"062013336","address":"\\u9f8d\\u6f6d\\u91cc\\u6c38\\u660e\\u8857\\u0031\\u0037\\u0035\\u865f"}', '153777', '711', 'zh-tw', 1000),
(2868, 221, '14-221', 1, '新東灣', '{"number":"148487","shop":"\\u65b0\\u6771\\u7063","phone":"062737652","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0038\\u0036\\u865f\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '148487', '711', 'zh-tw', 1000),
(2869, 221, '14-221', 1, '信雄', '{"number":"164700","shop":"\\u4fe1\\u96c4","phone":"063010034","address":"\\u5357\\u53f0\\u8857\\u0031\\u865f"}', '164700', '711', 'zh-tw', 1000),
(2870, 221, '14-221', 1, '文炳', '{"number":"890324","shop":"\\u6587\\u70b3","phone":"062426265","address":"\\u5357\\u53f0\\u8857\\u0031\\u865f"}', '890324', '711', 'zh-tw', 1000),
(2871, 221, '14-221', 1, '南台', '{"number":"166957","shop":"\\u5357\\u53f0","phone":"062430965","address":"\\u5357\\u53f0\\u8857\\u0031\\u865f\\u0031\\u6a13"}', '166957', '711', 'zh-tw', 1000),
(2872, 221, '14-221', 1, '興灣', '{"number":"167835","shop":"\\u8208\\u7063","phone":"062059495","address":"\\u5357\\u7063\\u91cc\\u5927\\u7063\\u6771\\u8def\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '167835', '711', 'zh-tw', 1000),
(2873, 221, '14-221', 1, '庭園', '{"number":"910976","shop":"\\u5ead\\u5712","phone":"063013799","address":"\\u57d4\\u5712\\u91cc\\u9f8d\\u570b\\u8857\\u0037\\u0037\\u865f"}', '910976', '711', 'zh-tw', 1000),
(2874, 221, '14-221', 1, '永龍', '{"number":"143312","shop":"\\u6c38\\u9f8d","phone":"062015546","address":"\\u57d4\\u5712\\u91cc\\u4e2d\\u5c71\\u8def\\u0033\\u0039\\u0038\\u865f"}', '143312', '711', 'zh-tw', 1000),
(2875, 221, '14-221', 1, '永強', '{"number":"139117","shop":"\\u6c38\\u5f37","phone":"062041184","address":"\\u57d4\\u5712\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0030\\u0032\\u865f"}', '139117', '711', 'zh-tw', 1000),
(2876, 221, '14-221', 1, '臻品', '{"number":"151494","shop":"\\u81fb\\u54c1","phone":"063026702","address":"\\u4e09\\u5408\\u91cc\\u4e2d\\u5c71\\u6771\\u8def\\u0031\\u0031\\u0037\\u865f\\u0031\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '151494', '711', 'zh-tw', 1000),
(2877, 221, '14-221', 1, '東江', '{"number":"941062","shop":"\\u6771\\u6c5f","phone":"062430264","address":"\\u5c1a\\u9802\\u91cc\\u0032\\u0033\\u9130\\u5357\\u53f0\\u8857\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '941062', '711', 'zh-tw', 1000),
(2878, 221, '14-221', 1, '臻鈺', '{"number":"143884","shop":"\\u81fb\\u923a","phone":"063123073","address":"\\u52dd\\u5229\\u91cc\\u0031\\u0038\\u9130\\u52dd\\u5b78\\u8def\\u0032\\u0032\\u0036\\u865f"}', '143884', '711', 'zh-tw', 1000),
(2879, 221, '14-221', 1, '詠文', '{"number":"902159","shop":"\\u8a60\\u6587","phone":"062042598","address":"\\u7db2\\u5bee\\u91cc\\u0036\\u9130\\u6c38\\u4e8c\\u8857\\u0032\\u0030\\u0032\\u865f"}', '902159', '711', 'zh-tw', 1000),
(2880, 221, '14-221', 1, '感恩', '{"number":"111360","shop":"\\u611f\\u6069","phone":"062318063","address":"\\u70cf\\u7af9\\u91cc\\u81ea\\u5f37\\u8def\\u0038\\u0032\\u0035\\u002d\\u0031\\u865f"}', '111360', '711', 'zh-tw', 1000),
(2881, 221, '14-221', 1, '西勢', '{"number":"121688","shop":"\\u897f\\u52e2","phone":"062073977","address":"\\u897f\\u52e2\\u91cc\\u5bcc\\u5f37\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0034\\u865f"}', '121688', '711', 'zh-tw', 1000),
(2882, 221, '14-221', 1, '雋鈺', '{"number":"951483","shop":"\\u96cb\\u923a","phone":"062053420","address":"\\u897f\\u7063\\u91cc\\u6c38\\u83ef\\u8def\\u0031\\u0035\\u0037\\u865f"}', '951483', '711', 'zh-tw', 1000),
(2883, 221, '14-221', 1, '永科', '{"number":"131630","shop":"\\u6c38\\u79d1","phone":"062011492","address":"\\u65b0\\u6a39\\u91cc\\u0033\\u9130\\u4e2d\\u5c71\\u5317\\u8def\\u0036\\u0033\\u0034\\u5df7\\u0037\\u865f"}', '131630', '711', 'zh-tw', 1000),
(2884, 221, '14-221', 1, '三村', '{"number":"990499","shop":"\\u4e09\\u6751","phone":"062433141","address":"\\u9e7d\\u884c\\u91cc\\u4ec1\\u611b\\u8857\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '990499', '711', 'zh-tw', 1000),
(2885, 221, '14-221', 1, '桂田', '{"number":"967673","shop":"\\u6842\\u7530","phone":"062425413","address":"\\u9e7d\\u884c\\u91cc\\u65b0\\u884c\\u8857\\u0032\\u0035\\u0031\\u865f\\u4e00\\u6a13"}', '967673', '711', 'zh-tw', 1000),
(2886, 221, '14-221', 1, '創意', '{"number":"952280","shop":"\\u5275\\u610f","phone":"062434834","address":"\\u9e7d\\u884c\\u91cc\\u4e2d\\u6b63\\u4e8c\\u8857\\u0032\\u0036\\u0038\\u865f"}', '952280', '711', 'zh-tw', 1000),
(2887, 221, '14-221', 1, '新家專', '{"number":"132390","shop":"\\u65b0\\u5bb6\\u5c08","phone":"062438639","address":"\\u9e7d\\u884c\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0032\\u9130\\u0035\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '132390', '711', 'zh-tw', 1000),
(2888, 221, '14-221', 1, '南瀛', '{"number":"146252","shop":"\\u5357\\u701b","phone":"062435224","address":"\\u9e7d\\u884c\\u91cc\\u4e2d\\u6b63\\u8def\\u0032\\u0039\\u0039\\u865f"}', '146252', '711', 'zh-tw', 1000),
(2889, 221, '14-221', 1, '南應大', '{"number":"180425","shop":"\\u5357\\u61c9\\u5927","phone":"062437495","address":"\\u9e7d\\u884c\\u91cc\\u4e2d\\u6b63\\u4e03\\u8857\\u0032\\u0037\\u002e\\u0032\\u0039\\u865f\\u0031\\u3001\\u0032\\u6a13"}', '180425', '711', 'zh-tw', 1000),
(2890, 221, '14-221', 1, '時尚', '{"number":"166407","shop":"\\u6642\\u5c1a","phone":"062438023","address":"\\u9e7d\\u6d32\\u91cc\\u4ec1\\u611b\\u8857\\u0031\\u0039\\u865f\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '166407', '711', 'zh-tw', 1000),
(2891, 221, '14-221', 1, '鹽行', '{"number":"931386","shop":"\\u9e7d\\u884c","phone":"062437395","address":"\\u9e7d\\u6d32\\u91cc\\u9e7d\\u6d32\\u4e8c\\u8857\\u0038\\u0033\\u865f"}', '931386', '711', 'zh-tw', 1000),
(2892, 221, '14-221', 1, '辰佳', '{"number":"182546","shop":"\\u8fb0\\u4f73","phone":"062059664","address":"\\u6c38\\u5927\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u865f"}', '182546', '711', 'zh-tw', 1000),
(2893, 221, '14-221', 1, '康西', '{"number":"167891","shop":"\\u5eb7\\u897f","phone":"062059240","address":"\\u6c38\\u5927\\u8def\\u4e8c\\u6bb5\\u0034\\u0034\\u0030\\u865f"}', '167891', '711', 'zh-tw', 1000),
(2894, 221, '14-221', 1, '奇蹟', '{"number":"954080","shop":"\\u5947\\u8e5f","phone":"062330171","address":"\\u6c38\\u5927\\u8def\\u4e09\\u6bb5\\u0032\\u0039\\u0039\\u865f"}', '954080', '711', 'zh-tw', 1000),
(2895, 221, '14-221', 1, '雙永', '{"number":"993351","shop":"\\u96d9\\u6c38","phone":"062031437","address":"\\u6c38\\u5927\\u4e00\\u8def\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '993351', '711', 'zh-tw', 1000),
(2896, 221, '14-221', 1, '伍鈺', '{"number":"167916","shop":"\\u4f0d\\u923a","phone":"062050408","address":"\\u6c38\\u83ef\\u8def\\u0034\\u0030\\u0036\\u865f\\u0034\\u0030\\u0038\\u865f"}', '167916', '711', 'zh-tw', 1000),
(2897, 221, '14-221', 1, '康永', '{"number":"142308","shop":"\\u5eb7\\u6c38","phone":"062017032","address":"\\u6c38\\u5eb7\\u91cc\\u6c38\\u5e73\\u8857\\u0031\\u0032\\u0030\\u865f"}', '142308', '711', 'zh-tw', 1000),
(2898, 221, '14-221', 1, '永正', '{"number":"903392","shop":"\\u6c38\\u6b63","phone":"062018106","address":"\\u6c38\\u5eb7\\u91cc\\u4e2d\\u5c71\\u5357\\u8def\\u0035\\u0033\\u0037\\u865f"}', '903392', '711', 'zh-tw', 1000),
(2899, 221, '14-221', 1, '玉山', '{"number":"871596","shop":"\\u7389\\u5c71","phone":"062011061","address":"\\u6c38\\u660e\\u8857\\u0039\\u0037\\u865f"}', '871596', '711', 'zh-tw', 1000),
(2900, 221, '14-221', 1, '鹽信', '{"number":"966991","shop":"\\u9e7d\\u4fe1","phone":"062434808","address":"\\u6b63\\u5357\\u4e00\\u8857\\u0031\\u0034\\u0038\\u865f"}', '966991', '711', 'zh-tw', 1000),
(2901, 221, '14-221', 1, '永一', '{"number":"121769","shop":"\\u6c38\\u4e00","phone":"062030846","address":"\\u6b63\\u5f37\\u8857\\u0032\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '121769', '711', 'zh-tw', 1000),
(2902, 221, '14-221', 1, '五王', '{"number":"144131","shop":"\\u4e94\\u738b","phone":"063029207","address":"\\u4e2d\\u83ef\\u4e8c\\u8def\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '144131', '711', 'zh-tw', 1000),
(2903, 221, '14-221', 1, '康興', '{"number":"991001","shop":"\\u5eb7\\u8208","phone":"063131314","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '991001', '711', 'zh-tw', 1000),
(2904, 221, '14-221', 1, '華東', '{"number":"149044","shop":"\\u83ef\\u6771","phone":"062014517","address":"\\u4e2d\\u83ef\\u8def\\u0034\\u0037\\u0032\\u865f"}', '149044', '711', 'zh-tw', 1000),
(2905, 221, '14-221', 1, '華康', '{"number":"197618","shop":"\\u83ef\\u5eb7","phone":"063120204","address":"\\u4e2d\\u83ef\\u8def\\u0038\\u002d\\u0037\\u865f\\u0031\\u6a13"}', '197618', '711', 'zh-tw', 1000),
(2906, 221, '14-221', 1, '永大春', '{"number":"922821","shop":"\\u6c38\\u5927\\u6625","phone":"062011976","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u0034\\u0033\\u0031\\u865f"}', '922821', '711', 'zh-tw', 1000),
(2907, 221, '14-221', 1, '埔園', '{"number":"928829","shop":"\\u57d4\\u5712","phone":"062042274","address":"\\u4e2d\\u5c71\\u8def\\u0039\\u0030\\u865f"}', '928829', '711', 'zh-tw', 1000),
(2908, 221, '14-221', 1, '康橋', '{"number":"179805","shop":"\\u5eb7\\u6a4b","phone":"063025271","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0031\\u0032\\u002d\\u0035\\u865f"}', '179805', '711', 'zh-tw', 1000),
(2909, 221, '14-221', 1, '砲校', '{"number":"140357","shop":"\\u7832\\u6821","phone":"062021843","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0035\\u0036\\u0036\\u865f\\u4e4b\\u0031"}', '140357', '711', 'zh-tw', 1000),
(2910, 221, '14-221', 1, '永新', '{"number":"946012","shop":"\\u6c38\\u65b0","phone":"062426149","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0031\\u0032\\u0032\\u865f"}', '946012', '711', 'zh-tw', 1000),
(2911, 221, '14-221', 1, '蔦松', '{"number":"141914","shop":"\\u8526\\u677e","phone":"062536295","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0034\\u0033\\u0031\\u865f\\u0034\\u0033\\u0033\\u865f"}', '141914', '711', 'zh-tw', 1000),
(2912, 221, '14-221', 1, '精工', '{"number":"905343","shop":"\\u7cbe\\u5de5","phone":"062422132","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0037\\u0033\\u0035\\u865f"}', '905343', '711', 'zh-tw', 1000),
(2913, 221, '14-221', 1, '南科大', '{"number":"138022","shop":"\\u5357\\u79d1\\u5927","phone":"062423672","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0032\\u0039\\u865f"}', '138022', '711', 'zh-tw', 1000),
(2914, 221, '14-221', 1, '尚頂', '{"number":"895721","shop":"\\u5c1a\\u9802","phone":"062422332","address":"\\u4e2d\\u6b63\\u5357\\u8def\\u0033\\u0031\\u0034\\u865f"}', '895721', '711', 'zh-tw', 1000),
(2915, 221, '14-221', 1, '台南蔡', '{"number":"198552","shop":"\\u53f0\\u5357\\u8521","phone":"062432423","address":"\\u4e2d\\u6b63\\u5357\\u8def\\u0036\\u0032\\u0038\\u865f"}', '198552', '711', 'zh-tw', 1000),
(2916, 222, '14-222', 1, '新玉馥', '{"number":"982889","shop":"\\u65b0\\u7389\\u99a5","phone":"065748078","address":"\\u7389\\u7530\\u91cc\\u4e2d\\u5c71\\u8def\\u0039\\u0037\\u865f\\u0031\\u6a13\\u865f\\u4e2d\\u83ef\\u8def\\u0032\\u0035\\u0035\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '982889', '711', 'zh-tw', 1000),
(2917, 222, '14-222', 1, '玉井', '{"number":"872360","shop":"\\u7389\\u4e95","phone":"065749605","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0034\\u865f"}', '872360', '711', 'zh-tw', 1000),
(2918, 223, '14-223', 1, '康樂', '{"number":"990905","shop":"\\u5eb7\\u6a02","phone":"062228184","address":"\\u5b89\\u6d77\\u91cc\\u5eb7\\u6a02\\u8857\\u0032\\u0032\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '990905', '711', 'zh-tw', 1000),
(2919, 223, '14-223', 1, '新森榮', '{"number":"117807","shop":"\\u65b0\\u68ee\\u69ae","phone":"062222795","address":"\\u6210\\u529f\\u8def\\u0034\\u0035\\u0031\\u865f\\u0034\\u0035\\u0033\\u865f"}', '117807', '711', 'zh-tw', 1000),
(2920, 223, '14-223', 1, '府醫', '{"number":"173564","shop":"\\u5e9c\\u91ab","phone":"062211627","address":"\\u8d64\\u5d01\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0032\\u0035\\u865f"}', '173564', '711', 'zh-tw', 1000),
(2921, 223, '14-223', 1, '千福', '{"number":"885997","shop":"\\u5343\\u798f","phone":"062996714","address":"\\u5927\\u6dbc\\u91cc\\u4e2d\\u83ef\\u897f\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u865f"}', '885997', '711', 'zh-tw', 1000),
(2922, 223, '14-223', 1, '大五', '{"number":"139335","shop":"\\u5927\\u4e94","phone":"062137794","address":"\\u6cd5\\u83ef\\u91cc\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0038\\u865f\\u0032\\u0032\\u0030\\u865f"}', '139335', '711', 'zh-tw', 1000),
(2923, 223, '14-223', 1, '大府', '{"number":"149273","shop":"\\u5927\\u5e9c","phone":"062229190","address":"\\u5e9c\\u524d\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0035\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '149273', '711', 'zh-tw', 1000),
(2924, 223, '14-223', 1, '新運河', '{"number":"973014","shop":"\\u65b0\\u904b\\u6cb3","phone":"062950782","address":"\\u5e9c\\u524d\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '973014', '711', 'zh-tw', 1000),
(2925, 223, '14-223', 1, '郡王', '{"number":"163969","shop":"\\u90e1\\u738b","phone":"062204652","address":"\\u5e9c\\u524d\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0034\\u865f"}', '163969', '711', 'zh-tw', 1000),
(2926, 223, '14-223', 1, '明珠', '{"number":"171708","shop":"\\u660e\\u73e0","phone":"062230803","address":"\\u516c\\u6b63\\u91cc\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\u0035\\u0033\\u865f"}', '171708', '711', 'zh-tw', 1000),
(2927, 223, '14-223', 1, '體育', '{"number":"905136","shop":"\\u9ad4\\u80b2","phone":"062149434","address":"\\u5065\\u5eb7\\u8def\\u0031\\u0036\\u0036\\u865f"}', '905136', '711', 'zh-tw', 1000),
(2928, 223, '14-223', 1, '新永健', '{"number":"148410","shop":"\\u65b0\\u6c38\\u5065","phone":"062143314","address":"\\u5065\\u5eb7\\u8def\\u4e00\\u6bb5\\u0033\\u0034\\u0036\\u865f"}', '148410', '711', 'zh-tw', 1000),
(2929, 223, '14-223', 1, '開山', '{"number":"895857","shop":"\\u958b\\u5c71","phone":"062144197","address":"\\u958b\\u5c71\\u8def\\u0032\\u0034\\u0035\\u865f"}', '895857', '711', 'zh-tw', 1000),
(2930, 223, '14-223', 1, '唯勝', '{"number":"192783","shop":"\\u552f\\u52dd","phone":"062214369","address":"\\u6c11\\u6b0a\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0030\\u865f\\u4e00\\u6a13"}', '192783', '711', 'zh-tw', 1000),
(2931, 223, '14-223', 1, '赤崁', '{"number":"165677","shop":"\\u8d64\\u5d01","phone":"062214411","address":"\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\u0033\\u0033\\u0031\\u865f"}', '165677', '711', 'zh-tw', 1000),
(2932, 223, '14-223', 1, '南醫', '{"number":"129213","shop":"\\u5357\\u91ab","phone":"062263238","address":"\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\u0037\\u0036\\u865f\\u4e4b\\u0031\\u0033"}', '129213', '711', 'zh-tw', 1000),
(2933, 223, '14-223', 1, '南門城', '{"number":"136598","shop":"\\u5357\\u9580\\u57ce","phone":"062147717","address":"\\u5357\\u9580\\u8def\\u0032\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '136598', '711', 'zh-tw', 1000),
(2934, 223, '14-223', 1, '武德', '{"number":"936484","shop":"\\u6b66\\u5fb7","phone":"062258549","address":"\\u9752\\u5e74\\u8def\\u0031\\u0033\\u0034\\u865f"}', '936484', '711', 'zh-tw', 1000),
(2935, 223, '14-223', 1, '水仙宮', '{"number":"123156","shop":"\\u6c34\\u4ed9\\u5bae","phone":"062217930","address":"\\u6c34\\u4ed9\\u91cc\\u6c11\\u6b0a\\u8def\\u4e09\\u6bb5\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '123156', '711', 'zh-tw', 1000),
(2936, 223, '14-223', 1, '綜合', '{"number":"167134","shop":"\\u7d9c\\u5408","phone":"062215930","address":"\\u6c34\\u4ed9\\u91cc\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u865f\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '167134', '711', 'zh-tw', 1000),
(2937, 223, '14-223', 1, '武聖', '{"number":"842060","shop":"\\u6b66\\u8056","phone":"062800754","address":"\\u6b66\\u8056\\u8def\\u0034\\u0037\\u865f\\u0034\\u0039\\u865f"}', '842060', '711', 'zh-tw', 1000),
(2938, 223, '14-223', 1, '頂美', '{"number":"896333","shop":"\\u9802\\u7f8e","phone":"062595480","address":"\\u897f\\u548c\\u8def\\u0031\\u865f\\u0033\\u865f"}', '896333', '711', 'zh-tw', 1000),
(2939, 223, '14-223', 1, '湖華', '{"number":"119696","shop":"\\u6e56\\u83ef","phone":"062507460","address":"\\u897f\\u6e56\\u8857\\u0033\\u865f"}', '119696', '711', 'zh-tw', 1000),
(2940, 223, '14-223', 1, '鎮山', '{"number":"140542","shop":"\\u93ae\\u5c71","phone":"063508724","address":"\\u897f\\u6e56\\u91cc\\u6e56\\u7f8e\\u8857\\u0031\\u0030\\u865f"}', '140542', '711', 'zh-tw', 1000),
(2941, 223, '14-223', 1, '和善', '{"number":"130280","shop":"\\u548c\\u5584","phone":"062266922","address":"\\u85e5\\u738b\\u91cc\\u6c11\\u65cf\\u8def\\u4e09\\u6bb5\\u0036\\u9130\\u0032\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '130280', '711', 'zh-tw', 1000),
(2942, 223, '14-223', 1, '永福', '{"number":"189019","shop":"\\u6c38\\u798f","phone":"062214463","address":"\\u6c38\\u798f\\u8def\\u4e8c\\u6bb5\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '189019', '711', 'zh-tw', 1000),
(2943, 223, '14-223', 1, '南英', '{"number":"992820","shop":"\\u5357\\u82f1","phone":"062144007","address":"\\u6c38\\u798f\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '992820', '711', 'zh-tw', 1000),
(2944, 223, '14-223', 1, '新永華', '{"number":"968805","shop":"\\u65b0\\u6c38\\u83ef","phone":"062112375","address":"\\u6c38\\u83ef\\u8def\\u0032\\u0034\\u0038\\u865f"}', '968805', '711', 'zh-tw', 1000),
(2945, 223, '14-223', 1, '友愛', '{"number":"886325","shop":"\\u53cb\\u611b","phone":"062112975","address":"\\u53cb\\u611b\\u8857\\u0031\\u0039\\u0037\\u4e4b\\u0031\\u0039\\u0039\\u865f"}', '886325', '711', 'zh-tw', 1000),
(2946, 223, '14-223', 1, '天公', '{"number":"127022","shop":"\\u5929\\u516c","phone":"062213646","address":"\\u5fe0\\u7fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0039\\u865f"}', '127022', '711', 'zh-tw', 1000),
(2947, 224, '15-224', 1, '東義', '{"number":"991355","shop":"\\u6771\\u7fa9","phone":"0422981487","address":"\\u5317\\u5e73\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '991355', '711', 'zh-tw', 1000),
(2948, 224, '15-224', 1, '新北平', '{"number":"865100","shop":"\\u65b0\\u5317\\u5e73","phone":"0422968483","address":"\\u5317\\u5e73\\u8def\\u4e8c\\u6bb5\\u0039\\u0036\\u865f"}', '865100', '711', 'zh-tw', 1000),
(2949, 224, '15-224', 1, '庚樺', '{"number":"150815","shop":"\\u5e9a\\u6a3a","phone":"0422349868","address":"\\u5d07\\u5fb7\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0033\\u4e4b\\u0032\\u865f"}', '150815', '711', 'zh-tw', 1000),
(2950, 224, '15-224', 1, '醫德', '{"number":"144038","shop":"\\u91ab\\u5fb7","phone":"0422075331","address":"\\u5927\\u5fb7\\u8857\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '144038', '711', 'zh-tw', 1000),
(2951, 224, '15-224', 1, '科博館', '{"number":"165057","shop":"\\u79d1\\u535a\\u9928","phone":"0423268634","address":"\\u6de1\\u6e9d\\u91cc\\u535a\\u9928\\u8def\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '165057', '711', 'zh-tw', 1000),
(2952, 224, '15-224', 1, '淡溝', '{"number":"110987","shop":"\\u6de1\\u6e9d","phone":"0422065373","address":"\\u6de1\\u6e9d\\u91cc\\u6c11\\u6b0a\\u8def\\u0033\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '110987', '711', 'zh-tw', 1000),
(2953, 224, '15-224', 1, '新德化', '{"number":"978617","shop":"\\u65b0\\u5fb7\\u5316","phone":"0422084550","address":"\\u5fb7\\u5316\\u8857\\u0036\\u0036\\u0030\\u865f"}', '978617', '711', 'zh-tw', 1000),
(2954, 224, '15-224', 1, '新東峰', '{"number":"916206","shop":"\\u65b0\\u6771\\u5cf0","phone":"0422349431","address":"\\u6771\\u5149\\u8def\\u0033\\u0034\\u0030\\u865f"}', '916206', '711', 'zh-tw', 1000),
(2955, 224, '15-224', 1, '篤行', '{"number":"148351","shop":"\\u7be4\\u884c","phone":"0422015811","address":"\\u7be4\\u884c\\u8def\\u0031\\u0032\\u0030\\u865f\\u0031\\u0032\\u0032\\u865f"}', '148351', '711', 'zh-tw', 1000),
(2956, 224, '15-224', 1, '富強', '{"number":"197216","shop":"\\u5bcc\\u5f37","phone":"0422338064","address":"\\u570b\\u5f37\\u8857\\u0031\\u0034\\u0032\\u865f\\u53ca\\u5929\\u7965\\u8857\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '197216', '711', 'zh-tw', 1000),
(2957, 224, '15-224', 1, '通豪', '{"number":"864923","shop":"\\u901a\\u8c6a","phone":"0422951490","address":"\\u6f22\\u53e3\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0032\\u865f\\u0031\\u0037\\u0034\\u865f"}', '864923', '711', 'zh-tw', 1000),
(2958, 224, '15-224', 1, '賴厝', '{"number":"183217","shop":"\\u8cf4\\u539d","phone":"0422994792","address":"\\u6f22\\u53e3\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13\\u002e\\u5730\\u4e0b\\u6a13"}', '183217', '711', 'zh-tw', 1000),
(2959, 224, '15-224', 1, '漢華', '{"number":"944511","shop":"\\u6f22\\u83ef","phone":"0422355816","address":"\\u6f22\\u53e3\\u8def\\u4e94\\u6bb5\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '944511', '711', 'zh-tw', 1000),
(2960, 224, '15-224', 1, '健興', '{"number":"132921","shop":"\\u5065\\u8208","phone":"0422363079","address":"\\u5065\\u884c\\u8def\\u0033\\u0035\\u0034\\u865f"}', '132921', '711', 'zh-tw', 1000),
(2961, 224, '15-224', 1, '益華', '{"number":"935632","shop":"\\u76ca\\u83ef","phone":"0422301107","address":"\\u5065\\u884c\\u8def\\u0034\\u0039\\u865f"}', '935632', '711', 'zh-tw', 1000),
(2962, 224, '15-224', 1, '興悅', '{"number":"151302","shop":"\\u8208\\u6085","phone":"0423602265","address":"\\u91d1\\u83ef\\u91cc\\u9032\\u5fb7\\u5317\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u0036\\u0032\\u865f"}', '151302', '711', 'zh-tw', 1000),
(2963, 224, '15-224', 1, '新民高中', '{"number":"941028","shop":"\\u65b0\\u6c11\\u9ad8\\u4e2d","phone":"0422330573","address":"\\u91d1\\u9f8d\\u91cc\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '941028', '711', 'zh-tw', 1000),
(2964, 224, '15-224', 1, '新民國', '{"number":"941039","shop":"\\u65b0\\u6c11\\u570b","phone":"0422330621","address":"\\u91d1\\u9f8d\\u91cc\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '941039', '711', 'zh-tw', 1000),
(2965, 224, '15-224', 1, '錦新', '{"number":"136174","shop":"\\u9326\\u65b0","phone":"0422257113","address":"\\u9326\\u65b0\\u8857\\u0037\\u0030\\u002d\\u0032\\u865f\\u0037\\u0030\\u002d\\u0033\\u865f\\u53ca\\u4e00\\u4e2d\\u8857\\u0031\\u0033\\u0036\\u002d\\u0032\\u865f\\u0031\\u0033\\u0036\\u002d\\u0036\\u865f"}', '136174', '711', 'zh-tw', 1000),
(2966, 224, '15-224', 1, '親親', '{"number":"185969","shop":"\\u89aa\\u89aa","phone":"0422372379","address":"\\u9326\\u6d32\\u91cc\\u5317\\u5c6f\\u8def\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '185969', '711', 'zh-tw', 1000),
(2967, 224, '15-224', 1, '豐華', '{"number":"864288","shop":"\\u8c50\\u83ef","phone":"0422378824","address":"\\u9032\\u5316\\u5317\\u8def\\u0031\\u0034\\u0038\\u865f"}', '864288', '711', 'zh-tw', 1000),
(2968, 224, '15-224', 1, '永進', '{"number":"791573","shop":"\\u6c38\\u9032","phone":"0422366485","address":"\\u9032\\u5316\\u5317\\u8def\\u0032\\u0039\\u0037\\u865f"}', '791573', '711', 'zh-tw', 1000),
(2969, 224, '15-224', 1, '衛道', '{"number":"198895","shop":"\\u885b\\u9053","phone":"0422353537","address":"\\u9032\\u5316\\u5317\\u8def\\u0033\\u0037\\u0038\\u002d\\u0036\\u865f"}', '198895', '711', 'zh-tw', 1000),
(2970, 224, '15-224', 1, '元保', '{"number":"167086","shop":"\\u5143\\u4fdd","phone":"0422068717","address":"\\u9032\\u5316\\u5317\\u8def\\u0034\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '167086', '711', 'zh-tw', 1000),
(2971, 224, '15-224', 1, '進合', '{"number":"177522","shop":"\\u9032\\u5408","phone":"0423609986","address":"\\u9032\\u5316\\u8def\\u0033\\u0032\\u0038\\u865f"}', '177522', '711', 'zh-tw', 1000),
(2972, 224, '15-224', 1, '育仁', '{"number":"846109","shop":"\\u80b2\\u4ec1","phone":"0422373045","address":"\\u9032\\u5316\\u8def\\u0035\\u0038\\u0033\\u865f"}', '846109', '711', 'zh-tw', 1000),
(2973, 224, '15-224', 1, '昌鴻', '{"number":"131135","shop":"\\u660c\\u9d3b","phone":"0422990002","address":"\\u8cf4\\u539d\\u91cc\\u5c71\\u897f\\u8def\\u4e00\\u6bb5\\u0034\\u0038\\u865f"}', '131135', '711', 'zh-tw', 1000),
(2974, 224, '15-224', 1, '亞太', '{"number":"177441","shop":"\\u4e9e\\u592a","phone":"0422057324","address":"\\u8cf4\\u798f\\u91cc\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\u0035\\u0030\\u0038\\u865f"}', '177441', '711', 'zh-tw', 1000),
(2975, 224, '15-224', 1, '美德', '{"number":"181255","shop":"\\u7f8e\\u5fb7","phone":"0422071869","address":"\\u6c11\\u6b0a\\u8def\\u0034\\u0037\\u0032\\u865f\\u0031\\u6a13\\u0034\\u0036\\u0036\\u5df7\\u0031\\u002e\\u0033\\u865f\\u0031\\u6a13"}', '181255', '711', 'zh-tw', 1000),
(2976, 224, '15-224', 1, '新育才', '{"number":"912363","shop":"\\u65b0\\u80b2\\u624d","phone":"0422232877","address":"\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0036\\u865f"}', '912363', '711', 'zh-tw', 1000),
(2977, 224, '15-224', 1, '錦中', '{"number":"956581","shop":"\\u9326\\u4e2d","phone":"0422361820","address":"\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0032\\u0035\\u0038\\u865f"}', '956581', '711', 'zh-tw', 1000),
(2978, 224, '15-224', 1, '雙行', '{"number":"822642","shop":"\\u96d9\\u884c","phone":"0422278400","address":"\\u96d9\\u5341\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u865f"}', '822642', '711', 'zh-tw', 1000),
(2979, 224, '15-224', 1, '文津', '{"number":"130420","shop":"\\u6587\\u6d25","phone":"0422994768","address":"\\u5929\\u6d25\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0038\\u4e4b\\u0031\\u0030\\u865f\\u4e4b\\u0031\\u0031\\u865f"}', '130420', '711', 'zh-tw', 1000),
(2980, 224, '15-224', 1, '雅津', '{"number":"184254","shop":"\\u96c5\\u6d25","phone":"0422939278","address":"\\u5929\\u6d25\\u8def\\u4e8c\\u6bb5\\u0039\\u865f\\u002e\\u0031\\u0031\\u865f"}', '184254', '711', 'zh-tw', 1000),
(2981, 224, '15-224', 1, '光大國宅', '{"number":"952316","shop":"\\u5149\\u5927\\u570b\\u5b85","phone":"0422068491","address":"\\u6587\\u838a\\u91cc\\u65e5\\u8208\\u8857\\u0031\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '952316', '711', 'zh-tw', 1000),
(2982, 224, '15-224', 1, '順益', '{"number":"895592","shop":"\\u9806\\u76ca","phone":"0422014671","address":"\\u4e94\\u6b0a\\u8def\\u0033\\u0038\\u0037\\u865f\\u53ca\\u4e94\\u5e38\\u8857\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f"}', '895592', '711', 'zh-tw', 1000),
(2983, 224, '15-224', 1, '平西', '{"number":"190639","shop":"\\u5e73\\u897f","phone":"0422936706","address":"\\u965c\\u897f\\u8def\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f"}', '190639', '711', 'zh-tw', 1000),
(2984, 224, '15-224', 1, '陜西', '{"number":"136082","shop":"\\u965c\\u897f","phone":"0422918766","address":"\\u965c\\u897f\\u8def\\u0034\\u0038\\u865f\\u0034\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '136082', '711', 'zh-tw', 1000),
(2985, 224, '15-224', 1, '嘟嘟', '{"number":"893231","shop":"\\u561f\\u561f","phone":"0422384760","address":"\\u8208\\u9032\\u8def\\u0036\\u0030\\u865f"}', '893231', '711', 'zh-tw', 1000),
(2986, 224, '15-224', 1, '學士', '{"number":"886130","shop":"\\u5b78\\u58eb","phone":"0422038425","address":"\\u5b78\\u58eb\\u8def\\u0031\\u0036\\u0033\\u865f\\u0031\\u0036\\u0035\\u865f"}', '886130', '711', 'zh-tw', 1000),
(2987, 224, '15-224', 1, '婷婷', '{"number":"993591","shop":"\\u5a77\\u5a77","phone":"0422081433","address":"\\u5b78\\u58eb\\u8def\\u0036\\u0037\\u865f\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '993591', '711', 'zh-tw', 1000),
(2988, 224, '15-224', 1, '一中', '{"number":"179920","shop":"\\u4e00\\u4e2d","phone":"0422293258","address":"\\u4e00\\u4e2d\\u8857\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '179920', '711', 'zh-tw', 1000),
(2989, 224, '15-224', 1, '中友', '{"number":"128380","shop":"\\u4e2d\\u53cb","phone":"0422256137","address":"\\u80b2\\u624d\\u5317\\u8def\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '128380', '711', 'zh-tw', 1000),
(2990, 224, '15-224', 1, '中醫', '{"number":"119652","shop":"\\u4e2d\\u91ab","phone":"0422078812","address":"\\u80b2\\u5fb7\\u8def\\u0031\\u0033\\u865f"}', '119652', '711', 'zh-tw', 1000),
(2991, 224, '15-224', 1, '華太', '{"number":"968621","shop":"\\u83ef\\u592a","phone":"0422061723","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0037\\u865f"}', '968621', '711', 'zh-tw', 1000),
(2992, 224, '15-224', 1, '汶莊', '{"number":"113469","shop":"\\u6c76\\u838a","phone":"0422063620","address":"\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '113469', '711', 'zh-tw', 1000),
(2993, 224, '15-224', 1, '雅亭', '{"number":"130718","shop":"\\u96c5\\u4ead","phone":"0422063783","address":"\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0030\\u865f"}', '130718', '711', 'zh-tw', 1000),
(2994, 224, '15-224', 1, '雅昌', '{"number":"891361","shop":"\\u96c5\\u660c","phone":"0422984769","address":"\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\u0035\\u0036\\u0039\\u865f"}', '891361', '711', 'zh-tw', 1000),
(2995, 224, '15-224', 1, '忠太', '{"number":"887029","shop":"\\u5fe0\\u592a","phone":"0422063209","address":"\\u5fe0\\u660e\\u0038\\u8857\\u0031\\u865f\\u6216\\u592a\\u539f\\u8def\\u4e00\\u6bb5\\u0034\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '887029', '711', 'zh-tw', 1000),
(2996, 224, '15-224', 1, '忠權', '{"number":"120939","shop":"\\u5fe0\\u6b0a","phone":"0422061836","address":"\\u5fe0\\u660e\\u8def\\u0034\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '120939', '711', 'zh-tw', 1000),
(2997, 224, '15-224', 1, '合作', '{"number":"875093","shop":"\\u5408\\u4f5c","phone":"0423608343","address":"\\u81ea\\u5f37\\u4e00\\u8857\\u0031\\u865f"}', '875093', '711', 'zh-tw', 1000),
(2998, 224, '15-224', 1, '德毅', '{"number":"149033","shop":"\\u5fb7\\u6bc5","phone":"0422278757","address":"\\u5c0a\\u8ce2\\u8857\\u0039\\u865f"}', '149033', '711', 'zh-tw', 1000),
(2999, 225, '15-225', 1, '遠平', '{"number":"148616","shop":"\\u9060\\u5e73","phone":"0422384398","address":"\\u5317\\u5e73\\u8def\\u4e09\\u6bb5\\u0037\\u0035\\u002d\\u0034\\u865f\\u0037\\u0035\\u002d\\u0035\\u865f"}', '148616', '711', 'zh-tw', 1000),
(3000, 225, '15-225', 1, '寶昇', '{"number":"903093","shop":"\\u5bf6\\u6607","phone":"0422313622","address":"\\u5317\\u5c6f\\u8def\\u0032\\u0032\\u0034\\u4e4b\\u0031\\u865f"}', '903093', '711', 'zh-tw', 1000),
(3001, 225, '15-225', 1, '昌順', '{"number":"138228","shop":"\\u660c\\u9806","phone":"0422439430","address":"\\u5317\\u5c6f\\u8def\\u0034\\u0033\\u0039\\u4e4b\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '138228', '711', 'zh-tw', 1000),
(3002, 225, '15-225', 1, '川越', '{"number":"182616","shop":"\\u5ddd\\u8d8a","phone":"0424229341","address":"\\u660c\\u5e73\\u6771\\u516d\\u8def\\u0031\\u0032\\u0031\\u865f"}', '182616', '711', 'zh-tw', 1000),
(3003, 225, '15-225', 1, '松竹', '{"number":"150790","shop":"\\u677e\\u7af9","phone":"0422472627","address":"\\u660c\\u5e73\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u002d\\u0031\\u865f"}', '150790', '711', 'zh-tw', 1000),
(3004, 225, '15-225', 1, '昌旺', '{"number":"174855","shop":"\\u660c\\u65fa","phone":"0422474819","address":"\\u660c\\u5e73\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u4e4b\\u0031\\u0036\\u865f"}', '174855', '711', 'zh-tw', 1000),
(3005, 225, '15-225', 1, '昌盛', '{"number":"863632","shop":"\\u660c\\u76db","phone":"0424224542","address":"\\u660c\\u5e73\\u8def\\u4e8c\\u6bb5\\u0034\\u0035\\u865f\\u4e4b\\u0038\\u53ca\\u0034\\u0035\\u865f\\u4e4b\\u0039"}', '863632', '711', 'zh-tw', 1000),
(3006, 225, '15-225', 1, '昌陽', '{"number":"152028","shop":"\\u660c\\u967d","phone":"0422434735","address":"\\u660c\\u5e73\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0034\\u865f"}', '152028', '711', 'zh-tw', 1000),
(3007, 225, '15-225', 1, '昌平', '{"number":"162966","shop":"\\u660c\\u5e73","phone":"0422326743","address":"\\u660c\\u5e73\\u8def\\u4e00\\u6bb5\\u0037\\u0030\\u865f"}', '162966', '711', 'zh-tw', 1000),
(3008, 225, '15-225', 1, '福寶', '{"number":"114048","shop":"\\u798f\\u5bf6","phone":"0422935012","address":"\\u9673\\u5e73\\u8def\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '114048', '711', 'zh-tw', 1000),
(3009, 225, '15-225', 1, '鑫巴黎', '{"number":"136886","shop":"\\u946b\\u5df4\\u9ece","phone":"0422491770","address":"\\u5d07\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '136886', '711', 'zh-tw', 1000),
(3010, 225, '15-225', 1, '崇尚', '{"number":"991942","shop":"\\u5d07\\u5c1a","phone":"0422411034","address":"\\u5d07\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0034\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '991942', '711', 'zh-tw', 1000),
(3011, 225, '15-225', 1, '崇金', '{"number":"167776","shop":"\\u5d07\\u91d1","phone":"0424229483","address":"\\u5d07\\u5fb7\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0035\\u865f"}', '167776', '711', 'zh-tw', 1000),
(3012, 225, '15-225', 1, '豐樂', '{"number":"185497","shop":"\\u8c50\\u6a02","phone":"0424222105","address":"\\u5d07\\u5fb7\\u8def\\u4e09\\u6bb5\\u0036\\u0030\\u0038\\u865f"}', '185497', '711', 'zh-tw', 1000),
(3013, 225, '15-225', 1, '昌大', '{"number":"852425","shop":"\\u660c\\u5927","phone":"0422477783","address":"\\u5927\\u9023\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0033\\u865f"}', '852425', '711', 'zh-tw', 1000),
(3014, 225, '15-225', 1, '大連', '{"number":"151690","shop":"\\u5927\\u9023","phone":"0422953446","address":"\\u5927\\u9023\\u8def\\u4e00\\u6bb5\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '151690', '711', 'zh-tw', 1000),
(3015, 225, '15-225', 1, '博吉', '{"number":"199153","shop":"\\u535a\\u5409","phone":"0424364574","address":"\\u6771\\u5149\\u8def\\u0037\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '199153', '711', 'zh-tw', 1000),
(3016, 225, '15-225', 1, '天星', '{"number":"991159","shop":"\\u5929\\u661f","phone":"0424390965","address":"\\u6771\\u5c71\\u8def\\u4e8c\\u6bb5\\u0037\\u0037\\u4e4b\\u0038\\u865f\\u0039\\u865f\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '991159', '711', 'zh-tw', 1000),
(3017, 225, '15-225', 1, '昌和', '{"number":"153700","shop":"\\u660c\\u548c","phone":"0424362834","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0036\\u4e4b\\u0033\\u0039\\u865f"}', '153700', '711', 'zh-tw', 1000),
(3018, 225, '15-225', 1, '東加', '{"number":"193926","shop":"\\u6771\\u52a0","phone":"0424364709","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0035\\u865f"}', '193926', '711', 'zh-tw', 1000),
(3019, 225, '15-225', 1, '水景', '{"number":"870401","shop":"\\u6c34\\u666f","phone":"0424360603","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0032\\u865f"}', '870401', '711', 'zh-tw', 1000),
(3020, 225, '15-225', 1, '何藥局', '{"number":"181635","shop":"\\u4f55\\u85e5\\u5c40","phone":"0424360442","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0036\\u002d\\u0031\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '181635', '711', 'zh-tw', 1000),
(3021, 225, '15-225', 1, '東侑', '{"number":"131308","shop":"\\u6771\\u4f91","phone":"0422391830","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\u0033\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '131308', '711', 'zh-tw', 1000),
(3022, 225, '15-225', 1, '敦煌', '{"number":"901846","shop":"\\u6566\\u714c","phone":"0422925869","address":"\\u6566\\u5316\\u8def\\u4e00\\u6bb5\\u0034\\u0037\\u0033\\u865f\\u0031\\u6a13"}', '901846', '711', 'zh-tw', 1000),
(3023, 225, '15-225', 1, '國校', '{"number":"175010","shop":"\\u570b\\u6821","phone":"0422336256","address":"\\u570b\\u6821\\u5df7\\u0031\\u0036\\u865f"}', '175010', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(3024, 225, '15-225', 1, '連河', '{"number":"132563","shop":"\\u9023\\u6cb3","phone":"0422477023","address":"\\u6cb3\\u5317\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '132563', '711', 'zh-tw', 1000),
(3025, 225, '15-225', 1, '大坑', '{"number":"921013","shop":"\\u5927\\u5751","phone":"0422398412","address":"\\u6a6b\\u5751\\u5df7\\u0032\\u0038\\u002d\\u0031\\u865f"}', '921013', '711', 'zh-tw', 1000),
(3026, 225, '15-225', 1, '后庄', '{"number":"892412","shop":"\\u540e\\u5e84","phone":"0424251026","address":"\\u540e\\u5e84\\u91cc\\u540e\\u5e84\\u8def\\u0031\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '892412', '711', 'zh-tw', 1000),
(3027, 225, '15-225', 1, '欣花園', '{"number":"200701","shop":"\\u6b23\\u82b1\\u5712","phone":"0422937902","address":"\\u83ef\\u7f8e\\u897f\\u8857\\u4e8c\\u6bb5\\u0034\\u0037\\u0038\\u865f"}', '200701', '711', 'zh-tw', 1000),
(3028, 225, '15-225', 1, '富宇', '{"number":"184302","shop":"\\u5bcc\\u5b87","phone":"0424367450","address":"\\u5efa\\u548c\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0033\\u002e\\u0032\\u0037\\u0035\\u865f"}', '184302', '711', 'zh-tw', 1000),
(3029, 225, '15-225', 1, '賢和', '{"number":"180137","shop":"\\u8ce2\\u548c","phone":"0424360884","address":"\\u666f\\u8ce2\\u8def\\u0032\\u0033\\u0030\\u865f"}', '180137', '711', 'zh-tw', 1000),
(3030, 225, '15-225', 1, '軍建', '{"number":"199094","shop":"\\u8ecd\\u5efa","phone":"0424367480","address":"\\u8ecd\\u798f\\u5341\\u4e09\\u8def\\u0031\\u0039\\u0038\\u865f"}', '199094', '711', 'zh-tw', 1000),
(3031, 225, '15-225', 1, '君悅', '{"number":"193797","shop":"\\u541b\\u6085","phone":"0424392047","address":"\\u8ecd\\u798f\\u5341\\u4e09\\u8def\\u0036\\u0038\\u865f"}', '193797', '711', 'zh-tw', 1000),
(3032, 225, '15-225', 1, '松潭', '{"number":"965356","shop":"\\u677e\\u6f6d","phone":"0424392157","address":"\\u8ecd\\u529f\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '965356', '711', 'zh-tw', 1000),
(3033, 225, '15-225', 1, '軍福', '{"number":"111212","shop":"\\u8ecd\\u798f","phone":"0424376717","address":"\\u8ecd\\u529f\\u8def\\u4e00\\u6bb5\\u0035\\u0030\\u0030\\u865f"}', '111212', '711', 'zh-tw', 1000),
(3034, 225, '15-225', 1, '逢運', '{"number":"910998","shop":"\\u9022\\u904b","phone":"0422984055","address":"\\u96f7\\u4e2d\\u8857\\u0039\\u0035\\u865f"}', '910998', '711', 'zh-tw', 1000),
(3035, 225, '15-225', 1, '平興', '{"number":"174408","shop":"\\u5e73\\u8208","phone":"0422421651","address":"\\u907c\\u5be7\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0030\\u865f"}', '174408', '711', 'zh-tw', 1000),
(3036, 225, '15-225', 1, '新興陽', '{"number":"165194","shop":"\\u65b0\\u8208\\u967d","phone":"0422431809","address":"\\u5e73\\u7530\\u91cc\\u8208\\u5b89\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '165194', '711', 'zh-tw', 1000),
(3037, 225, '15-225', 1, '青河', '{"number":"991975","shop":"\\u9752\\u6cb3","phone":"0422362409","address":"\\u9752\\u5cf6\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '991975', '711', 'zh-tw', 1000),
(3038, 225, '15-225', 1, '熱陽', '{"number":"111485","shop":"\\u71b1\\u967d","phone":"0422425271","address":"\\u71b1\\u6cb3\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0037\\u865f"}', '111485', '711', 'zh-tw', 1000),
(3039, 225, '15-225', 1, '瀋陽', '{"number":"131397","shop":"\\u700b\\u967d","phone":"0422911125","address":"\\u700b\\u967d\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0034\\u865f\\u0031\\u6a13"}', '131397', '711', 'zh-tw', 1000),
(3040, 225, '15-225', 1, '丰瑞', '{"number":"951069","shop":"\\u4e30\\u745e","phone":"0424214855","address":"\\u56db\\u6c11\\u91cc\\u56db\\u5e73\\u8def\\u0035\\u0036\\u0033\\u865f"}', '951069', '711', 'zh-tw', 1000),
(3041, 225, '15-225', 1, '松豪', '{"number":"988267","shop":"\\u677e\\u8c6a","phone":"0424214950","address":"\\u56db\\u5e73\\u8def\\u0032\\u0031\\u0038\\u865f"}', '988267', '711', 'zh-tw', 1000),
(3042, 225, '15-225', 1, '松強', '{"number":"950295","shop":"\\u677e\\u5f37","phone":"0422432398","address":"\\u677e\\u5b89\\u91cc\\u5d07\\u5fb7\\u516d\\u8def\\u4e00\\u6bb5\\u0034\\u0037\\u865f"}', '950295', '711', 'zh-tw', 1000),
(3043, 225, '15-225', 1, '雅樂', '{"number":"166212","shop":"\\u96c5\\u6a02","phone":"0422422858","address":"\\u677e\\u7af9\\u8def\\u4e8c\\u6bb5\\u0038\\u0038\\u865f"}', '166212', '711', 'zh-tw', 1000),
(3044, 225, '15-225', 1, '松東', '{"number":"931098","shop":"\\u677e\\u6771","phone":"0422463373","address":"\\u677e\\u7af9\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u0035\\u865f"}', '931098', '711', 'zh-tw', 1000),
(3045, 225, '15-225', 1, '金格', '{"number":"167237","shop":"\\u91d1\\u683c","phone":"0424368410","address":"\\u677e\\u7af9\\u8def\\u4e00\\u6bb5\\u0039\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '167237', '711', 'zh-tw', 1000),
(3046, 225, '15-225', 1, '軍松', '{"number":"143792","shop":"\\u8ecd\\u677e","phone":"0424366314","address":"\\u677e\\u7af9\\u4e94\\u8def\\u0031\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '143792', '711', 'zh-tw', 1000),
(3047, 225, '15-225', 1, '松佑', '{"number":"179609","shop":"\\u677e\\u4f51","phone":"0424364087","address":"\\u677e\\u7af9\\u4e94\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '179609', '711', 'zh-tw', 1000),
(3048, 225, '15-225', 1, '鈞泰', '{"number":"966566","shop":"\\u921e\\u6cf0","phone":"0424368075","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0031\\u0032\\u4e4b\\u0031\\u865f\\u0031\\u0031\\u0032\\u0030\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '966566', '711', 'zh-tw', 1000),
(3049, 225, '15-225', 1, '健太', '{"number":"158978","shop":"\\u5065\\u592a","phone":"0424367881","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0033\\u0038\\u865f"}', '158978', '711', 'zh-tw', 1000),
(3050, 225, '15-225', 1, '中台禾豐', '{"number":"966175","shop":"\\u4e2d\\u53f0\\u79be\\u8c50","phone":"0424390923","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0030\\u0035\\u865f"}', '966175', '711', 'zh-tw', 1000),
(3051, 225, '15-225', 1, '新北屯', '{"number":"155050","shop":"\\u65b0\\u5317\\u5c6f","phone":"0422369034","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\u0035\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '155050', '711', 'zh-tw', 1000),
(3052, 225, '15-225', 1, '景和', '{"number":"183099","shop":"\\u666f\\u548c","phone":"0424368700","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\u0039\\u0030\\u0037\\u865f"}', '183099', '711', 'zh-tw', 1000),
(3053, 225, '15-225', 1, '熱天', '{"number":"992808","shop":"\\u71b1\\u5929","phone":"0422373652","address":"\\u5929\\u6d25\\u8def\\u56db\\u6bb5\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '992808', '711', 'zh-tw', 1000),
(3054, 225, '15-225', 1, '南北通', '{"number":"911670","shop":"\\u5357\\u5317\\u901a","phone":"0424260092","address":"\\u540c\\u69ae\\u91cc\\u74b0\\u4e2d\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0038\\u0036\\u865f"}', '911670', '711', 'zh-tw', 1000),
(3055, 225, '15-225', 1, '同榮', '{"number":"114727","shop":"\\u540c\\u69ae","phone":"0424257349","address":"\\u540c\\u69ae\\u8def\\u0031\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '114727', '711', 'zh-tw', 1000),
(3056, 225, '15-225', 1, '瀚尹', '{"number":"165415","shop":"\\u701a\\u5c39","phone":"0422477852","address":"\\u6587\\u5fc3\\u8def\\u56db\\u6bb5\\u0035\\u0037\\u0037\\u865f\\u0035\\u0037\\u0039\\u865f"}', '165415', '711', 'zh-tw', 1000),
(3057, 225, '15-225', 1, '祥順東', '{"number":"184221","shop":"\\u7965\\u9806\\u6771","phone":"0424391746","address":"\\u7965\\u9806\\u6771\\u8def\\u4e00\\u6bb5\\u0032\\u865f"}', '184221', '711', 'zh-tw', 1000),
(3058, 225, '15-225', 1, '興昌', '{"number":"144887","shop":"\\u8208\\u660c","phone":"0422435875","address":"\\u8208\\u5b89\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '144887', '711', 'zh-tw', 1000),
(3059, 225, '15-225', 1, '中清', '{"number":"171498","shop":"\\u4e2d\\u6e05","phone":"0422952695","address":"\\u4e2d\\u6e05\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u0030\\u865f"}', '171498', '711', 'zh-tw', 1000),
(3060, 225, '15-225', 1, '萬寶', '{"number":"996291","shop":"\\u842c\\u5bf6","phone":"0422959440","address":"\\u4e2d\\u6e05\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u0037\\u865f\\u4e00\\u6a13"}', '996291', '711', 'zh-tw', 1000),
(3061, 225, '15-225', 1, '新象', '{"number":"993018","shop":"\\u65b0\\u8c61","phone":"0424261619","address":"\\u4e2d\\u6e05\\u8def\\u4e8c\\u6bb5\\u0037\\u0037\\u0036\\u865f\\u0037\\u0037\\u0038\\u865f"}', '993018', '711', 'zh-tw', 1000),
(3062, 226, '15-226', 1, '金大安', '{"number":"141730","shop":"\\u91d1\\u5927\\u5b89","phone":"0426713224","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0032\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '141730', '711', 'zh-tw', 1000),
(3063, 227, '15-227', 1, '一勝', '{"number":"110035","shop":"\\u4e00\\u52dd","phone":"0426930674","address":"\\u798f\\u5c71\\u6751\\u6c99\\u7530\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u0032\\u002d\\u0031\\u865f"}', '110035', '711', 'zh-tw', 1000),
(3064, 227, '15-227', 1, '台紙', '{"number":"893596","shop":"\\u53f0\\u7d19","phone":"0426983260","address":"\\u6c99\\u7530\\u8def\\u4e8c\\u6bb5\\u0036\\u0034\\u0035\\u865f"}', '893596', '711', 'zh-tw', 1000),
(3065, 227, '15-227', 1, '大肚', '{"number":"174545","shop":"\\u5927\\u809a","phone":"0426994658","address":"\\u6c99\\u7530\\u8def\\u4e8c\\u6bb5\\u0037\\u0034\\u0030\\u865f"}', '174545', '711', 'zh-tw', 1000),
(3066, 227, '15-227', 1, '王田', '{"number":"165862","shop":"\\u738b\\u7530","phone":"0426930490","address":"\\u6c99\\u7530\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u0036\\u865f"}', '165862', '711', 'zh-tw', 1000),
(3067, 227, '15-227', 1, '親旺', '{"number":"132068","shop":"\\u89aa\\u65fa","phone":"0426934817","address":"\\u6c99\\u7530\\u8def\\u4e00\\u6bb5\\u0039\\u0032\\u0039\\u865f"}', '132068', '711', 'zh-tw', 1000),
(3068, 227, '15-227', 1, '豐肚', '{"number":"981196","shop":"\\u8c50\\u809a","phone":"0426999770","address":"\\u793e\\u8173\\u91cc\\u6c99\\u7530\\u8def\\u4e00\\u6bb5\\u0039\\u0031\\u0036\\u865f"}', '981196', '711', 'zh-tw', 1000),
(3069, 227, '15-227', 1, '遊園', '{"number":"189020","shop":"\\u904a\\u5712","phone":"0426911486","address":"\\u904a\\u5712\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '189020', '711', 'zh-tw', 1000),
(3070, 227, '15-227', 1, '蔗園', '{"number":"163693","shop":"\\u8517\\u5712","phone":"0426914816","address":"\\u904a\\u5712\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0033\\u865f"}', '163693', '711', 'zh-tw', 1000),
(3071, 228, '15-228', 1, '大安港', '{"number":"951737","shop":"\\u5927\\u5b89\\u6e2f","phone":"0426804055","address":"\\u5927\\u5b89\\u6e2f\\u8def\\u0031\\u0031\\u0038\\u865f"}', '951737', '711', 'zh-tw', 1000),
(3072, 228, '15-228', 1, '媽祖', '{"number":"165161","shop":"\\u5abd\\u7956","phone":"0426867485","address":"\\u5149\\u660e\\u8def\\u0031\\u865f"}', '165161', '711', 'zh-tw', 1000),
(3073, 228, '15-228', 1, '金甲后', '{"number":"143301","shop":"\\u91d1\\u7532\\u540e","phone":"0426804065","address":"\\u7532\\u540e\\u8def\\u4e94\\u6bb5\\u0033\\u0036\\u0030\\u865f"}', '143301', '711', 'zh-tw', 1000),
(3074, 228, '15-228', 1, '蔣公', '{"number":"120157","shop":"\\u8523\\u516c","phone":"0426881120","address":"\\u8523\\u516c\\u8def\\u0032\\u0032\\u0031\\u865f"}', '120157', '711', 'zh-tw', 1000),
(3075, 228, '15-228', 1, '新美', '{"number":"185006","shop":"\\u65b0\\u7f8e","phone":"0426864979","address":"\\u7d93\\u570b\\u8def\\u0033\\u0032\\u0039\\u865f"}', '185006', '711', 'zh-tw', 1000),
(3076, 228, '15-228', 1, '甲渭', '{"number":"122577","shop":"\\u7532\\u6e2d","phone":"0426821407","address":"\\u9f8d\\u6cc9\\u91cc\\u0038\\u9130\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0039\\u0030\\u0035\\u4e4b\\u0038\\u865f"}', '122577', '711', 'zh-tw', 1000),
(3077, 228, '15-228', 1, '日出', '{"number":"860644","shop":"\\u65e5\\u51fa","phone":"0426818410","address":"\\u5b5f\\u6625\\u91cc\\u901a\\u5929\\u8def\\u0031\\u0036\\u0038\\u865f"}', '860644', '711', 'zh-tw', 1000),
(3078, 228, '15-228', 1, '永在', '{"number":"968528","shop":"\\u6c38\\u5728","phone":"0426821479","address":"\\u65e5\\u5357\\u91cc\\u9ece\\u660e\\u8def\\u0033\\u4e4b\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '968528', '711', 'zh-tw', 1000),
(3079, 228, '15-228', 1, '日南', '{"number":"903831","shop":"\\u65e5\\u5357","phone":"0426821781","address":"\\u65e5\\u5357\\u91cc\\u9752\\u5e74\\u8def\\u0031\\u0033\\u0030\\u865f"}', '903831', '711', 'zh-tw', 1000),
(3080, 228, '15-228', 1, '順天', '{"number":"184852","shop":"\\u9806\\u5929","phone":"0426867403","address":"\\u9806\\u5929\\u8def\\u0031\\u0035\\u0034\\u865f"}', '184852', '711', 'zh-tw', 1000),
(3081, 228, '15-228', 1, '新政', '{"number":"971971","shop":"\\u65b0\\u653f","phone":"0426761738","address":"\\u4fe1\\u7fa9\\u8def\\u0031\\u0039\\u0033\\u865f"}', '971971', '711', 'zh-tw', 1000),
(3082, 228, '15-228', 1, '鈺英', '{"number":"971926","shop":"\\u923a\\u82f1","phone":"0426765542","address":"\\u80b2\\u82f1\\u8def\\u0032\\u0038\\u0033\\u865f"}', '971926', '711', 'zh-tw', 1000),
(3083, 228, '15-228', 1, '幼勝', '{"number":"184335","shop":"\\u5e7c\\u52dd","phone":"0426822276","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0039\\u0032\\u0030\\u4e4b\\u0032\\u0031\\u865f\\u4e4b\\u0032\\u0032\\u865f\\u4e4b\\u0032\\u0033\\u865f\\u4e4b\\u0032\\u0035\\u865f\\u4e4b\\u0032\\u0036\\u865f"}', '184335', '711', 'zh-tw', 1000),
(3084, 228, '15-228', 1, '順大', '{"number":"852067","shop":"\\u9806\\u5927","phone":"0426870347","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0038\\u0035\\u865f"}', '852067', '711', 'zh-tw', 1000),
(3085, 228, '15-228', 1, '義和', '{"number":"137845","shop":"\\u7fa9\\u548c","phone":"0426882372","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0034\\u0039\\u0032\\u865f"}', '137845', '711', 'zh-tw', 1000),
(3086, 229, '15-229', 1, '元百', '{"number":"145031","shop":"\\u5143\\u767e","phone":"0424962475","address":"\\u6210\\u529f\\u8def\\u0035\\u0031\\u0032\\u865f\\u0035\\u0031\\u0036\\u865f"}', '145031', '711', 'zh-tw', 1000),
(3087, 229, '15-229', 1, '大峰', '{"number":"880822","shop":"\\u5927\\u5cf0","phone":"0424954806","address":"\\u5927\\u5cf0\\u8def\\u0031\\u0036\\u0037\\u865f"}', '880822', '711', 'zh-tw', 1000),
(3088, 229, '15-229', 1, '東里', '{"number":"885780","shop":"\\u6771\\u91cc","phone":"0424060269","address":"\\u5927\\u91cc\\u8def\\u0032\\u0039\\u0035\\u865f"}', '885780', '711', 'zh-tw', 1000),
(3089, 229, '15-229', 1, '興生', '{"number":"130235","shop":"\\u8208\\u751f","phone":"0424831710","address":"\\u5927\\u91cc\\u8def\\u0039\\u0035\\u865f\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '130235', '711', 'zh-tw', 1000),
(3090, 229, '15-229', 1, '新永大', '{"number":"165035","shop":"\\u65b0\\u6c38\\u5927","phone":"0424823074","address":"\\u5927\\u660e\\u8def\\u0033\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '165035', '711', 'zh-tw', 1000),
(3091, 229, '15-229', 1, '永隆', '{"number":"946850","shop":"\\u6c38\\u9686","phone":"0424074438","address":"\\u5927\\u660e\\u8def\\u0034\\u0035\\u0037\\u865f"}', '946850', '711', 'zh-tw', 1000),
(3092, 229, '15-229', 1, '喬城', '{"number":"111979","shop":"\\u55ac\\u57ce","phone":"0422809095","address":"\\u5927\\u667a\\u8def\\u0035\\u0036\\u0037\\u865f"}', '111979', '711', 'zh-tw', 1000),
(3093, 229, '15-229', 1, '里德', '{"number":"931434","shop":"\\u91cc\\u5fb7","phone":"0424851020","address":"\\u5fb7\\u82b3\\u5357\\u8def\\u0032\\u0031\\u0031\\u865f"}', '931434', '711', 'zh-tw', 1000),
(3094, 229, '15-229', 1, '東富', '{"number":"936185","shop":"\\u6771\\u5bcc","phone":"0424823721","address":"\\u6771\\u69ae\\u8def\\u0032\\u0038\\u0032\\u865f"}', '936185', '711', 'zh-tw', 1000),
(3095, 229, '15-229', 1, '玉豐', '{"number":"127066","shop":"\\u7389\\u8c50","phone":"0424823982","address":"\\u6771\\u69ae\\u8def\\u0034\\u0038\\u0033\\u865f"}', '127066', '711', 'zh-tw', 1000),
(3096, 229, '15-229', 1, '新榮', '{"number":"182764","shop":"\\u65b0\\u69ae","phone":"0424062770","address":"\\u6771\\u69ae\\u8def\\u0035\\u0035\\u0032\\u865f"}', '182764', '711', 'zh-tw', 1000),
(3097, 229, '15-229', 1, '十九甲', '{"number":"180838","shop":"\\u5341\\u4e5d\\u7532","phone":"0424835542","address":"\\u6771\\u6607\\u91cc\\u65b0\\u4ec1\\u8def\\u4e8c\\u6bb5\\u0039\\u0032\\u865f"}', '180838', '711', 'zh-tw', 1000),
(3098, 229, '15-229', 1, '益民', '{"number":"874296","shop":"\\u76ca\\u6c11","phone":"0424815624","address":"\\u6771\\u8208\\u91cc\\u0031\\u0030\\u9130\\u5927\\u660e\\u8def\\u0032\\u0033\\u0038\\u865f"}', '874296', '711', 'zh-tw', 1000),
(3099, 229, '15-229', 1, '修平', '{"number":"998013","shop":"\\u4fee\\u5e73","phone":"0424917541","address":"\\u5de5\\u696d\\u4e8c\\u8def\\u0031\\u0030\\u0030\\u865f"}', '998013', '711', 'zh-tw', 1000),
(3100, 229, '15-229', 1, '國光', '{"number":"131087","shop":"\\u570b\\u5149","phone":"0424064271","address":"\\u570b\\u5149\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0037\\u865f"}', '131087', '711', 'zh-tw', 1000),
(3101, 229, '15-229', 1, '大衛', '{"number":"971041","shop":"\\u5927\\u885b","phone":"0424070776","address":"\\u570b\\u4e2d\\u8def\\u0032\\u0037\\u0036\\u865f"}', '971041', '711', 'zh-tw', 1000),
(3102, 229, '15-229', 1, '豐竹', '{"number":"194262","shop":"\\u8c50\\u7af9","phone":"0424916125","address":"\\u5065\\u6c11\\u8def\\u0039\\u0037\\u865f"}', '194262', '711', 'zh-tw', 1000),
(3103, 229, '15-229', 1, '新堤', '{"number":"980207","shop":"\\u65b0\\u5824","phone":"0422759206","address":"\\u7acb\\u5fb7\\u91cc\\u7532\\u5824\\u5357\\u8def\\u0037\\u0031\\u865f"}', '980207', '711', 'zh-tw', 1000),
(3104, 229, '15-229', 1, '立新', '{"number":"890704","shop":"\\u7acb\\u65b0","phone":"0422798641","address":"\\u7acb\\u4ec1\\u8def\\u0031\\u0034\\u0032\\u865f"}', '890704', '711', 'zh-tw', 1000),
(3105, 229, '15-229', 1, '宥辰', '{"number":"150952","shop":"\\u5ba5\\u8fb0","phone":"0422760520","address":"\\u7acb\\u65b0\\u8857\\u0033\\u0035\\u0030\\u865f"}', '150952', '711', 'zh-tw', 1000),
(3106, 229, '15-229', 1, '美群', '{"number":"170635","shop":"\\u7f8e\\u7fa4","phone":"0424950645","address":"\\u7f8e\\u7fa4\\u8def\\u0036\\u0030\\u865f"}', '170635', '711', 'zh-tw', 1000),
(3107, 229, '15-229', 1, '大道', '{"number":"905424","shop":"\\u5927\\u9053","phone":"0424962420","address":"\\u4ec1\\u5316\\u91cc\\u81f3\\u5584\\u8def\\u0031\\u0038\\u0038\\u865f"}', '905424', '711', 'zh-tw', 1000),
(3108, 229, '15-229', 1, '新仁華', '{"number":"893345","shop":"\\u65b0\\u4ec1\\u83ef","phone":"0424914732","address":"\\u4ec1\\u5316\\u8def\\u0034\\u0036\\u0030\\u002e\\u0034\\u0036\\u0032\\u865f"}', '893345', '711', 'zh-tw', 1000),
(3109, 229, '15-229', 1, '仁化', '{"number":"142995","shop":"\\u4ec1\\u5316","phone":"0424964332","address":"\\u4ec1\\u5316\\u8def\\u0036\\u0035\\u0037\\u865f"}', '142995', '711', 'zh-tw', 1000),
(3110, 229, '15-229', 1, '瑞城', '{"number":"111027","shop":"\\u745e\\u57ce","phone":"0424963006","address":"\\u745e\\u57ce\\u4e00\\u8857\\u0031\\u865f"}', '111027', '711', 'zh-tw', 1000),
(3111, 229, '15-229', 1, '興城', '{"number":"112204","shop":"\\u8208\\u57ce","phone":"0424936537","address":"\\u5857\\u57ce\\u8def\\u0037\\u0036\\u0035\\u865f"}', '112204', '711', 'zh-tw', 1000),
(3112, 229, '15-229', 1, '樹王', '{"number":"954585","shop":"\\u6a39\\u738b","phone":"0424077449","address":"\\u6587\\u5fc3\\u5357\\u8def\\u0031\\u0032\\u0035\\u0032\\u865f"}', '954585', '711', 'zh-tw', 1000),
(3113, 229, '15-229', 1, '巧聖', '{"number":"198725","shop":"\\u5de7\\u8056","phone":"0424821505","address":"\\u897f\\u69ae\\u91cc\\u76ca\\u6c11\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0037\\u865f"}', '198725', '711', 'zh-tw', 1000),
(3114, 229, '15-229', 1, '新里', '{"number":"153722","shop":"\\u65b0\\u91cc","phone":"0424838467","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\u0034\\u0038\\u0030\\u865f"}', '153722', '711', 'zh-tw', 1000),
(3115, 229, '15-229', 1, '大明', '{"number":"175054","shop":"\\u5927\\u660e","phone":"0424850579","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\u0038\\u0033\\u0033\\u865f\\u0038\\u0033\\u0035\\u865f"}', '175054', '711', 'zh-tw', 1000),
(3116, 229, '15-229', 1, '草湖', '{"number":"810018","shop":"\\u8349\\u6e56","phone":"0424927373","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u4e4b\\u0036\\u865f"}', '810018', '711', 'zh-tw', 1000),
(3117, 229, '15-229', 1, '大金', '{"number":"181314","shop":"\\u5927\\u91d1","phone":"0424964085","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0035\\u0035\\u865f"}', '181314', '711', 'zh-tw', 1000),
(3118, 229, '15-229', 1, '中湖', '{"number":"970565","shop":"\\u4e2d\\u6e56","phone":"0424952746","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0039\\u0032\\u4e4b\\u0031\\u0031\\u53ca\\u0032\\u0039\\u0032\\u4e4b\\u0031\\u0032\\u865f"}', '970565', '711', 'zh-tw', 1000),
(3119, 229, '15-229', 1, '中城', '{"number":"188740","shop":"\\u4e2d\\u57ce","phone":"0424966827","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0038\\u865f"}', '188740', '711', 'zh-tw', 1000),
(3120, 230, '15-230', 1, '雅神', '{"number":"952121","shop":"\\u96c5\\u795e","phone":"0425670120","address":"\\u660c\\u5e73\\u8def\\u56db\\u6bb5\\u0032\\u0038\\u0036\\u865f"}', '952121', '711', 'zh-tw', 1000),
(3121, 230, '15-230', 1, '大邁', '{"number":"194848","shop":"\\u5927\\u9081","phone":"0425606907","address":"\\u5927\\u6797\\u8def\\u0032\\u0037\\u0035\\u865f"}', '194848', '711', 'zh-tw', 1000),
(3122, 230, '15-230', 1, '佳積', '{"number":"114624","shop":"\\u4f73\\u7a4d","phone":"0425694520","address":"\\u79d1\\u96c5\\u516d\\u8def\\u0031\\u865f"}', '114624', '711', 'zh-tw', 1000),
(3123, 230, '15-230', 1, '豐積', '{"number":"180469","shop":"\\u8c50\\u7a4d","phone":"0425607825","address":"\\u79d1\\u96c5\\u897f\\u8def\\u0035\\u865f\\u0042\\u0032\\u6a13"}', '180469', '711', 'zh-tw', 1000),
(3124, 230, '15-230', 1, '科邦', '{"number":"121286","shop":"\\u79d1\\u90a6","phone":"0425607547","address":"\\u79d1\\u96c5\\u4e00\\u8def\\u0038\\u865f\\u0035\\u6a13"}', '121286', '711', 'zh-tw', 1000),
(3125, 230, '15-230', 1, '上楓', '{"number":"903303","shop":"\\u4e0a\\u6953","phone":"0425688574","address":"\\u6c11\\u751f\\u8def\\u4e09\\u6bb5\\u0035\\u0032\\u0033\\u865f"}', '903303', '711', 'zh-tw', 1000),
(3126, 230, '15-230', 1, '新德勝', '{"number":"165150","shop":"\\u65b0\\u5fb7\\u52dd","phone":"0425604319","address":"\\u6c11\\u751f\\u8def\\u4e09\\u6bb5\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f"}', '165150', '711', 'zh-tw', 1000),
(3127, 230, '15-230', 1, '綠點', '{"number":"953076","shop":"\\u7da0\\u9ede","phone":"0425609479","address":"\\u795e\\u6797\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0030\\u865f\\u0033\\u0030\\u0032\\u865f"}', '953076', '711', 'zh-tw', 1000),
(3128, 230, '15-230', 1, '神林', '{"number":"962988","shop":"\\u795e\\u6797","phone":"0425688503","address":"\\u795e\\u6797\\u5357\\u8def\\u0031\\u0034\\u0034\\u865f"}', '962988', '711', 'zh-tw', 1000),
(3129, 230, '15-230', 1, '雅潭', '{"number":"174372","shop":"\\u96c5\\u6f6d","phone":"0425685151","address":"\\u5b78\\u5e9c\\u8def\\u0032\\u0030\\u0039\\u865f"}', '174372', '711', 'zh-tw', 1000),
(3130, 230, '15-230', 1, '興府', '{"number":"159030","shop":"\\u8208\\u5e9c","phone":"0425677731","address":"\\u5b78\\u5e9c\\u8def\\u0035\\u0031\\u865f"}', '159030', '711', 'zh-tw', 1000),
(3131, 230, '15-230', 1, '環雅', '{"number":"112570","shop":"\\u74b0\\u96c5","phone":"0425607351","address":"\\u96c5\\u74b0\\u8def\\u4e8c\\u6bb5\\u0033\\u0032\\u0030\\u865f\\u4e00\\u6a13"}', '112570', '711', 'zh-tw', 1000),
(3132, 230, '15-230', 1, '環太', '{"number":"114691","shop":"\\u74b0\\u592a","phone":"0425674424","address":"\\u96c5\\u74b0\\u8def\\u4e00\\u6bb5\\u0033\\u0033\\u0030\\u865f"}', '114691', '711', 'zh-tw', 1000),
(3133, 230, '15-230', 1, '雅勝', '{"number":"968517","shop":"\\u96c5\\u52dd","phone":"0425692742","address":"\\u96c5\\u6f6d\\u8def\\u56db\\u6bb5\\u0034\\u0039\\u0031\\u865f"}', '968517', '711', 'zh-tw', 1000),
(3134, 230, '15-230', 1, '雅興', '{"number":"942283","shop":"\\u96c5\\u8208","phone":"0425686782","address":"\\u96c5\\u6f6d\\u8def\\u56db\\u6bb5\\u0038\\u0031\\u865f"}', '942283', '711', 'zh-tw', 1000),
(3135, 230, '15-230', 1, '通山', '{"number":"122913","shop":"\\u901a\\u5c71","phone":"0425604991","address":"\\u6c38\\u548c\\u8def\\u0031\\u0031\\u865f\\u0031\\u0038\\u865f"}', '122913', '711', 'zh-tw', 1000),
(3136, 230, '15-230', 1, '百達', '{"number":"910736","shop":"\\u767e\\u9054","phone":"0425651768","address":"\\u4e2d\\u6e05\\u8def\\u4e09\\u6bb5\\u0037\\u0032\\u0031\\u865f"}', '910736', '711', 'zh-tw', 1000),
(3137, 230, '15-230', 1, '豐碩', '{"number":"891682","shop":"\\u8c50\\u78a9","phone":"0425600634","address":"\\u4e2d\\u6e05\\u8def\\u56db\\u6bb5\\u0034\\u0036\\u865f"}', '891682', '711', 'zh-tw', 1000),
(3138, 230, '15-230', 1, '浤雅', '{"number":"184243","shop":"\\u6d64\\u96c5","phone":"0425604934","address":"\\u4e2d\\u6e05\\u8def\\u56db\\u6bb5\\u0037\\u0033\\u0037\\u865f"}', '184243', '711', 'zh-tw', 1000),
(3139, 230, '15-230', 1, '雙喜', '{"number":"900430","shop":"\\u96d9\\u559c","phone":"0425687934","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u0031\\u0036\\u0037\\u865f"}', '900430', '711', 'zh-tw', 1000),
(3140, 230, '15-230', 1, '亞和', '{"number":"151508","shop":"\\u4e9e\\u548c","phone":"0425602429","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u0034\\u0031\\u0030\\u865f"}', '151508', '711', 'zh-tw', 1000),
(3141, 230, '15-230', 1, '廣裕', '{"number":"186906","shop":"\\u5ee3\\u88d5","phone":"0425600961","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0035\\u865f"}', '186906', '711', 'zh-tw', 1000),
(3142, 230, '15-230', 1, '福廣', '{"number":"122418","shop":"\\u798f\\u5ee3","phone":"0425674255","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u865f\\u0033\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '122418', '711', 'zh-tw', 1000),
(3143, 231, '15-231', 1, '光園', '{"number":"923307","shop":"\\u5149\\u5712","phone":"0422800510","address":"\\u6771\\u5149\\u5712\\u8def\\u0031\\u0034\\u0032\\u865f"}', '923307', '711', 'zh-tw', 1000),
(3144, 231, '15-231', 1, '東泓', '{"number":"971742","shop":"\\u6771\\u6cd3","phone":"0422809073","address":"\\u6771\\u9580\\u91cc\\u6771\\u9580\\u8def\\u0031\\u0034\\u0030\\u865f"}', '971742', '711', 'zh-tw', 1000),
(3145, 231, '15-231', 1, '樂東', '{"number":"110172","shop":"\\u6a02\\u6771","phone":"0422139547","address":"\\u6771\\u82f1\\u8def\\u0033\\u0033\\u0031\\u865f"}', '110172', '711', 'zh-tw', 1000),
(3146, 231, '15-231', 1, '復大', '{"number":"976208","shop":"\\u5fa9\\u5927","phone":"0422201952","address":"\\u5fa9\\u8208\\u8def\\u56db\\u6bb5\\u0032\\u0033\\u0031\\u002d\\u0035\\u865f\\u0032\\u0033\\u0031\\u002d\\u0036\\u865f\\u0031\\u6a13"}', '976208', '711', 'zh-tw', 1000),
(3147, 231, '15-231', 1, '新立德', '{"number":"845612","shop":"\\u65b0\\u7acb\\u5fb7","phone":"0422202225","address":"\\u5fa9\\u8208\\u8def\\u56db\\u6bb5\\u0034\\u865f\\u53f0\\u4e2d\\u8def\\u0034\\u0035\\u865f"}', '845612', '711', 'zh-tw', 1000),
(3148, 231, '15-231', 1, '富仁', '{"number":"113425","shop":"\\u5bcc\\u4ec1","phone":"0422133717","address":"\\u5bcc\\u69ae\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '113425', '711', 'zh-tw', 1000),
(3149, 231, '15-231', 1, '建智', '{"number":"977256","shop":"\\u5efa\\u667a","phone":"0422817953","address":"\\u5efa\\u6210\\u8def\\u0036\\u0036\\u0038\\u865f"}', '977256', '711', 'zh-tw', 1000),
(3150, 231, '15-231', 1, '福明', '{"number":"913643","shop":"\\u798f\\u660e","phone":"0422135826","address":"\\u9032\\u5316\\u8def\\u0031\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '913643', '711', 'zh-tw', 1000),
(3151, 231, '15-231', 1, '漢溪', '{"number":"111142","shop":"\\u6f22\\u6eaa","phone":"0422139779","address":"\\u5341\\u7532\\u6771\\u8def\\u0035\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '111142', '711', 'zh-tw', 1000),
(3152, 231, '15-231', 1, '富麗', '{"number":"164571","shop":"\\u5bcc\\u9e97","phone":"0422123172","address":"\\u5341\\u7532\\u91cc\\u5341\\u7532\\u8def\\u0033\\u0039\\u0037\\u865f"}', '164571', '711', 'zh-tw', 1000),
(3153, 231, '15-231', 1, '世界', '{"number":"181565","shop":"\\u4e16\\u754c","phone":"0422134376","address":"\\u5341\\u7532\\u8def\\u0032\\u0030\\u0032\\u865f"}', '181565', '711', 'zh-tw', 1000),
(3154, 231, '15-231', 1, '中農', '{"number":"147129","shop":"\\u4e2d\\u8fb2","phone":"0422806276","address":"\\u53f0\\u4e2d\\u8def\\u0031\\u0039\\u0035\\u865f\\u0031\\u0039\\u0037\\u865f\\u0031\\u0039\\u0039\\u865f"}', '147129', '711', 'zh-tw', 1000),
(3155, 231, '15-231', 1, '新平智', '{"number":"972745","shop":"\\u65b0\\u5e73\\u667a","phone":"0422297551","address":"\\u65b0\\u5e84\\u91cc\\u5927\\u667a\\u8def\\u0034\\u0039\\u865f"}', '972745', '711', 'zh-tw', 1000),
(3156, 231, '15-231', 1, '樂業', '{"number":"872957","shop":"\\u6a02\\u696d","phone":"0422134683","address":"\\u6a02\\u696d\\u8def\\u0032\\u0035\\u0039\\u865f"}', '872957', '711', 'zh-tw', 1000),
(3157, 231, '15-231', 1, '綠都', '{"number":"164146","shop":"\\u7da0\\u90fd","phone":"0422123831","address":"\\u81ea\\u7531\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0039\\u002d\\u0031\\u865f"}', '164146', '711', 'zh-tw', 1000),
(3158, 231, '15-231', 1, '進德', '{"number":"958277","shop":"\\u9032\\u5fb7","phone":"0422138518","address":"\\u81ea\\u7531\\u8def\\u4e09\\u6bb5\\u0032\\u0032\\u0036\\u865f\\u53ca\\u9032\\u5fb7\\u8def\\u0037\\u0037\\u865f"}', '958277', '711', 'zh-tw', 1000),
(3159, 231, '15-231', 1, '東英', '{"number":"969026","shop":"\\u6771\\u82f1","phone":"0422139200","address":"\\u81ea\\u7531\\u8def\\u56db\\u6bb5\\u0033\\u0033\\u0039\\u865f"}', '969026', '711', 'zh-tw', 1000),
(3160, 232, '15-232', 1, '欣東雲', '{"number":"990329","shop":"\\u6b23\\u6771\\u96f2","phone":"0425871926","address":"\\u7b2c\\u4e94\\u6a6b\\u8857\\u0032\\u0038\\u865f\\u53ca\\u4e09\\u6c11\\u8857\\u0031\\u0036\\u0035\\u865f"}', '990329', '711', 'zh-tw', 1000),
(3161, 232, '15-232', 1, '欣東勢', '{"number":"187194","shop":"\\u6b23\\u6771\\u52e2","phone":"0425887812","address":"\\u7b2c\\u4e00\\u6a6b\\u8857\\u0031\\u0035\\u0033\\u865f\\u0031\\u0035\\u0035\\u865f"}', '187194', '711', 'zh-tw', 1000),
(3162, 232, '15-232', 1, '東關', '{"number":"142766","shop":"\\u6771\\u95dc","phone":"0425887433","address":"\\u6771\\u95dc\\u8def\\u4e03\\u6bb5\\u0031\\u0039\\u0031\\u865f\\u3001\\u65b0\\u76db\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '142766', '711', 'zh-tw', 1000),
(3163, 232, '15-232', 1, '大茅埔', '{"number":"131283","shop":"\\u5927\\u8305\\u57d4","phone":"0425852415","address":"\\u6771\\u95dc\\u8def\\u4e94\\u6bb5\\u0036\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '131283', '711', 'zh-tw', 1000),
(3164, 232, '15-232', 1, '粵西', '{"number":"155603","shop":"\\u7cb5\\u897f","phone":"0425877305","address":"\\u6771\\u5751\\u8def\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '155603', '711', 'zh-tw', 1000),
(3165, 232, '15-232', 1, '東泰', '{"number":"111865","shop":"\\u6771\\u6cf0","phone":"0425774323","address":"\\u6771\\u862d\\u8def\\u0034\\u0031\\u002d\\u0035\\u865f"}', '111865', '711', 'zh-tw', 1000),
(3166, 232, '15-232', 1, '東展', '{"number":"158369","shop":"\\u6771\\u5c55","phone":"0425886569","address":"\\u5357\\u5e73\\u91cc\\u8c50\\u52e2\\u8def\\u0033\\u0033\\u0036\\u865f"}', '158369', '711', 'zh-tw', 1000),
(3167, 233, '15-233', 1, '康泰', '{"number":"174394","shop":"\\u5eb7\\u6cf0","phone":"0425297271","address":"\\u5b89\\u5eb7\\u8def\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0033\\u0038\\u865f"}', '174394', '711', 'zh-tw', 1000),
(3168, 233, '15-233', 1, '保康', '{"number":"182199","shop":"\\u4fdd\\u5eb7","phone":"0425130718","address":"\\u4fdd\\u5eb7\\u8def\\u0031\\u0036\\u0030\\u865f"}', '182199', '711', 'zh-tw', 1000),
(3169, 233, '15-233', 1, '京泰', '{"number":"893725","shop":"\\u4eac\\u6cf0","phone":"0425123668","address":"\\u6210\\u529f\\u8def\\u0031\\u0039\\u0035\\u865f"}', '893725', '711', 'zh-tw', 1000),
(3170, 233, '15-233', 1, '新豐興', '{"number":"922304","shop":"\\u65b0\\u8c50\\u8208","phone":"0425297609","address":"\\u6771\\u52e2\\u91cc\\u4e2d\\u8208\\u8def\\u0035\\u0037\\u865f"}', '922304', '711', 'zh-tw', 1000),
(3171, 233, '15-233', 1, '豐東', '{"number":"800125","shop":"\\u8c50\\u6771","phone":"0425280312","address":"\\u8c50\\u6771\\u8def\\u0032\\u0031\\u0038\\u865f"}', '800125', '711', 'zh-tw', 1000),
(3172, 233, '15-233', 1, '新豐田', '{"number":"883913","shop":"\\u65b0\\u8c50\\u7530","phone":"0425151215","address":"\\u8c50\\u5357\\u8857\\u0031\\u0034\\u0035\\u865f"}', '883913', '711', 'zh-tw', 1000),
(3173, 233, '15-233', 1, '豐泰', '{"number":"160225","shop":"\\u8c50\\u6cf0","phone":"0425281143","address":"\\u8c50\\u52e2\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0036\\u865f"}', '160225', '711', 'zh-tw', 1000),
(3174, 233, '15-233', 1, '豐尚', '{"number":"981657","shop":"\\u8c50\\u5c1a","phone":"0425158471","address":"\\u8c50\\u52e2\\u8def\\u4e8c\\u6bb5\\u0036\\u0038\\u0030\\u865f\\u4e00\\u6a13"}', '981657', '711', 'zh-tw', 1000),
(3175, 233, '15-233', 1, '豐贊', '{"number":"131180","shop":"\\u8c50\\u8d0a","phone":"0425721074","address":"\\u8c50\\u52e2\\u8def\\u4e8c\\u6bb5\\u0039\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '131180', '711', 'zh-tw', 1000),
(3176, 233, '15-233', 1, '翁子', '{"number":"113333","shop":"\\u7fc1\\u5b50","phone":"0425132013","address":"\\u8c50\\u52e2\\u8def\\u4e00\\u6bb5\\u0036\\u0036\\u0039\\u865f\\u4e00\\u6a13"}', '113333', '711', 'zh-tw', 1000),
(3177, 233, '15-233', 1, '豐科', '{"number":"142216","shop":"\\u8c50\\u79d1","phone":"0425251821","address":"\\u8c50\\u539f\\u5927\\u9053\\u4e03\\u6bb5\\u0033\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '142216', '711', 'zh-tw', 1000),
(3178, 233, '15-233', 1, '東洲', '{"number":"953755","shop":"\\u6771\\u6d32","phone":"0425285663","address":"\\u8c50\\u539f\\u5927\\u9053\\u4e03\\u6bb5\\u0034\\u0038\\u0038\\u865f"}', '953755', '711', 'zh-tw', 1000),
(3179, 233, '15-233', 1, '瑞慶', '{"number":"967765","shop":"\\u745e\\u6176","phone":"0425293116","address":"\\u8c50\\u539f\\u5927\\u9053\\u4e09\\u6bb5\\u0032\\u0036\\u0031\\u865f"}', '967765', '711', 'zh-tw', 1000),
(3180, 233, '15-233', 1, '豐環', '{"number":"952235","shop":"\\u8c50\\u74b0","phone":"0425254624","address":"\\u8c50\\u539f\\u5927\\u9053\\u4e00\\u6bb5\\u0033\\u0037\\u0030\\u865f"}', '952235', '711', 'zh-tw', 1000),
(3181, 233, '15-233', 1, '豐勇', '{"number":"992222","shop":"\\u8c50\\u52c7","phone":"0425156415","address":"\\u8c50\\u4e2d\\u8def\\u0031\\u0032\\u0035\\u865f\\u0031\\u0032\\u0037\\u865f\\u0031\\u0032\\u0039\\u865f"}', '992222', '711', 'zh-tw', 1000),
(3182, 233, '15-233', 1, '豐信', '{"number":"854742","shop":"\\u8c50\\u4fe1","phone":"0425270791","address":"\\u5fa9\\u8208\\u8def\\u0037\\u0035\\u865f\\u4fe1\\u7fa9\\u8857\\u0037\\u0037\\u865f"}', '854742', '711', 'zh-tw', 1000),
(3183, 233, '15-233', 1, '水豐', '{"number":"881814","shop":"\\u6c34\\u8c50","phone":"0425390920","address":"\\u942e\\u6751\\u8def\\u0034\\u0036\\u0032\\u865f"}', '881814', '711', 'zh-tw', 1000),
(3184, 233, '15-233', 1, '豐村', '{"number":"122809","shop":"\\u8c50\\u6751","phone":"0425297481","address":"\\u5357\\u6751\\u91cc\\u8c50\\u6771\\u8def\\u0034\\u0031\\u0032\\u865f\\u0034\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '122809', '711', 'zh-tw', 1000),
(3185, 233, '15-233', 1, '新豐喜', '{"number":"982292","shop":"\\u65b0\\u8c50\\u559c","phone":"0425298405","address":"\\u5357\\u967d\\u8def\\u0031\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '982292', '711', 'zh-tw', 1000),
(3186, 233, '15-233', 1, '茂陽', '{"number":"891914","shop":"\\u8302\\u967d","phone":"0425268191","address":"\\u5357\\u967d\\u8def\\u0032\\u0039\\u0039\\u4e4b\\u0038\\u865f\\u0032\\u0039\\u0039\\u4e4b\\u0039\\u865f"}', '891914', '711', 'zh-tw', 1000),
(3187, 233, '15-233', 1, '豐陽', '{"number":"161620","shop":"\\u8c50\\u967d","phone":"0425287340","address":"\\u5357\\u967d\\u8def\\u0033\\u0037\\u0032\\u865f"}', '161620', '711', 'zh-tw', 1000),
(3188, 233, '15-233', 1, '萳陽', '{"number":"951586","shop":"\\u8433\\u967d","phone":"0425297014","address":"\\u5357\\u967d\\u8def\\u0034\\u0038\\u0030\\u865f"}', '951586', '711', 'zh-tw', 1000),
(3189, 233, '15-233', 1, '欣三豐', '{"number":"197696","shop":"\\u6b23\\u4e09\\u8c50","phone":"0425285477","address":"\\u4e09\\u8c50\\u8def\\u0038\\u0039\\u3001\\u0039\\u0033\\u3001\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '197696', '711', 'zh-tw', 1000),
(3190, 233, '15-233', 1, '三豐路', '{"number":"997766","shop":"\\u4e09\\u8c50\\u8def","phone":"0425247784","address":"\\u4e09\\u8c50\\u8def\\u0039\\u0030\\u0039\\u865f"}', '997766', '711', 'zh-tw', 1000),
(3191, 233, '15-233', 1, '豐后', '{"number":"886392","shop":"\\u8c50\\u540e","phone":"0425220527","address":"\\u4e09\\u8c50\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0036\\u3001\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '886392', '711', 'zh-tw', 1000),
(3192, 233, '15-233', 1, '豐王', '{"number":"141316","shop":"\\u8c50\\u738b","phone":"0425298813","address":"\\u4e09\\u8c50\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '141316', '711', 'zh-tw', 1000),
(3193, 233, '15-233', 1, '豐三民', '{"number":"132459","shop":"\\u8c50\\u4e09\\u6c11","phone":"0425220935","address":"\\u4e09\\u6c11\\u8def\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '132459', '711', 'zh-tw', 1000),
(3194, 233, '15-233', 1, '新豐民', '{"number":"883326","shop":"\\u65b0\\u8c50\\u6c11","phone":"0425209750","address":"\\u4e09\\u6c11\\u8def\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '883326', '711', 'zh-tw', 1000),
(3195, 233, '15-233', 1, '葫蘆墩', '{"number":"890036","shop":"\\u846b\\u8606\\u58a9","phone":"0425250701","address":"\\u6c34\\u6e90\\u8def\\u0031\\u0032\\u0037\\u002d\\u0031\\u865f"}', '890036', '711', 'zh-tw', 1000),
(3196, 233, '15-233', 1, '豐原道', '{"number":"954138","shop":"\\u8c50\\u539f\\u9053","phone":"0425151463","address":"\\u6c34\\u6e90\\u8def\\u0033\\u0030\\u0037\\u865f"}', '954138', '711', 'zh-tw', 1000),
(3197, 233, '15-233', 1, '直興', '{"number":"943851","shop":"\\u76f4\\u8208","phone":"0425154228","address":"\\u6c34\\u6e90\\u8def\\u0036\\u0039\\u0035\\u865f"}', '943851', '711', 'zh-tw', 1000),
(3198, 233, '15-233', 1, '瑞彬', '{"number":"890003","shop":"\\u745e\\u5f6c","phone":"0425281288","address":"\\u897f\\u5b89\\u8857\\u0036\\u0038\\u865f"}', '890003', '711', 'zh-tw', 1000),
(3199, 233, '15-233', 1, '晉豐', '{"number":"125118","shop":"\\u6649\\u8c50","phone":"0425342864","address":"\\u897f\\u52e2\\u8def\\u0034\\u0032\\u0035\\u865f"}', '125118', '711', 'zh-tw', 1000),
(3200, 233, '15-233', 1, '豐鑫', '{"number":"119803","shop":"\\u8c50\\u946b","phone":"0425235475","address":"\\u5411\\u967d\\u8def\\u0032\\u0037\\u0036\\u865f"}', '119803', '711', 'zh-tw', 1000),
(3201, 233, '15-233', 1, '甜心', '{"number":"116790","shop":"\\u751c\\u5fc3","phone":"0425273695","address":"\\u5713\\u74b0\\u6771\\u8def\\u0031\\u0036\\u0038\\u865f"}', '116790', '711', 'zh-tw', 1000),
(3202, 233, '15-233', 1, '新豐寶', '{"number":"972929","shop":"\\u65b0\\u8c50\\u5bf6","phone":"0425299253","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0033\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '972929', '711', 'zh-tw', 1000),
(3203, 233, '15-233', 1, '豐光', '{"number":"197320","shop":"\\u8c50\\u5149","phone":"0425254437","address":"\\u4e2d\\u5c71\\u8def\\u0035\\u0038\\u0031\\u865f\\u0035\\u0038\\u0033\\u865f"}', '197320', '711', 'zh-tw', 1000),
(3204, 233, '15-233', 1, '瑞興', '{"number":"187747","shop":"\\u745e\\u8208","phone":"0425281213","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0039\\u0039\\u865f"}', '187747', '711', 'zh-tw', 1000),
(3205, 233, '15-233', 1, '京達', '{"number":"910530","shop":"\\u4eac\\u9054","phone":"0425158358","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0030\\u0035\\u865f"}', '910530', '711', 'zh-tw', 1000),
(3206, 233, '15-233', 1, '京展', '{"number":"903288","shop":"\\u4eac\\u5c55","phone":"0425158368","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '903288', '711', 'zh-tw', 1000),
(3207, 234, '15-234', 1, '和平', '{"number":"193993","shop":"\\u548c\\u5e73","phone":"0425943858","address":"\\u6771\\u95dc\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0031\\u4e4b\\u0032\\u865f"}', '193993', '711', 'zh-tw', 1000),
(3208, 234, '15-234', 1, '欣谷關', '{"number":"982339","shop":"\\u6b23\\u8c37\\u95dc","phone":"0425950389","address":"\\u6771\\u95dc\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0035\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '982339', '711', 'zh-tw', 1000),
(3209, 234, '15-234', 1, '環山', '{"number":"180632","shop":"\\u74b0\\u5c71","phone":"0425802573","address":"\\u4e2d\\u8208\\u8def\\u4e09\\u6bb5\\u0036\\u0034\\u002d\\u0035\\u865f\\u002e\\u0036\\u0034\\u002d\\u0036\\u865f"}', '180632', '711', 'zh-tw', 1000),
(3210, 234, '15-234', 1, '梨山', '{"number":"183170","shop":"\\u68a8\\u5c71","phone":"0425981890","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u865f\\u0031\\u6a13"}', '183170', '711', 'zh-tw', 1000),
(3211, 235, '15-235', 1, '福豐', '{"number":"950251","shop":"\\u798f\\u8c50","phone":"0425588374","address":"\\u798f\\u7f8e\\u8def\\u0031\\u0037\\u865f"}', '950251', '711', 'zh-tw', 1000),
(3212, 235, '15-235', 1, '美晶', '{"number":"180894","shop":"\\u7f8e\\u6676","phone":"0425581875","address":"\\u540e\\u79d1\\u5357\\u8def\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '180894', '711', 'zh-tw', 1000),
(3213, 235, '15-235', 1, '后糖', '{"number":"981325","shop":"\\u540e\\u7cd6","phone":"0425584498","address":"\\u7532\\u540e\\u8def\\u0038\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '981325', '711', 'zh-tw', 1000),
(3214, 235, '15-235', 1, '后旺', '{"number":"192842","shop":"\\u540e\\u65fa","phone":"0425587918","address":"\\u7532\\u540e\\u8def\\u4e8c\\u6bb5\\u0037\\u0034\\u0032\\u865f\\u4e00\\u6a13"}', '192842', '711', 'zh-tw', 1000),
(3215, 235, '15-235', 1, '后東', '{"number":"900359","shop":"\\u540e\\u6771","phone":"0425570647","address":"\\u7532\\u540e\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '900359', '711', 'zh-tw', 1000),
(3216, 235, '15-235', 1, '后興', '{"number":"112134","shop":"\\u540e\\u8208","phone":"0425589357","address":"\\u7532\\u540e\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '112134', '711', 'zh-tw', 1000),
(3217, 235, '15-235', 1, '后綜', '{"number":"865823","shop":"\\u540e\\u7d9c","phone":"0425575290","address":"\\u7532\\u540e\\u8def\\u4e00\\u6bb5\\u0033\\u0034\\u0039\\u3001\\u0033\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '865823', '711', 'zh-tw', 1000),
(3218, 235, '15-235', 1, '后里廠', '{"number":"113252","shop":"\\u540e\\u91cc\\u5ee0","phone":"0425584367","address":"\\u99ac\\u5834\\u8def\\u0031\\u865f"}', '113252', '711', 'zh-tw', 1000),
(3219, 235, '15-235', 1, '后里棧', '{"number":"184357","shop":"\\u540e\\u91cc\\u68e7","phone":"0425587516","address":"\\u99ac\\u5834\\u8def\\u0033\\u0030\\u0030\\u865f\\u0042\\u0031\\u6a13"}', '184357', '711', 'zh-tw', 1000),
(3220, 235, '15-235', 1, '后冠', '{"number":"966913","shop":"\\u540e\\u51a0","phone":"0425581232","address":"\\u6c11\\u751f\\u8def\\u0031\\u865f"}', '966913', '711', 'zh-tw', 1000),
(3221, 235, '15-235', 1, '月眉', '{"number":"875141","shop":"\\u6708\\u7709","phone":"0425570109","address":"\\u6c11\\u751f\\u8def\\u0032\\u0032\\u0036\\u865f"}', '875141', '711', 'zh-tw', 1000),
(3222, 235, '15-235', 1, '后寶', '{"number":"951298","shop":"\\u540e\\u5bf6","phone":"0425580374","address":"\\u4e09\\u8c50\\u8def\\u0031\\u0031\\u0033\\u4e4b\\u0032\\u0034\\u865f\\u0032\\u0035\\u865f"}', '951298', '711', 'zh-tw', 1000),
(3223, 235, '15-235', 1, '美光', '{"number":"142478","shop":"\\u7f8e\\u5149","phone":"0425584700","address":"\\u4e09\\u8c50\\u8def\\u0034\\u0032\\u0039\\u4e4b\\u0031\\u865f"}', '142478', '711', 'zh-tw', 1000),
(3224, 235, '15-235', 1, '寶利旺', '{"number":"893150","shop":"\\u5bf6\\u5229\\u65fa","phone":"0425585834","address":"\\u4e09\\u8c50\\u8def\\u4e09\\u6bb5\\u0038\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '893150', '711', 'zh-tw', 1000),
(3225, 235, '15-235', 1, '彩豐', '{"number":"954389","shop":"\\u5f69\\u8c50","phone":"0425589538","address":"\\u4e09\\u8c50\\u8def\\u4e94\\u6bb5\\u0035\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '954389', '711', 'zh-tw', 1000),
(3226, 235, '15-235', 1, '久豐', '{"number":"160199","shop":"\\u4e45\\u8c50","phone":"0425588646","address":"\\u4e09\\u5149\\u8def\\u0033\\u0036\\u865f"}', '160199', '711', 'zh-tw', 1000),
(3227, 236, '15-236', 1, '理想', '{"number":"147945","shop":"\\u7406\\u60f3","phone":"0426529013","address":"\\u570b\\u969b\\u8857\\u0031\\u0035\\u0035\\u865f\\u0031\\u0035\\u0037\\u865f\\u0031\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '147945', '711', 'zh-tw', 1000),
(3228, 236, '15-236', 1, '中龍', '{"number":"188290","shop":"\\u4e2d\\u9f8d","phone":"0426396481","address":"\\u9f8d\\u660c\\u8def\\u0031\\u0030\\u0030\\u865f"}', '188290', '711', 'zh-tw', 1000),
(3229, 236, '15-236', 1, '鈦譜', '{"number":"121345","shop":"\\u9226\\u8b5c","phone":"0426396273","address":"\\u9f8d\\u9580\\u8def\\u0034\\u0038\\u4e4b\\u0031\\u0035\\u865f"}', '121345', '711', 'zh-tw', 1000),
(3230, 236, '15-236', 1, '龍津', '{"number":"900898","shop":"\\u9f8d\\u6d25","phone":"0426398228","address":"\\u4e09\\u5fb7\\u91cc\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\u0034\\u865f"}', '900898', '711', 'zh-tw', 1000),
(3231, 236, '15-236', 1, '鑫井源', '{"number":"968838","shop":"\\u946b\\u4e95\\u6e90","phone":"0426365266","address":"\\u6c99\\u7530\\u8def\\u516d\\u6bb5\\u0033\\u0032\\u0033\\u865f"}', '968838', '711', 'zh-tw', 1000),
(3232, 236, '15-236', 1, '龍祥', '{"number":"891501","shop":"\\u9f8d\\u7965","phone":"0426366226","address":"\\u6c99\\u7530\\u8def\\u56db\\u6bb5\\u0036\\u0033\\u0036\\u865f"}', '891501', '711', 'zh-tw', 1000),
(3233, 236, '15-236', 1, '龍億', '{"number":"184106","shop":"\\u9f8d\\u5104","phone":"0426369314","address":"\\u6c99\\u7530\\u8def\\u4e94\\u6bb5\\u0031\\u0034\\u0033\\u865f"}', '184106', '711', 'zh-tw', 1000),
(3234, 236, '15-236', 1, '新庄', '{"number":"978374","shop":"\\u65b0\\u5e84","phone":"0426525538","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e94\\u6bb5\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '978374', '711', 'zh-tw', 1000),
(3235, 236, '15-236', 1, '東海', '{"number":"185419","shop":"\\u6771\\u6d77","phone":"0426315975","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e94\\u6bb5\\u0033\\u5df7\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '185419', '711', 'zh-tw', 1000),
(3236, 236, '15-236', 1, '學園', '{"number":"992794","shop":"\\u5b78\\u5712","phone":"0426315902","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e94\\u6bb5\\u0033\\u5df7\\u0036\\u0032\\u5f04\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '992794', '711', 'zh-tw', 1000),
(3237, 236, '15-236', 1, '龍田', '{"number":"123086","shop":"\\u9f8d\\u7530","phone":"0426307486","address":"\\u7530\\u4e2d\\u91cc\\u81e8\\u6e2f\\u6771\\u8def\\u4e00\\u6bb5\\u0037\\u0035\\u865f"}', '123086', '711', 'zh-tw', 1000),
(3238, 236, '15-236', 1, '廣洽', '{"number":"121301","shop":"\\u5ee3\\u6d3d","phone":"0426398952","address":"\\u897f\\u6ff1\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0037\\u865f"}', '121301', '711', 'zh-tw', 1000),
(3239, 236, '15-236', 1, '龍峰', '{"number":"165600","shop":"\\u9f8d\\u5cf0","phone":"0426520553","address":"\\u5411\\u4e0a\\u8def\\u516d\\u6bb5\\u0032\\u0039\\u0038\\u865f"}', '165600', '711', 'zh-tw', 1000),
(3240, 236, '15-236', 1, '龍新', '{"number":"976736","shop":"\\u9f8d\\u65b0","phone":"0426527270","address":"\\u65b0\\u8208\\u8def\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '976736', '711', 'zh-tw', 1000),
(3241, 236, '15-236', 1, '新仁', '{"number":"141291","shop":"\\u65b0\\u4ec1","phone":"0426318428","address":"\\u65b0\\u8208\\u8def\\u0034\\u0030\\u4e4b\\u0033\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '141291', '711', 'zh-tw', 1000),
(3242, 236, '15-236', 1, '龍井', '{"number":"170783","shop":"\\u9f8d\\u4e95","phone":"0426320205","address":"\\u904a\\u5712\\u5357\\u8def\\u0032\\u0031\\u0030\\u865f"}', '170783', '711', 'zh-tw', 1000),
(3243, 236, '15-236', 1, '東風', '{"number":"988061","shop":"\\u6771\\u98a8","phone":"0426521941","address":"\\u9060\\u6771\\u8857\\u0033\\u865f"}', '988061', '711', 'zh-tw', 1000),
(3244, 236, '15-236', 1, '龍合', '{"number":"131250","shop":"\\u9f8d\\u5408","phone":"0426366931","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u865f"}', '131250', '711', 'zh-tw', 1000),
(3245, 236, '15-236', 1, '巨龍', '{"number":"863218","shop":"\\u5de8\\u9f8d","phone":"0426301570","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\u0035\\u0031\\u865f"}', '863218', '711', 'zh-tw', 1000),
(3246, 237, '15-237', 1, '無尾熊', '{"number":"922913","shop":"\\u7121\\u5c3e\\u718a","phone":"0422605412","address":"\\u5fb7\\u5bcc\\u8def\\u0037\\u0033\\u865f"}', '922913', '711', 'zh-tw', 1000),
(3247, 237, '15-237', 1, '宜寧', '{"number":"197674","shop":"\\u5b9c\\u5be7","phone":"0422605645","address":"\\u6771\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '197674', '711', 'zh-tw', 1000),
(3248, 237, '15-237', 1, '鑫廣', '{"number":"200664","shop":"\\u946b\\u5ee3","phone":"0422650986","address":"\\u798f\\u9806\\u91cc\\u5fe0\\u660e\\u5357\\u8def\\u0037\\u0038\\u0037\\u865f"}', '200664', '711', 'zh-tw', 1000),
(3249, 237, '15-237', 1, '生活', '{"number":"114303","shop":"\\u751f\\u6d3b","phone":"0422603843","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0037\\u0031\\u5df7\\u0037\\u0030\\u865f\\u0031\\u6a13\\u53ca\\u5fe0\\u660e\\u5357\\u8def\\u0037\\u0033\\u0030\\u5df7\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '114303', '711', 'zh-tw', 1000),
(3250, 237, '15-237', 1, '民主', '{"number":"186700","shop":"\\u6c11\\u4e3b","phone":"0422234962","address":"\\u5fa9\\u8208\\u8def\\u4e09\\u6bb5\\u0033\\u0032\\u0032\\u865f\\u0033\\u0032\\u0034\\u865f\\u0033\\u0032\\u0036\\u865f"}', '186700', '711', 'zh-tw', 1000),
(3251, 237, '15-237', 1, '義興', '{"number":"151140","shop":"\\u7fa9\\u8208","phone":"0422602308","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0038\\u865f"}', '151140', '711', 'zh-tw', 1000),
(3252, 237, '15-237', 1, '高工', '{"number":"174822","shop":"\\u9ad8\\u5de5","phone":"0422634012","address":"\\u9ad8\\u5de5\\u8def\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '174822', '711', 'zh-tw', 1000),
(3253, 237, '15-237', 1, '台火', '{"number":"130811","shop":"\\u53f0\\u706b","phone":"0422600615","address":"\\u9ad8\\u5de5\\u8def\\u0033\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '130811', '711', 'zh-tw', 1000),
(3254, 237, '15-237', 1, '長億', '{"number":"991861","shop":"\\u9577\\u5104","phone":"0422653820","address":"\\u5de5\\u5b78\\u8def\\u0031\\u0030\\u0038\\u865f"}', '991861', '711', 'zh-tw', 1000),
(3255, 237, '15-237', 1, '大時代', '{"number":"136130","shop":"\\u5927\\u6642\\u4ee3","phone":"0422609203","address":"\\u5de5\\u5b78\\u8def\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f"}', '136130', '711', 'zh-tw', 1000),
(3256, 237, '15-237', 1, '興惠', '{"number":"181624","shop":"\\u8208\\u60e0","phone":"0422850793","address":"\\u570b\\u5149\\u8def\\u0032\\u0035\\u0030\\u865f"}', '181624', '711', 'zh-tw', 1000),
(3257, 237, '15-237', 1, '興大', '{"number":"127583","shop":"\\u8208\\u5927","phone":"0422814276","address":"\\u570b\\u5149\\u8def\\u0033\\u0030\\u0031\\u865f"}', '127583', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(3258, 237, '15-237', 1, '新國光', '{"number":"118796","shop":"\\u65b0\\u570b\\u5149","phone":"0422203755","address":"\\u570b\\u5149\\u8def\\u0038\\u0032\\u53ca\\u0038\\u0034\\u865f\\u003b\\u611b\\u570b\\u8857\\u0036\\u0039\\u865f"}', '118796', '711', 'zh-tw', 1000),
(3259, 237, '15-237', 1, '聯信', '{"number":"186054","shop":"\\u806f\\u4fe1","phone":"0422853023","address":"\\u5efa\\u6210\\u8def\\u0031\\u0031\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '186054', '711', 'zh-tw', 1000),
(3260, 237, '15-237', 1, '百祐', '{"number":"166027","shop":"\\u767e\\u7950","phone":"0422651641","address":"\\u7f8e\\u6751\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0038\\u865f\\u0031\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '166027', '711', 'zh-tw', 1000),
(3261, 237, '15-237', 1, '光輝', '{"number":"118969","shop":"\\u5149\\u8f1d","phone":"0423754586","address":"\\u7f8e\\u6751\\u8def\\u4e8c\\u6bb5\\u0037\\u0039\\u865f\\u0038\\u0031\\u865f\\u0031\\u0046"}', '118969', '711', 'zh-tw', 1000),
(3262, 237, '15-237', 1, '明樓', '{"number":"990765","shop":"\\u660e\\u6a13","phone":"0422809432","address":"\\u660e\\u5fb7\\u8857\\u0038\\u0034\\u865f\\u0028\\u6821\\u5167\\u5e97\\u0029"}', '990765', '711', 'zh-tw', 1000),
(3263, 237, '15-237', 1, '南美', '{"number":"920892","shop":"\\u5357\\u7f8e","phone":"0422650922","address":"\\u5357\\u5e73\\u8def\\u0031\\u0038\\u0032\\u865f"}', '920892', '711', 'zh-tw', 1000),
(3264, 237, '15-237', 1, '雅典', '{"number":"950963","shop":"\\u96c5\\u5178","phone":"0423787407","address":"\\u4e09\\u6c11\\u897f\\u8def\\u0033\\u0037\\u0037\\u865f\\u897f\\u5ddd\\u4e00\\u8def\\u0031\\u865f"}', '950963', '711', 'zh-tw', 1000),
(3265, 237, '15-237', 1, '慶樹', '{"number":"982225","shop":"\\u6176\\u6a39","phone":"0422609823","address":"\\u6a39\\u5fb7\\u91cc\\u5927\\u6176\\u8857\\u4e8c\\u6bb5\\u0033\\u0036\\u865f"}', '982225', '711', 'zh-tw', 1000),
(3266, 237, '15-237', 1, '復慶', '{"number":"860541","shop":"\\u5fa9\\u6176","phone":"0422638927","address":"\\u6a39\\u7fa9\\u91cc\\u5927\\u6176\\u8857\\u4e8c\\u6bb5\\u0035\\u002d\\u0032\\u865f"}', '860541', '711', 'zh-tw', 1000),
(3267, 237, '15-237', 1, '福田', '{"number":"912743","shop":"\\u798f\\u7530","phone":"0422612900","address":"\\u6587\\u5fc3\\u5357\\u8def\\u0038\\u0038\\u0035\\u865f"}', '912743', '711', 'zh-tw', 1000),
(3268, 237, '15-237', 1, '權貴', '{"number":"187448","shop":"\\u6b0a\\u8cb4","phone":"0422617268","address":"\\u4e94\\u6b0a\\u5357\\u8def\\u0031\\u0038\\u0039\\u865f"}', '187448', '711', 'zh-tw', 1000),
(3269, 237, '15-237', 1, '詠權', '{"number":"112237","shop":"\\u8a60\\u6b0a","phone":"0422655461","address":"\\u4e94\\u6b0a\\u5357\\u8def\\u0035\\u0032\\u0037\\u865f"}', '112237', '711', 'zh-tw', 1000),
(3270, 237, '15-237', 1, '大東家', '{"number":"171074","shop":"\\u5927\\u6771\\u5bb6","phone":"0422214273","address":"\\u65b0\\u69ae\\u91cc\\u5fa9\\u8208\\u8def\\u4e09\\u6bb5\\u0031\\u0034\\u0030\\u865f"}', '171074', '711', 'zh-tw', 1000),
(3271, 237, '15-237', 1, '頂橋', '{"number":"911290","shop":"\\u9802\\u6a4b","phone":"0422857908","address":"\\u8208\\u5927\\u8def\\u0033\\u0033\\u0038\\u865f\\u0033\\u0034\\u0030\\u865f"}', '911290', '711', 'zh-tw', 1000),
(3272, 237, '15-237', 1, '興學', '{"number":"118545","shop":"\\u8208\\u5b78","phone":"0422857397","address":"\\u5b78\\u5e9c\\u8def\\u0036\\u0034\\u865f"}', '118545', '711', 'zh-tw', 1000),
(3273, 237, '15-237', 1, '新學和', '{"number":"112628","shop":"\\u65b0\\u5b78\\u548c","phone":"0422856891","address":"\\u5b78\\u5e9c\\u8def\\u0037\\u0030\\u865f\\u0037\\u0030\\u002d\\u0031\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '112628', '711', 'zh-tw', 1000),
(3274, 237, '15-237', 1, '明興', '{"number":"181244","shop":"\\u660e\\u8208","phone":"0422654252","address":"\\u5fe0\\u660e\\u5357\\u8def\\u0039\\u0032\\u0039\\u865f"}', '181244', '711', 'zh-tw', 1000),
(3275, 238, '15-238', 1, '墩陽', '{"number":"891903","shop":"\\u58a9\\u967d","phone":"0423289729","address":"\\u5927\\u58a9\\u0031\\u0030\\u8857\\u0032\\u0035\\u0034\\u865f\\u4e4b\\u0031\\u6a13"}', '891903', '711', 'zh-tw', 1000),
(3276, 238, '15-238', 1, '向心', '{"number":"846486","shop":"\\u5411\\u5fc3","phone":"0424751265","address":"\\u5927\\u58a9\\u0036\\u8857\\u0032\\u0038\\u0034\\u865f"}', '846486', '711', 'zh-tw', 1000),
(3277, 238, '15-238', 1, '聚懋', '{"number":"150745","shop":"\\u805a\\u61cb","phone":"0424750835","address":"\\u5927\\u58a9\\u8def\\u0032\\u0038\\u0037\\u865f\\u0032\\u0038\\u0039\\u865f\\u4e00\\u6a13"}', '150745', '711', 'zh-tw', 1000),
(3278, 238, '15-238', 1, '墩富', '{"number":"162955","shop":"\\u58a9\\u5bcc","phone":"0423207553","address":"\\u5927\\u58a9\\u8def\\u0035\\u0037\\u0032\\u865f"}', '162955', '711', 'zh-tw', 1000),
(3279, 238, '15-238', 1, '墩業', '{"number":"148915","shop":"\\u58a9\\u696d","phone":"0423275693","address":"\\u5927\\u58a9\\u8def\\u0037\\u0031\\u0037\\u002d\\u0035\\u865f"}', '148915', '711', 'zh-tw', 1000),
(3280, 238, '15-238', 1, '鄉林', '{"number":"921116","shop":"\\u9109\\u6797","phone":"0423107226","address":"\\u5927\\u696d\\u8def\\u0031\\u0037\\u0037\\u865f"}', '921116', '711', 'zh-tw', 1000),
(3281, 238, '15-238', 1, '新墩興', '{"number":"931294","shop":"\\u65b0\\u58a9\\u8208","phone":"0424712169","address":"\\u6771\\u8208\\u8def\\u4e8c\\u6bb5\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '931294', '711', 'zh-tw', 1000),
(3282, 238, '15-238', 1, '新豐功', '{"number":"996752","shop":"\\u65b0\\u8c50\\u529f","phone":"0423862140","address":"\\u8c50\\u6a02\\u91cc\\u6c38\\u6625\\u6771\\u8def\\u0038\\u0036\\u0030\\u865f"}', '996752', '711', 'zh-tw', 1000),
(3283, 238, '15-238', 1, '工權', '{"number":"922658","shop":"\\u5de5\\u6b0a","phone":"0423553123","address":"\\u5de5\\u696d\\u5340\\u5341\\u516b\\u8def\\u0033\\u0031\\u002d\\u0031\\u865f"}', '922658', '711', 'zh-tw', 1000),
(3284, 238, '15-238', 1, '墩正', '{"number":"980322","shop":"\\u58a9\\u6b63","phone":"0422510497","address":"\\u6e9d\\u5898\\u91cc\\u5927\\u58a9\\u5341\\u4e00\\u8857\\u0033\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '980322', '711', 'zh-tw', 1000),
(3285, 238, '15-238', 1, '惠文', '{"number":"131711","shop":"\\u60e0\\u6587","phone":"0422546680","address":"\\u6cb3\\u5357\\u8def\\u56db\\u6bb5\\u0032\\u0032\\u0036\\u865f\\u0032\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '131711', '711', 'zh-tw', 1000),
(3286, 238, '15-238', 1, '瑞陽', '{"number":"186685","shop":"\\u745e\\u967d","phone":"0422510797","address":"\\u6cb3\\u5357\\u8def\\u56db\\u6bb5\\u0034\\u0034\\u0032\\u865f\\u0034\\u0034\\u0036\\u865f\\u0031\\u002c\\u0032\\u6a13"}', '186685', '711', 'zh-tw', 1000),
(3287, 238, '15-238', 1, '黎明東', '{"number":"119065","shop":"\\u9ece\\u660e\\u6771","phone":"0423810985","address":"\\u9ece\\u660e\\u6771\\u8857\\u0032\\u0032\\u865f"}', '119065', '711', 'zh-tw', 1000),
(3288, 238, '15-238', 1, '惠中', '{"number":"167868","shop":"\\u60e0\\u4e2d","phone":"0422515764","address":"\\u9ece\\u660e\\u8def\\u4e8c\\u6bb5\\u0034\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '167868', '711', 'zh-tw', 1000),
(3289, 238, '15-238', 1, '豐采', '{"number":"855631","shop":"\\u8c50\\u91c7","phone":"0422598297","address":"\\u9ece\\u660e\\u8def\\u4e8c\\u6bb5\\u0035\\u0030\\u0036\\u865f\\u0035\\u0030\\u0036\\u002d\\u0031\\u865f"}', '855631', '711', 'zh-tw', 1000),
(3290, 238, '15-238', 1, '萬文', '{"number":"909149","shop":"\\u842c\\u6587","phone":"0423840027","address":"\\u9ece\\u660e\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0033\\u0033\\u865f"}', '909149', '711', 'zh-tw', 1000),
(3291, 238, '15-238', 1, '精田', '{"number":"993096","shop":"\\u7cbe\\u7530","phone":"0424700590","address":"\\u9ece\\u660e\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0032\\u865f"}', '993096', '711', 'zh-tw', 1000),
(3292, 238, '15-238', 1, '精科', '{"number":"174903","shop":"\\u7cbe\\u79d1","phone":"0423807963","address":"\\u5dba\\u6771\\u8def\\u0033\\u0036\\u0038\\u865f"}', '174903', '711', 'zh-tw', 1000),
(3293, 238, '15-238', 1, '文嶺', '{"number":"965312","shop":"\\u6587\\u5dba","phone":"0423805911","address":"\\u5dba\\u6771\\u8def\\u0038\\u0030\\u0036\\u865f"}', '965312', '711', 'zh-tw', 1000),
(3294, 238, '15-238', 1, '墩南', '{"number":"958831","shop":"\\u58a9\\u5357","phone":"0424731595","address":"\\u5357\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '958831', '711', 'zh-tw', 1000),
(3295, 238, '15-238', 1, '南屯', '{"number":"185350","shop":"\\u5357\\u5c6f","phone":"0423891441","address":"\\u5357\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u0030\\u865f"}', '185350', '711', 'zh-tw', 1000),
(3296, 238, '15-238', 1, '鑫文山', '{"number":"194804","shop":"\\u946b\\u6587\\u5c71","phone":"0423552948","address":"\\u6587\\u5c71\\u8def\\u0032\\u0030\\u865f\\u548c\\u0032\\u0032\\u865f"}', '194804', '711', 'zh-tw', 1000),
(3297, 238, '15-238', 1, '豐春', '{"number":"946584","shop":"\\u8c50\\u6625","phone":"0424734980","address":"\\u6587\\u5fc3\\u5357\\u8def\\u0031\\u0030\\u0030\\u865f"}', '946584', '711', 'zh-tw', 1000),
(3298, 238, '15-238', 1, '鑫鑽', '{"number":"171247","shop":"\\u946b\\u947d","phone":"0423860795","address":"\\u6587\\u5fc3\\u5357\\u4e09\\u8def\\u0036\\u0036\\u0033\\u865f"}', '171247', '711', 'zh-tw', 1000),
(3299, 238, '15-238', 1, '大進', '{"number":"158624","shop":"\\u5927\\u9032","phone":"0424759161","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0035\\u865f"}', '158624', '711', 'zh-tw', 1000),
(3300, 238, '15-238', 1, '向權', '{"number":"920261","shop":"\\u5411\\u6b0a","phone":"0423811490","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '920261', '711', 'zh-tw', 1000),
(3301, 238, '15-238', 1, '權興', '{"number":"905527","shop":"\\u6b0a\\u8208","phone":"0424717712","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u865f"}', '905527', '711', 'zh-tw', 1000),
(3302, 238, '15-238', 1, '權旺', '{"number":"182339","shop":"\\u6b0a\\u65fa","phone":"0423806902","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u0032\\u865f"}', '182339', '711', 'zh-tw', 1000),
(3303, 238, '15-238', 1, '鑫權勝', '{"number":"155038","shop":"\\u946b\\u6b0a\\u52dd","phone":"0423801953","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e8c\\u6bb5\\u0038\\u0038\\u0032\\u865f"}', '155038', '711', 'zh-tw', 1000),
(3304, 238, '15-238', 1, '工站', '{"number":"199223","shop":"\\u5de5\\u7ad9","phone":"0423502527","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e09\\u6bb5\\u0033\\u0035\\u0030\\u865f"}', '199223', '711', 'zh-tw', 1000),
(3305, 238, '15-238', 1, '豐河', '{"number":"166337","shop":"\\u8c50\\u6cb3","phone":"0423806215","address":"\\u5411\\u4e0a\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u0036\\u865f"}', '166337', '711', 'zh-tw', 1000),
(3306, 238, '15-238', 1, '精站', '{"number":"199304","shop":"\\u7cbe\\u7ad9","phone":"0423801449","address":"\\u5411\\u4e0a\\u8def\\u4e94\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '199304', '711', 'zh-tw', 1000),
(3307, 238, '15-238', 1, '惠宇', '{"number":"159029","shop":"\\u60e0\\u5b87","phone":"0424739173","address":"\\u5411\\u4e0a\\u5357\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0037\\u4e4b\\u0031\\u865f"}', '159029', '711', 'zh-tw', 1000),
(3308, 238, '15-238', 1, '熊貓', '{"number":"886406","shop":"\\u718a\\u8c93","phone":"0424754550","address":"\\u5411\\u4e0a\\u5357\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0035\\u865f\\u0031\\u002d\\u0032\\u6a13"}', '886406', '711', 'zh-tw', 1000),
(3309, 238, '15-238', 1, '海德堡', '{"number":"886174","shop":"\\u6d77\\u5fb7\\u5821","phone":"0424759288","address":"\\u5411\\u5fc3\\u5357\\u8def\\u0039\\u0032\\u0038\\u865f\\u0039\\u0033\\u0030\\u865f"}', '886174', '711', 'zh-tw', 1000),
(3310, 238, '15-238', 1, '詠豐', '{"number":"154884","shop":"\\u8a60\\u8c50","phone":"0423809792","address":"\\u6c38\\u6625\\u6771\\u8def\\u0031\\u0032\\u0033\\u0030\\u865f"}', '154884', '711', 'zh-tw', 1000),
(3311, 238, '15-238', 1, '興春', '{"number":"117830","shop":"\\u8208\\u6625","phone":"0424715845","address":"\\u6c38\\u6625\\u6771\\u8def\\u0039\\u0036\\u865f"}', '117830', '711', 'zh-tw', 1000),
(3312, 238, '15-238', 1, '新春社', '{"number":"953098","shop":"\\u65b0\\u6625\\u793e","phone":"0423802312","address":"\\u6c38\\u6625\\u5357\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u0033\\u0038\\u865f"}', '953098', '711', 'zh-tw', 1000),
(3313, 238, '15-238', 1, '嶺中', '{"number":"111393","shop":"\\u5dba\\u4e2d","phone":"0423806007","address":"\\u6c38\\u6625\\u5357\\u8def\\u0035\\u0038\\u865f"}', '111393', '711', 'zh-tw', 1000),
(3314, 238, '15-238', 1, '上楓樹', '{"number":"136510","shop":"\\u4e0a\\u6953\\u6a39","phone":"0424702620","address":"\\u4e2d\\u548c\\u91cc\\u9ece\\u660e\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0033\\u865f"}', '136510', '711', 'zh-tw', 1000),
(3315, 238, '15-238', 1, '中勇', '{"number":"144061","shop":"\\u4e2d\\u52c7","phone":"0423809105","address":"\\u5fe0\\u52c7\\u8def\\u0031\\u0030\\u0035\\u4e4b\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '144061', '711', 'zh-tw', 1000),
(3316, 238, '15-238', 1, '嶺寶', '{"number":"180964","shop":"\\u5dba\\u5bf6","phone":"0423862931","address":"\\u5fe0\\u52c7\\u8def\\u0032\\u0033\\u002d\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '180964', '711', 'zh-tw', 1000),
(3317, 239, '15-239', 1, '鰲峰', '{"number":"978293","shop":"\\u9c32\\u5cf0","phone":"0426221728","address":"\\u9c32\\u5cf0\\u8def\\u0032\\u0032\\u865f"}', '978293', '711', 'zh-tw', 1000),
(3318, 239, '15-239', 1, '一路發', '{"number":"186261","shop":"\\u4e00\\u8def\\u767c","phone":"0426577023","address":"\\u9c32\\u5cf0\\u8def\\u0035\\u0038\\u0030\\u865f\\u4e4b\\u0031\\u0035"}', '186261', '711', 'zh-tw', 1000),
(3319, 239, '15-239', 1, '清中', '{"number":"880718","shop":"\\u6e05\\u4e2d","phone":"0426233237","address":"\\u5317\\u5be7\\u91cc\\u8463\\u516c\\u8857\\u0035\\u0036\\u865f"}', '880718', '711', 'zh-tw', 1000),
(3320, 239, '15-239', 1, '高美祿', '{"number":"933223","shop":"\\u9ad8\\u7f8e\\u797f","phone":"0426275803","address":"\\u9ad8\\u7f8e\\u8def\\u0031\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '933223', '711', 'zh-tw', 1000),
(3321, 239, '15-239', 1, '巧竹', '{"number":"931423","shop":"\\u5de7\\u7af9","phone":"0426569583","address":"\\u6d77\\u6ff1\\u91cc\\u81e8\\u6e2f\\u8def\\u4e94\\u6bb5\\u0038\\u0032\\u0038\\u3001\\u0038\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '931423', '711', 'zh-tw', 1000),
(3322, 239, '15-239', 1, '億承', '{"number":"980816","shop":"\\u5104\\u627f","phone":"0426566134","address":"\\u6c11\\u548c\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0035\\u865f"}', '980816', '711', 'zh-tw', 1000),
(3323, 239, '15-239', 1, '欣浩', '{"number":"180436","shop":"\\u6b23\\u6d69","phone":"0426281007","address":"\\u4e94\\u6b0a\\u8def\\u0031\\u0032\\u0031\\u865f"}', '180436', '711', 'zh-tw', 1000),
(3324, 239, '15-239', 1, '新清水', '{"number":"198633","shop":"\\u65b0\\u6e05\\u6c34","phone":"0426268398","address":"\\u4e94\\u6b0a\\u8def\\u0031\\u0036\\u865f\\u0031\\u6a13\\u3001\\u6c11\\u6709\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '198633', '711', 'zh-tw', 1000),
(3325, 239, '15-239', 1, '大秀', '{"number":"142320","shop":"\\u5927\\u79c0","phone":"0426281748","address":"\\u4e94\\u6b0a\\u8def\\u0033\\u0032\\u0038\\u865f"}', '142320', '711', 'zh-tw', 1000),
(3326, 239, '15-239', 1, '昌興', '{"number":"921770","shop":"\\u660c\\u8208","phone":"0426222843","address":"\\u65b0\\u8208\\u8def\\u0032\\u0033\\u0038\\u865f\\u6587\\u660c\\u8857\\u0031\\u0032\\u002d\\u0031\\u865f"}', '921770', '711', 'zh-tw', 1000),
(3327, 239, '15-239', 1, '清峰', '{"number":"965242","shop":"\\u6e05\\u5cf0","phone":"0426226842","address":"\\u4e2d\\u83ef\\u8def\\u0033\\u0033\\u0030\\u865f"}', '965242', '711', 'zh-tw', 1000),
(3328, 239, '15-239', 1, '海濱', '{"number":"130800","shop":"\\u6d77\\u6ff1","phone":"0426281097","address":"\\u4e2d\\u83ef\\u8def\\u0034\\u0032\\u0039\\u865f"}', '130800', '711', 'zh-tw', 1000),
(3329, 239, '15-239', 1, '英荃', '{"number":"183365","shop":"\\u82f1\\u8343","phone":"0426229642","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u0039\\u002e\\u0034\\u0031\\u002e\\u0034\\u0033\\u865f"}', '183365', '711', 'zh-tw', 1000),
(3330, 239, '15-239', 1, '港藝', '{"number":"130486","shop":"\\u6e2f\\u85dd","phone":"0426281895","address":"\\u4e2d\\u793e\\u8def\\u0031\\u0039\\u865f"}', '130486', '711', 'zh-tw', 1000),
(3331, 239, '15-239', 1, '菁埔', '{"number":"953342","shop":"\\u83c1\\u57d4","phone":"0426221350","address":"\\u4e2d\\u592e\\u5317\\u8def\\u0031\\u865f"}', '953342', '711', 'zh-tw', 1000),
(3332, 240, '15-240', 1, '鹿維', '{"number":"971476","shop":"\\u9e7f\\u7dad","phone":"0426319135","address":"\\u5317\\u52e2\\u6771\\u8def\\u0033\\u0033\\u0030\\u865f"}', '971476', '711', 'zh-tw', 1000),
(3333, 240, '15-240', 1, '北勢東', '{"number":"181772","shop":"\\u5317\\u52e2\\u6771","phone":"0426318451","address":"\\u5317\\u52e2\\u6771\\u8def\\u0035\\u0030\\u0037\\u4e4b\\u0038\\u865f\\u0039\\u865f"}', '181772', '711', 'zh-tw', 1000),
(3334, 240, '15-240', 1, '頂尖', '{"number":"922728","shop":"\\u9802\\u5c16","phone":"0426529629","address":"\\u5317\\u52e2\\u6771\\u8def\\u0036\\u0031\\u0037\\u865f\\u0036\\u0031\\u0039\\u865f"}', '922728', '711', 'zh-tw', 1000),
(3335, 240, '15-240', 1, '鎮欣', '{"number":"954792","shop":"\\u93ae\\u6b23","phone":"0426314831","address":"\\u5317\\u52e2\\u91cc\\u93ae\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0038\\u865f"}', '954792', '711', 'zh-tw', 1000),
(3336, 240, '15-240', 1, '童醫', '{"number":"831598","shop":"\\u7ae5\\u91ab","phone":"0426624967","address":"\\u6210\\u529f\\u6771\\u8857\\u0031\\u865f"}', '831598', '711', 'zh-tw', 1000),
(3337, 240, '15-240', 1, '新忠貞', '{"number":"155049","shop":"\\u65b0\\u5fe0\\u8c9e","phone":"0426154547","address":"\\u6771\\u5927\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0038\\u0037\\u865f"}', '155049', '711', 'zh-tw', 1000),
(3338, 240, '15-240', 1, '天仁', '{"number":"126720","shop":"\\u5929\\u4ec1","phone":"0426361763","address":"\\u6597\\u62b5\\u91cc\\u6c99\\u7530\\u8def\\u0031\\u0037\\u4e4b\\u0031\\u0039\\u865f"}', '126720', '711', 'zh-tw', 1000),
(3339, 240, '15-240', 1, '祐瑄', '{"number":"940575","shop":"\\u7950\\u7444","phone":"0426629437","address":"\\u5149\\u83ef\\u8def\\u0035\\u0030\\u0032\\u865f\\u0035\\u0030\\u0036\\u865f"}', '940575', '711', 'zh-tw', 1000),
(3340, 240, '15-240', 1, '弘光', '{"number":"116505","shop":"\\u5f18\\u5149","phone":"0426529515","address":"\\u6649\\u6c5f\\u91cc\\u53f0\\u7063\\u5927\\u9053\\u516d\\u6bb5\\u0031\\u0030\\u0031\\u0038\\u865f"}', '116505', '711', 'zh-tw', 1000),
(3341, 240, '15-240', 1, '靜大', '{"number":"131571","shop":"\\u975c\\u5927","phone":"0426310417","address":"\\u6649\\u6c5f\\u91cc\\u53f0\\u7063\\u5927\\u9053\\u4e03\\u6bb5\\u0031\\u0034\\u0032\\u865f"}', '131571', '711', 'zh-tw', 1000),
(3342, 240, '15-240', 1, '星河', '{"number":"144555","shop":"\\u661f\\u6cb3","phone":"0426227926","address":"\\u9e7f\\u5cf0\\u91cc\\u4e2d\\u5c71\\u8def\\u0036\\u0034\\u0036\\u865f"}', '144555', '711', 'zh-tw', 1000),
(3343, 240, '15-240', 1, '鎮揚', '{"number":"947370","shop":"\\u93ae\\u63da","phone":"0426521648","address":"\\u5357\\u967d\\u8def\\u0034\\u0033\\u0039\\u865f"}', '947370', '711', 'zh-tw', 1000),
(3344, 240, '15-240', 1, '保雅', '{"number":"192820","shop":"\\u4fdd\\u96c5","phone":"0426366953","address":"\\u5c4f\\u897f\\u8def\\u0035\\u0035\\u865f"}', '192820', '711', 'zh-tw', 1000),
(3345, 240, '15-240', 1, '沙鹿光田', '{"number":"951324","shop":"\\u6c99\\u9e7f\\u5149\\u7530","phone":"0426626074","address":"\\u6c99\\u7530\\u8def\\u0031\\u0031\\u0035\\u865f"}', '951324', '711', 'zh-tw', 1000),
(3346, 240, '15-240', 1, '斗抵', '{"number":"139139","shop":"\\u6597\\u62b5","phone":"0426359855","address":"\\u6c99\\u7530\\u8def\\u0034\\u0033\\u002d\\u0031\\u0032\\u865f"}', '139139', '711', 'zh-tw', 1000),
(3347, 240, '15-240', 1, '中棲', '{"number":"842325","shop":"\\u4e2d\\u68f2","phone":"0426324033","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e03\\u6bb5\\u0032\\u0035\\u0039\\u865f"}', '842325', '711', 'zh-tw', 1000),
(3348, 240, '15-240', 1, '鹿鼎', '{"number":"886680","shop":"\\u9e7f\\u9f0e","phone":"0426628465","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e03\\u6bb5\\u0038\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '886680', '711', 'zh-tw', 1000),
(3349, 240, '15-240', 1, '保屏', '{"number":"971959","shop":"\\u4fdd\\u5c4f","phone":"0426368705","address":"\\u5411\\u4e0a\\u8def\\u4e03\\u6bb5\\u0031\\u0033\\u0032\\u865f"}', '971959', '711', 'zh-tw', 1000),
(3350, 240, '15-240', 1, '鹿興', '{"number":"151818","shop":"\\u9e7f\\u8208","phone":"0426368423","address":"\\u5411\\u4e0a\\u8def\\u4e03\\u6bb5\\u0031\\u865f"}', '151818', '711', 'zh-tw', 1000),
(3351, 240, '15-240', 1, '鹿心', '{"number":"125314","shop":"\\u9e7f\\u5fc3","phone":"0426355174","address":"\\u8208\\u4ec1\\u91cc\\u56db\\u5e73\\u8857\\u0035\\u0038\\u865f"}', '125314', '711', 'zh-tw', 1000),
(3352, 240, '15-240', 1, '鎮權', '{"number":"111717","shop":"\\u93ae\\u6b0a","phone":"0426363948","address":"\\u93ae\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f"}', '111717', '711', 'zh-tw', 1000),
(3353, 240, '15-240', 1, '靜宜', '{"number":"844192","shop":"\\u975c\\u5b9c","phone":"0426350632","address":"\\u93ae\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0033\\u865f"}', '844192', '711', 'zh-tw', 1000),
(3354, 240, '15-240', 1, '清泉崗', '{"number":"890944","shop":"\\u6e05\\u6cc9\\u5d17","phone":"0426152389","address":"\\u4e2d\\u6e05\\u8def\\u516d\\u6bb5\\u0032\\u0035\\u0039\\u865f"}', '890944', '711', 'zh-tw', 1000),
(3355, 240, '15-240', 1, '沙鹿中山', '{"number":"151069","shop":"\\u6c99\\u9e7f\\u4e2d\\u5c71","phone":"0426629334","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0039\\u0038\\u865f"}', '151069', '711', 'zh-tw', 1000),
(3356, 240, '15-240', 1, '丹聯', '{"number":"891132","shop":"\\u4e39\\u806f","phone":"0426653949","address":"\\u4e2d\\u5c71\\u8def\\u7530\\u5c3e\\u5df7\\u0033\\u865f\\u0034\\u865f\\u0035\\u865f"}', '891132', '711', 'zh-tw', 1000),
(3357, 241, '15-241', 1, '新北庄', '{"number":"972468","shop":"\\u65b0\\u5317\\u5e84","phone":"0425632407","address":"\\u5317\\u5e84\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0033\\u0032\\u0030\\u002d\\u0033\\u865f"}', '972468', '711', 'zh-tw', 1000),
(3358, 241, '15-241', 1, '栗豐', '{"number":"153582","shop":"\\u6817\\u8c50","phone":"0425356135","address":"\\u627f\\u5fb7\\u8def\\u0032\\u0031\\u0039\\u865f"}', '153582', '711', 'zh-tw', 1000),
(3359, 241, '15-241', 1, '大洲', '{"number":"971188","shop":"\\u5927\\u6d32","phone":"0425298470","address":"\\u5927\\u6d32\\u8def\\u0032\\u0039\\u0039\\u4e4b\\u0031\\u865f"}', '971188', '711', 'zh-tw', 1000),
(3360, 241, '15-241', 1, '奇晉', '{"number":"959340","shop":"\\u5947\\u6649","phone":"0425202546","address":"\\u8c50\\u6d32\\u8def\\u0034\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '959340', '711', 'zh-tw', 1000),
(3361, 241, '15-241', 1, '新禾', '{"number":"154493","shop":"\\u65b0\\u79be","phone":"0425632930","address":"\\u548c\\u7766\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0033\\u865f"}', '154493', '711', 'zh-tw', 1000),
(3362, 241, '15-241', 1, '承軒', '{"number":"950170","shop":"\\u627f\\u8ed2","phone":"0425629203","address":"\\u6c11\\u751f\\u8def\\u0034\\u0038\\u4e4b\\u0037\\u865f\\u0038\\u865f\\u0039\\u865f"}', '950170', '711', 'zh-tw', 1000),
(3363, 241, '15-241', 1, '禾康', '{"number":"194446","shop":"\\u79be\\u5eb7","phone":"0425633243","address":"\\u4e09\\u6c11\\u8def\\u0036\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '194446', '711', 'zh-tw', 1000),
(3364, 241, '15-241', 1, '社口', '{"number":"862330","shop":"\\u793e\\u53e3","phone":"0425618246","address":"\\u793e\\u53e3\\u91cc\\u0038\\u9130\\u4e2d\\u5c71\\u8def\\u0037\\u0033\\u0036\\u865f"}', '862330', '711', 'zh-tw', 1000),
(3365, 241, '15-241', 1, '鑫和睦', '{"number":"982351","shop":"\\u946b\\u548c\\u7766","phone":"0425625741","address":"\\u795e\\u6e05\\u8def\\u0032\\u0036\\u0036\\u865f\\u0032\\u0036\\u0038\\u865f\\u53ca\\u798f\\u6210\\u8def\\u0035\\u0036\\u002d\\u0031\\u865f"}', '982351', '711', 'zh-tw', 1000),
(3366, 241, '15-241', 1, '神洲', '{"number":"113595","shop":"\\u795e\\u6d32","phone":"0425284035","address":"\\u795e\\u6d32\\u8def\\u0033\\u0033\\u0032\\u865f"}', '113595', '711', 'zh-tw', 1000),
(3367, 241, '15-241', 1, '豐洲', '{"number":"883902","shop":"\\u8c50\\u6d32","phone":"0425247925","address":"\\u4e94\\u6b0a\\u8def\\u0036\\u0033\\u865f"}', '883902', '711', 'zh-tw', 1000),
(3368, 241, '15-241', 1, '倍沅', '{"number":"111876","shop":"\\u500d\\u6c85","phone":"0425633834","address":"\\u4e2d\\u5c71\\u8def\\u0034\\u0037\\u0033\\u865f"}', '111876', '711', 'zh-tw', 1000),
(3369, 241, '15-241', 1, '神采', '{"number":"192967","shop":"\\u795e\\u91c7","phone":"0425634762","address":"\\u4e2d\\u5c71\\u8def\\u0037\\u0037\\u0033\\u865f"}', '192967', '711', 'zh-tw', 1000),
(3370, 241, '15-241', 1, '神寶', '{"number":"944692","shop":"\\u795e\\u5bf6","phone":"0425613400","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0030\\u0030\\u865f"}', '944692', '711', 'zh-tw', 1000),
(3371, 242, '15-242', 1, '新石岡', '{"number":"923558","shop":"\\u65b0\\u77f3\\u5ca1","phone":"0425724608","address":"\\u660e\\u5fb7\\u8def\\u0031\\u0031\\u0038\\u865f"}', '923558', '711', 'zh-tw', 1000),
(3372, 243, '15-243', 1, '長德', '{"number":"174604","shop":"\\u9577\\u5fb7","phone":"0422798640","address":"\\u9577\\u5104\\u91cc\\u6c38\\u6210\\u5317\\u8def\\u0031\\u0032\\u0035\\u865f"}', '174604', '711', 'zh-tw', 1000),
(3373, 243, '15-243', 1, '新大億', '{"number":"921459","shop":"\\u65b0\\u5927\\u5104","phone":"0423917413","address":"\\u5927\\u8208\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0031\\u002d\\u0031\\u865f"}', '921459', '711', 'zh-tw', 1000),
(3374, 243, '15-243', 1, '鑫佳慶', '{"number":"982568","shop":"\\u946b\\u4f73\\u6176","phone":"0423919759","address":"\\u5927\\u6e90\\u4e8c\\u8857\\u0031\\u865f\\u0031\\u0046"}', '982568', '711', 'zh-tw', 1000),
(3375, 243, '15-243', 1, '太隆', '{"number":"890416","shop":"\\u592a\\u9686","phone":"0422716192","address":"\\u5fb7\\u9686\\u91cc\\u5de5\\u696d\\u8def\\u0031\\u0034\\u0038\\u865f\\u0031\\u0035\\u0030\\u865f"}', '890416', '711', 'zh-tw', 1000),
(3376, 243, '15-243', 1, '東村', '{"number":"151520","shop":"\\u6771\\u6751","phone":"0423511075","address":"\\u6771\\u6751\\u8def\\u0032\\u0030\\u0030\\u865f"}', '151520', '711', 'zh-tw', 1000),
(3377, 243, '15-243', 1, '一江橋', '{"number":"126306","shop":"\\u4e00\\u6c5f\\u6a4b","phone":"0422770154","address":"\\u6771\\u5e73\\u8def\\u0031\\u865f"}', '126306', '711', 'zh-tw', 1000),
(3378, 243, '15-243', 1, '紅億', '{"number":"901525","shop":"\\u7d05\\u5104","phone":"0422715793","address":"\\u5149\\u8208\\u8def\\u0035\\u0037\\u0032\\u865f\\u0035\\u0037\\u0036\\u865f"}', '901525', '711', 'zh-tw', 1000),
(3379, 243, '15-243', 1, '光隆', '{"number":"142799","shop":"\\u5149\\u9686","phone":"0422770849","address":"\\u5149\\u8208\\u8def\\u0037\\u0030\\u0037\\u865f"}', '142799', '711', 'zh-tw', 1000),
(3380, 243, '15-243', 1, '功興', '{"number":"993122","shop":"\\u529f\\u8208","phone":"0422769121","address":"\\u5efa\\u8208\\u8def\\u0034\\u0037\\u865f"}', '993122', '711', 'zh-tw', 1000),
(3381, 243, '15-243', 1, '吉仕多', '{"number":"198563","shop":"\\u5409\\u4ed5\\u591a","phone":"0423957784","address":"\\u6a39\\u5fb7\\u8def\\u0032\\u0035\\u0035\\u865f"}', '198563', '711', 'zh-tw', 1000),
(3382, 243, '15-243', 1, '樹廣', '{"number":"123248","shop":"\\u6a39\\u5ee3","phone":"0423955449","address":"\\u6a39\\u5fb7\\u8def\\u0039\\u0038\\u002d\\u0039\\u865f"}', '123248', '711', 'zh-tw', 1000),
(3383, 243, '15-243', 1, '全利', '{"number":"910079","shop":"\\u5168\\u5229","phone":"0423926723","address":"\\u6a39\\u5b5d\\u8def\\u0033\\u0033\\u0038\\u865f"}', '910079', '711', 'zh-tw', 1000),
(3384, 243, '15-243', 1, '新樹孝', '{"number":"188441","shop":"\\u65b0\\u6a39\\u5b5d","phone":"0423910886","address":"\\u6a39\\u5b5d\\u8def\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '188441', '711', 'zh-tw', 1000),
(3385, 243, '15-243', 1, '育鑫', '{"number":"143378","shop":"\\u80b2\\u946b","phone":"0423910301","address":"\\u6a39\\u5b5d\\u8def\\u0034\\u0039\\u0030\\u865f"}', '143378', '711', 'zh-tw', 1000),
(3386, 243, '15-243', 1, '精中', '{"number":"993708","shop":"\\u7cbe\\u4e2d","phone":"0422798881","address":"\\u592a\\u5e73\\u4e00\\u8857\\u0032\\u0032\\u0030\\u865f"}', '993708', '711', 'zh-tw', 1000),
(3387, 243, '15-243', 1, '溪洲', '{"number":"993270","shop":"\\u6eaa\\u6d32","phone":"0422795623","address":"\\u65b0\\u5e73\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u0031\\u865f"}', '993270', '711', 'zh-tw', 1000),
(3388, 243, '15-243', 1, '尚晉', '{"number":"123569","shop":"\\u5c1a\\u6649","phone":"0423911323","address":"\\u65b0\\u5e73\\u8def\\u4e09\\u6bb5\\u0031\\u865f\\u0031\\u6a13"}', '123569', '711', 'zh-tw', 1000),
(3389, 243, '15-243', 1, '金興', '{"number":"170451","shop":"\\u91d1\\u8208","phone":"0423957220","address":"\\u65b0\\u8208\\u8def\\u0033\\u0031\\u0032\\u865f"}', '170451', '711', 'zh-tw', 1000),
(3390, 243, '15-243', 1, '鑫德', '{"number":"182270","shop":"\\u946b\\u5fb7","phone":"0423954471","address":"\\u65b0\\u8208\\u8def\\u0038\\u0035\\u002d\\u0031\\u865f"}', '182270', '711', 'zh-tw', 1000),
(3391, 243, '15-243', 1, '光興', '{"number":"138088","shop":"\\u5149\\u8208","phone":"0422793598","address":"\\u8208\\u9686\\u91cc\\u0031\\u0032\\u9130\\u5149\\u8208\\u8def\\u0031\\u0036\\u0033\\u0032\\u865f"}', '138088', '711', 'zh-tw', 1000),
(3392, 243, '15-243', 1, '宜昌', '{"number":"881663","shop":"\\u5b9c\\u660c","phone":"0422735742","address":"\\u5b9c\\u660c\\u8def\\u0034\\u0030\\u0030\\u865f"}', '881663', '711', 'zh-tw', 1000),
(3393, 243, '15-243', 1, '丰太', '{"number":"199083","shop":"\\u4e30\\u592a","phone":"0423510560","address":"\\u6c38\\u8c50\\u8def\\u0033\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '199083', '711', 'zh-tw', 1000),
(3394, 243, '15-243', 1, '新平', '{"number":"132851","shop":"\\u65b0\\u5e73","phone":"0422785952","address":"\\u6c38\\u5e73\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '132851', '711', 'zh-tw', 1000),
(3395, 243, '15-243', 1, '育智', '{"number":"167248","shop":"\\u80b2\\u667a","phone":"0423958492","address":"\\u80b2\\u8ce2\\u8def\\u0035\\u0032\\u0030\\u865f"}', '167248', '711', 'zh-tw', 1000),
(3396, 243, '15-243', 1, '振福', '{"number":"196419","shop":"\\u632f\\u798f","phone":"0423954989","address":"\\u632f\\u798f\\u8def\\u0033\\u0036\\u0031\\u5df7\\u0036\\u865f\\u0031\\u6a13"}', '196419', '711', 'zh-tw', 1000),
(3397, 243, '15-243', 1, '精美', '{"number":"863975","shop":"\\u7cbe\\u7f8e","phone":"0422701765","address":"\\u4e2d\\u5e73\\u91cc\\u7cbe\\u7f8e\\u8def\\u0031\\u865f"}', '863975', '711', 'zh-tw', 1000),
(3398, 243, '15-243', 1, '盛民興', '{"number":"930109","shop":"\\u76db\\u6c11\\u8208","phone":"0423926373","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0036\\u865f\\u0033\\u0036\\u0036\\u002d\\u0031\\u865f\\u0033\\u0036\\u0038\\u865f"}', '930109', '711', 'zh-tw', 1000),
(3399, 243, '15-243', 1, '第一', '{"number":"840488","shop":"\\u7b2c\\u4e00","phone":"0423957421","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0031\\u0031\\u0032\\u002d\\u0032\\u865f"}', '840488', '711', 'zh-tw', 1000),
(3400, 243, '15-243', 1, '旱溪東', '{"number":"174431","shop":"\\u65f1\\u6eaa\\u6771","phone":"0423955934","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0032\\u0033\\u0035\\u865f"}', '174431', '711', 'zh-tw', 1000),
(3401, 243, '15-243', 1, '勤科大', '{"number":"174349","shop":"\\u52e4\\u79d1\\u5927","phone":"0423938945","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0035\\u5df7\\u0033\\u0035\\u865f\\u0028\\u884c\\u653f\\u5927\\u6a13\\u5f8c\\u65b9\\u0029"}', '174349', '711', 'zh-tw', 1000),
(3402, 243, '15-243', 1, '新勤益', '{"number":"893851","shop":"\\u65b0\\u52e4\\u76ca","phone":"0423922680","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0037\\u865f"}', '893851', '711', 'zh-tw', 1000),
(3403, 243, '15-243', 1, '大榮', '{"number":"190536","shop":"\\u5927\\u69ae","phone":"0422703976","address":"\\u4e2d\\u8208\\u6771\\u8def\\u0031\\u0038\\u0039\\u865f\\u0031\\u0039\\u0031\\u865f"}', '190536', '711', 'zh-tw', 1000),
(3404, 243, '15-243', 1, '太平', '{"number":"895695","shop":"\\u592a\\u5e73","phone":"0422770941","address":"\\u4e2d\\u8208\\u8def\\u0031\\u0037\\u0031\\u865f"}', '895695', '711', 'zh-tw', 1000),
(3405, 244, '15-244', 1, '東寶', '{"number":"189042","shop":"\\u6771\\u5bf6","phone":"0425344621","address":"\\u660c\\u5e73\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0032\\u865f"}', '189042', '711', 'zh-tw', 1000),
(3406, 244, '15-244', 1, '潭豐', '{"number":"952246","shop":"\\u6f6d\\u8c50","phone":"0425355870","address":"\\u5d07\\u5fb7\\u8def\\u56db\\u6bb5\\u0032\\u0035\\u0030\\u4e4b\\u0031\\u865f"}', '952246', '711', 'zh-tw', 1000),
(3407, 244, '15-244', 1, '潭德', '{"number":"942087","shop":"\\u6f6d\\u5fb7","phone":"0425343039","address":"\\u5d07\\u5fb7\\u8def\\u4e94\\u6bb5\\u0034\\u0038\\u0039\\u865f"}', '942087', '711', 'zh-tw', 1000),
(3408, 244, '15-244', 1, '矽品', '{"number":"912606","shop":"\\u77fd\\u54c1","phone":"0425353262","address":"\\u5927\\u8c50\\u8def\\u4e09\\u6bb5\\u0031\\u0038\\u0038\\u865f\\u0031\\u0039\\u0030\\u865f"}', '912606', '711', 'zh-tw', 1000),
(3409, 244, '15-244', 1, '潭春', '{"number":"970808","shop":"\\u6f6d\\u6625","phone":"0425342320","address":"\\u6771\\u5bf6\\u91cc\\u5927\\u8c50\\u8def\\u4e8c\\u6bb5\\u0031\\u865f\\u0031\\u6a13"}', '970808', '711', 'zh-tw', 1000),
(3410, 244, '15-244', 1, '甜園', '{"number":"967709","shop":"\\u751c\\u5712","phone":"0425327349","address":"\\u8c50\\u6817\\u8def\\u0039\\u865f"}', '967709', '711', 'zh-tw', 1000),
(3411, 244, '15-244', 1, '潭興', '{"number":"954220","shop":"\\u6f6d\\u8208","phone":"0425392368","address":"\\u8c50\\u8208\\u8def\\u4e00\\u6bb5\\u0035\\u0039\\u0033\\u865f\\u0035\\u0039\\u0035\\u865f"}', '954220', '711', 'zh-tw', 1000),
(3412, 244, '15-244', 1, '潭濟', '{"number":"180883","shop":"\\u6f6d\\u6fdf","phone":"0425394279","address":"\\u8c50\\u8208\\u8def\\u4e00\\u6bb5\\u0038\\u0038\\u865f\\u0042\\u0031\\u6a13"}', '180883', '711', 'zh-tw', 1000),
(3413, 244, '15-244', 1, '潭欣', '{"number":"190606","shop":"\\u6f6d\\u6b23","phone":"0425394615","address":"\\u798f\\u6f6d\\u8def\\u0036\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '190606', '711', 'zh-tw', 1000),
(3414, 244, '15-244', 1, '大運通', '{"number":"151405","shop":"\\u5927\\u904b\\u901a","phone":"0425390930","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u865f\\u0031\\u0038\\u865f"}', '151405', '711', 'zh-tw', 1000),
(3415, 244, '15-244', 1, '潭厝', '{"number":"180045","shop":"\\u6f6d\\u539d","phone":"0425341014","address":"\\u74b0\\u4e2d\\u6771\\u8def\\u4e00\\u6bb5\\u0035\\u865f"}', '180045', '711', 'zh-tw', 1000),
(3416, 244, '15-244', 1, '頭張', '{"number":"127077","shop":"\\u982d\\u5f35","phone":"0425351934","address":"\\u5bb6\\u798f\\u91cc\\u982d\\u5f35\\u8def\\u4e00\\u6bb5\\u0033\\u0031\\u865f"}', '127077', '711', 'zh-tw', 1000),
(3417, 244, '15-244', 1, '潭北', '{"number":"131021","shop":"\\u6f6d\\u5317","phone":"0425360956","address":"\\u4ec1\\u611b\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f"}', '131021', '711', 'zh-tw', 1000),
(3418, 244, '15-244', 1, '潭榮', '{"number":"120582","shop":"\\u6f6d\\u69ae","phone":"0425351431","address":"\\u69ae\\u8208\\u8857\\u0031\\u0039\\u865f\\u0031\\u6a13\\u0032\\u0031\\u5df7\\u0031\\u865f\\u0032\\u0031\\u5df7\\u0033\\u865f\\u0031\\u6a13"}', '120582', '711', 'zh-tw', 1000),
(3419, 244, '15-244', 1, '潭勝', '{"number":"131032","shop":"\\u6f6d\\u52dd","phone":"0425344613","address":"\\u52dd\\u5229\\u8def\\u0031\\u0030\\u0031\\u865f\\u0031\\u0030\\u0033\\u865f"}', '131032', '711', 'zh-tw', 1000),
(3420, 244, '15-244', 1, '太舜', '{"number":"182557","shop":"\\u592a\\u821c","phone":"0425364841","address":"\\u6f6d\\u8208\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '182557', '711', 'zh-tw', 1000),
(3421, 244, '15-244', 1, '潭寶', '{"number":"944245","shop":"\\u6f6d\\u5bf6","phone":"0425357382","address":"\\u6f6d\\u8208\\u8def\\u4e09\\u6bb5\\u0035\\u0031\\u865f"}', '944245', '711', 'zh-tw', 1000),
(3422, 244, '15-244', 1, '圓通南', '{"number":"187367","shop":"\\u5713\\u901a\\u5357","phone":"0425345324","address":"\\u6f6d\\u967d\\u91cc\\u5713\\u901a\\u5357\\u8def\\u0032\\u0033\\u0039\\u865f"}', '187367', '711', 'zh-tw', 1000),
(3423, 244, '15-244', 1, '榮晉', '{"number":"893046","shop":"\\u69ae\\u6649","phone":"0425359250","address":"\\u982d\\u5f35\\u8def\\u4e8c\\u6bb5\\u0032\\u865f"}', '893046', '711', 'zh-tw', 1000),
(3424, 244, '15-244', 1, '栗林', '{"number":"924850","shop":"\\u6817\\u6797","phone":"0425387300","address":"\\u7965\\u548c\\u8def\\u0031\\u0036\\u0039\\u865f\\u0031\\u0037\\u0031\\u865f"}', '924850', '711', 'zh-tw', 1000),
(3425, 244, '15-244', 1, '潭秀', '{"number":"193513","shop":"\\u6f6d\\u79c0","phone":"0425347928","address":"\\u96c5\\u6f6d\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '193513', '711', 'zh-tw', 1000),
(3426, 244, '15-244', 1, '潭陽', '{"number":"130408","shop":"\\u6f6d\\u967d","phone":"0425361043","address":"\\u5713\\u901a\\u5357\\u8def\\u0032\\u865f\\u0031\\u6a13"}', '130408', '711', 'zh-tw', 1000),
(3427, 244, '15-244', 1, '潭富', '{"number":"164869","shop":"\\u6f6d\\u5bcc","phone":"0425346731","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0035\\u0038\\u0035\\u4e4b\\u0031\\u865f"}', '164869', '711', 'zh-tw', 1000),
(3428, 244, '15-244', 1, '佳茂', '{"number":"197065","shop":"\\u4f73\\u8302","phone":"0425346907","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '197065', '711', 'zh-tw', 1000),
(3429, 245, '15-245', 1, '新甲后', '{"number":"116756","shop":"\\u65b0\\u7532\\u540e","phone":"0426839447","address":"\\u7532\\u540e\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0032\\u0035\\u865f"}', '116756', '711', 'zh-tw', 1000),
(3430, 245, '15-245', 1, '大甲東', '{"number":"160236","shop":"\\u5927\\u7532\\u6771","phone":"0426802083","address":"\\u7532\\u540e\\u8def\\u4e94\\u6bb5\\u0031\\u0035\\u865f"}', '160236', '711', 'zh-tw', 1000),
(3431, 246, '15-246', 1, '吉宏', '{"number":"131962","shop":"\\u5409\\u5b8f","phone":"0423387989","address":"\\u4e5d\\u5fb7\\u91cc\\u0032\\u0030\\u9130\\u4e2d\\u83ef\\u8def\\u0035\\u0039\\u0033\\u865f"}', '131962', '711', 'zh-tw', 1000),
(3432, 246, '15-246', 1, '九德', '{"number":"165817","shop":"\\u4e5d\\u5fb7","phone":"0423363783","address":"\\u4e5d\\u5fb7\\u91cc\\u4e2d\\u83ef\\u8def\\u0034\\u0035\\u865f\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '165817', '711', 'zh-tw', 1000),
(3433, 246, '15-246', 1, '榮田', '{"number":"182432","shop":"\\u69ae\\u7530","phone":"0423362440","address":"\\u4e09\\u69ae\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0039\\u865f"}', '182432', '711', 'zh-tw', 1000),
(3434, 246, '15-246', 1, '太明', '{"number":"179621","shop":"\\u592a\\u660e","phone":"0423356899","address":"\\u592a\\u660e\\u8def\\u0031\\u0033\\u0036\\u865f"}', '179621', '711', 'zh-tw', 1000),
(3435, 246, '15-246', 1, '喀哩', '{"number":"189112","shop":"\\u5580\\u54e9","phone":"0423355202","address":"\\u6eaa\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '189112', '711', 'zh-tw', 1000),
(3436, 246, '15-246', 1, '東園', '{"number":"110736","shop":"\\u6771\\u5712","phone":"0423351590","address":"\\u6eaa\\u5357\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0035\\u865f"}', '110736', '711', 'zh-tw', 1000),
(3437, 246, '15-246', 1, '元宏', '{"number":"187080","shop":"\\u5143\\u5b8f","phone":"0423357738","address":"\\u6eaa\\u5357\\u8def\\u4e00\\u6bb5\\u0037\\u0032\\u0032\\u865f"}', '187080', '711', 'zh-tw', 1000),
(3438, 246, '15-246', 1, '烏日', '{"number":"120847","shop":"\\u70cf\\u65e5","phone":"0423362682","address":"\\u65b0\\u8208\\u8def\\u0032\\u0034\\u0037\\u865f"}', '120847', '711', 'zh-tw', 1000),
(3439, 246, '15-246', 1, '新光德', '{"number":"967569","shop":"\\u65b0\\u5149\\u5fb7","phone":"0423370951","address":"\\u4fe1\\u7fa9\\u8857\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '967569', '711', 'zh-tw', 1000),
(3440, 246, '15-246', 1, '鼎好', '{"number":"863447","shop":"\\u9f0e\\u597d","phone":"0423380421","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '863447', '711', 'zh-tw', 1000),
(3441, 246, '15-246', 1, '榮泉', '{"number":"967927","shop":"\\u69ae\\u6cc9","phone":"0423371990","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0030\\u0037\\u865f"}', '967927', '711', 'zh-tw', 1000),
(3442, 246, '15-246', 1, '中展館', '{"number":"182421","shop":"\\u4e2d\\u5c55\\u9928","phone":"0423369243","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u002d\\u0031\\u865f"}', '182421', '711', 'zh-tw', 1000),
(3443, 247, '15-247', 1, '港區', '{"number":"992358","shop":"\\u6e2f\\u5340","phone":"0426580687","address":"\\u5b89\\u4ec1\\u91cc\\u6587\\u5316\\u8def\\u4e8c\\u6bb5\\u0032\\u9130\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '992358', '711', 'zh-tw', 1000),
(3444, 247, '15-247', 1, '大聖', '{"number":"145053","shop":"\\u5927\\u8056","phone":"0426595625","address":"\\u8349\\u6e73\\u91cc\\u81e8\\u6e2f\\u8def\\u4e09\\u6bb5\\u0033\\u0035\\u0031\\u865f"}', '145053', '711', 'zh-tw', 1000),
(3445, 247, '15-247', 1, '詠珊', '{"number":"944418","shop":"\\u8a60\\u73ca","phone":"0426575417","address":"\\u5927\\u667a\\u8def\\u0031\\u0030\\u0031\\u0037\\u865f"}', '944418', '711', 'zh-tw', 1000),
(3446, 247, '15-247', 1, '詠德', '{"number":"908320","shop":"\\u8a60\\u5fb7","phone":"0426567101","address":"\\u5927\\u667a\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0035\\u865f"}', '908320', '711', 'zh-tw', 1000),
(3447, 247, '15-247', 1, '智光', '{"number":"166533","shop":"\\u667a\\u5149","phone":"0426568163","address":"\\u5927\\u667a\\u8def\\u4e00\\u6bb5\\u0035\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '166533', '711', 'zh-tw', 1000),
(3448, 247, '15-247', 1, '大仁', '{"number":"180333","shop":"\\u5927\\u4ec1","phone":"0426584589","address":"\\u9802\\u5bee\\u91cc\\u0032\\u0038\\u9130\\u5927\\u4ec1\\u8def\\u4e8c\\u6bb5\\u0037\\u0031\\u865f"}', '180333', '711', 'zh-tw', 1000),
(3449, 247, '15-247', 1, '港昌', '{"number":"183424","shop":"\\u6e2f\\u660c","phone":"0426582445","address":"\\u6e2f\\u57e0\\u8def\\u4e00\\u6bb5\\u0039\\u0038\\u0036\\u865f"}', '183424', '711', 'zh-tw', 1000),
(3450, 247, '15-247', 1, '港埠', '{"number":"154806","shop":"\\u6e2f\\u57e0","phone":"0426562460","address":"\\u6e2f\\u57e0\\u8def\\u4e00\\u6bb5\\u0039\\u0038\\u0039\\u865f"}', '154806', '711', 'zh-tw', 1000),
(3451, 247, '15-247', 1, '關連', '{"number":"924539","shop":"\\u95dc\\u9023","phone":"0426399899","address":"\\u81e8\\u6e2f\\u8def\\u4e09\\u6bb5\\u0037\\u0030\\u002e\\u0037\\u0032\\u865f"}', '924539', '711', 'zh-tw', 1000),
(3452, 247, '15-247', 1, '大維', '{"number":"909080","shop":"\\u5927\\u7dad","phone":"0426584759","address":"\\u56db\\u7dad\\u8def\\u0037\\u0033\\u865f"}', '909080', '711', 'zh-tw', 1000),
(3453, 247, '15-247', 1, '新童', '{"number":"901950","shop":"\\u65b0\\u7ae5","phone":"0426570026","address":"\\u53f0\\u7063\\u5927\\u9053\\u516b\\u6bb5\\u0036\\u0039\\u0039\\u865f"}', '901950', '711', 'zh-tw', 1000),
(3454, 247, '15-247', 1, '梧棲', '{"number":"190341","shop":"\\u68a7\\u68f2","phone":"0426578003","address":"\\u53f0\\u7063\\u5927\\u9053\\u516b\\u6bb5\\u0039\\u0036\\u0032\\u865f"}', '190341', '711', 'zh-tw', 1000),
(3455, 247, '15-247', 1, '台中港', '{"number":"910770","shop":"\\u53f0\\u4e2d\\u6e2f","phone":"0426560576","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e5d\\u6bb5\\u0033\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '910770', '711', 'zh-tw', 1000),
(3456, 247, '15-247', 1, '三景', '{"number":"184195","shop":"\\u4e09\\u666f","phone":"0426564041","address":"\\u53f0\\u7063\\u5927\\u9053\\u5341\\u6bb5\\u0031\\u0036\\u0038\\u865f\\u0028\\u7b2c\\u0031\\u0039\\u0033\\u0030\\u865f\\u6ac3\\u4f4d\\u0029"}', '184195', '711', 'zh-tw', 1000),
(3457, 247, '15-247', 1, '港臻', '{"number":"174877","shop":"\\u6e2f\\u81fb","phone":"0426563851","address":"\\u6587\\u660c\\u8def\\u0033\\u0033\\u0033\\u865f"}', '174877', '711', 'zh-tw', 1000),
(3458, 247, '15-247', 1, '弘新', '{"number":"950321","shop":"\\u5f18\\u65b0","phone":"0426355306","address":"\\u6c38\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0032\\u865f"}', '950321', '711', 'zh-tw', 1000),
(3459, 247, '15-247', 1, '港務', '{"number":"180551","shop":"\\u6e2f\\u52d9","phone":"0426567615","address":"\\u4e2d\\u548c\\u91cc\\u0031\\u0035\\u9130\\u4e2d\\u6a6b\\u4e00\\u8def\\u0031\\u0032\\u865f"}', '180551', '711', 'zh-tw', 1000),
(3460, 247, '15-247', 1, '鏵智', '{"number":"183479","shop":"\\u93f5\\u667a","phone":"0426624609","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0031\\u865f"}', '183479', '711', 'zh-tw', 1000),
(3461, 247, '15-247', 1, '吉得堡', '{"number":"155153","shop":"\\u5409\\u5f97\\u5821","phone":"0426567304","address":"\\u4e2d\\u8208\\u8def\\u0031\\u0032\\u0031\\u865f"}', '155153', '711', 'zh-tw', 1000),
(3462, 247, '15-247', 1, '港中', '{"number":"120179","shop":"\\u6e2f\\u4e2d","phone":"0426564037","address":"\\u4e2d\\u592e\\u8def\\u4e00\\u6bb5\\u0036\\u0036\\u0036\\u4e4b\\u0032\\u0038\\u865f"}', '120179', '711', 'zh-tw', 1000),
(3463, 248, '15-248', 1, '吉峰', '{"number":"154138","shop":"\\u5409\\u5cf0","phone":"0423309220","address":"\\u5fb7\\u6cf0\\u8857\\u0039\\u865f"}', '154138', '711', 'zh-tw', 1000),
(3464, 248, '15-248', 1, '康勢', '{"number":"182328","shop":"\\u5eb7\\u52e2","phone":"0423306761","address":"\\u8c50\\u6b63\\u8def\\u0036\\u0034\\u0038\\u865f"}', '182328', '711', 'zh-tw', 1000),
(3465, 248, '15-248', 1, '亞大醫', '{"number":"166902","shop":"\\u4e9e\\u5927\\u91ab","phone":"0423390883","address":"\\u798f\\u65b0\\u8def\\u0032\\u0032\\u0032\\u865f\\u0042\\u0031\\u6a13"}', '166902', '711', 'zh-tw', 1000),
(3466, 248, '15-248', 1, '朝科大', '{"number":"146997","shop":"\\u671d\\u79d1\\u5927","phone":"0423398840","address":"\\u5409\\u5cf0\\u6771\\u8def\\u0031\\u0036\\u0038\\u865f\\u5bbf\\u820d\\u5927\\u6a13"}', '146997', '711', 'zh-tw', 1000),
(3467, 248, '15-248', 1, '朝陽大學', '{"number":"155304","shop":"\\u671d\\u967d\\u5927\\u5b78","phone":"0423301489","address":"\\u5409\\u5cf0\\u6771\\u8def\\u0037\\u0034\\u865f"}', '155304', '711', 'zh-tw', 1000),
(3468, 248, '15-248', 1, '新峰', '{"number":"153630","shop":"\\u65b0\\u5cf0","phone":"0423304476","address":"\\u5409\\u5cf0\\u8def\\u0031\\u0035\\u0033\\u865f"}', '153630', '711', 'zh-tw', 1000),
(3469, 248, '15-248', 1, '易鴻', '{"number":"113997","shop":"\\u6613\\u9d3b","phone":"0423399397","address":"\\u67f3\\u8c50\\u8def\\u0034\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '113997', '711', 'zh-tw', 1000),
(3470, 248, '15-248', 1, '亞洲一店', '{"number":"967950","shop":"\\u4e9e\\u6d32\\u4e00\\u5e97","phone":"0423392765","address":"\\u67f3\\u8c50\\u8def\\u0035\\u0030\\u0030\\u865f"}', '967950', '711', 'zh-tw', 1000),
(3471, 248, '15-248', 1, '育成', '{"number":"967352","shop":"\\u80b2\\u6210","phone":"0423334418","address":"\\u6a39\\u4ec1\\u8def\\u0031\\u0036\\u0031\\u002d\\u0031\\u53ca\\u0031\\u0036\\u0031\\u002d\\u0032\\u865f"}', '967352', '711', 'zh-tw', 1000),
(3472, 248, '15-248', 1, '峰資', '{"number":"164995","shop":"\\u5cf0\\u8cc7","phone":"0423332547","address":"\\u6a39\\u4ec1\\u8def\\u0032\\u0036\\u865f"}', '164995', '711', 'zh-tw', 1000),
(3473, 248, '15-248', 1, '四德', '{"number":"131951","shop":"\\u56db\\u5fb7","phone":"0423392812","address":"\\u56db\\u5fb7\\u91cc\\u56db\\u5fb7\\u8def\\u0035\\u0032\\u0035\\u4e4b\\u0032\\u865f"}', '131951', '711', 'zh-tw', 1000),
(3474, 248, '15-248', 1, '丁台', '{"number":"138907","shop":"\\u4e01\\u53f0","phone":"0423398562","address":"\\u56db\\u5fb7\\u8def\\u0033\\u0039\\u0032\\u865f"}', '138907', '711', 'zh-tw', 1000),
(3475, 248, '15-248', 1, '曾厝', '{"number":"182867","shop":"\\u66fe\\u539d","phone":"0423304246","address":"\\u632f\\u8208\\u8857\\u0033\\u0032\\u002e\\u0033\\u0036\\u002e\\u0033\\u0038\\u865f"}', '182867', '711', 'zh-tw', 1000),
(3476, 248, '15-248', 1, '中投', '{"number":"132758","shop":"\\u4e2d\\u6295","phone":"0423302080","address":"\\u4e2d\\u6295\\u897f\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0038\\u865f"}', '132758', '711', 'zh-tw', 1000),
(3477, 248, '15-248', 1, '萬峰', '{"number":"158761","shop":"\\u842c\\u5cf0","phone":"0423329875","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0034\\u0036\\u002d\\u0032\\u0030\\u865f"}', '158761', '711', 'zh-tw', 1000),
(3478, 248, '15-248', 1, '新亞大', '{"number":"967776","shop":"\\u65b0\\u4e9e\\u5927","phone":"0423302128","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0037\\u0033\\u865f\\u0034\\u0037\\u0035\\u865f"}', '967776', '711', 'zh-tw', 1000),
(3479, 248, '15-248', 1, '坑口', '{"number":"187312","shop":"\\u5751\\u53e3","phone":"0423312737","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0036\\u0033\\u865f"}', '187312', '711', 'zh-tw', 1000),
(3480, 248, '15-248', 1, '新霧峰', '{"number":"890483","shop":"\\u65b0\\u9727\\u5cf0","phone":"0423335941","address":"\\u4e2d\\u6b63\\u8def\\u0039\\u0031\\u0036\\u865f"}', '890483', '711', 'zh-tw', 1000),
(3481, 249, '15-249', 1, '向勝', '{"number":"865889","shop":"\\u5411\\u52dd","phone":"0424723508","address":"\\u6771\\u8208\\u8def\\u4e09\\u6bb5\\u0035\\u0037\\u865f"}', '865889', '711', 'zh-tw', 1000),
(3482, 249, '15-249', 1, '大全', '{"number":"854661","shop":"\\u5927\\u5168","phone":"0423753022","address":"\\u516c\\u9928\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u0033\\u0038\\u865f"}', '854661', '711', 'zh-tw', 1000),
(3483, 249, '15-249', 1, '金典', '{"number":"940483","shop":"\\u91d1\\u5178","phone":"0423265492","address":"\\u5065\\u884c\\u8def\\u0031\\u0030\\u0034\\u0036\\u003b\\u0031\\u0030\\u0034\\u0036\\u4e4b\\u0031\\u865f"}', '940483', '711', 'zh-tw', 1000),
(3484, 249, '15-249', 1, '益風', '{"number":"154644","shop":"\\u76ca\\u98a8","phone":"0423202817","address":"\\u7cbe\\u8aa0\\u8def\\u0031\\u0030\\u0037\\u865f"}', '154644', '711', 'zh-tw', 1000),
(3485, 249, '15-249', 1, '精明', '{"number":"143068","shop":"\\u7cbe\\u660e","phone":"0423292349","address":"\\u7cbe\\u8aa0\\u8def\\u0031\\u0035\\u865f"}', '143068', '711', 'zh-tw', 1000),
(3486, 249, '15-249', 1, '精業', '{"number":"118659","shop":"\\u7cbe\\u696d","phone":"0423191670","address":"\\u7cbe\\u8aa0\\u8def\\u0034\\u0031\\u865f\\u4e4b\\u0036\\u4e4b\\u0037"}', '118659', '711', 'zh-tw', 1000),
(3487, 249, '15-249', 1, '樂群', '{"number":"186227","shop":"\\u6a02\\u7fa4","phone":"0423714557","address":"\\u6797\\u68ee\\u8def\\u0038\\u0030\\u865f\\u53ca\\u6a02\\u7fa4\\u8857\\u0038\\u0031\\u865f"}', '186227', '711', 'zh-tw', 1000),
(3488, 249, '15-249', 1, '向美', '{"number":"170211","shop":"\\u5411\\u7f8e","phone":"0423016027","address":"\\u7f8e\\u6751\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0032\\u4e4b\\u0031\\u865f\\u0033\\u0030\\u0032\\u4e4b\\u0037\\u865f"}', '170211', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(3489, 249, '15-249', 1, '美村', '{"number":"112639","shop":"\\u7f8e\\u6751","phone":"0423762435","address":"\\u7f8e\\u6751\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0032\\u865f\\u0035\\u0034\\u0036\\u865f"}', '112639', '711', 'zh-tw', 1000),
(3490, 249, '15-249', 1, '美生', '{"number":"186674","shop":"\\u7f8e\\u751f","phone":"0423275818","address":"\\u7f8e\\u6751\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u865f"}', '186674', '711', 'zh-tw', 1000),
(3491, 249, '15-249', 1, '權美', '{"number":"187079","shop":"\\u6b0a\\u7f8e","phone":"0423723672","address":"\\u7f8e\\u6751\\u8def\\u4e00\\u6bb5\\u0037\\u0033\\u0036\\u865f"}', '187079', '711', 'zh-tw', 1000),
(3492, 249, '15-249', 1, '新五廊', '{"number":"865384","shop":"\\u65b0\\u4e94\\u5eca","phone":"0422240981","address":"\\u6c11\\u751f\\u8def\\u0031\\u0035\\u0035\\u865f\\u4e00\\u6a13"}', '865384', '711', 'zh-tw', 1000),
(3493, 249, '15-249', 1, '華生', '{"number":"902757","shop":"\\u83ef\\u751f","phone":"0423765931","address":"\\u6c11\\u751f\\u8def\\u0035\\u0031\\u0037\\u865f"}', '902757', '711', 'zh-tw', 1000),
(3494, 249, '15-249', 1, '明義', '{"number":"197283","shop":"\\u660e\\u7fa9","phone":"0423287885","address":"\\u660e\\u7fa9\\u8857\\u0036\\u865f"}', '197283', '711', 'zh-tw', 1000),
(3495, 249, '15-249', 1, '模範', '{"number":"912732","shop":"\\u6a21\\u7bc4","phone":"0423024571","address":"\\u6a21\\u7bc4\\u8857\\u0033\\u0034\\u5df7\\u0031\\u865f"}', '912732', '711', 'zh-tw', 1000),
(3496, 249, '15-249', 1, '五權', '{"number":"144566","shop":"\\u4e94\\u6b0a","phone":"0423759066","address":"\\u5357\\u5c6f\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f\\u0036\\u0034\\u865f"}', '144566', '711', 'zh-tw', 1000),
(3497, 249, '15-249', 1, '民府', '{"number":"141132","shop":"\\u6c11\\u5e9c","phone":"0422203832","address":"\\u56db\\u7dad\\u8857\\u0032\\u0032\\u002d\\u0031\\u865f\\u0032\\u0034\\u865f"}', '141132', '711', 'zh-tw', 1000),
(3498, 249, '15-249', 1, '台麗', '{"number":"962715","shop":"\\u53f0\\u9e97","phone":"0422060119","address":"\\u4e94\\u6b0a\\u8def\\u0031\\u0031\\u0039\\u865f"}', '962715', '711', 'zh-tw', 1000),
(3499, 249, '15-249', 1, '保誠', '{"number":"136336","shop":"\\u4fdd\\u8aa0","phone":"0423721062","address":"\\u4e94\\u6b0a\\u8def\\u0032\\u002d\\u0031\\u0030\\u0034\\u865f\\u53ca\\u8cb4\\u548c\\u8857\\u0032\\u0032\\u0032\\u865f"}', '136336', '711', 'zh-tw', 1000),
(3500, 249, '15-249', 1, '安龍', '{"number":"885539","shop":"\\u5b89\\u9f8d","phone":"0423752146","address":"\\u4e94\\u6b0a\\u8def\\u0032\\u002d\\u0031\\u0032\\u865f\\u0031\\u0033\\u865f"}', '885539', '711', 'zh-tw', 1000),
(3501, 249, '15-249', 1, '權大', '{"number":"182409","shop":"\\u6b0a\\u5927","phone":"0423780449","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '182409', '711', 'zh-tw', 1000),
(3502, 249, '15-249', 1, '上誠', '{"number":"152073","shop":"\\u4e0a\\u8aa0","phone":"0424739542","address":"\\u5411\\u4e0a\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u0031\\u865f\\u0033\\u0038\\u0033\\u865f\\u0033\\u0038\\u0035\\u865f"}', '152073', '711', 'zh-tw', 1000),
(3503, 249, '15-249', 1, '向興', '{"number":"192886","shop":"\\u5411\\u8208","phone":"0423019017","address":"\\u5411\\u4e0a\\u8def\\u4e00\\u6bb5\\u0039\\u0035\\u865f"}', '192886', '711', 'zh-tw', 1000),
(3504, 249, '15-249', 1, '大將作', '{"number":"185958","shop":"\\u5927\\u5c07\\u4f5c","phone":"0423205843","address":"\\u82f1\\u624d\\u8def\\u0034\\u0031\\u0030\\u865f"}', '185958', '711', 'zh-tw', 1000),
(3505, 249, '15-249', 1, '新文化', '{"number":"139298","shop":"\\u65b0\\u6587\\u5316","phone":"0423019624","address":"\\u4e2d\\u7f8e\\u8857\\u0032\\u0038\\u0033\\u865f"}', '139298', '711', 'zh-tw', 1000),
(3506, 249, '15-249', 1, '三中', '{"number":"185866","shop":"\\u4e09\\u4e2d","phone":"0423146826","address":"\\u5fe0\\u660e\\u8def\\u0035\\u0034\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '185866', '711', 'zh-tw', 1000),
(3507, 249, '15-249', 1, '鄉林夏都', '{"number":"114152","shop":"\\u9109\\u6797\\u590f\\u90fd","phone":"0423267921","address":"\\u5fe0\\u660e\\u5357\\u8def\\u0031\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '114152', '711', 'zh-tw', 1000),
(3508, 249, '15-249', 1, '忠明義', '{"number":"171203","shop":"\\u5fe0\\u660e\\u7fa9","phone":"0423269542","address":"\\u5fe0\\u660e\\u5357\\u8def\\u0031\\u0036\\u865f\\u0031\\u0036\\u4e4b\\u0031\\u865f\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '171203', '711', 'zh-tw', 1000),
(3509, 249, '15-249', 1, '忠福', '{"number":"174626","shop":"\\u5fe0\\u798f","phone":"0423787263","address":"\\u5fe0\\u660e\\u5357\\u8def\\u0031\\u0039\\u0032\\u865f"}', '174626', '711', 'zh-tw', 1000),
(3510, 249, '15-249', 1, '吉龍', '{"number":"158288","shop":"\\u5409\\u9f8d","phone":"0423754680","address":"\\u5fe0\\u660e\\u5357\\u8def\\u0034\\u0031\\u0030\\u865f"}', '158288', '711', 'zh-tw', 1000),
(3511, 250, '15-250', 1, '大鵬', '{"number":"977061","shop":"\\u5927\\u9d6c","phone":"0422963912","address":"\\u9577\\u5b89\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0035\\u865f"}', '977061', '711', 'zh-tw', 1000),
(3512, 250, '15-250', 1, '秋紅谷', '{"number":"171487","shop":"\\u79cb\\u7d05\\u8c37","phone":"0422542731","address":"\\u671d\\u5bcc\\u8def\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '171487', '711', 'zh-tw', 1000),
(3513, 250, '15-250', 1, '新墩', '{"number":"832030","shop":"\\u65b0\\u58a9","phone":"0423221655","address":"\\u5927\\u58a9\\u8def\\u0039\\u0030\\u0031\\u865f"}', '832030', '711', 'zh-tw', 1000),
(3514, 250, '15-250', 1, '墩隆', '{"number":"903255","shop":"\\u58a9\\u9686","phone":"0423273302","address":"\\u5927\\u58a9\\u8def\\u0039\\u0036\\u0036\\u865f"}', '903255', '711', 'zh-tw', 1000),
(3515, 250, '15-250', 1, '隆恩', '{"number":"188924","shop":"\\u9686\\u6069","phone":"0423103957","address":"\\u5927\\u58a9\\u5341\\u516b\\u8857\\u0031\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '188924', '711', 'zh-tw', 1000),
(3516, 250, '15-250', 1, '隆安', '{"number":"874458","shop":"\\u9686\\u5b89","phone":"0423271980","address":"\\u5927\\u9686\\u8def\\u0035\\u0036\\u865f"}', '874458', '711', 'zh-tw', 1000),
(3517, 250, '15-250', 1, '逢源', '{"number":"896274","shop":"\\u9022\\u6e90","phone":"0427054642","address":"\\u9022\\u7532\\u8def\\u0031\\u0036\\u0032\\u865f\\u4e4b\\u0035"}', '896274', '711', 'zh-tw', 1000),
(3518, 250, '15-250', 1, '逢喜', '{"number":"967422","shop":"\\u9022\\u559c","phone":"0427084476","address":"\\u9022\\u7532\\u8def\\u0032\\u0034\\u0037\\u865f"}', '967422', '711', 'zh-tw', 1000),
(3519, 250, '15-250', 1, '港強', '{"number":"113001","shop":"\\u6e2f\\u5f37","phone":"0424632861","address":"\\u798f\\u79d1\\u8def\\u0032\\u0039\\u0035\\u865f\\u4e00\\u6a13"}', '113001', '711', 'zh-tw', 1000),
(3520, 250, '15-250', 1, '瑞聯', '{"number":"120146","shop":"\\u745e\\u806f","phone":"0424634826","address":"\\u798f\\u79d1\\u8def\\u0038\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '120146', '711', 'zh-tw', 1000),
(3521, 250, '15-250', 1, '聯順', '{"number":"921758","shop":"\\u806f\\u9806","phone":"0424629546","address":"\\u798f\\u806f\\u91cc\\u798f\\u9806\\u8def\\u0038\\u0039\\u0038\\u865f\\u0039\\u0030\\u0030\\u865f"}', '921758', '711', 'zh-tw', 1000),
(3522, 250, '15-250', 1, '福康', '{"number":"149103","shop":"\\u798f\\u5eb7","phone":"0424638081","address":"\\u798f\\u6797\\u91cc\\u798f\\u5eb7\\u8def\\u0033\\u0033\\u865f"}', '149103', '711', 'zh-tw', 1000),
(3523, 250, '15-250', 1, '福林', '{"number":"167721","shop":"\\u798f\\u6797","phone":"0424628940","address":"\\u798f\\u6797\\u8def\\u0033\\u0031\\u5df7\\u0031\\u0035\\u0030\\u865f"}', '167721', '711', 'zh-tw', 1000),
(3524, 250, '15-250', 1, '漢翔', '{"number":"180274","shop":"\\u6f22\\u7fd4","phone":"0424525134","address":"\\u798f\\u661f\\u5317\\u8def\\u0035\\u0039\\u865f"}', '180274', '711', 'zh-tw', 1000),
(3525, 250, '15-250', 1, '逢大二', '{"number":"122197","shop":"\\u9022\\u5927\\u4e8c","phone":"0424525048","address":"\\u798f\\u661f\\u5317\\u8def\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '122197', '711', 'zh-tw', 1000),
(3526, 250, '15-250', 1, '西苑', '{"number":"143220","shop":"\\u897f\\u82d1","phone":"0424528983","address":"\\u798f\\u661f\\u8def\\u0031\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '143220', '711', 'zh-tw', 1000),
(3527, 250, '15-250', 1, '逢盛', '{"number":"957931","shop":"\\u9022\\u76db","phone":"0427064895","address":"\\u798f\\u661f\\u8def\\u0033\\u0033\\u0030\\u865f"}', '957931', '711', 'zh-tw', 1000),
(3528, 250, '15-250', 1, '福星', '{"number":"128829","shop":"\\u798f\\u661f","phone":"0424519553","address":"\\u798f\\u661f\\u8def\\u0035\\u0038\\u0030\\u865f"}', '128829', '711', 'zh-tw', 1000),
(3529, 250, '15-250', 1, '逢星', '{"number":"193982","shop":"\\u9022\\u661f","phone":"0424522597","address":"\\u798f\\u661f\\u8def\\u0036\\u0035\\u0031\\u002d\\u0038\\u865f"}', '193982', '711', 'zh-tw', 1000),
(3530, 250, '15-250', 1, '瑞盟', '{"number":"195841","shop":"\\u745e\\u76df","phone":"0424621596","address":"\\u798f\\u96c5\\u8def\\u0031\\u0034\\u0033\\u002d\\u0031\\u865f"}', '195841', '711', 'zh-tw', 1000),
(3531, 250, '15-250', 1, '福雅', '{"number":"953858","shop":"\\u798f\\u96c5","phone":"0424639859","address":"\\u798f\\u96c5\\u8def\\u0033\\u0033\\u0038\\u865f"}', '953858', '711', 'zh-tw', 1000),
(3532, 250, '15-250', 1, '科雅', '{"number":"182982","shop":"\\u79d1\\u96c5","phone":"0424636793","address":"\\u798f\\u96c5\\u8def\\u0035\\u0037\\u0031\\u002d\\u0031\\u865f"}', '182982', '711', 'zh-tw', 1000),
(3533, 250, '15-250', 1, '甘肅', '{"number":"128553","shop":"\\u7518\\u8085","phone":"0423152941","address":"\\u7518\\u8085\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u865f"}', '128553', '711', 'zh-tw', 1000),
(3534, 250, '15-250', 1, '豐慶', '{"number":"993498","shop":"\\u8c50\\u6176","phone":"0423164548","address":"\\u7518\\u8085\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0036\\u865f\\u53ca\\u0031\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '993498', '711', 'zh-tw', 1000),
(3535, 250, '15-250', 1, '新中工', '{"number":"197076","shop":"\\u65b0\\u4e2d\\u5de5","phone":"0423596579","address":"\\u5de5\\u696d\\u5340\\u4e00\\u8def\\u0035\\u0038\\u4e4b\\u0031\\u865f"}', '197076', '711', 'zh-tw', 1000),
(3536, 250, '15-250', 1, '工一', '{"number":"901536","shop":"\\u5de5\\u4e00","phone":"0423501228","address":"\\u5de5\\u696d\\u5340\\u4e00\\u8def\\u0039\\u0038\\u002d\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '901536', '711', 'zh-tw', 1000),
(3537, 250, '15-250', 1, '科安', '{"number":"112651","shop":"\\u79d1\\u5b89","phone":"0424631686","address":"\\u570b\\u5b89\\u4e00\\u8def\\u0031\\u0030\\u0035\\u865f\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f\\u4e00\\u6a13"}', '112651', '711', 'zh-tw', 1000),
(3538, 250, '15-250', 1, '國安國宅', '{"number":"943091","shop":"\\u570b\\u5b89\\u570b\\u5b85","phone":"0424610890","address":"\\u570b\\u5b89\\u4e00\\u8def\\u0032\\u0030\\u0038\\u5df7\\u0031\\u865f"}', '943091', '711', 'zh-tw', 1000),
(3539, 250, '15-250', 1, '漢成', '{"number":"900887","shop":"\\u6f22\\u6210","phone":"0423166771","address":"\\u6f22\\u6210\\u56db\\u8857\\u0032\\u865f"}', '900887', '711', 'zh-tw', 1000),
(3540, 250, '15-250', 1, '福漢', '{"number":"186571","shop":"\\u798f\\u6f22","phone":"0423152060","address":"\\u4f55\\u798f\\u91cc\\u6f22\\u53e3\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0032\\u865f\\u0031\\u0031\\u0032\\u002d\\u0031\\u865f"}', '186571', '711', 'zh-tw', 1000),
(3541, 250, '15-250', 1, '安河', '{"number":"951405","shop":"\\u5b89\\u6cb3","phone":"0422953577","address":"\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u865f"}', '951405', '711', 'zh-tw', 1000),
(3542, 250, '15-250', 1, '航發', '{"number":"115926","shop":"\\u822a\\u767c","phone":"0424526841","address":"\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0032\\u865f"}', '115926', '711', 'zh-tw', 1000),
(3543, 250, '15-250', 1, '福上', '{"number":"164113","shop":"\\u798f\\u4e0a","phone":"0423155607","address":"\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '164113', '711', 'zh-tw', 1000),
(3544, 250, '15-250', 1, '廣環', '{"number":"199289","shop":"\\u5ee3\\u74b0","phone":"0424524421","address":"\\u74b0\\u4e2d\\u8def\\u4e8c\\u6bb5\\u0036\\u0039\\u0038\\u865f"}', '199289', '711', 'zh-tw', 1000),
(3545, 250, '15-250', 1, '大都會', '{"number":"155267","shop":"\\u5927\\u90fd\\u6703","phone":"0422524461","address":"\\u60e0\\u4f86\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '155267', '711', 'zh-tw', 1000),
(3546, 250, '15-250', 1, '歐風', '{"number":"158808","shop":"\\u6b50\\u98a8","phone":"0422514455","address":"\\u60e0\\u6c11\\u8def\\u0031\\u0039\\u0039\\u865f"}', '158808', '711', 'zh-tw', 1000),
(3547, 250, '15-250', 1, '友達宿舍', '{"number":"164629","shop":"\\u53cb\\u9054\\u5bbf\\u820d","phone":"0424639308","address":"\\u79d1\\u96c5\\u8def\\u0032\\u865f"}', '164629', '711', 'zh-tw', 1000),
(3548, 250, '15-250', 1, '朝馬', '{"number":"886129","shop":"\\u671d\\u99ac","phone":"0422598249","address":"\\u9ece\\u660e\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0031\\u0030\\u865f"}', '886129', '711', 'zh-tw', 1000),
(3549, 250, '15-250', 1, '逢貿', '{"number":"182948","shop":"\\u9022\\u8cbf","phone":"0424264926","address":"\\u9ece\\u660e\\u8def\\u4e09\\u6bb5\\u0031\\u0032\\u0031\\u0038\\u865f"}', '182948', '711', 'zh-tw', 1000),
(3550, 250, '15-250', 1, '逢明', '{"number":"144577","shop":"\\u9022\\u660e","phone":"0424513983","address":"\\u9ece\\u660e\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0038\\u865f"}', '144577', '711', 'zh-tw', 1000),
(3551, 250, '15-250', 1, '逢福', '{"number":"865502","shop":"\\u9022\\u798f","phone":"0427082309","address":"\\u9ece\\u660e\\u8def\\u4e09\\u6bb5\\u0033\\u0034\\u0038\\u865f"}', '865502', '711', 'zh-tw', 1000),
(3552, 250, '15-250', 1, '寧夏', '{"number":"977360","shop":"\\u5be7\\u590f","phone":"0423178934","address":"\\u5be7\\u590f\\u8def\\u0031\\u0030\\u0035\\u865f"}', '977360', '711', 'zh-tw', 1000),
(3553, 250, '15-250', 1, '文華', '{"number":"977201","shop":"\\u6587\\u83ef","phone":"0423121615","address":"\\u5be7\\u590f\\u8def\\u0032\\u0033\\u0032\\u865f"}', '977201', '711', 'zh-tw', 1000),
(3554, 250, '15-250', 1, '逢仁', '{"number":"977500","shop":"\\u9022\\u4ec1","phone":"0424512777","address":"\\u9752\\u6d77\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u0032\\u865f"}', '977500', '711', 'zh-tw', 1000),
(3555, 250, '15-250', 1, '逢德', '{"number":"135780","shop":"\\u9022\\u5fb7","phone":"0424518827","address":"\\u9752\\u6d77\\u8def\\u4e8c\\u6bb5\\u0033\\u0032\\u0031\\u865f\\u0033\\u0032\\u0033\\u865f"}', '135780', '711', 'zh-tw', 1000),
(3556, 250, '15-250', 1, '逢科', '{"number":"181956","shop":"\\u9022\\u79d1","phone":"0424520126","address":"\\u9752\\u6d77\\u8def\\u4e8c\\u6bb5\\u0035\\u0035\\u0036\\u865f"}', '181956', '711', 'zh-tw', 1000),
(3557, 250, '15-250', 1, '青海', '{"number":"129246","shop":"\\u9752\\u6d77","phone":"0423178274","address":"\\u9752\\u6d77\\u8def\\u4e00\\u6bb5\\u0031\\u865f"}', '129246', '711', 'zh-tw', 1000),
(3558, 250, '15-250', 1, '尚仁', '{"number":"120168","shop":"\\u5c1a\\u4ec1","phone":"0424527497","address":"\\u4e0a\\u4ec1\\u8857\\u0031\\u0033\\u0039\\u865f"}', '120168', '711', 'zh-tw', 1000),
(3559, 250, '15-250', 1, '宸騰', '{"number":"967123","shop":"\\u5bb8\\u9a30","phone":"0424520743","address":"\\u4e0a\\u77f3\\u8def\\u0032\\u0030\\u0031\\u865f"}', '967123', '711', 'zh-tw', 1000),
(3560, 250, '15-250', 1, '潮洋', '{"number":"960487","shop":"\\u6f6e\\u6d0b","phone":"0422541499","address":"\\u5e02\\u653f\\u8def\\u0035\\u0039\\u0036\\u865f"}', '960487', '711', 'zh-tw', 1000),
(3561, 250, '15-250', 1, '桂冠', '{"number":"110884","shop":"\\u6842\\u51a0","phone":"0423117162","address":"\\u56db\\u5ddd\\u8def\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '110884', '711', 'zh-tw', 1000),
(3562, 250, '15-250', 1, '中川', '{"number":"118497","shop":"\\u4e2d\\u5ddd","phone":"0423127422","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e8c\\u6bb5\\u0039\\u0033\\u0038\\u865f\\u0039\\u0034\\u0030\\u865f"}', '118497', '711', 'zh-tw', 1000),
(3563, 250, '15-250', 1, '港惠', '{"number":"930604","shop":"\\u6e2f\\u60e0","phone":"0423128333","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e09\\u6bb5\\u0033\\u0032\\u0038\\u865f"}', '930604', '711', 'zh-tw', 1000),
(3564, 250, '15-250', 1, '展騰', '{"number":"186881","shop":"\\u5c55\\u9a30","phone":"0424524805","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e09\\u6bb5\\u0036\\u0038\\u0038\\u865f\\u0036\\u0039\\u0030\\u865f"}', '186881', '711', 'zh-tw', 1000),
(3565, 250, '15-250', 1, '新市政', '{"number":"163523","shop":"\\u65b0\\u5e02\\u653f","phone":"0422519134","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e09\\u6bb5\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '163523', '711', 'zh-tw', 1000),
(3566, 250, '15-250', 1, '中榮', '{"number":"124539","shop":"\\u4e2d\\u69ae","phone":"0423594713","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\u0031\\u0036\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '124539', '711', 'zh-tw', 1000),
(3567, 250, '15-250', 1, '鑫港醫', '{"number":"159395","shop":"\\u946b\\u6e2f\\u91ab","phone":"0423596765","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\u0031\\u0036\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '159395', '711', 'zh-tw', 1000),
(3568, 250, '15-250', 1, '東儷', '{"number":"154622","shop":"\\u6771\\u5137","phone":"0423590457","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\u0031\\u0037\\u0032\\u0037\\u865f"}', '154622', '711', 'zh-tw', 1000),
(3569, 250, '15-250', 1, '管院', '{"number":"154633","shop":"\\u7ba1\\u9662","phone":"0423590943","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\u0031\\u0037\\u0032\\u0037\\u865f"}', '154633', '711', 'zh-tw', 1000),
(3570, 250, '15-250', 1, '校友會館', '{"number":"943390","shop":"\\u6821\\u53cb\\u6703\\u9928","phone":"0423592722","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\u0031\\u0037\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '943390', '711', 'zh-tw', 1000),
(3571, 250, '15-250', 1, '逢大一', '{"number":"149114","shop":"\\u9022\\u5927\\u4e00","phone":"0424527714","address":"\\u6587\\u83ef\\u8def\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '149114', '711', 'zh-tw', 1000),
(3572, 250, '15-250', 1, '逢華', '{"number":"195829","shop":"\\u9022\\u83ef","phone":"0424520145","address":"\\u6587\\u83ef\\u8def\\u0031\\u0030\\u002d\\u0037\\u865f"}', '195829', '711', 'zh-tw', 1000),
(3573, 250, '15-250', 1, '逢廣', '{"number":"128690","shop":"\\u9022\\u5ee3","phone":"0424528846","address":"\\u6587\\u83ef\\u8def\\u0031\\u0037\\u0030\\u865f\\u0031\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '128690', '711', 'zh-tw', 1000),
(3574, 250, '15-250', 1, '隆心', '{"number":"142984","shop":"\\u9686\\u5fc3","phone":"0423109505","address":"\\u6587\\u5fc3\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u0036\\u865f"}', '142984', '711', 'zh-tw', 1000),
(3575, 250, '15-250', 1, '文心', '{"number":"822310","shop":"\\u6587\\u5fc3","phone":"0423138420","address":"\\u6587\\u5fc3\\u8def\\u4e09\\u6bb5\\u0037\\u0036\\u865f"}', '822310', '711', 'zh-tw', 1000),
(3576, 250, '15-250', 1, '逢吉', '{"number":"195254","shop":"\\u9022\\u5409","phone":"0424529376","address":"\\u897f\\u5b89\\u8857\\u0032\\u0037\\u0035\\u865f"}', '195254', '711', 'zh-tw', 1000),
(3577, 250, '15-250', 1, '華美', '{"number":"158668","shop":"\\u83ef\\u7f8e","phone":"0423143424","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u865f\\u0031\\u0039\\u4e4b\\u0031\\u865f\\u0032\\u0031\\u865f"}', '158668', '711', 'zh-tw', 1000),
(3578, 250, '15-250', 1, '寶慶', '{"number":"112190","shop":"\\u5bf6\\u6176","phone":"0424529273","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0036\\u5df7\\u0038\\u865f\\u0031\\u0030\\u865f"}', '112190', '711', 'zh-tw', 1000),
(3579, 250, '15-250', 1, '逢甲', '{"number":"159111","shop":"\\u9022\\u7532","phone":"0424525542","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0032\\u4e4b\\u0033\\u865f\\u4e4b\\u0034\\u865f\\u0031\\u6a13"}', '159111', '711', 'zh-tw', 1000),
(3580, 250, '15-250', 1, '新西屯', '{"number":"189307","shop":"\\u65b0\\u897f\\u5c6f","phone":"0424522290","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0031\\u002d\\u0033\\u865f\\u0032\\u0038\\u0031\\u002d\\u0034\\u865f"}', '189307', '711', 'zh-tw', 1000),
(3581, 250, '15-250', 1, '西屯重慶', '{"number":"951427","shop":"\\u897f\\u5c6f\\u91cd\\u6176","phone":"0423175147","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\u0039\\u0035\\u4e4b\\u0032\\u0035\\u865f"}', '951427', '711', 'zh-tw', 1000),
(3582, 250, '15-250', 1, '福茂', '{"number":"900175","shop":"\\u798f\\u8302","phone":"0424628460","address":"\\u897f\\u5c6f\\u8def\\u4e09\\u6bb5\\u0031\\u0034\\u0038\\u002d\\u0033\\u0030\\u865f"}', '900175', '711', 'zh-tw', 1000),
(3583, 250, '15-250', 1, '玉門', '{"number":"142973","shop":"\\u7389\\u9580","phone":"0424612480","address":"\\u897f\\u5c6f\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0036\\u4e4b\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '142973', '711', 'zh-tw', 1000),
(3584, 250, '15-250', 1, '港安', '{"number":"197456","shop":"\\u6e2f\\u5b89","phone":"0424613492","address":"\\u897f\\u5c6f\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0039\\u4e4b\\u0039\\u865f"}', '197456', '711', 'zh-tw', 1000),
(3585, 250, '15-250', 1, '鑫工和', '{"number":"971328","shop":"\\u946b\\u5de5\\u548c","phone":"0423593506","address":"\\u5354\\u548c\\u91cc\\u5de5\\u696d\\u5340\\u4e09\\u5341\\u516b\\u8def\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '971328', '711', 'zh-tw', 1000),
(3586, 250, '15-250', 1, '奇積', '{"number":"166669","shop":"\\u5947\\u7a4d","phone":"0424621293","address":"\\u65b0\\u79d1\\u8def\\u0031\\u865f"}', '166669', '711', 'zh-tw', 1000),
(3587, 250, '15-250', 1, '鑫晶積', '{"number":"167617","shop":"\\u946b\\u6676\\u7a4d","phone":"0424639081","address":"\\u65b0\\u79d1\\u8def\\u0031\\u865f"}', '167617', '711', 'zh-tw', 1000),
(3588, 250, '15-250', 1, '櫻花', '{"number":"891671","shop":"\\u6afb\\u82b1","phone":"0423151726","address":"\\u6afb\\u82b1\\u8def\\u0031\\u0031\\u0031\\u865f"}', '891671', '711', 'zh-tw', 1000),
(3589, 250, '15-250', 1, '俊國', '{"number":"992543","shop":"\\u4fca\\u570b","phone":"0424631814","address":"\\u6c38\\u798f\\u8def\\u0034\\u0030\\u5df7\\u0035\\u865f\\u0037\\u865f\\u0031\\u6a13"}', '992543', '711', 'zh-tw', 1000),
(3590, 250, '15-250', 1, '上安', '{"number":"913735","shop":"\\u4e0a\\u5b89","phone":"0424528528","address":"\\u81f3\\u5584\\u8def\\u0036\\u0031\\u865f"}', '913735', '711', 'zh-tw', 1000),
(3591, 250, '15-250', 1, '天佑', '{"number":"114369","shop":"\\u5929\\u4f51","phone":"0423585474","address":"\\u4e2d\\u5de5\\u4e8c\\u8def\\u0031\\u0039\\u0036\\u865f\\u0031\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '114369', '711', 'zh-tw', 1000),
(3592, 250, '15-250', 1, '鑫工三', '{"number":"180827","shop":"\\u946b\\u5de5\\u4e09","phone":"0423598492","address":"\\u4e2d\\u5de5\\u4e09\\u8def\\u0031\\u0032\\u0033\\u002e\\u0031\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '180827', '711', 'zh-tw', 1000),
(3593, 250, '15-250', 1, '友達光電', '{"number":"942490","shop":"\\u53cb\\u9054\\u5149\\u96fb","phone":"0424637323","address":"\\u4e2d\\u79d1\\u8def\\u0031\\u865f"}', '942490', '711', 'zh-tw', 1000),
(3594, 250, '15-250', 1, '鑫友達', '{"number":"971269","shop":"\\u946b\\u53cb\\u9054","phone":"0424635067","address":"\\u4e2d\\u79d1\\u8def\\u0031\\u865f"}', '971269', '711', 'zh-tw', 1000),
(3595, 250, '15-250', 1, '大貿', '{"number":"180517","shop":"\\u5927\\u8cbf","phone":"0422957569","address":"\\u4e2d\\u5e73\\u8def\\u0032\\u0037\\u0039\\u865f"}', '180517', '711', 'zh-tw', 1000),
(3596, 251, '15-251', 1, '永源村', '{"number":"966810","shop":"\\u6c38\\u6e90\\u6751","phone":"0425825448","address":"\\u6771\\u5c71\\u8857\\u0038\\u0038\\u002d\\u0032\\u0039\\u865f\\u0033\\u0030\\u865f"}', '966810', '711', 'zh-tw', 1000),
(3597, 251, '15-251', 1, '薰衣草', '{"number":"954758","shop":"\\u85b0\\u8863\\u8349","phone":"0425825277","address":"\\u5354\\u4e2d\\u8857\\u0031\\u0036\\u0039\\u4e4b\\u0031\\u865f"}', '954758', '711', 'zh-tw', 1000),
(3598, 251, '15-251', 1, '新社', '{"number":"123293","shop":"\\u65b0\\u793e","phone":"0425819166","address":"\\u8208\\u793e\\u8857\\u56db\\u6bb5\\u0032\\u0037\\u4e4b\\u0031\\u865f"}', '123293', '711', 'zh-tw', 1000),
(3599, 251, '15-251', 1, '社和', '{"number":"151586","shop":"\\u793e\\u548c","phone":"0425824929","address":"\\u4e2d\\u548c\\u8857\\u4e94\\u6bb5\\u0031\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '151586', '711', 'zh-tw', 1000),
(3600, 251, '15-251', 1, '中興嶺', '{"number":"112145","shop":"\\u4e2d\\u8208\\u5dba","phone":"0425820985","address":"\\u4e2d\\u8208\\u5dba\\u0031\\u0037\\u0032\\u4e4b\\u0032\\u865f"}', '112145', '711', 'zh-tw', 1000),
(3601, 252, '15-252', 1, '成興', '{"number":"149608","shop":"\\u6210\\u8208","phone":"0422258097","address":"\\u6210\\u529f\\u8def\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '149608', '711', 'zh-tw', 1000),
(3602, 252, '15-252', 1, '聯華', '{"number":"991805","shop":"\\u806f\\u83ef","phone":"0422267149","address":"\\u516c\\u5712\\u8def\\u0031\\u0033\\u865f"}', '991805', '711', 'zh-tw', 1000),
(3603, 252, '15-252', 1, '錦花', '{"number":"158842","shop":"\\u9326\\u82b1","phone":"0422230402","address":"\\u5149\\u5fa9\\u8def\\u0031\\u0032\\u0037\\u865f"}', '158842', '711', 'zh-tw', 1000),
(3604, 252, '15-252', 1, '新繼光', '{"number":"194826","shop":"\\u65b0\\u7e7c\\u5149","phone":"0422220760","address":"\\u7e7c\\u5149\\u8857\\u0036\\u0034\\u865f\\u4e00\\u6a13"}', '194826', '711', 'zh-tw', 1000),
(3605, 252, '15-252', 1, '聯鑫', '{"number":"183675","shop":"\\u806f\\u946b","phone":"0422298432","address":"\\u5efa\\u570b\\u8def\\u0031\\u0034\\u0033\\u002e\\u0031\\u0034\\u0035\\u865f"}', '183675', '711', 'zh-tw', 1000),
(3606, 252, '15-252', 1, '鼎站', '{"number":"135551","shop":"\\u9f0e\\u7ad9","phone":"0422264467","address":"\\u5efa\\u570b\\u8def\\u0032\\u0030\\u0032\\u865f"}', '135551', '711', 'zh-tw', 1000),
(3607, 252, '15-252', 1, '第一廣場', '{"number":"170233","shop":"\\u7b2c\\u4e00\\u5ee3\\u5834","phone":"0422236627","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e00\\u6bb5\\u0033\\u0035\\u865f"}', '170233', '711', 'zh-tw', 1000),
(3608, 252, '15-252', 1, '東平驛', '{"number":"185741","shop":"\\u6771\\u5e73\\u9a5b","phone":"0422298340","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e00\\u6bb5\\u0035\\u0033\\u0031\\u865f"}', '185741', '711', 'zh-tw', 1000),
(3609, 252, '15-252', 1, '鑫華新', '{"number":"970864","shop":"\\u946b\\u83ef\\u65b0","phone":"0422293905","address":"\\u4e2d\\u83ef\\u91cc\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0037\\u0035\\u865f\\u0037\\u0037\\u865f\\u53ca\\u6c11\\u65cf\\u8def\\u0032\\u0031\\u0038\\u865f"}', '970864', '711', 'zh-tw', 1000),
(3610, 252, '15-252', 1, '鑫中華', '{"number":"196442","shop":"\\u946b\\u4e2d\\u83ef","phone":"0422294106","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0033\\u002e\\u0031\\u0035\\u0035\\u865f\\u4e00\\u6a13\\u0031\\u0035\\u0037\\u865f\\u4e00\\u4e8c\\u6a13"}', '196442', '711', 'zh-tw', 1000),
(3611, 252, '15-252', 1, '市鑫', '{"number":"173520","shop":"\\u5e02\\u946b","phone":"0422255056","address":"\\u81ea\\u7531\\u8def\\u4e8c\\u6bb5\\u0039\\u865f\\u0031\\u6a13"}', '173520', '711', 'zh-tw', 1000),
(3612, 253, '16-253', 1, '吉富', '{"number":"941338","shop":"\\u5409\\u5bcc","phone":"033619882","address":"\\u767d\\u9dfa\\u91cc\\u6c38\\u8c50\\u5357\\u8def\\u0037\\u0032\\u865f"}', '941338', '711', 'zh-tw', 1000),
(3613, 253, '16-253', 1, '興圓', '{"number":"160018","shop":"\\u8208\\u5713","phone":"033653530","address":"\\u9577\\u8208\\u8def\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '160018', '711', 'zh-tw', 1000),
(3614, 253, '16-253', 1, '德力', '{"number":"164353","shop":"\\u5fb7\\u529b","phone":"033778096","address":"\\u5927\\u798f\\u91cc\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0034\\u865f\\u0031\\u0033\\u0036\\u865f"}', '164353', '711', 'zh-tw', 1000),
(3615, 253, '16-253', 1, '明福', '{"number":"116044","shop":"\\u660e\\u798f","phone":"033614512","address":"\\u5927\\u660e\\u8857\\u0031\\u0030\\u0035\\u865f\\u0031\\u0030\\u0037\\u865f"}', '116044', '711', 'zh-tw', 1000),
(3616, 253, '16-253', 1, '德勇', '{"number":"931456","shop":"\\u5fb7\\u52c7","phone":"032188300","address":"\\u5927\\u52c7\\u91cc\\u5fe0\\u52c7\\u8857\\u0033\\u0036\\u0035\\u865f"}', '931456', '711', 'zh-tw', 1000),
(3617, 253, '16-253', 1, '勇伯', '{"number":"149491","shop":"\\u52c7\\u4f2f","phone":"032182953","address":"\\u6771\\u52c7\\u5317\\u8def\\u0033\\u0038\\u0030\\u865f"}', '149491', '711', 'zh-tw', 1000),
(3618, 253, '16-253', 1, '湧北', '{"number":"122393","shop":"\\u6e67\\u5317","phone":"033712775","address":"\\u6771\\u52c7\\u8857\\u0033\\u0039\\u0036\\u002d\\u0031\\u865f"}', '122393', '711', 'zh-tw', 1000),
(3619, 253, '16-253', 1, '東勇', '{"number":"160155","shop":"\\u6771\\u52c7","phone":"033629131","address":"\\u6771\\u52c7\\u8857\\u0038\\u0033\\u865f"}', '160155', '711', 'zh-tw', 1000),
(3620, 253, '16-253', 1, '德僑', '{"number":"996475","shop":"\\u5fb7\\u50d1","phone":"033659877","address":"\\u8c50\\u5fb7\\u8def\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '996475', '711', 'zh-tw', 1000),
(3621, 253, '16-253', 1, '振裕', '{"number":"167628","shop":"\\u632f\\u88d5","phone":"033768214","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0035\\u0034\\u865f"}', '167628', '711', 'zh-tw', 1000),
(3622, 253, '16-253', 1, '福國', '{"number":"167396","shop":"\\u798f\\u570b","phone":"033644967","address":"\\u798f\\u570b\\u5317\\u8857\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '167396', '711', 'zh-tw', 1000),
(3623, 253, '16-253', 1, '八福', '{"number":"120571","shop":"\\u516b\\u798f","phone":"033714641","address":"\\u798f\\u570b\\u8857\\u0037\\u0036\\u002d\\u0031\\u865f"}', '120571', '711', 'zh-tw', 1000),
(3624, 253, '16-253', 1, '高城', '{"number":"113702","shop":"\\u9ad8\\u57ce","phone":"032173952","address":"\\u9ad8\\u57ce\\u516b\\u8857\\u0035\\u0038\\u5df7\\u0035\\u865f\\u0031\\u6a13"}', '113702', '711', 'zh-tw', 1000),
(3625, 253, '16-253', 1, '福僑', '{"number":"146311","shop":"\\u798f\\u50d1","phone":"033671450","address":"\\u5ee3\\u798f\\u8def\\u0031\\u0036\\u0032\\u865f\\u0031\\u0036\\u0034\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '146311', '711', 'zh-tw', 1000),
(3626, 253, '16-253', 1, '廣福', '{"number":"189880","shop":"\\u5ee3\\u798f","phone":"033627382","address":"\\u5ee3\\u798f\\u8def\\u0031\\u0036\\u865f"}', '189880', '711', 'zh-tw', 1000),
(3627, 253, '16-253', 1, '廣懋', '{"number":"126915","shop":"\\u5ee3\\u61cb","phone":"033769956","address":"\\u5ee3\\u798f\\u8def\\u0035\\u0037\\u0038\\u865f"}', '126915', '711', 'zh-tw', 1000),
(3628, 253, '16-253', 1, '廣隆', '{"number":"166773","shop":"\\u5ee3\\u9686","phone":"033732294","address":"\\u5ee3\\u8208\\u8def\\u0031\\u0039\\u0035\\u865f"}', '166773', '711', 'zh-tw', 1000),
(3629, 253, '16-253', 1, '世傳', '{"number":"142124","shop":"\\u4e16\\u50b3","phone":"033670224","address":"\\u548c\\u5e73\\u8def\\u0031\\u0032\\u0032\\u865f\\u0031\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '142124', '711', 'zh-tw', 1000),
(3630, 253, '16-253', 1, '大湳', '{"number":"197803","shop":"\\u5927\\u6e73","phone":"032184780","address":"\\u548c\\u5e73\\u8def\\u0038\\u0037\\u0035\\u002d\\u0031\\u865f"}', '197803', '711', 'zh-tw', 1000),
(3631, 253, '16-253', 1, '國僑', '{"number":"882172","shop":"\\u570b\\u50d1","phone":"033644882","address":"\\u5efa\\u570b\\u8def\\u0031\\u0030\\u0037\\u0035\\u865f"}', '882172', '711', 'zh-tw', 1000),
(3632, 253, '16-253', 1, '八德建國', '{"number":"187390","shop":"\\u516b\\u5fb7\\u5efa\\u570b","phone":"033689752","address":"\\u5efa\\u570b\\u8def\\u0031\\u0036\\u0035\\u865f"}', '187390', '711', 'zh-tw', 1000),
(3633, 253, '16-253', 1, '國仁', '{"number":"192990","shop":"\\u570b\\u4ec1","phone":"033680340","address":"\\u5efa\\u570b\\u8def\\u0032\\u0035\\u0030\\u865f\\u0032\\u0035\\u0036\\u865f"}', '192990', '711', 'zh-tw', 1000),
(3634, 253, '16-253', 1, '八德介壽', '{"number":"179562","shop":"\\u516b\\u5fb7\\u4ecb\\u58fd","phone":"033647065","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0036\\u865f\\u0032\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '179562', '711', 'zh-tw', 1000),
(3635, 253, '16-253', 1, '麻園', '{"number":"874012","shop":"\\u9ebb\\u5712","phone":"033666344","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0030\\u865f\\u0033\\u0036\\u0032\\u865f"}', '874012', '711', 'zh-tw', 1000),
(3636, 253, '16-253', 1, '德沅', '{"number":"189053","shop":"\\u5fb7\\u6c85","phone":"033749372","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\u0034\\u0035\\u0035\\u865f"}', '189053', '711', 'zh-tw', 1000),
(3637, 253, '16-253', 1, '瑞星', '{"number":"167363","shop":"\\u745e\\u661f","phone":"033686482","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\u0036\\u0031\\u0036\\u865f\\u0036\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '167363', '711', 'zh-tw', 1000),
(3638, 253, '16-253', 1, '松柏林', '{"number":"189592","shop":"\\u677e\\u67cf\\u6797","phone":"033685745","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\u0036\\u0038\\u0035\\u5df7\\u0035\\u0030\\u5f04\\u0032\\u865f\\u0031\\u6a13"}', '189592', '711', 'zh-tw', 1000),
(3639, 253, '16-253', 1, '桃德', '{"number":"125923","shop":"\\u6843\\u5fb7","phone":"033630849","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\u0037\\u0039\\u0034\\u865f"}', '125923', '711', 'zh-tw', 1000),
(3640, 253, '16-253', 1, '迎和', '{"number":"182225","shop":"\\u8fce\\u548c","phone":"033634716","address":"\\u91d1\\u548c\\u8def\\u0035\\u0032\\u865f"}', '182225', '711', 'zh-tw', 1000),
(3641, 253, '16-253', 1, '茗安', '{"number":"942113","shop":"\\u8317\\u5b89","phone":"033741190","address":"\\u9678\\u5149\\u8857\\u0034\\u0035\\u865f"}', '942113', '711', 'zh-tw', 1000),
(3642, 253, '16-253', 1, '榮興', '{"number":"116479","shop":"\\u69ae\\u8208","phone":"033656510","address":"\\u69ae\\u8208\\u8def\\u0031\\u0031\\u0033\\u0039\\u865f"}', '116479', '711', 'zh-tw', 1000),
(3643, 253, '16-253', 1, '榮豐', '{"number":"182384","shop":"\\u69ae\\u8c50","phone":"033679415","address":"\\u8208\\u8c50\\u8def\\u0032\\u0031\\u0036\\u0038\\u865f"}', '182384', '711', 'zh-tw', 1000),
(3644, 253, '16-253', 1, '興豐', '{"number":"180975","shop":"\\u8208\\u8c50","phone":"033656424","address":"\\u8208\\u8c50\\u8def\\u0034\\u0031\\u0038\\u865f"}', '180975', '711', 'zh-tw', 1000),
(3645, 253, '16-253', 1, '捷安', '{"number":"165105","shop":"\\u6377\\u5b89","phone":"033731247","address":"\\u8208\\u8c50\\u8def\\u0036\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '165105', '711', 'zh-tw', 1000),
(3646, 253, '16-253', 1, '福厚', '{"number":"180481","shop":"\\u798f\\u539a","phone":"033686404","address":"\\u8208\\u4ec1\\u91cc\\u5efa\\u5fb7\\u8def\\u0032\\u0032\\u0039\\u865f"}', '180481', '711', 'zh-tw', 1000),
(3647, 253, '16-253', 1, '義展', '{"number":"954699","shop":"\\u7fa9\\u5c55","phone":"033763771","address":"\\u7fa9\\u52c7\\u8857\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '954699', '711', 'zh-tw', 1000),
(3648, 253, '16-253', 1, '德隆', '{"number":"174132","shop":"\\u5fb7\\u9686","phone":"033781543","address":"\\u6c38\\u8c50\\u8def\\u0034\\u0030\\u0038\\u865f\\u0034\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '174132', '711', 'zh-tw', 1000),
(3649, 253, '16-253', 1, '豐德', '{"number":"166935","shop":"\\u8c50\\u5fb7","phone":"033786102","address":"\\u6c38\\u8c50\\u8def\\u0036\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '166935', '711', 'zh-tw', 1000),
(3650, 253, '16-253', 1, '明光', '{"number":"924986","shop":"\\u660e\\u5149","phone":"033780845","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0035\\u0037\\u865f"}', '924986', '711', 'zh-tw', 1000),
(3651, 253, '16-253', 1, '尚群', '{"number":"180470","shop":"\\u5c1a\\u7fa4","phone":"033681497","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0031\\u865f"}', '180470', '711', 'zh-tw', 1000),
(3652, 253, '16-253', 1, '東凌', '{"number":"181222","shop":"\\u6771\\u51cc","phone":"033689594","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0031\\u0032\\u865f\\u0031\\u0031\\u0036\\u865f"}', '181222', '711', 'zh-tw', 1000),
(3653, 253, '16-253', 1, '八勇', '{"number":"197478","shop":"\\u516b\\u52c7","phone":"033760357","address":"\\u5fe0\\u52c7\\u8857\\u0031\\u0039\\u0037\\u865f"}', '197478', '711', 'zh-tw', 1000),
(3654, 253, '16-253', 1, '冠成', '{"number":"943954","shop":"\\u51a0\\u6210","phone":"033749327","address":"\\u91cd\\u6176\\u8857\\u0031\\u0037\\u0032\\u865f"}', '943954', '711', 'zh-tw', 1000),
(3655, 254, '16-254', 1, '忠新', '{"number":"173818","shop":"\\u5fe0\\u65b0","phone":"033803797","address":"\\u5927\\u9daf\\u8def\\u0031\\u0035\\u0033\\u0039\\u002d\\u0031\\u865f"}', '173818', '711', 'zh-tw', 1000),
(3656, 254, '16-254', 1, '芯德', '{"number":"155359","shop":"\\u82af\\u5fb7","phone":"033882592","address":"\\u5fa9\\u8208\\u8def\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13\\u0031\\u0038\\u0038\\u865f\\u0031\\u81f3\\u0032\\u6a13"}', '155359', '711', 'zh-tw', 1000),
(3657, 254, '16-254', 1, '新康莊', '{"number":"954895","shop":"\\u65b0\\u5eb7\\u838a","phone":"033886359","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '954895', '711', 'zh-tw', 1000),
(3658, 254, '16-254', 1, '百吉', '{"number":"110138","shop":"\\u767e\\u5409","phone":"033887825","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u865f"}', '110138', '711', 'zh-tw', 1000),
(3659, 254, '16-254', 1, '峰里', '{"number":"118903","shop":"\\u5cf0\\u91cc","phone":"033825986","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0037\\u0038\\u0032\\u865f\\u0037\\u0038\\u0036\\u865f"}', '118903', '711', 'zh-tw', 1000),
(3660, 254, '16-254', 1, '頭寮', '{"number":"173896","shop":"\\u982d\\u5bee","phone":"033884554","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\u0039\\u0030\\u0036\\u865f"}', '173896', '711', 'zh-tw', 1000),
(3661, 254, '16-254', 1, '園頂', '{"number":"189031","shop":"\\u5712\\u9802","phone":"033804436","address":"\\u516c\\u5712\\u8def\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0035\\u865f"}', '189031', '711', 'zh-tw', 1000),
(3662, 254, '16-254', 1, '內柵', '{"number":"988278","shop":"\\u5167\\u67f5","phone":"033888941","address":"\\u5eb7\\u838a\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u865f"}', '988278', '711', 'zh-tw', 1000),
(3663, 254, '16-254', 1, '翁武', '{"number":"110909","shop":"\\u7fc1\\u6b66","phone":"033884037","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u0031\\u0034\\u0039\\u865f"}', '110909', '711', 'zh-tw', 1000),
(3664, 254, '16-254', 1, '新劉興', '{"number":"148362","shop":"\\u65b0\\u5289\\u8208","phone":"033907955","address":"\\u5357\\u8208\\u91cc\\u6c38\\u660c\\u8def\\u0033\\u0032\\u0030\\u865f"}', '148362', '711', 'zh-tw', 1000),
(3665, 254, '16-254', 1, '仁善', '{"number":"148649","shop":"\\u4ec1\\u5584","phone":"033906270","address":"\\u57d4\\u9802\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0033\\u865f"}', '148649', '711', 'zh-tw', 1000),
(3666, 254, '16-254', 1, '雙橡園', '{"number":"151058","shop":"\\u96d9\\u6a61\\u5712","phone":"033894464","address":"\\u50d1\\u611b\\u91cc\\u4ecb\\u58fd\\u8def\\u0032\\u0031\\u0030\\u865f"}', '151058', '711', 'zh-tw', 1000),
(3667, 254, '16-254', 1, '亞都', '{"number":"113735","shop":"\\u4e9e\\u90fd","phone":"033078613","address":"\\u50d1\\u611b\\u4e00\\u8857\\u0037\\u0032\\u5df7\\u0031\\u0035\\u865f"}', '113735', '711', 'zh-tw', 1000),
(3668, 254, '16-254', 1, '埔頂', '{"number":"933050","shop":"\\u57d4\\u9802","phone":"033804535","address":"\\u4ec1\\u611b\\u91cc\\u57d4\\u9802\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u0038\\u865f"}', '933050', '711', 'zh-tw', 1000),
(3669, 254, '16-254', 1, '仁冠', '{"number":"941752","shop":"\\u4ec1\\u51a0","phone":"033808072","address":"\\u4ec1\\u548c\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0039\\u865f\\u0033\\u0032\\u0031\\u865f"}', '941752', '711', 'zh-tw', 1000),
(3670, 254, '16-254', 1, '和氣', '{"number":"118523","shop":"\\u548c\\u6c23","phone":"033809338","address":"\\u4ec1\\u548c\\u8def\\u4e8c\\u6bb5\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '118523', '711', 'zh-tw', 1000),
(3671, 254, '16-254', 1, '翁和', '{"number":"174556","shop":"\\u7fc1\\u548c","phone":"033891007","address":"\\u4ec1\\u6587\\u91cc\\u4ecb\\u58fd\\u8def\\u0031\\u0031\\u0035\\u0033\\u865f\\u4e00\\u6a13"}', '174556', '711', 'zh-tw', 1000),
(3672, 254, '16-254', 1, '龍園', '{"number":"144223","shop":"\\u9f8d\\u5712","phone":"034115715","address":"\\u77f3\\u5712\\u8def\\u0036\\u0031\\u0035\\u865f"}', '144223', '711', 'zh-tw', 1000),
(3673, 254, '16-254', 1, '文漢', '{"number":"121817","shop":"\\u6587\\u6f22","phone":"033883094","address":"\\u6587\\u5316\\u8def\\u0031\\u0038\\u0038\\u865f"}', '121817', '711', 'zh-tw', 1000),
(3674, 254, '16-254', 1, '嘉福', '{"number":"901802","shop":"\\u5609\\u798f","phone":"033070854","address":"\\u54e1\\u6797\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0039\\u4e4b\\u0031\\u865f"}', '901802', '711', 'zh-tw', 1000),
(3675, 254, '16-254', 1, '瑞員', '{"number":"953917","shop":"\\u745e\\u54e1","phone":"033072349","address":"\\u54e1\\u6797\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '953917', '711', 'zh-tw', 1000),
(3676, 254, '16-254', 1, '士香', '{"number":"924654","shop":"\\u58eb\\u9999","phone":"033072579","address":"\\u54e1\\u6797\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0038\\u865f"}', '924654', '711', 'zh-tw', 1000),
(3677, 254, '16-254', 1, '大溪', '{"number":"844745","shop":"\\u5927\\u6eaa","phone":"033871334","address":"\\u4e2d\\u592e\\u8def\\u0031\\u0035\\u0032\\u865f"}', '844745', '711', 'zh-tw', 1000),
(3678, 255, '16-255', 1, '觀群', '{"number":"113919","shop":"\\u89c0\\u7fa4","phone":"033851278","address":"\\u5927\\u5de5\\u8def\\u0031\\u0030\\u0036\\u865f"}', '113919', '711', 'zh-tw', 1000),
(3679, 255, '16-255', 1, '大園港', '{"number":"188027","shop":"\\u5927\\u5712\\u6e2f","phone":"033856957","address":"\\u5927\\u89c0\\u8def\\u0031\\u0030\\u0038\\u0038\\u865f"}', '188027', '711', 'zh-tw', 1000),
(3680, 255, '16-255', 1, '達昇', '{"number":"160100","shop":"\\u9054\\u6607","phone":"033840165","address":"\\u5927\\u89c0\\u8def\\u0035\\u0032\\u0035\\u865f\\u0035\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '160100', '711', 'zh-tw', 1000),
(3681, 255, '16-255', 1, '觀園', '{"number":"870917","shop":"\\u89c0\\u5712","phone":"033854111","address":"\\u5927\\u89c0\\u8def\\u0036\\u0030\\u0034\\u865f\\u0036\\u0030\\u0036\\u865f"}', '870917', '711', 'zh-tw', 1000),
(3682, 255, '16-255', 1, '城邑', '{"number":"166887","shop":"\\u57ce\\u9091","phone":"033818657","address":"\\u9ad8\\u9435\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0036\\u865f\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '166887', '711', 'zh-tw', 1000),
(3683, 255, '16-255', 1, '祥綸', '{"number":"195047","shop":"\\u7965\\u7db8","phone":"033819721","address":"\\u9ad8\\u9435\\u5317\\u8def\\u4e09\\u6bb5\\u0034\\u0035\\u865f"}', '195047', '711', 'zh-tw', 1000),
(3684, 255, '16-255', 1, '國航', '{"number":"130213","shop":"\\u570b\\u822a","phone":"033841586","address":"\\u570b\\u969b\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0030\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '130213', '711', 'zh-tw', 1000),
(3685, 255, '16-255', 1, '果林', '{"number":"113573","shop":"\\u679c\\u6797","phone":"033935321","address":"\\u679c\\u6797\\u91cc\\u0033\\u9130\\u62d4\\u5b50\\u6797\\u0032\\u0033\\u4e4b\\u0034\\u0035\\u865f\\u0031"}', '113573', '711', 'zh-tw', 1000),
(3686, 255, '16-255', 1, '遠雄', '{"number":"181509","shop":"\\u9060\\u96c4","phone":"033995176","address":"\\u822a\\u7fd4\\u8def\\u0035\\u4e4b\\u0037\\u865f\\u0031\\u6a13"}', '181509', '711', 'zh-tw', 1000),
(3687, 255, '16-255', 1, '航站南', '{"number":"184287","shop":"\\u822a\\u7ad9\\u5357","phone":"033931733","address":"\\u822a\\u7ad9\\u5357\\u8def\\u0031\\u0035\\u865f\\u0042\\u0031\\u6a13"}', '184287', '711', 'zh-tw', 1000),
(3688, 255, '16-255', 1, '航站北', '{"number":"184298","shop":"\\u822a\\u7ad9\\u5317","phone":"033932812","address":"\\u822a\\u7ad9\\u5357\\u8def\\u0031\\u0035\\u865f\\u0042\\u0031\\u6a13"}', '184298', '711', 'zh-tw', 1000),
(3689, 255, '16-255', 1, '玄海', '{"number":"195313","shop":"\\u7384\\u6d77","phone":"033865204","address":"\\u548c\\u5e73\\u897f\\u8def\\u4e8c\\u6bb5\\u0035\\u865f"}', '195313', '711', 'zh-tw', 1000),
(3690, 255, '16-255', 1, '東懋', '{"number":"944544","shop":"\\u6771\\u61cb","phone":"033855371","address":"\\u548c\\u5e73\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0032\\u865f\\u0032\\u0037\\u0034\\u865f"}', '944544', '711', 'zh-tw', 1000),
(3691, 255, '16-255', 1, '玉興', '{"number":"154208","shop":"\\u7389\\u8208","phone":"033862354","address":"\\u83ef\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u865f\\u0031\\u6a13\\u002e\\u548c\\u5e73\\u897f\\u8def\\u0031\\u0034\\u0035\\u865f\\u0032\\u6a13"}', '154208', '711', 'zh-tw', 1000),
(3692, 255, '16-255', 1, '內海', '{"number":"174914","shop":"\\u5167\\u6d77","phone":"033865474","address":"\\u6c11\\u751f\\u8def\\u0031\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '174914', '711', 'zh-tw', 1000),
(3693, 255, '16-255', 1, '民新', '{"number":"188511","shop":"\\u6c11\\u65b0","phone":"033850549","address":"\\u6c11\\u751f\\u5357\\u8def\\u0031\\u0036\\u0037\\u865f"}', '188511', '711', 'zh-tw', 1000),
(3694, 255, '16-255', 1, '園山', '{"number":"942032","shop":"\\u5712\\u5c71","phone":"033858593","address":"\\u6c11\\u65cf\\u8def\\u0031\\u865f"}', '942032', '711', 'zh-tw', 1000),
(3695, 255, '16-255', 1, '埔東', '{"number":"967097","shop":"\\u57d4\\u6771","phone":"033814491","address":"\\u57d4\\u5fc3\\u91cc\\u4e2d\\u6b63\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '967097', '711', 'zh-tw', 1000),
(3696, 255, '16-255', 1, '機場', '{"number":"871079","shop":"\\u6a5f\\u5834","phone":"033831429","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0030\\u865f\\u0031\\u0031\\u0032\\u865f"}', '871079', '711', 'zh-tw', 1000),
(3697, 255, '16-255', 1, '航林', '{"number":"182775","shop":"\\u822a\\u6797","phone":"033836620","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '182775', '711', 'zh-tw', 1000),
(3698, 255, '16-255', 1, '航祥', '{"number":"197869","shop":"\\u822a\\u7965","phone":"033935275","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\u0037\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '197869', '711', 'zh-tw', 1000),
(3699, 255, '16-255', 1, '沙崙', '{"number":"126638","shop":"\\u6c99\\u5d19","phone":"033937240","address":"\\u6c99\\u5d19\\u91cc\\u570b\\u969b\\u8def\\u4e8c\\u6bb5\\u0037\\u0035\\u0039\\u865f\\u0037\\u0036\\u0031\\u865f\\u0037\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '126638', '711', 'zh-tw', 1000),
(3700, 255, '16-255', 1, '武青', '{"number":"169820","shop":"\\u6b66\\u9752","phone":"033814498","address":"\\u4e94\\u9752\\u8def\\u0032\\u0038\\u0037\\u865f\\u0032\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '169820', '711', 'zh-tw', 1000),
(3701, 255, '16-255', 1, '新田園', '{"number":"164711","shop":"\\u65b0\\u7530\\u5712","phone":"033868997","address":"\\u65b0\\u8208\\u8def\\u0036\\u0032\\u865f"}', '164711', '711', 'zh-tw', 1000),
(3702, 255, '16-255', 1, '大和園', '{"number":"113344","shop":"\\u5927\\u548c\\u5712","phone":"033842854","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0032\\u0037\\u0032\\u865f\\u53ca\\u0032\\u0037\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '113344', '711', 'zh-tw', 1000),
(3703, 255, '16-255', 1, '航園', '{"number":"188935","shop":"\\u822a\\u5712","phone":"033858746","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u0031\\u0030\\u0032\\u865f"}', '188935', '711', 'zh-tw', 1000),
(3704, 255, '16-255', 1, '統大', '{"number":"932655","shop":"\\u7d71\\u5927","phone":"033859917","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u0034\\u0032\\u0038\\u865f"}', '932655', '711', 'zh-tw', 1000),
(3705, 255, '16-255', 1, '鐵鎮', '{"number":"187585","shop":"\\u9435\\u93ae","phone":"033816914","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\u0034\\u0032\\u0038\\u865f"}', '187585', '711', 'zh-tw', 1000),
(3706, 255, '16-255', 1, '江海', '{"number":"153515","shop":"\\u6c5f\\u6d77","phone":"033815675","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e09\\u6bb5\\u0033\\u0034\\u0033\\u865f"}', '153515', '711', 'zh-tw', 1000),
(3707, 255, '16-255', 1, '江園', '{"number":"992211","shop":"\\u6c5f\\u5712","phone":"033812411","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e09\\u6bb5\\u0036\\u0032\\u0030\\u865f"}', '992211', '711', 'zh-tw', 1000),
(3708, 255, '16-255', 1, '濱海', '{"number":"113078","shop":"\\u6ff1\\u6d77","phone":"033935661","address":"\\u7af9\\u570d\\u91cc\\u4e94\\u9130\\u7af9\\u570d\\u8857\\u0034\\u0035\\u002d\\u0033\\u865f"}', '113078', '711', 'zh-tw', 1000),
(3709, 256, '16-256', 1, '上巴陵', '{"number":"195092","shop":"\\u4e0a\\u5df4\\u9675","phone":"033912439","address":"\\u83ef\\u9675\\u91cc\\u0031\\u0030\\u9130\\u5df4\\u5d1a\\u0031\\u0031\\u0036\\u865f"}', '195092', '711', 'zh-tw', 1000),
(3710, 257, '16-257', 1, '大益', '{"number":"193605","shop":"\\u5927\\u76ca","phone":"034737742","address":"\\u6ff1\\u6d77\\u8def\\u5927\\u6f6d\\u6bb5\\u0032\\u0032\\u865f"}', '193605', '711', 'zh-tw', 1000),
(3711, 257, '16-257', 1, '觀湖', '{"number":"138608","shop":"\\u89c0\\u6e56","phone":"034736056","address":"\\u6ff1\\u6d77\\u8def\\u5ee3\\u8208\\u6bb5\\u0031\\u0033\\u0032\\u865f"}', '138608', '711', 'zh-tw', 1000),
(3712, 257, '16-257', 1, '欣富晟', '{"number":"982890","shop":"\\u6b23\\u5bcc\\u665f","phone":"034834215","address":"\\u8349\\u6f2f\\u91cc\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0032\\u002d\\u0031\\u865f"}', '982890', '711', 'zh-tw', 1000),
(3713, 257, '16-257', 1, '福音', '{"number":"944566","shop":"\\u798f\\u97f3","phone":"034832773","address":"\\u8349\\u6f2f\\u91cc\\u4e94\\u798f\\u4e09\\u8857\\u0038\\u0033\\u865f"}', '944566', '711', 'zh-tw', 1000),
(3714, 257, '16-257', 1, '觀工', '{"number":"903185","shop":"\\u89c0\\u5de5","phone":"034834579","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\u0035\\u0032\\u0035\\u865f\\u0035\\u0032\\u0037\\u865f\\u0031\\u0046"}', '903185', '711', 'zh-tw', 1000),
(3715, 257, '16-257', 1, '觀成', '{"number":"122371","shop":"\\u89c0\\u6210","phone":"034837597","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u0037\\u865f\\u0035\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '122371', '711', 'zh-tw', 1000),
(3716, 257, '16-257', 1, '大新', '{"number":"155326","shop":"\\u5927\\u65b0","phone":"034837792","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0036\\u0035\\u865f\\u0036\\u0037\\u865f"}', '155326', '711', 'zh-tw', 1000),
(3717, 257, '16-257', 1, '富源', '{"number":"198714","shop":"\\u5bcc\\u6e90","phone":"034908940","address":"\\u5bcc\\u6e90\\u91cc\\u0035\\u0037\\u4e4b\\u0031\\u865f\\u0032\\u865f"}', '198714', '711', 'zh-tw', 1000),
(3718, 257, '16-257', 1, '觀埔', '{"number":"139069","shop":"\\u89c0\\u57d4","phone":"034971489","address":"\\u85cd\\u57d4\\u91cc\\u65b0\\u83ef\\u8def\\u4e00\\u6bb5\\u0034\\u0038\\u0038\\u865f"}', '139069', '711', 'zh-tw', 1000),
(3719, 257, '16-257', 1, '觀濤', '{"number":"174800","shop":"\\u89c0\\u6fe4","phone":"034834204","address":"\\u6a39\\u6797\\u91cc\\u6c11\\u6b0a\\u8def\\u0031\\u865f"}', '174800', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(3720, 257, '16-257', 1, '觀富', '{"number":"142353","shop":"\\u89c0\\u5bcc","phone":"034909409","address":"\\u65b0\\u5bcc\\u8def\\u0037\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '142353', '711', 'zh-tw', 1000),
(3721, 257, '16-257', 1, '觀昌', '{"number":"892984","shop":"\\u89c0\\u660c","phone":"034732899","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0031\\u865f"}', '892984', '711', 'zh-tw', 1000),
(3722, 257, '16-257', 1, '新坡', '{"number":"881940","shop":"\\u65b0\\u5761","phone":"034980645","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0036\\u0036\\u0033\\u865f"}', '881940', '711', 'zh-tw', 1000),
(3723, 257, '16-257', 1, '富中', '{"number":"121448","shop":"\\u5bcc\\u4e2d","phone":"032820766","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0039\\u0032\\u0035\\u865f"}', '121448', '711', 'zh-tw', 1000),
(3724, 257, '16-257', 1, '觀喜', '{"number":"968137","shop":"\\u89c0\\u559c","phone":"034735286","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0035\\u0039\\u865f\\u4e4b\\u0031\\u865f"}', '968137', '711', 'zh-tw', 1000),
(3725, 257, '16-257', 1, '忠愛莊', '{"number":"992716","shop":"\\u5fe0\\u611b\\u838a","phone":"034984189","address":"\\u5fe0\\u611b\\u8def\\u4e00\\u6bb5\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '992716', '711', 'zh-tw', 1000),
(3726, 257, '16-257', 1, '觀湘', '{"number":"167503","shop":"\\u89c0\\u6e58","phone":"034834174","address":"\\u5fe0\\u5b5d\\u8def\\u0037\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '167503', '711', 'zh-tw', 1000),
(3727, 258, '16-258', 1, '醫林', '{"number":"190101","shop":"\\u91ab\\u6797","phone":"033273179","address":"\\u9577\\u5e9a\\u91ab\\u8b77\\u65b0\\u6751\\u0038\\u0030\\u865f\\u0042\\u0031\\u6a13"}', '190101', '711', 'zh-tw', 1000),
(3728, 258, '16-258', 1, '養生村', '{"number":"932150","shop":"\\u990a\\u751f\\u6751","phone":"032130001","address":"\\u9577\\u9752\\u8def\\u0032\\u865f\\u0041\\u68df"}', '932150', '711', 'zh-tw', 1000),
(3729, 258, '16-258', 1, '長運', '{"number":"166429","shop":"\\u9577\\u904b","phone":"032130250","address":"\\u9577\\u9752\\u8def\\u0037\\u865f\\u0043\\u68df\\u0042\\u0031\\u6a13"}', '166429', '711', 'zh-tw', 1000),
(3730, 258, '16-258', 1, '大崗', '{"number":"892320","shop":"\\u5927\\u5d17","phone":"033963173","address":"\\u5927\\u5d17\\u91cc\\u0031\\u0037\\u9130\\u5927\\u6e56\\u0034\\u0031\\u4e4b\\u0032\\u865f"}', '892320', '711', 'zh-tw', 1000),
(3731, 258, '16-258', 1, '同銘', '{"number":"111898","shop":"\\u540c\\u9298","phone":"033595385","address":"\\u5927\\u540c\\u8def\\u0032\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '111898', '711', 'zh-tw', 1000),
(3732, 258, '16-258', 1, '大傳', '{"number":"131467","shop":"\\u5927\\u50b3","phone":"033296730","address":"\\u5927\\u540c\\u8def\\u0033\\u0035\\u0037\\u865f\\u0033\\u0035\\u0037\\u002d\\u0031\\u865f\\u0031\\u6a13\\u53ca\\u58fd\\u5c71\\u6bb5\\u0039\\u0032\\u0036\\u5730\\u865f"}', '131467', '711', 'zh-tw', 1000),
(3733, 258, '16-258', 1, '龜山銘傳', '{"number":"130039","shop":"\\u9f9c\\u5c71\\u9298\\u50b3","phone":"033504227","address":"\\u5fb7\\u660e\\u8def\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '130039', '711', 'zh-tw', 1000),
(3734, 258, '16-258', 1, '庚林', '{"number":"923569","shop":"\\u5e9a\\u6797","phone":"033298923","address":"\\u9802\\u6e56\\u8def\\u0031\\u0032\\u0033\\u865f\\u0042\\u0032"}', '923569', '711', 'zh-tw', 1000),
(3735, 258, '16-258', 1, '汶興', '{"number":"992738","shop":"\\u6c76\\u8208","phone":"033498771","address":"\\u9802\\u8208\\u8def\\u0033\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '992738', '711', 'zh-tw', 1000),
(3736, 258, '16-258', 1, '光峰', '{"number":"957768","shop":"\\u5149\\u5cf0","phone":"033209796","address":"\\u6953\\u6a39\\u91cc\\u5149\\u5cf0\\u8def\\u0032\\u0039\\u0036\\u865f\\u0032\\u0039\\u0038\\u865f\\u4e00\\u6a13"}', '957768', '711', 'zh-tw', 1000),
(3737, 258, '16-258', 1, '鴻臣', '{"number":"138000","shop":"\\u9d3b\\u81e3","phone":"033498529","address":"\\u6953\\u6a39\\u91cc\\u5fe0\\u7fa9\\u8def\\u4e00\\u6bb5\\u0038\\u0037\\u0030\\u002d\\u0031\\u865f"}', '138000', '711', 'zh-tw', 1000),
(3738, 258, '16-258', 1, '長林', '{"number":"810258","shop":"\\u9577\\u6797","phone":"033287173","address":"\\u5fa9\\u8208\\u8857\\u0039\\u865f"}', '810258', '711', 'zh-tw', 1000),
(3739, 258, '16-258', 1, '新尊爵', '{"number":"159155","shop":"\\u65b0\\u5c0a\\u7235","phone":"033186563","address":"\\u5fa9\\u8208\\u4e09\\u8def\\u0031\\u0033\\u0039\\u865f\\u0031\\u0034\\u0031\\u865f\\u0031\\u0034\\u0033\\u865f\\u0031\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '159155', '711', 'zh-tw', 1000),
(3740, 258, '16-258', 1, '廣智', '{"number":"987976","shop":"\\u5ee3\\u667a","phone":"033180296","address":"\\u5fa9\\u8208\\u4e00\\u8def\\u0033\\u0039\\u0032\\u002d\\u0031\\u865f"}', '987976', '711', 'zh-tw', 1000),
(3741, 258, '16-258', 1, '新長明', '{"number":"971616","shop":"\\u65b0\\u9577\\u660e","phone":"033961534","address":"\\u5fa9\\u8208\\u4e00\\u8def\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '971616', '711', 'zh-tw', 1000),
(3742, 258, '16-258', 1, '信陽', '{"number":"119087","shop":"\\u4fe1\\u967d","phone":"033280293","address":"\\u516c\\u897f\\u91cc\\u0031\\u0032\\u9130\\u5fa9\\u8208\\u4e00\\u8def\\u0038\\u0036\\u865f"}', '119087', '711', 'zh-tw', 1000),
(3743, 258, '16-258', 1, '常楓', '{"number":"194332","shop":"\\u5e38\\u6953","phone":"033291425","address":"\\u5149\\u5cf0\\u8def\\u0032\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '194332', '711', 'zh-tw', 1000),
(3744, 258, '16-258', 1, '千禧', '{"number":"110080","shop":"\\u5343\\u79a7","phone":"032134732","address":"\\u5149\\u5cf0\\u8def\\u5343\\u79a7\\u65b0\\u57ce\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '110080', '711', 'zh-tw', 1000),
(3745, 258, '16-258', 1, '友達電', '{"number":"990422","shop":"\\u53cb\\u9054\\u96fb","phone":"033187564","address":"\\u83ef\\u4e9e\\u4e8c\\u8def\\u0031\\u0038\\u0039\\u865f\\u0042\\u0031"}', '990422', '711', 'zh-tw', 1000),
(3746, 258, '16-258', 1, '凱達', '{"number":"118936","shop":"\\u51f1\\u9054","phone":"033503973","address":"\\u7cbe\\u5fe0\\u91cc\\u9577\\u58fd\\u8def\\u0031\\u0035\\u0035\\u865f\\u0031\\u0035\\u0037\\u865f"}', '118936', '711', 'zh-tw', 1000),
(3747, 258, '16-258', 1, '嶺頂', '{"number":"924573","shop":"\\u5dba\\u9802","phone":"033192515","address":"\\u5dba\\u9802\\u91cc\\u0032\\u9130\\u897f\\u5dba\\u9802\\u0032\\u0036\\u865f"}', '924573', '711', 'zh-tw', 1000),
(3748, 258, '16-258', 1, '巴頓', '{"number":"187002","shop":"\\u5df4\\u9813","phone":"0282001454","address":"\\u9f8d\\u58fd\\u91cc\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\u0034\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '187002', '711', 'zh-tw', 1000),
(3749, 258, '16-258', 1, '陸光', '{"number":"153478","shop":"\\u9678\\u5149","phone":"032132406","address":"\\u9678\\u5149\\u8def\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '153478', '711', 'zh-tw', 1000),
(3750, 258, '16-258', 1, '民生北', '{"number":"188566","shop":"\\u6c11\\u751f\\u5317","phone":"033583816","address":"\\u6c11\\u751f\\u5317\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '188566', '711', 'zh-tw', 1000),
(3751, 258, '16-258', 1, '冠廷', '{"number":"902458","shop":"\\u51a0\\u5ef7","phone":"033525795","address":"\\u5357\\u7f8e\\u91cc\\u5357\\u4e0a\\u8def\\u0033\\u0033\\u0032\\u865f\\u0031\\u0046"}', '902458', '711', 'zh-tw', 1000),
(3752, 258, '16-258', 1, '建發', '{"number":"180735","shop":"\\u5efa\\u767c","phone":"033530806","address":"\\u5357\\u4e0a\\u91cc\\u0038\\u9130\\u6c11\\u751f\\u5317\\u8def\\u4e00\\u6bb5\\u0035\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '180735', '711', 'zh-tw', 1000),
(3753, 258, '16-258', 1, '祥崁', '{"number":"120906","shop":"\\u7965\\u5d01","phone":"033530382","address":"\\u5357\\u7965\\u8def\\u0034\\u0031\\u865f\\u0034\\u0033\\u865f\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '120906', '711', 'zh-tw', 1000),
(3754, 258, '16-258', 1, '山民', '{"number":"932426","shop":"\\u5c71\\u6c11","phone":"033198039","address":"\\u4e09\\u6c11\\u8def\\u0031\\u0030\\u0030\\u865f"}', '932426', '711', 'zh-tw', 1000),
(3755, 258, '16-258', 1, '山興', '{"number":"138642","shop":"\\u5c71\\u8208","phone":"033498212","address":"\\u5c71\\u9802\\u91cc\\u660e\\u8208\\u8857\\u0032\\u0032\\u0033\\u865f"}', '138642', '711', 'zh-tw', 1000),
(3756, 258, '16-258', 1, '福鶯', '{"number":"114015","shop":"\\u798f\\u9daf","phone":"033290720","address":"\\u5c71\\u9daf\\u8def\\u0031\\u0035\\u0036\\u4e4b\\u0034\\u865f\\u0031\\u6a13"}', '114015', '711', 'zh-tw', 1000),
(3757, 258, '16-258', 1, '台達電', '{"number":"111289","shop":"\\u53f0\\u9054\\u96fb","phone":"033294091","address":"\\u5c71\\u9daf\\u8def\\u0032\\u0035\\u0032\\u865f\\u0042\\u0031\\u6a13"}', '111289', '711', 'zh-tw', 1000),
(3758, 258, '16-258', 1, '山鶯', '{"number":"850762","shop":"\\u5c71\\u9daf","phone":"033194142","address":"\\u5c71\\u9daf\\u8def\\u0033\\u0037\\u0032\\u865f"}', '850762', '711', 'zh-tw', 1000),
(3759, 258, '16-258', 1, '萬壽', '{"number":"185291","shop":"\\u842c\\u58fd","phone":"033194079","address":"\\u842c\\u58fd\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '185291', '711', 'zh-tw', 1000),
(3760, 258, '16-258', 1, '新龜山', '{"number":"141970","shop":"\\u65b0\\u9f9c\\u5c71","phone":"033493562","address":"\\u842c\\u58fd\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0037\\u0030\\u865f"}', '141970', '711', 'zh-tw', 1000),
(3761, 258, '16-258', 1, '茶專', '{"number":"124506","shop":"\\u8336\\u5c08","phone":"033594995","address":"\\u842c\\u58fd\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '124506', '711', 'zh-tw', 1000),
(3762, 258, '16-258', 1, '祥櫂', '{"number":"153490","shop":"\\u7965\\u6ac2","phone":"033595849","address":"\\u842c\\u58fd\\u8def\\u4e8c\\u6bb5\\u0039\\u0037\\u865f"}', '153490', '711', 'zh-tw', 1000),
(3763, 258, '16-258', 1, '鑫騰龍', '{"number":"193546","shop":"\\u946b\\u9a30\\u9f8d","phone":"0282090316","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0036\\u002e\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '193546', '711', 'zh-tw', 1000),
(3764, 258, '16-258', 1, '華龍', '{"number":"190857","shop":"\\u83ef\\u9f8d","phone":"0282001415","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\u0032\\u0039\\u0032\\u865f\\u0031\\u6a13\\u9f8d\\u83ef\\u8857\\u0032\\u5df7\\u0036\\u865f\\u0042\\u0031"}', '190857', '711', 'zh-tw', 1000),
(3765, 258, '16-258', 1, '萬龍', '{"number":"180377","shop":"\\u842c\\u9f8d","phone":"0282001015","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0037\\u865f\\u0033\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '180377', '711', 'zh-tw', 1000),
(3766, 258, '16-258', 1, '宏義', '{"number":"186283","shop":"\\u5b8f\\u7fa9","phone":"0282091307","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0038\\u865f\\u0033\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '186283', '711', 'zh-tw', 1000),
(3767, 258, '16-258', 1, '富寓', '{"number":"142375","shop":"\\u5bcc\\u5bd3","phone":"033275230","address":"\\u6587\\u5fb7\\u8def\\u0038\\u0030\\u865f\\u0038\\u0032\\u865f"}', '142375', '711', 'zh-tw', 1000),
(3768, 258, '16-258', 1, '凱華', '{"number":"111614","shop":"\\u51f1\\u83ef","phone":"033283249","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0031\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '111614', '711', 'zh-tw', 1000),
(3769, 258, '16-258', 1, '龜山廣達', '{"number":"942216","shop":"\\u9f9c\\u5c71\\u5ee3\\u9054","phone":"033183985","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0032\\u0031\\u0031\\u865f"}', '942216', '711', 'zh-tw', 1000),
(3770, 258, '16-258', 1, '鑫華夏', '{"number":"982214","shop":"\\u946b\\u83ef\\u590f","phone":"032115130","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0032\\u0038\\u002d\\u0031\\u865f\\u0032\\u0038\\u002d\\u0032\\u865f\\u0032\\u0038\\u002d\\u0033\\u865f\\u0031\\u6a13"}', '982214', '711', 'zh-tw', 1000),
(3771, 258, '16-258', 1, '緯華', '{"number":"197663","shop":"\\u7def\\u83ef","phone":"033184914","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0033\\u0034\\u5df7\\u0036\\u865f\\u53ca\\u0031\\u0034\\u5f04\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '197663', '711', 'zh-tw', 1000),
(3772, 258, '16-258', 1, '華亞', '{"number":"148775","shop":"\\u83ef\\u4e9e","phone":"033962549","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0034\\u0033\\u865f"}', '148775', '711', 'zh-tw', 1000),
(3773, 258, '16-258', 1, '登冠', '{"number":"198828","shop":"\\u767b\\u51a0","phone":"033186887","address":"\\u6587\\u5316\\u4e8c\\u8def\\u0035\\u0032\\u5df7\\u0035\\u0033\\u865f\\u4e00\\u6a13"}', '198828', '711', 'zh-tw', 1000),
(3774, 258, '16-258', 1, '統文', '{"number":"153445","shop":"\\u7d71\\u6587","phone":"033185635","address":"\\u6587\\u5316\\u4e03\\u8def\\u0031\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '153445', '711', 'zh-tw', 1000),
(3775, 258, '16-258', 1, '樂高', '{"number":"122647","shop":"\\u6a02\\u9ad8","phone":"033184670","address":"\\u6587\\u5316\\u4e03\\u8def\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '122647', '711', 'zh-tw', 1000),
(3776, 258, '16-258', 1, '憲訓', '{"number":"930121","shop":"\\u61b2\\u8a13","phone":"033979949","address":"\\u6587\\u5316\\u4e09\\u8def\\u0031\\u002d\\u0031\\u865f"}', '930121', '711', 'zh-tw', 1000),
(3777, 258, '16-258', 1, '廣華', '{"number":"200996","shop":"\\u5ee3\\u83ef","phone":"032115427","address":"\\u6587\\u5316\\u4e09\\u8def\\u0033\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '200996', '711', 'zh-tw', 1000),
(3778, 258, '16-258', 1, '體育大', '{"number":"131607","shop":"\\u9ad4\\u80b2\\u5927","phone":"033186047","address":"\\u6587\\u5316\\u4e00\\u8def\\u0032\\u0035\\u0030\\u865f"}', '131607', '711', 'zh-tw', 1000),
(3779, 258, '16-258', 1, '庚大', '{"number":"167097","shop":"\\u5e9a\\u5927","phone":"032118165","address":"\\u6587\\u5316\\u4e00\\u8def\\u0032\\u0035\\u0039\\u865f\\u0042\\u0031\\u6a13"}', '167097', '711', 'zh-tw', 1000),
(3780, 258, '16-258', 1, '愿景', '{"number":"185855","shop":"\\u613f\\u666f","phone":"033974428","address":"\\u6587\\u5316\\u4e00\\u8def\\u0034\\u0032\\u865f"}', '185855', '711', 'zh-tw', 1000),
(3781, 258, '16-258', 1, '勇利', '{"number":"199197","shop":"\\u52c7\\u5229","phone":"032114483","address":"\\u6587\\u5316\\u4e00\\u8def\\u0038\\u0036\\u002d\\u0036\\u865f"}', '199197', '711', 'zh-tw', 1000),
(3782, 258, '16-258', 1, '華亞文化', '{"number":"985143","shop":"\\u83ef\\u4e9e\\u6587\\u5316","phone":"033973713","address":"\\u6587\\u5316\\u4e00\\u8def\\u0038\\u0036\\u4e4b\\u0035\\u0035\\u865f"}', '985143', '711', 'zh-tw', 1000),
(3783, 258, '16-258', 1, '樂善', '{"number":"138664","shop":"\\u6a02\\u5584","phone":"033185542","address":"\\u6587\\u660e\\u8def\\u0031\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '138664', '711', 'zh-tw', 1000),
(3784, 258, '16-258', 1, '富亨', '{"number":"166681","shop":"\\u5bcc\\u4ea8","phone":"033275307","address":"\\u6587\\u9752\\u8def\\u0032\\u0030\\u0036\\u865f\\u0032\\u0030\\u0038\\u865f\\u0032\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '166681', '711', 'zh-tw', 1000),
(3785, 258, '16-258', 1, '文捷', '{"number":"193649","shop":"\\u6587\\u6377","phone":"033979458","address":"\\u6587\\u6843\\u8def\\u0034\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '193649', '711', 'zh-tw', 1000),
(3786, 258, '16-258', 1, '富勝', '{"number":"167879","shop":"\\u5bcc\\u52dd","phone":"033180439","address":"\\u6587\\u5b78\\u8def\\u0032\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '167879', '711', 'zh-tw', 1000),
(3787, 258, '16-258', 1, '興龍', '{"number":"977164","shop":"\\u8208\\u9f8d","phone":"033596170","address":"\\u65b0\\u8def\\u91cc\\u4e2d\\u8208\\u8def\\u0033\\u0036\\u0036\\u002d\\u0036\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '977164', '711', 'zh-tw', 1000),
(3788, 258, '16-258', 1, '頂湖', '{"number":"120917","shop":"\\u9802\\u6e56","phone":"033277012","address":"\\u65b0\\u8208\\u8857\\u0032\\u0034\\u0030\\u865f\\u0032\\u0034\\u0032\\u865f\\u0032\\u0034\\u0034\\u865f\\u0031\\u6a13"}', '120917', '711', 'zh-tw', 1000),
(3789, 258, '16-258', 1, '貴林', '{"number":"895651","shop":"\\u8cb4\\u6797","phone":"033278297","address":"\\u6a02\\u5584\\u91cc\\u0031\\u0035\\u9130\\u6587\\u660e\\u8def\\u0034\\u0033\\u865f"}', '895651', '711', 'zh-tw', 1000),
(3790, 258, '16-258', 1, '柏魁', '{"number":"151900","shop":"\\u67cf\\u9b41","phone":"033503111","address":"\\u632f\\u8208\\u8def\\u0031\\u0030\\u0032\\u0031\\u4e4b\\u0031\\u865f"}', '151900', '711', 'zh-tw', 1000),
(3791, 258, '16-258', 1, '振陞', '{"number":"183527","shop":"\\u632f\\u965e","phone":"033974104","address":"\\u632f\\u8208\\u8def\\u0031\\u0033\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '183527', '711', 'zh-tw', 1000),
(3792, 258, '16-258', 1, '財春', '{"number":"904018","shop":"\\u8ca1\\u6625","phone":"033494303","address":"\\u632f\\u8208\\u8def\\u0036\\u0033\\u0036\\u865f\\u0036\\u0033\\u0038\\u865f"}', '904018', '711', 'zh-tw', 1000),
(3793, 258, '16-258', 1, '壽興', '{"number":"120858","shop":"\\u58fd\\u8208","phone":"033198162","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0037\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13\\u0033\\u6a13"}', '120858', '711', 'zh-tw', 1000),
(3794, 258, '16-258', 1, '廣瀨', '{"number":"117151","shop":"\\u5ee3\\u7028","phone":"033180360","address":"\\u5fe0\\u7fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u865f"}', '117151', '711', 'zh-tw', 1000),
(3795, 258, '16-258', 1, '忠湖', '{"number":"972310","shop":"\\u5fe0\\u6e56","phone":"033287847","address":"\\u5fe0\\u7fa9\\u8def\\u4e8c\\u6bb5\\u0036\\u0033\\u0030\\u865f"}', '972310', '711', 'zh-tw', 1000),
(3796, 259, '16-259', 1, '鑽石', '{"number":"188382","shop":"\\u947d\\u77f3","phone":"034700461","address":"\\u516b\\u5fb7\\u91cc\\u6885\\u9f8d\\u8def\\u0032\\u0033\\u9130\\u0031\\u0033\\u0039\\u865f\\u0031\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '188382', '711', 'zh-tw', 1000),
(3797, 259, '16-259', 1, '龍功', '{"number":"142401","shop":"\\u9f8d\\u529f","phone":"034709121","address":"\\u6210\\u529f\\u8def\\u0031\\u0038\\u0036\\u4e4b\\u0031\\u865f"}', '142401', '711', 'zh-tw', 1000),
(3798, 259, '16-259', 1, '龍昌', '{"number":"112293","shop":"\\u9f8d\\u660c","phone":"034994355","address":"\\u5927\\u660c\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0039\\u4e4b\\u0031\\u865f"}', '112293', '711', 'zh-tw', 1000),
(3799, 259, '16-259', 1, '龍潭', '{"number":"143781","shop":"\\u9f8d\\u6f6d","phone":"034798442","address":"\\u6771\\u9f8d\\u8def\\u0032\\u0035\\u0037\\u865f\\u0032\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '143781', '711', 'zh-tw', 1000),
(3800, 259, '16-259', 1, '禾臣', '{"number":"138505","shop":"\\u79be\\u81e3","phone":"034116316","address":"\\u9ad8\\u5e73\\u91cc\\u9ad8\\u694a\\u5317\\u8def\\u0031\\u865f"}', '138505', '711', 'zh-tw', 1000),
(3801, 259, '16-259', 1, '龍科', '{"number":"153434","shop":"\\u9f8d\\u79d1","phone":"034792675","address":"\\u9f8d\\u79d1\\u8857\\u0032\\u0032\\u0038\\u865f\\u0042\\u0031"}', '153434', '711', 'zh-tw', 1000),
(3802, 259, '16-259', 1, '台積Q', '{"number":"153618","shop":"\\u53f0\\u7a4d\\u0051","phone":"034899769","address":"\\u9f8d\\u5712\\u516d\\u8def\\u0031\\u0030\\u0031\\u865f\\u0032\\u6a13"}', '153618', '711', 'zh-tw', 1000),
(3803, 259, '16-259', 1, '龍美', '{"number":"965758","shop":"\\u9f8d\\u7f8e","phone":"034709693","address":"\\u6c11\\u8c50\\u8def\\u0033\\u865f\\u0034\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '965758', '711', 'zh-tw', 1000),
(3804, 259, '16-259', 1, '新龍鄉', '{"number":"952707","shop":"\\u65b0\\u9f8d\\u9109","phone":"034809419","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0037\\u0030\\u865f\\u0031\\u0037\\u0032\\u865f\\u0031\\u0046"}', '952707', '711', 'zh-tw', 1000),
(3805, 259, '16-259', 1, '渴望村', '{"number":"126926","shop":"\\u6e34\\u671b\\u6751","phone":"034071070","address":"\\u4e09\\u548c\\u91cc\\u6e34\\u671b\\u8def\\u0034\\u0032\\u0038\\u865f"}', '126926', '711', 'zh-tw', 1000),
(3806, 259, '16-259', 1, '龍潭友達', '{"number":"922555","shop":"\\u9f8d\\u6f6d\\u53cb\\u9054","phone":"034072446","address":"\\u4e09\\u548c\\u91cc\\u65b0\\u548c\\u8def\\u0031\\u865f"}', '922555', '711', 'zh-tw', 1000),
(3807, 259, '16-259', 1, '新友達', '{"number":"973036","shop":"\\u65b0\\u53cb\\u9054","phone":"034072501","address":"\\u4e09\\u548c\\u91cc\\u65b0\\u548c\\u8def\\u0031\\u865f\\u0042\\u68df\\u0037\\u6a13"}', '973036', '711', 'zh-tw', 1000),
(3808, 259, '16-259', 1, '聖興', '{"number":"965965","shop":"\\u8056\\u8208","phone":"034994805","address":"\\u8056\\u4ead\\u8def\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '965965', '711', 'zh-tw', 1000),
(3809, 259, '16-259', 1, '泉僑', '{"number":"138147","shop":"\\u6cc9\\u50d1","phone":"034112122","address":"\\u6587\\u5316\\u8def\\u0031\\u0032\\u002d\\u0033\\u865f"}', '138147', '711', 'zh-tw', 1000),
(3810, 259, '16-259', 1, '紹福', '{"number":"972608","shop":"\\u7d39\\u798f","phone":"034796178","address":"\\u4e94\\u798f\\u8857\\u0032\\u0031\\u0030\\u865f"}', '972608', '711', 'zh-tw', 1000),
(3811, 259, '16-259', 1, '豐彩', '{"number":"141280","shop":"\\u8c50\\u5f69","phone":"034795793","address":"\\u4e2d\\u8c50\\u8def\\u0033\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '141280', '711', 'zh-tw', 1000),
(3812, 259, '16-259', 1, '易仕', '{"number":"165046","shop":"\\u6613\\u4ed5","phone":"034702557","address":"\\u4e2d\\u8c50\\u8def\\u0036\\u0039\\u0035\\u5df7\\u0032\\u002d\\u0031\\u865f"}', '165046', '711', 'zh-tw', 1000),
(3813, 259, '16-259', 1, '銅鑼圈', '{"number":"182580","shop":"\\u9285\\u947c\\u5708","phone":"034117340","address":"\\u4e2d\\u8c50\\u8def\\u9ad8\\u5e73\\u6bb5\\u0034\\u0030\\u0032\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '182580', '711', 'zh-tw', 1000),
(3814, 259, '16-259', 1, '龍池', '{"number":"199212","shop":"\\u9f8d\\u6c60","phone":"034993671","address":"\\u4e2d\\u8c50\\u8def\\u4e0a\\u6797\\u6bb5\\u0031\\u0038\\u0037\\u865f\\u0031\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '199212', '711', 'zh-tw', 1000),
(3815, 259, '16-259', 1, '凌雲', '{"number":"184612","shop":"\\u51cc\\u96f2","phone":"034995805","address":"\\u4e2d\\u8c50\\u8def\\u4e0a\\u6797\\u6bb5\\u0033\\u0035\\u0038\\u002d\\u0031\\u865f"}', '184612', '711', 'zh-tw', 1000),
(3816, 259, '16-259', 1, '百年', '{"number":"161550","shop":"\\u767e\\u5e74","phone":"034700905","address":"\\u4e2d\\u8c50\\u8def\\u70cf\\u6a39\\u6797\\u6bb5\\u0033\\u0031\\u0037\\u865f"}', '161550', '711', 'zh-tw', 1000),
(3817, 259, '16-259', 1, '龍欣', '{"number":"111234","shop":"\\u9f8d\\u6b23","phone":"034894543","address":"\\u4e2d\\u8208\\u8def\\u0032\\u0035\\u0037\\u865f\\u0032\\u0035\\u0039\\u865f"}', '111234', '711', 'zh-tw', 1000),
(3818, 259, '16-259', 1, '曜駿', '{"number":"187633","shop":"\\u66dc\\u99ff","phone":"034704913","address":"\\u4e2d\\u8208\\u8def\\u0032\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '187633', '711', 'zh-tw', 1000),
(3819, 259, '16-259', 1, '龍德', '{"number":"122692","shop":"\\u9f8d\\u5fb7","phone":"034707206","address":"\\u4e2d\\u8208\\u8def\\u0034\\u0036\\u0030\\u865f\\u0034\\u0036\\u0032\\u865f"}', '122692', '711', 'zh-tw', 1000),
(3820, 259, '16-259', 1, '宏龍', '{"number":"163763","shop":"\\u5b8f\\u9f8d","phone":"034710464","address":"\\u4e2d\\u539f\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '163763', '711', 'zh-tw', 1000),
(3821, 259, '16-259', 1, '水龍吟', '{"number":"170727","shop":"\\u6c34\\u9f8d\\u541f","phone":"034117393","address":"\\u4e2d\\u539f\\u8def\\u4e00\\u6bb5\\u0035\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '170727', '711', 'zh-tw', 1000),
(3822, 259, '16-259', 1, '正同', '{"number":"886646","shop":"\\u6b63\\u540c","phone":"034808831","address":"\\u4e2d\\u6b63\\u91cc\\u0031\\u0035\\u9130\\u4e2d\\u6b63\\u8def\\u0034\\u0037\\u0032\\u865f\\u0034\\u0037\\u0034\\u865f"}', '886646', '711', 'zh-tw', 1000),
(3823, 259, '16-259', 1, '同華', '{"number":"936233","shop":"\\u540c\\u83ef","phone":"034898471","address":"\\u4e2d\\u6b63\\u91cc\\u9f8d\\u83ef\\u8def\\u0033\\u0039\\u0036\\u865f"}', '936233', '711', 'zh-tw', 1000),
(3824, 259, '16-259', 1, '龍運', '{"number":"197179","shop":"\\u9f8d\\u904b","phone":"034097607","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13\\u53ca\\u0031\\u0030\\u0037\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '197179', '711', 'zh-tw', 1000),
(3825, 259, '16-259', 1, '龍政', '{"number":"143286","shop":"\\u9f8d\\u653f","phone":"034793503","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0036\\u0032\\u865f"}', '143286', '711', 'zh-tw', 1000),
(3826, 259, '16-259', 1, '中科院', '{"number":"144119","shop":"\\u4e2d\\u79d1\\u9662","phone":"034714990","address":"\\u4e2d\\u6b63\\u8def\\u4f73\\u5b89\\u6bb5\\u0034\\u0038\\u0031\\u865f"}', '144119', '711', 'zh-tw', 1000),
(3827, 259, '16-259', 1, '龍潭佳園', '{"number":"985408","shop":"\\u9f8d\\u6f6d\\u4f73\\u5712","phone":"034112989","address":"\\u4e2d\\u6b63\\u8def\\u4e09\\u5751\\u6bb5\\u0037\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '985408', '711', 'zh-tw', 1000),
(3828, 259, '16-259', 1, '上華', '{"number":"147967","shop":"\\u4e0a\\u83ef","phone":"034891711","address":"\\u4e2d\\u6b63\\u8def\\u4e0a\\u83ef\\u6bb5\\u0036\\u865f"}', '147967', '711', 'zh-tw', 1000),
(3829, 260, '16-260', 1, '湖海', '{"number":"183583","shop":"\\u6e56\\u6d77","phone":"033544607","address":"\\u6ff1\\u6d77\\u8def\\u4e00\\u6bb5\\u0033\\u0033\\u0035\\u865f\\u0033\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '183583', '711', 'zh-tw', 1000),
(3830, 260, '16-260', 1, '海湖', '{"number":"112329","shop":"\\u6d77\\u6e56","phone":"033544721","address":"\\u6ff1\\u6d77\\u8def\\u4e00\\u6bb5\\u0034\\u0030\\u865f\\u0034\\u0032\\u865f"}', '112329', '711', 'zh-tw', 1000),
(3831, 260, '16-260', 1, '千富', '{"number":"180285","shop":"\\u5343\\u5bcc","phone":"033223875","address":"\\u9577\\u5b89\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u0030\\u865f\\u0032\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '180285', '711', 'zh-tw', 1000),
(3832, 260, '16-260', 1, '瑞元', '{"number":"139210","shop":"\\u745e\\u5143","phone":"033220661","address":"\\u9577\\u6625\\u8def\\u0038\\u0037\\u865f"}', '139210', '711', 'zh-tw', 1000),
(3833, 260, '16-260', 1, '亮亞', '{"number":"180089","shop":"\\u4eae\\u4e9e","phone":"033231648","address":"\\u5927\\u798f\\u8def\\u0031\\u0038\\u0039\\u865f"}', '180089', '711', 'zh-tw', 1000),
(3834, 260, '16-260', 1, '嘉美', '{"number":"174338","shop":"\\u5609\\u7f8e","phone":"033138416","address":"\\u5927\\u65b0\\u8def\\u0034\\u0035\\u0034\\u002e\\u0034\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '174338', '711', 'zh-tw', 1000),
(3835, 260, '16-260', 1, '景旭', '{"number":"902034","shop":"\\u666f\\u65ed","phone":"033135724","address":"\\u5927\\u65b0\\u8def\\u0038\\u0035\\u0032\\u865f\\u0038\\u0035\\u0034\\u865f\\u4e4b\\u0031\\u6a13"}', '902034', '711', 'zh-tw', 1000),
(3836, 260, '16-260', 1, '竹盈', '{"number":"952279","shop":"\\u7af9\\u76c8","phone":"033135745","address":"\\u5927\\u7af9\\u91cc\\u5927\\u65b0\\u8def\\u0031\\u0033\\u0033\\u865f\\u0031\\u002d\\u0033\\u6a13"}', '952279', '711', 'zh-tw', 1000),
(3837, 260, '16-260', 1, '航竹', '{"number":"993502","shop":"\\u822a\\u7af9","phone":"033231007","address":"\\u5927\\u7af9\\u8def\\u0034\\u0030\\u0038\\u865f"}', '993502', '711', 'zh-tw', 1000),
(3838, 260, '16-260', 1, '八角店', '{"number":"922474","shop":"\\u516b\\u89d2\\u5e97","phone":"032151993","address":"\\u5927\\u7af9\\u8def\\u0035\\u865f"}', '922474', '711', 'zh-tw', 1000),
(3839, 260, '16-260', 1, '蘆順', '{"number":"142261","shop":"\\u8606\\u9806","phone":"033113932","address":"\\u5949\\u5316\\u8def\\u0031\\u0036\\u0038\\u865f\\u0031\\u0037\\u0030\\u865f\\u0031\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '142261', '711', 'zh-tw', 1000),
(3840, 260, '16-260', 1, '盧奉', '{"number":"198529","shop":"\\u76e7\\u5949","phone":"032129384","address":"\\u5949\\u5316\\u8def\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '198529', '711', 'zh-tw', 1000),
(3841, 260, '16-260', 1, '錦明', '{"number":"136314","shop":"\\u9326\\u660e","phone":"033116303","address":"\\u5149\\u660e\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '136314', '711', 'zh-tw', 1000),
(3842, 260, '16-260', 1, '吉福', '{"number":"126889","shop":"\\u5409\\u798f","phone":"032126804","address":"\\u5409\\u6797\\u8def\\u0031\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '126889', '711', 'zh-tw', 1000),
(3843, 260, '16-260', 1, '蘆海', '{"number":"126317","shop":"\\u8606\\u6d77","phone":"033541187","address":"\\u5751\\u53e3\\u91cc\\u6d77\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u0036\\u865f\\u4e00\\u6a13"}', '126317', '711', 'zh-tw', 1000),
(3844, 260, '16-260', 1, '元翔', '{"number":"159270","shop":"\\u5143\\u7fd4","phone":"033112034","address":"\\u516d\\u798f\\u8def\\u0032\\u0034\\u0037\\u5df7\\u0032\\u002d\\u0031\\u865f"}', '159270', '711', 'zh-tw', 1000),
(3845, 260, '16-260', 1, '航宏', '{"number":"152109","shop":"\\u822a\\u5b8f","phone":"033119338","address":"\\u8606\\u7af9\\u91cc\\u8606\\u7af9\\u8857\\u0032\\u0035\\u0036\\u865f\\u4e00\\u6a13"}', '152109', '711', 'zh-tw', 1000),
(3846, 260, '16-260', 1, '航福', '{"number":"149295","shop":"\\u822a\\u798f","phone":"033229743","address":"\\u5357\\u798f\\u8857\\u0039\\u0037\\u865f\\u0039\\u0039\\u865f"}', '149295', '711', 'zh-tw', 1000),
(3847, 260, '16-260', 1, '蘆坎', '{"number":"951036","shop":"\\u8606\\u574e","phone":"033215438","address":"\\u5357\\u5d01\\u91cc\\u5357\\u83ef\\u4e00\\u8857\\u0031\\u0034\\u0032\\u865f\\u4e00\\u6a13"}', '951036', '711', 'zh-tw', 1000),
(3848, 260, '16-260', 1, '南崁', '{"number":"915122","shop":"\\u5357\\u5d01","phone":"033225706","address":"\\u5357\\u5d01\\u8def\\u0031\\u0035\\u0036\\u865f"}', '915122', '711', 'zh-tw', 1000),
(3849, 260, '16-260', 1, '鳳儀', '{"number":"167695","shop":"\\u9cf3\\u5100","phone":"033520490","address":"\\u5357\\u5d01\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '167695', '711', 'zh-tw', 1000),
(3850, 260, '16-260', 1, '航榮', '{"number":"189097","shop":"\\u822a\\u69ae","phone":"033111108","address":"\\u5357\\u5d01\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u0033\\u865f"}', '189097', '711', 'zh-tw', 1000),
(3851, 260, '16-260', 1, '千雄', '{"number":"138273","shop":"\\u5343\\u96c4","phone":"033120074","address":"\\u5357\\u5d01\\u8def\\u4e8c\\u6bb5\\u0039\\u0036\\u865f"}', '138273', '711', 'zh-tw', 1000),
(3852, 260, '16-260', 1, '台茂城堡店', '{"number":"992510","shop":"\\u53f0\\u8302\\u57ce\\u5821\\u5e97","phone":"032123583","address":"\\u5357\\u5d01\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0032\\u865f\\u0032\\u6a13"}', '992510', '711', 'zh-tw', 1000),
(3853, 260, '16-260', 1, '新台茂', '{"number":"123581","shop":"\\u65b0\\u53f0\\u8302","phone":"032124416","address":"\\u5357\\u5d01\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0035\\u865f"}', '123581', '711', 'zh-tw', 1000),
(3854, 260, '16-260', 1, '錦坎', '{"number":"941132","shop":"\\u9326\\u574e","phone":"033118092","address":"\\u5357\\u5d01\\u8def\\u4e00\\u6bb5\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f"}', '941132', '711', 'zh-tw', 1000),
(3855, 260, '16-260', 1, '南山北', '{"number":"182801","shop":"\\u5357\\u5c71\\u5317","phone":"033543450","address":"\\u5357\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0034\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '182801', '711', 'zh-tw', 1000),
(3856, 260, '16-260', 1, '盧長', '{"number":"130903","shop":"\\u76e7\\u9577","phone":"033528714","address":"\\u5357\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '130903', '711', 'zh-tw', 1000),
(3857, 260, '16-260', 1, '蘆豐', '{"number":"153467","shop":"\\u8606\\u8c50","phone":"033522712","address":"\\u5357\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '153467', '711', 'zh-tw', 1000),
(3858, 260, '16-260', 1, '航明', '{"number":"181462","shop":"\\u822a\\u660e","phone":"033241971","address":"\\u5357\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '181462', '711', 'zh-tw', 1000),
(3859, 260, '16-260', 1, '桃捷', '{"number":"181141","shop":"\\u6843\\u6377","phone":"033244919","address":"\\u5357\\u5c71\\u8def\\u4e09\\u6bb5\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '181141', '711', 'zh-tw', 1000),
(3860, 260, '16-260', 1, '航海', '{"number":"154895","shop":"\\u822a\\u6d77","phone":"033528510","address":"\\u5357\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0035\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '154895', '711', 'zh-tw', 1000),
(3861, 260, '16-260', 1, '順舜', '{"number":"192668","shop":"\\u9806\\u821c","phone":"033228620","address":"\\u5357\\u9806\\u516d\\u8857\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f\\u0032\\u0036\\u865f"}', '192668', '711', 'zh-tw', 1000),
(3862, 260, '16-260', 1, '蘆航', '{"number":"952327","shop":"\\u8606\\u822a","phone":"033124710","address":"\\u5357\\u8208\\u91cc\\u5357\\u660c\\u8def\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '952327', '711', 'zh-tw', 1000),
(3863, 260, '16-260', 1, '富竹', '{"number":"187873","shop":"\\u5bcc\\u7af9","phone":"033138184","address":"\\u5357\\u7af9\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '187873', '711', 'zh-tw', 1000),
(3864, 260, '16-260', 1, '映竹', '{"number":"182889","shop":"\\u6620\\u7af9","phone":"033231498","address":"\\u5357\\u7af9\\u8def\\u56db\\u6bb5\\u0032\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '182889', '711', 'zh-tw', 1000),
(3865, 260, '16-260', 1, '景竹', '{"number":"133061","shop":"\\u666f\\u7af9","phone":"033134014","address":"\\u5357\\u7af9\\u8def\\u4e94\\u6bb5\\u0032\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '133061', '711', 'zh-tw', 1000),
(3866, 260, '16-260', 1, '錦欣', '{"number":"186032","shop":"\\u9326\\u6b23","phone":"032227474","address":"\\u5357\\u7af9\\u8def\\u4e00\\u6bb5\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '186032', '711', 'zh-tw', 1000),
(3867, 260, '16-260', 1, '盧興', '{"number":"953870","shop":"\\u76e7\\u8208","phone":"033244562","address":"\\u5167\\u5c55\\u91cc\\u9577\\u8208\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '953870', '711', 'zh-tw', 1000),
(3868, 260, '16-260', 1, '蘆愛', '{"number":"193580","shop":"\\u8606\\u611b","phone":"032228745","address":"\\u4ec1\\u611b\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u0034\\u4e4b\\u0031\\u865f"}', '193580', '711', 'zh-tw', 1000),
(3869, 260, '16-260', 1, '蘆竹', '{"number":"860301","shop":"\\u8606\\u7af9","phone":"033244567","address":"\\u5c71\\u8173\\u91cc\\u5357\\u5c71\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0038\\u865f"}', '860301', '711', 'zh-tw', 1000),
(3870, 260, '16-260', 1, '頂社', '{"number":"199359","shop":"\\u9802\\u793e","phone":"033243632","address":"\\u5c71\\u6797\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0030\\u002d\\u0032\\u865f"}', '199359', '711', 'zh-tw', 1000),
(3871, 260, '16-260', 1, '上興', '{"number":"199360","shop":"\\u4e0a\\u8208","phone":"033135392","address":"\\u4e0a\\u8208\\u8def\\u0032\\u0035\\u0031\\u865f\\u0032\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '199360', '711', 'zh-tw', 1000),
(3872, 260, '16-260', 1, '五福', '{"number":"192794","shop":"\\u4e94\\u798f","phone":"033524219","address":"\\u4e94\\u798f\\u4e00\\u8def\\u0032\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '192794', '711', 'zh-tw', 1000),
(3873, 260, '16-260', 1, '樂購', '{"number":"151025","shop":"\\u6a02\\u8cfc","phone":"032224621","address":"\\u4e94\\u798f\\u4e00\\u8def\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '151025', '711', 'zh-tw', 1000),
(3874, 260, '16-260', 1, '長榮航', '{"number":"132378","shop":"\\u9577\\u69ae\\u822a","phone":"033121749","address":"\\u65b0\\u5357\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0036\\u865f"}', '132378', '711', 'zh-tw', 1000),
(3875, 260, '16-260', 1, '開南', '{"number":"121046","shop":"\\u958b\\u5357","phone":"033024195","address":"\\u65b0\\u8208\\u8857\\u0031\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '121046', '711', 'zh-tw', 1000),
(3876, 260, '16-260', 1, '航興', '{"number":"129062","shop":"\\u822a\\u8208","phone":"033139174","address":"\\u4e2d\\u798f\\u91cc\\u5927\\u8208\\u8def\\u0032\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '129062', '711', 'zh-tw', 1000),
(3877, 260, '16-260', 1, '蘆山', '{"number":"893840","shop":"\\u8606\\u5c71","phone":"033118955","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0034\\u865f\\u0031\\u0035\\u0036\\u865f\\u4e00\\u6a13"}', '893840', '711', 'zh-tw', 1000),
(3878, 260, '16-260', 1, '芮霖', '{"number":"192901","shop":"\\u82ae\\u9716","phone":"033139742","address":"\\u4e2d\\u8208\\u8def\\u0035\\u0033\\u0036\\u4e4b\\u0031\\u865f"}', '192901', '711', 'zh-tw', 1000),
(3879, 260, '16-260', 1, '蘆工', '{"number":"138192","shop":"\\u8606\\u5de5","phone":"033134490","address":"\\u4e2d\\u8208\\u8def\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '138192', '711', 'zh-tw', 1000),
(3880, 260, '16-260', 1, '富丞', '{"number":"182823","shop":"\\u5bcc\\u4e1e","phone":"033530824","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0035\\u0039\\u0039\\u865f"}', '182823', '711', 'zh-tw', 1000),
(3881, 260, '16-260', 1, '航空', '{"number":"864462","shop":"\\u822a\\u7a7a","phone":"033223603","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0034\\u865f"}', '864462', '711', 'zh-tw', 1000),
(3882, 260, '16-260', 1, '北崁', '{"number":"181794","shop":"\\u5317\\u5d01","phone":"033521797","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0035\\u865f\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '181794', '711', 'zh-tw', 1000),
(3883, 260, '16-260', 1, '國邦', '{"number":"904111","shop":"\\u570b\\u90a6","phone":"033522987","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '904111', '711', 'zh-tw', 1000),
(3884, 260, '16-260', 1, '蘆勝', '{"number":"163752","shop":"\\u8606\\u52dd","phone":"033529927","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '163752', '711', 'zh-tw', 1000),
(3885, 261, '16-261', 1, '成德', '{"number":"964434","shop":"\\u6210\\u5fb7","phone":"034679841","address":"\\u627f\\u5fb7\\u8def\\u0032\\u865f\\u0034\\u865f\\u0031\\u6a13"}', '964434', '711', 'zh-tw', 1000),
(3886, 261, '16-261', 1, '金平', '{"number":"990400","shop":"\\u91d1\\u5e73","phone":"034505739","address":"\\u6771\\u52e2\\u91cc\\u91d1\\u9675\\u8def\\u56db\\u6bb5\\u0034\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '990400', '711', 'zh-tw', 1000),
(3887, 261, '16-261', 1, '金沅', '{"number":"942102","shop":"\\u91d1\\u6c85","phone":"034506616","address":"\\u6771\\u52e2\\u91cc\\u91d1\\u9675\\u8def\\u4e94\\u6bb5\\u0032\\u0035\\u0035\\u865f"}', '942102', '711', 'zh-tw', 1000),
(3888, 261, '16-261', 1, '福龍', '{"number":"167639","shop":"\\u798f\\u9f8d","phone":"034505197","address":"\\u798f\\u9f8d\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u0036\\u865f"}', '167639', '711', 'zh-tw', 1000),
(3889, 261, '16-261', 1, '楊崧', '{"number":"968919","shop":"\\u694a\\u5d27","phone":"034920151","address":"\\u5fa9\\u65e6\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0033\\u002d\\u0035\\u003b\\u0031\\u0032\\u0033\\u002d\\u0036\\u865f\\u0031\\u6a13"}', '968919', '711', 'zh-tw', 1000),
(3890, 261, '16-261', 1, '高義', '{"number":"143529","shop":"\\u9ad8\\u7fa9","phone":"034918607","address":"\\u5fa9\\u65e6\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0031\\u5df7\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '143529', '711', 'zh-tw', 1000),
(3891, 261, '16-261', 1, '廣文', '{"number":"952143","shop":"\\u5ee3\\u6587","phone":"034940550","address":"\\u5fa9\\u8208\\u91cc\\u6587\\u5316\\u8857\\u0032\\u0034\\u0031\\u865f"}', '952143', '711', 'zh-tw', 1000),
(3892, 261, '16-261', 1, '廣城', '{"number":"174774","shop":"\\u5ee3\\u57ce","phone":"034924445","address":"\\u5ee3\\u9054\\u91cc\\u5ee3\\u5e73\\u8857\\u0032\\u0030\\u865f\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '174774', '711', 'zh-tw', 1000),
(3893, 261, '16-261', 1, '開立', '{"number":"920906","shop":"\\u958b\\u7acb","phone":"034950392","address":"\\u5ee3\\u4ec1\\u91cc\\u65b0\\u5149\\u8def\\u0031\\u0039\\u865f\\u0032\\u0031\\u865f"}', '920906', '711', 'zh-tw', 1000),
(3894, 261, '16-261', 1, '廣泰', '{"number":"883625","shop":"\\u5ee3\\u6cf0","phone":"034910675","address":"\\u5ee3\\u6cf0\\u8def\\u0031\\u0033\\u0030\\u865f\\u0031\\u0033\\u0032\\u865f"}', '883625', '711', 'zh-tw', 1000),
(3895, 261, '16-261', 1, '廣耘', '{"number":"194099","shop":"\\u5ee3\\u8018","phone":"034029840","address":"\\u5ee3\\u6cf0\\u8def\\u0032\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '194099', '711', 'zh-tw', 1000),
(3896, 261, '16-261', 1, '環興', '{"number":"166485","shop":"\\u74b0\\u8208","phone":"034937978","address":"\\u74b0\\u5357\\u8def\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '166485', '711', 'zh-tw', 1000),
(3897, 261, '16-261', 1, '壢達', '{"number":"137546","shop":"\\u58e2\\u9054","phone":"034944387","address":"\\u74b0\\u5357\\u8def\\u0032\\u0033\\u0031\\u002d\\u0035\\u865f\\u0031\\u6a13"}', '137546', '711', 'zh-tw', 1000),
(3898, 261, '16-261', 1, '金陵', '{"number":"130257","shop":"\\u91d1\\u9675","phone":"034683147","address":"\\u91d1\\u9675\\u8def\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '130257', '711', 'zh-tw', 1000),
(3899, 261, '16-261', 1, '宏宇', '{"number":"893172","shop":"\\u5b8f\\u5b87","phone":"034288596","address":"\\u91d1\\u9675\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0034\\u865f"}', '893172', '711', 'zh-tw', 1000),
(3900, 261, '16-261', 1, '祥鋐', '{"number":"136864","shop":"\\u7965\\u92d0","phone":"034280330","address":"\\u91d1\\u9675\\u8def\\u4e09\\u6bb5\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '136864', '711', 'zh-tw', 1000),
(3901, 261, '16-261', 1, '龍侑', '{"number":"970624","shop":"\\u9f8d\\u4f91","phone":"034601054","address":"\\u9f8d\\u5fb7\\u8def\\u0038\\u865f\\u0031\\u6a13\\u003b\\u9f8d\\u798f\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '970624', '711', 'zh-tw', 1000),
(3902, 261, '16-261', 1, '龍南', '{"number":"138480","shop":"\\u9f8d\\u5357","phone":"034602664","address":"\\u9f8d\\u5357\\u8def\\u0033\\u0034\\u0038\\u865f"}', '138480', '711', 'zh-tw', 1000),
(3903, 261, '16-261', 1, '高安', '{"number":"930925","shop":"\\u9ad8\\u5b89","phone":"032811823","address":"\\u6c11\\u65cf\\u8def\\u4e09\\u6bb5\\u0039\\u0035\\u865f"}', '930925', '711', 'zh-tw', 1000),
(3904, 261, '16-261', 1, '關爺', '{"number":"143839","shop":"\\u95dc\\u723a","phone":"032840273","address":"\\u5357\\u6771\\u8def\\u0033\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '143839', '711', 'zh-tw', 1000),
(3905, 261, '16-261', 1, '鎮業', '{"number":"992657","shop":"\\u93ae\\u696d","phone":"034697147","address":"\\u5357\\u8c50\\u8def\\u0032\\u0033\\u0038\\u865f\\u0032\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '992657', '711', 'zh-tw', 1000),
(3906, 261, '16-261', 1, '鎮豐', '{"number":"190798","shop":"\\u93ae\\u8c50","phone":"034699948","address":"\\u5357\\u8c50\\u8def\\u0039\\u0039\\u865f"}', '190798', '711', 'zh-tw', 1000),
(3907, 261, '16-261', 1, '京利', '{"number":"153995","shop":"\\u4eac\\u5229","phone":"034397374","address":"\\u5357\\u4eac\\u8def\\u0032\\u0030\\u0036\\u865f"}', '153995', '711', 'zh-tw', 1000),
(3908, 261, '16-261', 1, '技嘉', '{"number":"184601","shop":"\\u6280\\u5609","phone":"034391574","address":"\\u5357\\u5e73\\u8def\\u0031\\u0038\\u0030\\u4e4b\\u0031\\u865f"}', '184601', '711', 'zh-tw', 1000),
(3909, 261, '16-261', 1, '德享', '{"number":"190710","shop":"\\u5fb7\\u4eab","phone":"034398120","address":"\\u5357\\u52e2\\u91cc\\u0031\\u0034\\u9130\\u4e2d\\u8c50\\u8def\\u5357\\u52e2\\u4e8c\\u6bb5\\u0033\\u0037\\u0037\\u865f\\u0033\\u0037\\u0039\\u865f\\u0033\\u0038\\u0031\\u865f"}', '190710', '711', 'zh-tw', 1000),
(3910, 261, '16-261', 1, '禾安', '{"number":"193498","shop":"\\u79be\\u5b89","phone":"034010391","address":"\\u5e73\\u5fb7\\u8def\\u0032\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '193498', '711', 'zh-tw', 1000),
(3911, 261, '16-261', 1, '平東', '{"number":"122821","shop":"\\u5e73\\u6771","phone":"034607776","address":"\\u5e73\\u6771\\u8def\\u0032\\u0032\\u0035\\u865f\\u0032\\u0032\\u0037\\u865f\\u0032\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '122821', '711', 'zh-tw', 1000),
(3912, 261, '16-261', 1, '東洸', '{"number":"154747","shop":"\\u6771\\u6d38","phone":"034609764","address":"\\u5e73\\u6771\\u8def\\u0032\\u0037\\u865f\\u6771\\u5149\\u8def\\u0031\\u0036\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '154747', '711', 'zh-tw', 1000),
(3913, 261, '16-261', 1, '東正', '{"number":"186021","shop":"\\u6771\\u6b63","phone":"034606888","address":"\\u5e73\\u6771\\u8def\\u0036\\u0036\\u0031\\u865f"}', '186021', '711', 'zh-tw', 1000),
(3914, 261, '16-261', 1, '海利', '{"number":"126454","shop":"\\u6d77\\u5229","phone":"034398201","address":"\\u4e0a\\u6d77\\u8def\\u0031\\u0031\\u0035\\u865f"}', '126454', '711', 'zh-tw', 1000),
(3915, 261, '16-261', 1, '比利', '{"number":"922485","shop":"\\u6bd4\\u5229","phone":"034396297","address":"\\u4e0a\\u6d77\\u8def\\u0031\\u0036\\u0031\\u865f"}', '922485', '711', 'zh-tw', 1000),
(3916, 261, '16-261', 1, '雙榮', '{"number":"112592","shop":"\\u96d9\\u69ae","phone":"034204705","address":"\\u96d9\\u9023\\u91cc\\u6c11\\u65cf\\u8def\\u96d9\\u9023\\u4e09\\u6bb5\\u0038\\u865f\\u0031\\u6a13"}', '112592', '711', 'zh-tw', 1000),
(3917, 261, '16-261', 1, '韻翔', '{"number":"130729","shop":"\\u97fb\\u7fd4","phone":"034930896","address":"\\u6587\\u5316\\u8857\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '130729', '711', 'zh-tw', 1000),
(3918, 261, '16-261', 1, '金磚', '{"number":"910817","shop":"\\u91d1\\u78da","phone":"034284567","address":"\\u65b0\\u5bcc\\u91cc\\u65b0\\u5bcc\\u4e8c\\u8857\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f"}', '910817', '711', 'zh-tw', 1000),
(3919, 261, '16-261', 1, '富寶', '{"number":"154024","shop":"\\u5bcc\\u5bf6","phone":"034288651","address":"\\u65b0\\u5bcc\\u4e94\\u8857\\u0039\\u865f\\u0031\\u6a13"}', '154024', '711', 'zh-tw', 1000),
(3920, 261, '16-261', 1, '新貴中', '{"number":"170462","shop":"\\u65b0\\u8cb4\\u4e2d","phone":"034670486","address":"\\u65b0\\u8cb4\\u91cc\\u4e2d\\u8c50\\u8def\\u4e00\\u6bb5\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '170462', '711', 'zh-tw', 1000),
(3921, 261, '16-261', 1, '明揚', '{"number":"996257","shop":"\\u660e\\u63da","phone":"034925297","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\u0037\\u0036\\u865f"}', '996257', '711', 'zh-tw', 1000),
(3922, 261, '16-261', 1, '瑋特', '{"number":"952981","shop":"\\u744b\\u7279","phone":"034920447","address":"\\u5ef6\\u5e73\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0036\\u865f\\u0032\\u0034\\u0038\\u865f\\u4e00\\u6a13"}', '952981', '711', 'zh-tw', 1000),
(3923, 261, '16-261', 1, '凱利', '{"number":"183745","shop":"\\u51f1\\u5229","phone":"034964671","address":"\\u5ef6\\u5e73\\u8def\\u4e09\\u6bb5\\u0034\\u0031\\u0033\\u865f\\u0034\\u0031\\u0035\\u865f\\u0034\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '183745', '711', 'zh-tw', 1000),
(3924, 261, '16-261', 1, '達義', '{"number":"180942","shop":"\\u9054\\u7fa9","phone":"034022472","address":"\\u7fa9\\u6c11\\u8def\\u0031\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '180942', '711', 'zh-tw', 1000),
(3925, 261, '16-261', 1, '寶麗', '{"number":"158543","shop":"\\u5bf6\\u9e97","phone":"034698937","address":"\\u6e67\\u5b89\\u91cc\\u81ea\\u7531\\u8857\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f"}', '158543', '711', 'zh-tw', 1000),
(3926, 261, '16-261', 1, '鎮光', '{"number":"916136","shop":"\\u93ae\\u5149","phone":"034192232","address":"\\u6e67\\u5149\\u91cc\\u4e2d\\u8c50\\u8def\\u5c71\\u9802\\u6bb5\\u0032\\u0030\\u0036\\u865f\\u0032\\u0030\\u0038\\u865f\\u4e4b\\u0031\\u6a13"}', '916136', '711', 'zh-tw', 1000),
(3927, 261, '16-261', 1, '寶勇', '{"number":"182487","shop":"\\u5bf6\\u52c7","phone":"034694080","address":"\\u6e67\\u5149\\u8def\\u0034\\u0035\\u0035\\u865f\\u0034\\u0035\\u0037\\u865f\\u0034\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '182487', '711', 'zh-tw', 1000),
(3928, 261, '16-261', 1, '成達', '{"number":"165219","shop":"\\u6210\\u9054","phone":"034953412","address":"\\u80b2\\u9054\\u8def\\u0031\\u0033\\u0036\\u865f"}', '165219', '711', 'zh-tw', 1000),
(3929, 261, '16-261', 1, '裕達', '{"number":"892995","shop":"\\u88d5\\u9054","phone":"032813124","address":"\\u80b2\\u9054\\u8def\\u0031\\u0036\\u0030\\u865f"}', '892995', '711', 'zh-tw', 1000),
(3930, 261, '16-261', 1, '德興', '{"number":"129811","shop":"\\u5fb7\\u8208","phone":"034575450","address":"\\u632f\\u8208\\u8def\\u0031\\u0032\\u865f"}', '129811', '711', 'zh-tw', 1000),
(3931, 261, '16-261', 1, '皓倫', '{"number":"892582","shop":"\\u7693\\u502b","phone":"032813125","address":"\\u632f\\u8208\\u897f\\u8def\\u0037\\u0032\\u865f"}', '892582', '711', 'zh-tw', 1000),
(3932, 261, '16-261', 1, '正湧', '{"number":"977614","shop":"\\u6b63\\u6e67","phone":"034686477","address":"\\u6b63\\u7fa9\\u8def\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '977614', '711', 'zh-tw', 1000),
(3933, 261, '16-261', 1, '翁京', '{"number":"139287","shop":"\\u7fc1\\u4eac","phone":"034399112","address":"\\u4e2d\\u8c50\\u8def\\u5357\\u52e2\\u4e8c\\u6bb5\\u0031\\u0031\\u0038\\u865f"}', '139287', '711', 'zh-tw', 1000),
(3934, 261, '16-261', 1, '豐訊', '{"number":"997515","shop":"\\u8c50\\u8a0a","phone":"034698787","address":"\\u4e2d\\u8c50\\u8def\\u5c71\\u9802\\u6bb5\\u0034\\u0037\\u0039\\u865f"}', '997515', '711', 'zh-tw', 1000),
(3935, 261, '16-261', 1, '丰順', '{"number":"113355","shop":"\\u4e30\\u9806","phone":"034670341","address":"\\u4e2d\\u8c50\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0031\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '113355', '711', 'zh-tw', 1000),
(3936, 261, '16-261', 1, '鎮宮', '{"number":"174671","shop":"\\u93ae\\u5bae","phone":"034384181","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0033\\u0033\\u865f\\u0032\\u0033\\u0035\\u865f\\u0032\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '174671', '711', 'zh-tw', 1000),
(3937, 261, '16-261', 1, '新鎮興', '{"number":"187301","shop":"\\u65b0\\u93ae\\u8208","phone":"034695420","address":"\\u4e2d\\u8208\\u8def\\u5e73\\u93ae\\u6bb5\\u0033\\u0034\\u0039\\u865f\\u0033\\u0035\\u0031\\u865f\\u0033\\u0035\\u0033\\u865f"}', '187301', '711', 'zh-tw', 1000),
(3938, 261, '16-261', 1, '學央', '{"number":"130648","shop":"\\u5b78\\u592e","phone":"034205014","address":"\\u4e2d\\u592e\\u8def\\u0031\\u0038\\u0037\\u865f"}', '130648', '711', 'zh-tw', 1000),
(3939, 261, '16-261', 1, '廣興', '{"number":"115971","shop":"\\u5ee3\\u8208","phone":"034953721","address":"\\u5fe0\\u5b5d\\u8def\\u0036\\u0039\\u865f\\u53ca\\u5ee3\\u6771\\u6bb5\\u0033\\u0030\\u0035\\u865f\\u0033\\u0030\\u0036\\u865f"}', '115971', '711', 'zh-tw', 1000),
(3940, 262, '16-262', 1, '雙慶', '{"number":"882622","shop":"\\u96d9\\u6176","phone":"033013836","address":"\\u5b89\\u6176\\u8857\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f"}', '882622', '711', 'zh-tw', 1000),
(3941, 262, '16-262', 1, '新雙安', '{"number":"187378","shop":"\\u65b0\\u96d9\\u5b89","phone":"033342304","address":"\\u5b89\\u6a02\\u8857\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0031\\u6a13\\u003b\\u5b89\\u6771\\u8857\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '187378', '711', 'zh-tw', 1000),
(3942, 262, '16-262', 1, '祥佑', '{"number":"920227","shop":"\\u7965\\u4f51","phone":"033414608","address":"\\u5bf6\\u6176\\u8def\\u0031\\u0037\\u0036\\u865f"}', '920227', '711', 'zh-tw', 1000),
(3943, 262, '16-262', 1, '金富多', '{"number":"167145","shop":"\\u91d1\\u5bcc\\u591a","phone":"033027822","address":"\\u5bf6\\u6176\\u8def\\u0034\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '167145', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(3944, 262, '16-262', 1, '有寶', '{"number":"121725","shop":"\\u6709\\u5bf6","phone":"033467732","address":"\\u5bf6\\u5c71\\u8857\\u0032\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '121725', '711', 'zh-tw', 1000),
(3945, 262, '16-262', 1, '寶山街', '{"number":"197858","shop":"\\u5bf6\\u5c71\\u8857","phone":"033258340","address":"\\u5bf6\\u5c71\\u8857\\u0032\\u0038\\u0030\\u865f\\u0031\\u6a13"}', '197858', '711', 'zh-tw', 1000),
(3946, 262, '16-262', 1, '龍行', '{"number":"957377","shop":"\\u9f8d\\u884c","phone":"033395057","address":"\\u9577\\u5b89\\u91cc\\u529b\\u884c\\u8def\\u0031\\u0035\\u0036\\u865f"}', '957377', '711', 'zh-tw', 1000),
(3947, 262, '16-262', 1, '長陽', '{"number":"913012","shop":"\\u9577\\u967d","phone":"033711375","address":"\\u9577\\u6c99\\u8857\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '913012', '711', 'zh-tw', 1000),
(3948, 262, '16-262', 1, '新虎山', '{"number":"170956","shop":"\\u65b0\\u864e\\u5c71","phone":"033339282","address":"\\u6210\\u529f\\u8def\\u4e09\\u6bb5\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '170956', '711', 'zh-tw', 1000),
(3949, 262, '16-262', 1, '華信', '{"number":"118682","shop":"\\u83ef\\u4fe1","phone":"033369130","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\u0034\\u0037\\u865f"}', '118682', '711', 'zh-tw', 1000),
(3950, 262, '16-262', 1, '大椿', '{"number":"165884","shop":"\\u5927\\u693f","phone":"033577774","address":"\\u6625\\u65e5\\u8def\\u0031\\u0031\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '165884', '711', 'zh-tw', 1000),
(3951, 262, '16-262', 1, '得寶', '{"number":"112617","shop":"\\u5f97\\u5bf6","phone":"033162211","address":"\\u6625\\u65e5\\u8def\\u0031\\u0033\\u0034\\u0034\\u865f\\u0031\\u0033\\u0034\\u0036\\u865f"}', '112617', '711', 'zh-tw', 1000),
(3952, 262, '16-262', 1, '全鎮', '{"number":"113045","shop":"\\u5168\\u93ae","phone":"033398439","address":"\\u6625\\u65e5\\u8def\\u0032\\u0033\\u0038\\u865f\\u0032\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '113045', '711', 'zh-tw', 1000),
(3953, 262, '16-262', 1, '春寶', '{"number":"122784","shop":"\\u6625\\u5bf6","phone":"033574543","address":"\\u6625\\u65e5\\u8def\\u0036\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '122784', '711', 'zh-tw', 1000),
(3954, 262, '16-262', 1, '慈德', '{"number":"130017","shop":"\\u6148\\u5fb7","phone":"033575083","address":"\\u6148\\u5fb7\\u8857\\u0035\\u0033\\u865f\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f"}', '130017', '711', 'zh-tw', 1000),
(3955, 262, '16-262', 1, '崴盛', '{"number":"138712","shop":"\\u5d34\\u76db","phone":"033575040","address":"\\u6148\\u6587\\u8def\\u0035\\u0031\\u865f\\u003b\\u6b63\\u5eb7\\u4e09\\u8857\\u0032\\u0038\\u0034\\u865f"}', '138712', '711', 'zh-tw', 1000),
(3956, 262, '16-262', 1, '大權', '{"number":"135621","shop":"\\u5927\\u6b0a","phone":"033357053","address":"\\u5927\\u540c\\u8def\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f"}', '135621', '711', 'zh-tw', 1000),
(3957, 262, '16-262', 1, '民大', '{"number":"131168","shop":"\\u6c11\\u5927","phone":"033256860","address":"\\u5927\\u8208\\u8def\\u0032\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '131168', '711', 'zh-tw', 1000),
(3958, 262, '16-262', 1, '桃朋', '{"number":"874506","shop":"\\u6843\\u670b","phone":"033021150","address":"\\u5927\\u8208\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u865f\\u0031\\u6a13"}', '874506', '711', 'zh-tw', 1000),
(3959, 262, '16-262', 1, '新大興', '{"number":"976389","shop":"\\u65b0\\u5927\\u8208","phone":"032160587","address":"\\u5927\\u8208\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '976389', '711', 'zh-tw', 1000),
(3960, 262, '16-262', 1, '興源', '{"number":"181347","shop":"\\u8208\\u6e90","phone":"033028487","address":"\\u5927\\u8208\\u897f\\u8def\\u4e8c\\u6bb5\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '181347', '711', 'zh-tw', 1000),
(3961, 262, '16-262', 1, '辰興', '{"number":"138985","shop":"\\u8fb0\\u8208","phone":"033583730","address":"\\u5927\\u8208\\u897f\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0038\\u865f"}', '138985', '711', 'zh-tw', 1000),
(3962, 262, '16-262', 1, '昇宏', '{"number":"987862","shop":"\\u6607\\u5b8f","phone":"033462286","address":"\\u5927\\u696d\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0031\\u865f\\u4e4b\\u0032"}', '987862', '711', 'zh-tw', 1000),
(3963, 262, '16-262', 1, '臻愛', '{"number":"943895","shop":"\\u81fb\\u611b","phone":"033352178","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0032\\u865f"}', '943895', '711', 'zh-tw', 1000),
(3964, 262, '16-262', 1, '澄和', '{"number":"162922","shop":"\\u6f84\\u548c","phone":"033174729","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0037\\u865f\\u0031\\u52a0\\u0032\\u6a13"}', '162922', '711', 'zh-tw', 1000),
(3965, 262, '16-262', 1, '輕井澤', '{"number":"135469","shop":"\\u8f15\\u4e95\\u6fa4","phone":"033565648","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u0035\\u865f\\u0033\\u0035\\u0037\\u865f\\u4e00\\u6a13"}', '135469', '711', 'zh-tw', 1000),
(3966, 262, '16-262', 1, '星寶', '{"number":"992831","shop":"\\u661f\\u5bf6","phone":"033256367","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\u0034\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '992831', '711', 'zh-tw', 1000),
(3967, 262, '16-262', 1, '三元', '{"number":"122315","shop":"\\u4e09\\u5143","phone":"033311502","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u865f\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '122315', '711', 'zh-tw', 1000),
(3968, 262, '16-262', 1, '民越', '{"number":"972387","shop":"\\u6c11\\u8d8a","phone":"033339237","address":"\\u5927\\u6709\\u8def\\u0031\\u0034\\u0031\\u865f\\u0031\\u0034\\u0033\\u865f"}', '972387', '711', 'zh-tw', 1000),
(3969, 262, '16-262', 1, '有家', '{"number":"145145","shop":"\\u6709\\u5bb6","phone":"033257574","address":"\\u5927\\u6709\\u8def\\u0034\\u0035\\u0037\\u865f\\u0034\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '145145', '711', 'zh-tw', 1000),
(3970, 262, '16-262', 1, '大有', '{"number":"155430","shop":"\\u5927\\u6709","phone":"033584876","address":"\\u5927\\u6709\\u8def\\u0035\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '155430', '711', 'zh-tw', 1000),
(3971, 262, '16-262', 1, '假日', '{"number":"864886","shop":"\\u5047\\u65e5","phone":"033568448","address":"\\u5927\\u6709\\u8def\\u0035\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '864886', '711', 'zh-tw', 1000),
(3972, 262, '16-262', 1, '雙假', '{"number":"113920","shop":"\\u96d9\\u5047","phone":"033568380","address":"\\u5927\\u6709\\u8def\\u0036\\u0036\\u0030\\u865f\\u0031\\u6a13\\u4e4b\\u0032"}', '113920', '711', 'zh-tw', 1000),
(3973, 262, '16-262', 1, '聖保祿', '{"number":"184715","shop":"\\u8056\\u4fdd\\u797f","phone":"033758496","address":"\\u798f\\u5b89\\u91cc\\u5efa\\u65b0\\u8857\\u0036\\u0038\\u865f"}', '184715', '711', 'zh-tw', 1000),
(3974, 262, '16-262', 1, '興武', '{"number":"164674","shop":"\\u8208\\u6b66","phone":"033345654","address":"\\u5fa9\\u8208\\u8def\\u0032\\u0033\\u0039\\u4e4b\\u0031\\u865f\\u0031\\u6a13\\u003b\\u0032\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '164674', '711', 'zh-tw', 1000),
(3975, 262, '16-262', 1, '成皇', '{"number":"163660","shop":"\\u6210\\u7687","phone":"033366648","address":"\\u5fa9\\u8208\\u8def\\u0038\\u0030\\u865f"}', '163660', '711', 'zh-tw', 1000),
(3976, 262, '16-262', 1, '紅蕃茄', '{"number":"137867","shop":"\\u7d05\\u8543\\u8304","phone":"033362103","address":"\\u5fa9\\u8208\\u8def\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f"}', '137867', '711', 'zh-tw', 1000),
(3977, 262, '16-262', 1, '君富', '{"number":"184483","shop":"\\u541b\\u5bcc","phone":"032160954","address":"\\u5bcc\\u570b\\u8def\\u0035\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '184483', '711', 'zh-tw', 1000),
(3978, 262, '16-262', 1, '富有', '{"number":"992462","shop":"\\u5bcc\\u6709","phone":"033026291","address":"\\u5bcc\\u570b\\u8def\\u0036\\u0035\\u0036\\u865f"}', '992462', '711', 'zh-tw', 1000),
(3979, 262, '16-262', 1, '國豐', '{"number":"940058","shop":"\\u570b\\u8c50","phone":"032174894","address":"\\u570b\\u8c50\\u516d\\u8857\\u0032\\u0035\\u865f"}', '940058', '711', 'zh-tw', 1000),
(3980, 262, '16-262', 1, '國力', '{"number":"180573","shop":"\\u570b\\u529b","phone":"032170120","address":"\\u570b\\u969b\\u8def\\u4e8c\\u6bb5\\u0034\\u0032\\u0036\\u865f\\u0034\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '180573', '711', 'zh-tw', 1000),
(3981, 262, '16-262', 1, '桃匯', '{"number":"185431","shop":"\\u6843\\u532f","phone":"032151041","address":"\\u570b\\u969b\\u8def\\u4e8c\\u6bb5\\u0035\\u0035\\u0037\\u865f\\u0035\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '185431', '711', 'zh-tw', 1000),
(3982, 262, '16-262', 1, '源盛', '{"number":"996017","shop":"\\u6e90\\u76db","phone":"032172463","address":"\\u570b\\u8056\\u4e00\\u8857\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13\\u003b\\u5b8f\\u660c\\u5341\\u4e8c\\u8857\\u0035\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '996017', '711', 'zh-tw', 1000),
(3983, 262, '16-262', 1, '漢豐', '{"number":"143356","shop":"\\u6f22\\u8c50","phone":"032184486","address":"\\u6f22\\u4e2d\\u8857\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '143356', '711', 'zh-tw', 1000),
(3984, 262, '16-262', 1, '鼎桃', '{"number":"152084","shop":"\\u9f0e\\u6843","phone":"032171897","address":"\\u5b8f\\u660c\\u516d\\u8857\\u0032\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '152084', '711', 'zh-tw', 1000),
(3985, 262, '16-262', 1, '驊豐', '{"number":"164607","shop":"\\u9a4a\\u8c50","phone":"033627150","address":"\\u5efa\\u570b\\u8def\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '164607', '711', 'zh-tw', 1000),
(3986, 262, '16-262', 1, '尊品', '{"number":"112086","shop":"\\u5c0a\\u54c1","phone":"033634561","address":"\\u5efa\\u570b\\u8def\\u0034\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '112086', '711', 'zh-tw', 1000),
(3987, 262, '16-262', 1, '健業', '{"number":"151782","shop":"\\u5065\\u696d","phone":"033581545","address":"\\u5065\\u884c\\u8def\\u0038\\u0038\\u865f"}', '151782', '711', 'zh-tw', 1000),
(3988, 262, '16-262', 1, '桃金', '{"number":"988289","shop":"\\u6843\\u91d1","phone":"033628357","address":"\\u91d1\\u9580\\u0032\\u8857\\u0038\\u0033\\u865f\\u53ca\\u0039\\u0033\\u865f"}', '988289', '711', 'zh-tw', 1000),
(3989, 262, '16-262', 1, '敏盛', '{"number":"197087","shop":"\\u654f\\u76db","phone":"033460823","address":"\\u7d93\\u570b\\u8def\\u0031\\u0036\\u0038\\u865f\\u0042\\u0031\\u6a13"}', '197087', '711', 'zh-tw', 1000),
(3990, 262, '16-262', 1, '國揚', '{"number":"874942","shop":"\\u570b\\u63da","phone":"033254441","address":"\\u7d93\\u570b\\u8def\\u0032\\u0034\\u0032\\u865f"}', '874942', '711', 'zh-tw', 1000),
(3991, 262, '16-262', 1, '國安', '{"number":"870788","shop":"\\u570b\\u5b89","phone":"033586607","address":"\\u7d93\\u570b\\u8def\\u0034\\u0030\\u0035\\u865f"}', '870788', '711', 'zh-tw', 1000),
(3992, 262, '16-262', 1, '欣國榮', '{"number":"198792","shop":"\\u6b23\\u570b\\u69ae","phone":"033554963","address":"\\u7d93\\u570b\\u8def\\u0038\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '198792', '711', 'zh-tw', 1000),
(3993, 262, '16-262', 1, '新桃行', '{"number":"171753","shop":"\\u65b0\\u6843\\u884c","phone":"033317975","address":"\\u529b\\u884c\\u8def\\u0037\\u865f"}', '171753', '711', 'zh-tw', 1000),
(3994, 262, '16-262', 1, '龍袖', '{"number":"935757","shop":"\\u9f8d\\u8896","phone":"033698426","address":"\\u9f8d\\u5b89\\u8857\\u0031\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '935757', '711', 'zh-tw', 1000),
(3995, 262, '16-262', 1, '桃龍', '{"number":"887100","shop":"\\u6843\\u9f8d","phone":"033703291","address":"\\u9f8d\\u5b89\\u8857\\u0037\\u0039\\u865f\\u0038\\u0031\\u865f"}', '887100', '711', 'zh-tw', 1000),
(3996, 262, '16-262', 1, '鑫帝標', '{"number":"144751","shop":"\\u946b\\u5e1d\\u6a19","phone":"033441963","address":"\\u9f8d\\u6cc9\\u4e8c\\u8857\\u0036\\u0035\\u865f\\u9f8d\\u57ce\\u4e94\\u8857\\u0036\\u0036\\u002e\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '144751', '711', 'zh-tw', 1000),
(3997, 262, '16-262', 1, '新龍壽', '{"number":"189101","shop":"\\u65b0\\u9f8d\\u58fd","phone":"033709725","address":"\\u9f8d\\u58fd\\u8857\\u0032\\u0030\\u865f"}', '189101', '711', 'zh-tw', 1000),
(3998, 262, '16-262', 1, '文城', '{"number":"111522","shop":"\\u6587\\u57ce","phone":"033705798","address":"\\u9f8d\\u58fd\\u8857\\u0032\\u0037\\u0033\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '111522', '711', 'zh-tw', 1000),
(3999, 262, '16-262', 1, '蜜鄰', '{"number":"977991","shop":"\\u871c\\u9130","phone":"033606256","address":"\\u9f8d\\u58fd\\u8857\\u0039\\u0036\\u865f\\u0039\\u0038\\u865f"}', '977991', '711', 'zh-tw', 1000),
(4000, 262, '16-262', 1, '富邑', '{"number":"963408","shop":"\\u5bcc\\u9091","phone":"033785009","address":"\\u9f8d\\u7965\\u91cc\\u9f8d\\u6cc9\\u4e94\\u8857\\u0038\\u0032\\u865f\\u9f8d\\u7965\\u8857\\u0039\\u0038\\u865f"}', '963408', '711', 'zh-tw', 1000),
(4001, 262, '16-262', 1, '正康', '{"number":"173678","shop":"\\u6b63\\u5eb7","phone":"033370054","address":"\\u6c11\\u5149\\u8def\\u0034\\u0039\\u865f"}', '173678', '711', 'zh-tw', 1000),
(4002, 262, '16-262', 1, '聖民', '{"number":"132426","shop":"\\u8056\\u6c11","phone":"033476249","address":"\\u6c11\\u751f\\u8def\\u0032\\u0030\\u0038\\u865f\\u4e00\\u6a13"}', '132426', '711', 'zh-tw', 1000),
(4003, 262, '16-262', 1, '民笙', '{"number":"195405","shop":"\\u6c11\\u7b19","phone":"033331411","address":"\\u6c11\\u751f\\u8def\\u0032\\u0038\\u0037\\u865f\\u0032\\u0038\\u0039\\u865f"}', '195405', '711', 'zh-tw', 1000),
(4004, 262, '16-262', 1, '埔民', '{"number":"143758","shop":"\\u57d4\\u6c11","phone":"033470875","address":"\\u6c11\\u751f\\u8def\\u0035\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '143758', '711', 'zh-tw', 1000),
(4005, 262, '16-262', 1, '桃民', '{"number":"198688","shop":"\\u6843\\u6c11","phone":"033349819","address":"\\u6c11\\u65cf\\u8def\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '198688', '711', 'zh-tw', 1000),
(4006, 262, '16-262', 1, '桃華', '{"number":"196718","shop":"\\u6843\\u83ef","phone":"033343726","address":"\\u5357\\u83ef\\u8857\\u0031\\u0030\\u0036\\u865f\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '196718', '711', 'zh-tw', 1000),
(4007, 262, '16-262', 1, '國藝', '{"number":"182373","shop":"\\u570b\\u85dd","phone":"033576015","address":"\\u5357\\u5e73\\u8def\\u0031\\u0038\\u0035\\u865f\\u0031\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '182373', '711', 'zh-tw', 1000),
(4008, 262, '16-262', 1, '貴族', '{"number":"183273","shop":"\\u8cb4\\u65cf","phone":"033562962","address":"\\u5357\\u5e73\\u8def\\u0033\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '183273', '711', 'zh-tw', 1000),
(4009, 262, '16-262', 1, '箱根', '{"number":"202486","shop":"\\u7bb1\\u6839","phone":"033461928","address":"\\u5357\\u5e73\\u8def\\u0034\\u0031\\u0036\\u865f\\u0034\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '202486', '711', 'zh-tw', 1000),
(4010, 262, '16-262', 1, '大佶', '{"number":"123547","shop":"\\u5927\\u4f76","phone":"033638720","address":"\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0034\\u0039\\u0030\\u865f"}', '123547', '711', 'zh-tw', 1000),
(4011, 262, '16-262', 1, '瑞家', '{"number":"991300","shop":"\\u745e\\u5bb6","phone":"033349526","address":"\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '991300', '711', 'zh-tw', 1000),
(4012, 262, '16-262', 1, '新武陵', '{"number":"182188","shop":"\\u65b0\\u6b66\\u9675","phone":"033692146","address":"\\u4e0a\\u6d77\\u8def\\u0038\\u0032\\u865f\\u0038\\u0034\\u865f\\u6c5f\\u5357\\u516b\\u8857\\u0034\\u0039\\u865f"}', '182188', '711', 'zh-tw', 1000),
(4013, 262, '16-262', 1, '金凱旋', '{"number":"948650","shop":"\\u91d1\\u51f1\\u65cb","phone":"032206756","address":"\\u58fd\\u660c\\u8857\\u0032\\u0030\\u5df7\\u0034\\u0035\\u865f\\u0034\\u0037\\u865f"}', '948650', '711', 'zh-tw', 1000),
(4014, 262, '16-262', 1, '益志', '{"number":"187987","shop":"\\u76ca\\u5fd7","phone":"033647281","address":"\\u6a39\\u4ec1\\u4e09\\u8857\\u0031\\u0030\\u0032\\u865f"}', '187987', '711', 'zh-tw', 1000),
(4015, 262, '16-262', 1, '城邦', '{"number":"188038","shop":"\\u57ce\\u90a6","phone":"033757509","address":"\\u6a39\\u4ec1\\u4e09\\u8857\\u0038\\u0031\\u865f\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '188038', '711', 'zh-tw', 1000),
(4016, 262, '16-262', 1, '泰昌', '{"number":"997870","shop":"\\u6cf0\\u660c","phone":"032201788","address":"\\u6cf0\\u660c\\u4e09\\u8857\\u0035\\u0031\\u002d\\u0036\\u865f"}', '997870', '711', 'zh-tw', 1000),
(4017, 262, '16-262', 1, '鶯明', '{"number":"158370","shop":"\\u9daf\\u660e","phone":"033766270","address":"\\u6843\\u9daf\\u8def\\u0032\\u0035\\u0031\\u865f"}', '158370', '711', 'zh-tw', 1000),
(4018, 262, '16-262', 1, '宏太', '{"number":"170428","shop":"\\u5b8f\\u592a","phone":"033752641","address":"\\u6843\\u9daf\\u8def\\u0033\\u0038\\u0034\\u002d\\u0039\\u865f\\u0033\\u0038\\u0034\\u002d\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '170428', '711', 'zh-tw', 1000),
(4019, 262, '16-262', 1, '擎天', '{"number":"167709","shop":"\\u64ce\\u5929","phone":"033753250","address":"\\u6843\\u9daf\\u8def\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '167709', '711', 'zh-tw', 1000),
(4020, 262, '16-262', 1, '智勝', '{"number":"142582","shop":"\\u667a\\u52dd","phone":"033679443","address":"\\u6843\\u667a\\u8def\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '142582', '711', 'zh-tw', 1000),
(4021, 262, '16-262', 1, '福利國', '{"number":"141811","shop":"\\u798f\\u5229\\u570b","phone":"033467422","address":"\\u540c\\u5fb7\\u516d\\u8857\\u0031\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '141811', '711', 'zh-tw', 1000),
(4022, 262, '16-262', 1, '藝德', '{"number":"166463","shop":"\\u85dd\\u5fb7","phone":"033258230","address":"\\u540c\\u5fb7\\u5341\\u4e00\\u8857\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f"}', '166463', '711', 'zh-tw', 1000),
(4023, 262, '16-262', 1, '桃農', '{"number":"167857","shop":"\\u6843\\u8fb2","phone":"033364609","address":"\\u842c\\u58fd\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f\\u0031\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '167857', '711', 'zh-tw', 1000),
(4024, 262, '16-262', 1, '文中', '{"number":"130899","shop":"\\u6587\\u4e2d","phone":"032173104","address":"\\u6587\\u4e2d\\u8def\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '130899', '711', 'zh-tw', 1000),
(4025, 262, '16-262', 1, '文福', '{"number":"882404","shop":"\\u6587\\u798f","phone":"033709798","address":"\\u6587\\u4e2d\\u8def\\u0037\\u0034\\u0037\\u865f"}', '882404', '711', 'zh-tw', 1000),
(4026, 262, '16-262', 1, '千山', '{"number":"184656","shop":"\\u5343\\u5c71","phone":"033335381","address":"\\u7e23\\u5e9c\\u8def\\u0032\\u0031\\u0032\\u865f\\u0032\\u0031\\u0036\\u865f"}', '184656', '711', 'zh-tw', 1000),
(4027, 262, '16-262', 1, '新桃府', '{"number":"159351","shop":"\\u65b0\\u6843\\u5e9c","phone":"033365913","address":"\\u7e23\\u5e9c\\u8def\\u0033\\u0031\\u0032\\u865f\\u0033\\u0031\\u0032\\u4e4b\\u0031\\u865f"}', '159351', '711', 'zh-tw', 1000),
(4028, 262, '16-262', 1, '謙悅', '{"number":"142663","shop":"\\u8b19\\u6085","phone":"033151916","address":"\\u65b0\\u57d4\\u516d\\u8857\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '142663', '711', 'zh-tw', 1000),
(4029, 262, '16-262', 1, '崴信', '{"number":"200734","shop":"\\u5d34\\u4fe1","phone":"033265379","address":"\\u4fe1\\u5149\\u8def\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '200734', '711', 'zh-tw', 1000),
(4030, 262, '16-262', 1, '宏達電', '{"number":"982144","shop":"\\u5b8f\\u9054\\u96fb","phone":"033638382","address":"\\u8208\\u83ef\\u8def\\u0032\\u0033\\u865f"}', '982144', '711', 'zh-tw', 1000),
(4031, 262, '16-262', 1, '禾豐', '{"number":"123466","shop":"\\u79be\\u8c50","phone":"033331864","address":"\\u79c0\\u5c71\\u8def\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '123466', '711', 'zh-tw', 1000),
(4032, 262, '16-262', 1, '新達豐', '{"number":"186962","shop":"\\u65b0\\u9054\\u8c50","phone":"033643819","address":"\\u5ef6\\u5e73\\u8def\\u0032\\u0030\\u0032\\u865f\\u003b\\u5927\\u8c50\\u8def\\u0031\\u0039\\u0034\\u865f"}', '186962', '711', 'zh-tw', 1000),
(4033, 262, '16-262', 1, '新桃林', '{"number":"142157","shop":"\\u65b0\\u6843\\u6797","phone":"033641912","address":"\\u5ef6\\u5e73\\u8def\\u0034\\u865f\\u0036\\u865f\\u0031\\u6a13"}', '142157', '711', 'zh-tw', 1000),
(4034, 262, '16-262', 1, '益壽', '{"number":"921471","shop":"\\u76ca\\u58fd","phone":"033922974","address":"\\u5ef6\\u58fd\\u8857\\u0031\\u0036\\u0039\\u865f\\u0031\\u0037\\u0031\\u865f"}', '921471', '711', 'zh-tw', 1000),
(4035, 262, '16-262', 1, '文仁', '{"number":"173656","shop":"\\u6587\\u4ec1","phone":"033794066","address":"\\u5ef6\\u58fd\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '173656', '711', 'zh-tw', 1000),
(4036, 262, '16-262', 1, '埔子', '{"number":"154725","shop":"\\u57d4\\u5b50","phone":"032150752","address":"\\u6c38\\u5b89\\u8def\\u0031\\u0030\\u0034\\u0030\\u865f\\u0031\\u0030\\u0034\\u0030\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '154725', '711', 'zh-tw', 1000),
(4037, 262, '16-262', 1, '慈安', '{"number":"151634","shop":"\\u6148\\u5b89","phone":"033264308","address":"\\u6c38\\u5b89\\u8def\\u0036\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '151634', '711', 'zh-tw', 1000),
(4038, 262, '16-262', 1, '星宇', '{"number":"184232","shop":"\\u661f\\u5b87","phone":"032161994","address":"\\u6c38\\u5b89\\u8def\\u0037\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '184232', '711', 'zh-tw', 1000),
(4039, 262, '16-262', 1, '新德鴻', '{"number":"957388","shop":"\\u65b0\\u5fb7\\u9d3b","phone":"033767172","address":"\\u6c38\\u798f\\u897f\\u8857\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f"}', '957388', '711', 'zh-tw', 1000),
(4040, 262, '16-262', 1, '立揚', '{"number":"184449","shop":"\\u7acb\\u63da","phone":"033314841","address":"\\u6b63\\u5149\\u8def\\u0031\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '184449', '711', 'zh-tw', 1000),
(4041, 262, '16-262', 1, '國仲', '{"number":"138103","shop":"\\u570b\\u4ef2","phone":"032180453","address":"\\u4e2d\\u5fb7\\u91cc\\u570b\\u969b\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u0038\\u865f"}', '138103', '711', 'zh-tw', 1000),
(4042, 262, '16-262', 1, '大錢站', '{"number":"193269","shop":"\\u5927\\u9322\\u7ad9","phone":"033357259","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '193269', '711', 'zh-tw', 1000),
(4043, 262, '16-262', 1, '宏亞', '{"number":"190776","shop":"\\u5b8f\\u4e9e","phone":"032289084","address":"\\u4e2d\\u5e73\\u8def\\u0031\\u0030\\u0032\\u865f"}', '190776', '711', 'zh-tw', 1000),
(4044, 262, '16-262', 1, '平昌', '{"number":"113849","shop":"\\u5e73\\u660c","phone":"032206730","address":"\\u4e2d\\u5e73\\u8def\\u0031\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '113849', '711', 'zh-tw', 1000),
(4045, 262, '16-262', 1, '同德', '{"number":"189798","shop":"\\u540c\\u5fb7","phone":"032150474","address":"\\u4e2d\\u57d4\\u4e8c\\u8857\\u0031\\u0035\\u0030\\u865f"}', '189798', '711', 'zh-tw', 1000),
(4046, 262, '16-262', 1, '維瀚', '{"number":"987910","shop":"\\u7dad\\u701a","phone":"033468299","address":"\\u4e2d\\u57d4\\u516d\\u8857\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '987910', '711', 'zh-tw', 1000),
(4047, 262, '16-262', 1, '縣北', '{"number":"126878","shop":"\\u7e23\\u5317","phone":"033318746","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '126878', '711', 'zh-tw', 1000),
(4048, 262, '16-262', 1, '光北', '{"number":"150907","shop":"\\u5149\\u5317","phone":"033318631","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u0034\\u0032\\u865f\\u0031\\u6a13\\u53ca\\u5730\\u4e0b\\u0031\\u6a13"}', '150907', '711', 'zh-tw', 1000),
(4049, 262, '16-262', 1, '立國', '{"number":"136495","shop":"\\u7acb\\u570b","phone":"033323125","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '136495', '711', 'zh-tw', 1000),
(4050, 262, '16-262', 1, '桃醫', '{"number":"179584","shop":"\\u6843\\u91ab","phone":"033708564","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0039\\u0032\\u865f"}', '179584', '711', 'zh-tw', 1000),
(4051, 262, '16-262', 1, '冠桃園', '{"number":"148269","shop":"\\u51a0\\u6843\\u5712","phone":"033691483","address":"\\u4e2d\\u6cf0\\u91cc\\u570b\\u969b\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0037\\u0039\\u865f"}', '148269', '711', 'zh-tw', 1000),
(4052, 262, '16-262', 1, '桃遠百', '{"number":"193454","shop":"\\u6843\\u9060\\u767e","phone":"033397497","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0030\\u865f\\u0042\\u0031\\u6a13"}', '193454', '711', 'zh-tw', 1000),
(4053, 262, '16-262', 1, '桃中', '{"number":"144267","shop":"\\u6843\\u4e2d","phone":"033398295","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '144267', '711', 'zh-tw', 1000),
(4054, 262, '16-262', 1, '桃全', '{"number":"183653","shop":"\\u6843\\u5168","phone":"033394721","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0034\\u0032\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '183653', '711', 'zh-tw', 1000),
(4055, 262, '16-262', 1, '冠吾', '{"number":"963327","shop":"\\u51a0\\u543e","phone":"033367050","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0035\\u0035\\u865f"}', '963327', '711', 'zh-tw', 1000),
(4056, 262, '16-262', 1, '新光信', '{"number":"981037","shop":"\\u65b0\\u5149\\u4fe1","phone":"033316920","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0031\\u0032\\u865f"}', '981037', '711', 'zh-tw', 1000),
(4057, 262, '16-262', 1, '慈中', '{"number":"180115","shop":"\\u6148\\u4e2d","phone":"033254968","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0032\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '180115', '711', 'zh-tw', 1000),
(4058, 262, '16-262', 1, '崴正', '{"number":"130741","shop":"\\u5d34\\u6b63","phone":"033570476","address":"\\u4e2d\\u6b63\\u4e94\\u8857\\u0031\\u0033\\u0037\\u865f\\u0031\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '130741', '711', 'zh-tw', 1000),
(4059, 262, '16-262', 1, '莊正', '{"number":"174936","shop":"\\u838a\\u6b63","phone":"033015412","address":"\\u838a\\u4e8c\\u8857\\u0031\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '174936', '711', 'zh-tw', 1000),
(4060, 262, '16-262', 1, '鈺朋', '{"number":"144072","shop":"\\u923a\\u670b","phone":"033023234","address":"\\u838a\\u656c\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '144072', '711', 'zh-tw', 1000),
(4061, 262, '16-262', 1, '新莊伯', '{"number":"135252","shop":"\\u65b0\\u838a\\u4f2f","phone":"033464840","address":"\\u838a\\u656c\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0035\\u865f\\u0031\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '135252', '711', 'zh-tw', 1000),
(4062, 262, '16-262', 1, '正麗', '{"number":"171694","shop":"\\u6b63\\u9e97","phone":"033413273","address":"\\u838a\\u4e00\\u8857\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '171694', '711', 'zh-tw', 1000),
(4063, 262, '16-262', 1, '國祥', '{"number":"902540","shop":"\\u570b\\u7965","phone":"033461185","address":"\\u81ea\\u5f37\\u91cc\\u7d93\\u570b\\u8def\\u0036\\u0038\\u0035\\u865f"}', '902540', '711', 'zh-tw', 1000),
(4064, 262, '16-262', 1, '青溪', '{"number":"120607","shop":"\\u9752\\u6eaa","phone":"033313487","address":"\\u81ea\\u5f37\\u8def\\u0032\\u865f\\u0031\\u6a13\\u8207\\u4e2d\\u5c71\\u6771\\u8def\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '120607', '711', 'zh-tw', 1000),
(4065, 263, '16-263', 1, '盛烽', '{"number":"181554","shop":"\\u76db\\u70fd","phone":"034903974","address":"\\u6885\\u9ad8\\u8def\\u4e09\\u6bb5\\u0033\\u0031\\u0030\\u4e4b\\u0036\\u865f"}', '181554', '711', 'zh-tw', 1000),
(4066, 263, '16-263', 1, '新屋', '{"number":"866158","shop":"\\u65b0\\u5c4b","phone":"034772056","address":"\\u65b0\\u751f\\u91cc\\u0031\\u0032\\u9130\\u4e2d\\u5c71\\u8def\\u0033\\u0036\\u0037\\u865f\\u0033\\u0036\\u0039\\u865f\\u0033\\u0037\\u0031\\u865f"}', '866158', '711', 'zh-tw', 1000),
(4067, 263, '16-263', 1, '新屋山', '{"number":"137661","shop":"\\u65b0\\u5c4b\\u5c71","phone":"034870863","address":"\\u65b0\\u5c4b\\u91cc\\u4e2d\\u5c71\\u8def\\u0032\\u0038\\u0038\\u865f"}', '137661', '711', 'zh-tw', 1000),
(4068, 263, '16-263', 1, '景碩一廠', '{"number":"966038","shop":"\\u666f\\u78a9\\u4e00\\u5ee0","phone":"034970443","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0032\\u0034\\u0035\\u865f\\u0033\\u6a13"}', '966038', '711', 'zh-tw', 1000),
(4069, 263, '16-263', 1, '新屋中華', '{"number":"954622","shop":"\\u65b0\\u5c4b\\u4e2d\\u83ef","phone":"034776260","address":"\\u4e2d\\u83ef\\u8def\\u0033\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '954622', '711', 'zh-tw', 1000),
(4070, 263, '16-263', 1, '景碩新廠', '{"number":"966083","shop":"\\u666f\\u78a9\\u65b0\\u5ee0","phone":"034972958","address":"\\u4e2d\\u83ef\\u8def\\u0038\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '966083', '711', 'zh-tw', 1000),
(4071, 263, '16-263', 1, '多利', '{"number":"153560","shop":"\\u591a\\u5229","phone":"034904152","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e8c\\u6bb5\\u0037\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '153560', '711', 'zh-tw', 1000),
(4072, 263, '16-263', 1, '金帝寶', '{"number":"130659","shop":"\\u91d1\\u5e1d\\u5bf6","phone":"034770613","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0036\\u865f"}', '130659', '711', 'zh-tw', 1000),
(4073, 263, '16-263', 1, '北勢', '{"number":"179676","shop":"\\u5317\\u52e2","phone":"034774277","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e00\\u6bb5\\u0037\\u0034\\u0035\\u865f"}', '179676', '711', 'zh-tw', 1000),
(4074, 263, '16-263', 1, '永安港', '{"number":"126328","shop":"\\u6c38\\u5b89\\u6e2f","phone":"034864411","address":"\\u4e2d\\u5c71\\u897f\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0034\\u0038\\u865f"}', '126328', '711', 'zh-tw', 1000),
(4075, 263, '16-263', 1, '日日興', '{"number":"166670","shop":"\\u65e5\\u65e5\\u8208","phone":"034970459","address":"\\u4e2d\\u5c71\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0030\\u5df7\\u0032\\u0030\\u865f"}', '166670', '711', 'zh-tw', 1000),
(4076, 264, '16-264', 1, '苙佑', '{"number":"933016","shop":"\\u82d9\\u4f51","phone":"034782270","address":"\\u6885\\u9ad8\\u8def\\u0031\\u0033\\u0033\\u865f"}', '933016', '711', 'zh-tw', 1000),
(4077, 264, '16-264', 1, '高尚', '{"number":"142272","shop":"\\u9ad8\\u5c1a","phone":"034850532","address":"\\u6885\\u9ad8\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0036\\u5df7\\u0035\\u865f"}', '142272', '711', 'zh-tw', 1000),
(4078, 264, '16-264', 1, '大成', '{"number":"171742","shop":"\\u5927\\u6210","phone":"034781599","address":"\\u6885\\u5c71\\u897f\\u8857\\u0031\\u0030\\u865f"}', '171742', '711', 'zh-tw', 1000),
(4079, 264, '16-264', 1, '萬鑫', '{"number":"193650","shop":"\\u842c\\u946b","phone":"034727146","address":"\\u6c11\\u5bcc\\u8def\\u4e09\\u6bb5\\u0038\\u0032\\u0038\\u865f\\u0038\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '193650', '711', 'zh-tw', 1000),
(4080, 264, '16-264', 1, '蓮花', '{"number":"962645","shop":"\\u84ee\\u82b1","phone":"034644856","address":"\\u9752\\u5c71\\u4e00\\u8857\\u0032\\u865f"}', '962645', '711', 'zh-tw', 1000),
(4081, 264, '16-264', 1, '梅獅', '{"number":"913540","shop":"\\u6885\\u7345","phone":"034814576","address":"\\u745e\\u5858\\u91cc\\u6885\\u7345\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0031\\u865f"}', '913540', '711', 'zh-tw', 1000),
(4082, 264, '16-264', 1, '楊功', '{"number":"141187","shop":"\\u694a\\u529f","phone":"034820217","address":"\\u745e\\u6eaa\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '141187', '711', 'zh-tw', 1000),
(4083, 264, '16-264', 1, '瑞豐', '{"number":"138790","shop":"\\u745e\\u8c50","phone":"034725387","address":"\\u745e\\u539f\\u91cc\\u6c11\\u5bcc\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u865f"}', '138790', '711', 'zh-tw', 1000),
(4084, 264, '16-264', 1, '楊民', '{"number":"942401","shop":"\\u694a\\u6c11","phone":"034316640","address":"\\u4e09\\u6c11\\u5317\\u8def\\u0031\\u0037\\u0037\\u865f"}', '942401', '711', 'zh-tw', 1000),
(4085, 264, '16-264', 1, '富先', '{"number":"920962","shop":"\\u5bcc\\u5148","phone":"034312760","address":"\\u842c\\u5927\\u8def\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f"}', '920962', '711', 'zh-tw', 1000),
(4086, 264, '16-264', 1, '凱成', '{"number":"159410","shop":"\\u51f1\\u6210","phone":"034313241","address":"\\u6587\\u5316\\u8857\\u0032\\u0032\\u0030\\u865f\\u0032\\u0032\\u0032\\u865f\\u0032\\u0032\\u0032\\u002d\\u0031\\u865f"}', '159410', '711', 'zh-tw', 1000),
(4087, 264, '16-264', 1, '楊昇', '{"number":"987839","shop":"\\u694a\\u6607","phone":"032888644","address":"\\u6821\\u524d\\u8def\\u0032\\u0034\\u0031\\u865f"}', '987839', '711', 'zh-tw', 1000),
(4088, 264, '16-264', 1, '楊展', '{"number":"130006","shop":"\\u694a\\u5c55","phone":"034882501","address":"\\u6821\\u524d\\u8def\\u0033\\u0031\\u0032\\u865f\\u0033\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '130006', '711', 'zh-tw', 1000),
(4089, 264, '16-264', 1, '瑞揚', '{"number":"152017","shop":"\\u745e\\u63da","phone":"034756179","address":"\\u65b0\\u6210\\u8def\\u0039\\u0037\\u865f"}', '152017', '711', 'zh-tw', 1000),
(4090, 264, '16-264', 1, '富崗', '{"number":"131906","shop":"\\u5bcc\\u5d17","phone":"034728942","address":"\\u65b0\\u660e\\u8857\\u0034\\u0035\\u0030\\u865f"}', '131906', '711', 'zh-tw', 1000),
(4091, 264, '16-264', 1, '新梅', '{"number":"131076","shop":"\\u65b0\\u6885","phone":"034883261","address":"\\u65b0\\u8fb2\\u8857\\u0034\\u0036\\u0039\\u002d\\u0038\\u865f\\u0034\\u0036\\u0039\\u002d\\u0039\\u865f\\u0031\\u6a13"}', '131076', '711', 'zh-tw', 1000),
(4092, 264, '16-264', 1, '秀才', '{"number":"123282","shop":"\\u79c0\\u624d","phone":"034850972","address":"\\u79c0\\u624d\\u8def\\u0033\\u0031\\u0033\\u865f\\u0033\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '123282', '711', 'zh-tw', 1000),
(4093, 264, '16-264', 1, '合利', '{"number":"184058","shop":"\\u5408\\u5229","phone":"034727400","address":"\\u694a\\u6e56\\u8def\\u4e8c\\u6bb5\\u0039\\u0031\\u0030\\u865f\\u0039\\u0031\\u0032\\u865f\\u0039\\u0031\\u0034\\u865f"}', '184058', '711', 'zh-tw', 1000),
(4094, 264, '16-264', 1, '大楊', '{"number":"185361","shop":"\\u5927\\u694a","phone":"032888571","address":"\\u694a\\u6e56\\u8def\\u4e00\\u6bb5\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f\\u0039\\u0034\\u865f\\u0031\\u6a13"}', '185361', '711', 'zh-tw', 1000),
(4095, 264, '16-264', 1, '欣高', '{"number":"148801","shop":"\\u6b23\\u9ad8","phone":"034788447","address":"\\u694a\\u6885\\u91cc\\u6587\\u5fb7\\u8def\\u0031\\u865f\\u0031\\u6a13\\u6885\\u9ad8\\u8def\\u0035\\u0032\\u002d\\u0039\\u865f"}', '148801', '711', 'zh-tw', 1000),
(4096, 264, '16-264', 1, '楊昌', '{"number":"151689","shop":"\\u694a\\u660c","phone":"034856432","address":"\\u694a\\u65b0\\u5317\\u8def\\u0032\\u0033\\u865f"}', '151689', '711', 'zh-tw', 1000),
(4097, 264, '16-264', 1, '楊梅', '{"number":"118693","shop":"\\u694a\\u6885","phone":"034754529","address":"\\u694a\\u65b0\\u8def\\u0037\\u0033\\u865f"}', '118693', '711', 'zh-tw', 1000),
(4098, 264, '16-264', 1, '水美', '{"number":"193306","shop":"\\u6c34\\u7f8e","phone":"032888845","address":"\\u694a\\u65b0\\u8def\\u4e8c\\u6bb5\\u0037\\u0030\\u865f"}', '193306', '711', 'zh-tw', 1000),
(4099, 264, '16-264', 1, '楊興', '{"number":"163590","shop":"\\u694a\\u8208","phone":"034850364","address":"\\u694a\\u65b0\\u8def\\u4e09\\u6bb5\\u0033\\u0033\\u0031\\u865f\\u0033\\u0033\\u0033\\u865f"}', '163590', '711', 'zh-tw', 1000),
(4100, 264, '16-264', 1, '高山頂', '{"number":"967145","shop":"\\u9ad8\\u5c71\\u9802","phone":"034854744","address":"\\u5e7c\\u7345\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0037\\u002d\\u0031\\u865f"}', '967145', '711', 'zh-tw', 1000),
(4101, 264, '16-264', 1, '寶楊', '{"number":"875370","shop":"\\u5bf6\\u694a","phone":"034825220","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0033\\u865f"}', '875370', '711', 'zh-tw', 1000),
(4102, 264, '16-264', 1, '揚善', '{"number":"199201","shop":"\\u63da\\u5584","phone":"034785578","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u865f\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '199201', '711', 'zh-tw', 1000),
(4103, 264, '16-264', 1, '新楊欣', '{"number":"200723","shop":"\\u65b0\\u694a\\u6b23","phone":"034754036","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0030\\u865f\\u0033\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '200723', '711', 'zh-tw', 1000),
(4104, 264, '16-264', 1, '楊陳', '{"number":"924528","shop":"\\u694a\\u9673","phone":"034884658","address":"\\u4e2d\\u5c71\\u91cc\\u74b0\\u6771\\u8def\\u0034\\u0039\\u0037\\u865f\\u0034\\u0039\\u0039\\u865f"}', '924528', '711', 'zh-tw', 1000),
(4105, 264, '16-264', 1, '楊山', '{"number":"151771","shop":"\\u694a\\u5c71","phone":"034882611","address":"\\u4e2d\\u5c71\\u5357\\u8def\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '151771', '711', 'zh-tw', 1000),
(4106, 264, '16-264', 1, '新楊埔', '{"number":"185981","shop":"\\u65b0\\u694a\\u57d4","phone":"034814647","address":"\\u4e2d\\u8208\\u8def\\u0034\\u0037\\u865f\\u0031\\u6a13\\u65b0\\u8208\\u8857\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '185981', '711', 'zh-tw', 1000),
(4107, 264, '16-264', 1, '富證', '{"number":"166496","shop":"\\u5bcc\\u8b49","phone":"034728416","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0030\\u865f\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '166496', '711', 'zh-tw', 1000),
(4108, 265, '16-265', 1, '長業', '{"number":"146540","shop":"\\u9577\\u696d","phone":"034535480","address":"\\u9577\\u6625\\u8def\\u0032\\u0033\\u865f"}', '146540', '711', 'zh-tw', 1000),
(4109, 265, '16-265', 1, '壢都', '{"number":"163970","shop":"\\u58e2\\u90fd","phone":"034579045","address":"\\u9577\\u6c99\\u8def\\u0031\\u0033\\u0031\\u865f\\u6210\\u90fd\\u8def\\u0037\\u0032\\u865f"}', '163970', '711', 'zh-tw', 1000),
(4110, 265, '16-265', 1, '吉豐', '{"number":"942375","shop":"\\u5409\\u8c50","phone":"034285206","address":"\\u9577\\u6c99\\u8def\\u0038\\u865f\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '942375', '711', 'zh-tw', 1000),
(4111, 265, '16-265', 1, '成章', '{"number":"882862","shop":"\\u6210\\u7ae0","phone":"034352320","address":"\\u6210\\u7ae0\\u4e8c\\u8857\\u0031\\u0039\\u0032\\u865f"}', '882862', '711', 'zh-tw', 1000),
(4112, 265, '16-265', 1, '正神', '{"number":"982063","shop":"\\u6b63\\u795e","phone":"034615309","address":"\\u6210\\u7ae0\\u4e00\\u8857\\u0031\\u0030\\u865f\\u0031\\u0032\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '982063', '711', 'zh-tw', 1000),
(4113, 265, '16-265', 1, '華泰城', '{"number":"194468","shop":"\\u83ef\\u6cf0\\u57ce","phone":"032873914","address":"\\u6625\\u5fb7\\u8def\\u0031\\u0035\\u0039\\u865f\\u0038\\u0036\\u0030\\u6ac3\\u4f4d"}', '194468', '711', 'zh-tw', 1000),
(4114, 265, '16-265', 1, '海華', '{"number":"131700","shop":"\\u6d77\\u83ef","phone":"032806864","address":"\\u6148\\u60e0\\u4e09\\u8857\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0034\\u865f"}', '131700', '711', 'zh-tw', 1000),
(4115, 265, '16-265', 1, '中同', '{"number":"111418","shop":"\\u4e2d\\u540c","phone":"034266927","address":"\\u5927\\u540c\\u8def\\u0031\\u0034\\u0031\\u865f\\u0031\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '111418', '711', 'zh-tw', 1000),
(4116, 265, '16-265', 1, '統壢', '{"number":"130822","shop":"\\u7d71\\u58e2","phone":"034614295","address":"\\u5b9a\\u5be7\\u8def\\u0031\\u0035\\u865f"}', '130822', '711', 'zh-tw', 1000),
(4117, 265, '16-265', 1, '台達二', '{"number":"122898","shop":"\\u53f0\\u9054\\u4e8c","phone":"034639487","address":"\\u6771\\u5712\\u8def\\u0033\\u865f\\u0042\\u0031\\u6a13"}', '122898', '711', 'zh-tw', 1000),
(4118, 265, '16-265', 1, '福神', '{"number":"935089","shop":"\\u798f\\u795e","phone":"034631992","address":"\\u798f\\u5fb7\\u8def\\u0037\\u0039\\u865f\\u0038\\u0031\\u865f"}', '935089', '711', 'zh-tw', 1000),
(4119, 265, '16-265', 1, '新福街', '{"number":"122072","shop":"\\u65b0\\u798f\\u8857","phone":"034553072","address":"\\u798f\\u5dde\\u4e8c\\u8857\\u0033\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '122072', '711', 'zh-tw', 1000),
(4120, 265, '16-265', 1, '福冠', '{"number":"110390","shop":"\\u798f\\u51a0","phone":"034353958","address":"\\u798f\\u5dde\\u4e00\\u8857\\u0032\\u0034\\u0032\\u865f\\u0031\\u6a13\\u53ca\\u0032\\u6a13"}', '110390', '711', 'zh-tw', 1000),
(4121, 265, '16-265', 1, '高萱', '{"number":"179997","shop":"\\u9ad8\\u8431","phone":"032870142","address":"\\u9ad8\\u9435\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '179997', '711', 'zh-tw', 1000),
(4122, 265, '16-265', 1, '青禾', '{"number":"180609","shop":"\\u9752\\u79be","phone":"034533841","address":"\\u9ad8\\u9435\\u7ad9\\u524d\\u897f\\u8def\\u4e8c\\u6bb5\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '180609', '711', 'zh-tw', 1000),
(4123, 265, '16-265', 1, '金權', '{"number":"159041","shop":"\\u91d1\\u6b0a","phone":"032813118","address":"\\u5149\\u660e\\u91cc\\u4e2d\\u592e\\u897f\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u865f"}', '159041', '711', 'zh-tw', 1000),
(4124, 265, '16-265', 1, '弘揚', '{"number":"164722","shop":"\\u5f18\\u63da","phone":"034363264","address":"\\u5f18\\u63da\\u8def\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '164722', '711', 'zh-tw', 1000),
(4125, 265, '16-265', 1, '慶和', '{"number":"132437","shop":"\\u6176\\u548c","phone":"034163181","address":"\\u5f8c\\u5bee\\u4e00\\u8def\\u0031\\u0034\\u0030\\u865f\\u0031\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '132437', '711', 'zh-tw', 1000),
(4126, 265, '16-265', 1, '華愛', '{"number":"944197","shop":"\\u83ef\\u611b","phone":"034380269","address":"\\u83ef\\u7f8e\\u4e00\\u8def\\u0031\\u0033\\u0032\\u865f\\u0031\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '944197', '711', 'zh-tw', 1000),
(4127, 265, '16-265', 1, '華勛', '{"number":"118648","shop":"\\u83ef\\u52db","phone":"034361613","address":"\\u83ef\\u52db\\u8857\\u0031\\u0039\\u0031\\u865f\\u0031\\u0039\\u0033\\u865f"}', '118648', '711', 'zh-tw', 1000),
(4128, 265, '16-265', 1, '新街', '{"number":"119881","shop":"\\u65b0\\u8857","phone":"034617330","address":"\\u74b0\\u5317\\u8def\\u0035\\u0034\\u0033\\u865f"}', '119881', '711', 'zh-tw', 1000),
(4129, 265, '16-265', 1, '環民', '{"number":"846707","shop":"\\u74b0\\u6c11","phone":"034925034","address":"\\u74b0\\u897f\\u8def\\u0032\\u865f"}', '846707', '711', 'zh-tw', 1000),
(4130, 265, '16-265', 1, '吉利', '{"number":"148742","shop":"\\u5409\\u5229","phone":"034625759","address":"\\u5409\\u6797\\u4e8c\\u8def\\u0038\\u0033\\u5df7\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f\\u0033\\u0034\\u865f"}', '148742', '711', 'zh-tw', 1000),
(4131, 265, '16-265', 1, '工業', '{"number":"186250","shop":"\\u5de5\\u696d","phone":"034510966","address":"\\u5409\\u6797\\u8def\\u0031\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '186250', '711', 'zh-tw', 1000),
(4132, 265, '16-265', 1, '精材', '{"number":"144728","shop":"\\u7cbe\\u6750","phone":"034620942","address":"\\u5409\\u6797\\u8def\\u0032\\u0033\\u865f\\u0042\\u0031\\u6a13"}', '144728', '711', 'zh-tw', 1000),
(4133, 265, '16-265', 1, '健行', '{"number":"159063","shop":"\\u5065\\u884c","phone":"034679214","address":"\\u5065\\u884c\\u8def\\u0032\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '159063', '711', 'zh-tw', 1000),
(4134, 265, '16-265', 1, '金鋒', '{"number":"985877","shop":"\\u91d1\\u92d2","phone":"034385214","address":"\\u91d1\\u92d2\\u56db\\u8857\\u0035\\u0030\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '985877', '711', 'zh-tw', 1000),
(4135, 265, '16-265', 1, '元勛', '{"number":"153593","shop":"\\u5143\\u52db","phone":"034368306","address":"\\u6649\\u5143\\u8def\\u0031\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '153593', '711', 'zh-tw', 1000),
(4136, 265, '16-265', 1, '奇采', '{"number":"912352","shop":"\\u5947\\u91c7","phone":"034378428","address":"\\u6649\\u5143\\u8def\\u0032\\u0038\\u0039\\u5df7\\u0037\\u0036\\u865f"}', '912352', '711', 'zh-tw', 1000),
(4137, 265, '16-265', 1, '影華', '{"number":"935643","shop":"\\u5f71\\u83ef","phone":"034275504","address":"\\u4e5d\\u548c\\u4e00\\u8857\\u0032\\u0030\\u865f\\u4e4b\\u0031\\u6a13"}', '935643', '711', 'zh-tw', 1000),
(4138, 265, '16-265', 1, '光壢', '{"number":"164135","shop":"\\u5149\\u58e2","phone":"032830784","address":"\\u8392\\u5149\\u8def\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '164135', '711', 'zh-tw', 1000),
(4139, 265, '16-265', 1, '福記', '{"number":"122326","shop":"\\u798f\\u8a18","phone":"034681347","address":"\\u6797\\u68ee\\u8def\\u0031\\u0036\\u0034\\u865f\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0038\\u865f"}', '122326', '711', 'zh-tw', 1000),
(4140, 265, '16-265', 1, '領航', '{"number":"189156","shop":"\\u9818\\u822a","phone":"034225452","address":"\\u9818\\u822a\\u5317\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '189156', '711', 'zh-tw', 1000),
(4141, 265, '16-265', 1, '環埔', '{"number":"180001","shop":"\\u74b0\\u57d4","phone":"034255450","address":"\\u9818\\u822a\\u5317\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '180001', '711', 'zh-tw', 1000),
(4142, 265, '16-265', 1, '高欣', '{"number":"967271","shop":"\\u9ad8\\u6b23","phone":"034533973","address":"\\u9818\\u822a\\u5357\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '967271', '711', 'zh-tw', 1000),
(4143, 265, '16-265', 1, '海和', '{"number":"958015","shop":"\\u6d77\\u548c","phone":"034265714","address":"\\u516d\\u548c\\u8def\\u0036\\u0036\\u865f\\u0036\\u0038\\u865f"}', '958015', '711', 'zh-tw', 1000),
(4144, 265, '16-265', 1, '龍學', '{"number":"197308","shop":"\\u9f8d\\u5b78","phone":"034655821","address":"\\u9f8d\\u660c\\u8def\\u0031\\u0037\\u0038\\u865f\\u0031\\u6a13\\u0041\\u0031"}', '197308', '711', 'zh-tw', 1000),
(4145, 265, '16-265', 1, '創薪', '{"number":"153559","shop":"\\u5275\\u85aa","phone":"034369813","address":"\\u9f8d\\u660c\\u8def\\u0032\\u0037\\u0030\\u865f\\u0031\\u865f"}', '153559', '711', 'zh-tw', 1000),
(4146, 265, '16-265', 1, '瓏門', '{"number":"154677","shop":"\\u74cf\\u9580","phone":"034662035","address":"\\u9f8d\\u660c\\u8def\\u0035\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '154677', '711', 'zh-tw', 1000),
(4147, 265, '16-265', 1, '亞文', '{"number":"111795","shop":"\\u4e9e\\u6587","phone":"034371428","address":"\\u9f8d\\u5ddd\\u8857\\u0031\\u0030\\u0038\\u865f\\u0031\\u0031\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13\\u53ca\\u0031\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '111795', '711', 'zh-tw', 1000),
(4148, 265, '16-265', 1, '羿龍', '{"number":"183251","shop":"\\u7fbf\\u9f8d","phone":"034563734","address":"\\u9f8d\\u6148\\u8def\\u0032\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '183251', '711', 'zh-tw', 1000),
(4149, 265, '16-265', 1, '瓏慈', '{"number":"171339","shop":"\\u74cf\\u6148","phone":"034584639","address":"\\u9f8d\\u6148\\u8def\\u0037\\u0031\\u0032\\u865f\\u0037\\u0031\\u0036\\u865f\\u0037\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '171339', '711', 'zh-tw', 1000),
(4150, 265, '16-265', 1, '龍東', '{"number":"130567","shop":"\\u9f8d\\u6771","phone":"034560328","address":"\\u9f8d\\u6771\\u8def\\u0031\\u0033\\u0038\\u865f\\u0031\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '130567', '711', 'zh-tw', 1000),
(4151, 265, '16-265', 1, '龍岡', '{"number":"122681","shop":"\\u9f8d\\u5ca1","phone":"034665712","address":"\\u9f8d\\u6771\\u8def\\u0035\\u0030\\u0038\\u865f\\u0035\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '122681', '711', 'zh-tw', 1000),
(4152, 265, '16-265', 1, '成龍', '{"number":"167341","shop":"\\u6210\\u9f8d","phone":"034572652","address":"\\u9f8d\\u5ca1\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0032\\u865f\\u0031\\u0039\\u0034\\u865f\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '167341', '711', 'zh-tw', 1000),
(4153, 265, '16-265', 1, '統讚', '{"number":"126580","shop":"\\u7d71\\u8b9a","phone":"034658221","address":"\\u9f8d\\u6c5f\\u8def\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '126580', '711', 'zh-tw', 1000),
(4154, 265, '16-265', 1, '家權', '{"number":"963626","shop":"\\u5bb6\\u6b0a","phone":"032810712","address":"\\u6c11\\u6b0a\\u8def\\u4e8c\\u6bb5\\u0039\\u0038\\u865f"}', '963626', '711', 'zh-tw', 1000),
(4155, 265, '16-265', 1, '高屋', '{"number":"122142","shop":"\\u9ad8\\u5c4b","phone":"034945931","address":"\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0030\\u865f\\u0031\\u0035\\u0032\\u865f"}', '122142', '711', 'zh-tw', 1000),
(4156, 265, '16-265', 1, '豐亞', '{"number":"965378","shop":"\\u8c50\\u4e9e","phone":"034207484","address":"\\u6c11\\u65cf\\u8def\\u516d\\u6bb5\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '965378', '711', 'zh-tw', 1000),
(4157, 265, '16-265', 1, '學屋', '{"number":"165529","shop":"\\u5b78\\u5c4b","phone":"034907780","address":"\\u6c11\\u65cf\\u8def\\u4e09\\u6bb5\\u0034\\u0030\\u0032\\u865f\\u0034\\u0030\\u0036\\u865f"}', '165529', '711', 'zh-tw', 1000),
(4158, 265, '16-265', 1, '過嶺', '{"number":"119010","shop":"\\u904e\\u5dba","phone":"034203473","address":"\\u6c11\\u65cf\\u8def\\u4e94\\u6bb5\\u0034\\u0035\\u0031\\u865f\\u0034\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '119010', '711', 'zh-tw', 1000),
(4159, 265, '16-265', 1, '豐利', '{"number":"158967","shop":"\\u8c50\\u5229","phone":"034617821","address":"\\u5357\\u5712\\u4e8c\\u8def\\u0036\\u0033\\u865f"}', '158967', '711', 'zh-tw', 1000),
(4160, 265, '16-265', 1, '台達三', '{"number":"196659","shop":"\\u53f0\\u9054\\u4e09","phone":"034535059","address":"\\u5357\\u5712\\u8def\\u0034\\u865f\\u0031\\u6a13"}', '196659', '711', 'zh-tw', 1000),
(4161, 265, '16-265', 1, '龍翔', '{"number":"963350","shop":"\\u9f8d\\u7fd4","phone":"034616036","address":"\\u666e\\u7fa9\\u8def\\u0031\\u0037\\u0035\\u865f"}', '963350', '711', 'zh-tw', 1000),
(4162, 265, '16-265', 1, '環福', '{"number":"922625","shop":"\\u74b0\\u798f","phone":"034334878","address":"\\u666e\\u5fe0\\u8def\\u0032\\u0031\\u0033\\u865f"}', '922625', '711', 'zh-tw', 1000),
(4163, 265, '16-265', 1, '青埔', '{"number":"116055","shop":"\\u9752\\u57d4","phone":"034531079","address":"\\u9752\\u6607\\u8def\\u0032\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '116055', '711', 'zh-tw', 1000),
(4164, 265, '16-265', 1, '松容', '{"number":"194974","shop":"\\u677e\\u5bb9","phone":"032872042","address":"\\u9752\\u6eaa\\u8def\\u4e00\\u6bb5\\u0038\\u0035\\u865f"}', '194974', '711', 'zh-tw', 1000),
(4165, 265, '16-265', 1, '仕新', '{"number":"989064","shop":"\\u4ed5\\u65b0","phone":"034387640","address":"\\u65e5\\u65b0\\u8def\\u0031\\u0031\\u0032\\u865f"}', '989064', '711', 'zh-tw', 1000),
(4166, 265, '16-265', 1, '新壢', '{"number":"129305","shop":"\\u65b0\\u58e2","phone":"034387924","address":"\\u65e5\\u65b0\\u8def\\u0036\\u0036\\u865f\\u0036\\u0038\\u865f"}', '129305', '711', 'zh-tw', 1000),
(4167, 265, '16-265', 1, '榮安', '{"number":"122119","shop":"\\u69ae\\u5b89","phone":"034515728","address":"\\u69ae\\u5b89\\u5341\\u4e09\\u8857\\u0032\\u0039\\u0037\\u865f\\u0031\\u6a13\\u53ca\\u69ae\\u5b89\\u5341\\u56db\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '122119', '711', 'zh-tw', 1000),
(4168, 265, '16-265', 1, '惠祥', '{"number":"894418","shop":"\\u60e0\\u7965","phone":"034636004","address":"\\u69ae\\u5b89\\u4e00\\u8857\\u0032\\u0039\\u0033\\u865f"}', '894418', '711', 'zh-tw', 1000),
(4169, 265, '16-265', 1, '榮躍', '{"number":"181026","shop":"\\u69ae\\u8e8d","phone":"034650762","address":"\\u69ae\\u6c11\\u5357\\u8def\\u0034\\u0036\\u0032\\u865f\\u0034\\u0036\\u0034\\u865f"}', '181026', '711', 'zh-tw', 1000),
(4170, 265, '16-265', 1, '王子', '{"number":"913159","shop":"\\u738b\\u5b50","phone":"034913785","address":"\\u4e09\\u5149\\u8def\\u0031\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '913159', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(4171, 265, '16-265', 1, '中天', '{"number":"155337","shop":"\\u4e2d\\u5929","phone":"034224304","address":"\\u77f3\\u982d\\u91cc\\u4e2d\\u548c\\u8def\\u0031\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '155337', '711', 'zh-tw', 1000),
(4172, 265, '16-265', 1, '原大', '{"number":"130176","shop":"\\u539f\\u5927","phone":"034368760","address":"\\u5be6\\u8e10\\u8def\\u0034\\u0036\\u865f"}', '130176', '711', 'zh-tw', 1000),
(4173, 265, '16-265', 1, '雙嶺', '{"number":"197319","shop":"\\u96d9\\u5dba","phone":"034204993","address":"\\u677e\\u7fa9\\u8def\\u0031\\u0031\\u0031\\u865f\\u0031\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '197319', '711', 'zh-tw', 1000),
(4174, 265, '16-265', 1, '慶福', '{"number":"923824","shop":"\\u6176\\u798f","phone":"034379089","address":"\\u540c\\u6176\\u8def\\u0032\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '923824', '711', 'zh-tw', 1000),
(4175, 265, '16-265', 1, '萬能科', '{"number":"183974","shop":"\\u842c\\u80fd\\u79d1","phone":"034536259","address":"\\u842c\\u80fd\\u8def\\u0031\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '183974', '711', 'zh-tw', 1000),
(4176, 265, '16-265', 1, '耀康', '{"number":"944717","shop":"\\u8000\\u5eb7","phone":"034332976","address":"\\u6eaa\\u6d32\\u8857\\u0032\\u0036\\u0037\\u5df7\\u0031\\u865f\\u4e00\\u6a13"}', '944717', '711', 'zh-tw', 1000),
(4177, 265, '16-265', 1, '新元', '{"number":"161413","shop":"\\u65b0\\u5143","phone":"034275192","address":"\\u65b0\\u751f\\u8def\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0034\\u865f"}', '161413', '711', 'zh-tw', 1000),
(4178, 265, '16-265', 1, '笙園', '{"number":"154736","shop":"\\u7b19\\u5712","phone":"034517406","address":"\\u65b0\\u751f\\u8def\\u0037\\u0033\\u0038\\u865f\\u0037\\u0034\\u0030\\u865f\\u0037\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '154736', '711', 'zh-tw', 1000),
(4179, 265, '16-265', 1, '速達', '{"number":"132323","shop":"\\u901f\\u9054","phone":"034533441","address":"\\u65b0\\u751f\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u0038\\u4e4b\\u0032\\u865f"}', '132323', '711', 'zh-tw', 1000),
(4180, 265, '16-265', 1, '森壢', '{"number":"144773","shop":"\\u68ee\\u58e2","phone":"034583746","address":"\\u65b0\\u8208\\u91cc\\u0032\\u9130\\u6797\\u68ee\\u8def\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '144773', '711', 'zh-tw', 1000),
(4181, 265, '16-265', 1, '站行', '{"number":"875484","shop":"\\u7ad9\\u884c","phone":"034574334","address":"\\u65b0\\u8208\\u8def\\u0031\\u0036\\u0032\\u865f"}', '875484', '711', 'zh-tw', 1000),
(4182, 265, '16-265', 1, '欣興', '{"number":"195586","shop":"\\u6b23\\u8208","phone":"034581917","address":"\\u65b0\\u8208\\u8def\\u0032\\u0032\\u0036\\u865f\\u0032\\u0032\\u0038\\u865f"}', '195586', '711', 'zh-tw', 1000),
(4183, 265, '16-265', 1, '新中北', '{"number":"138963","shop":"\\u65b0\\u4e2d\\u5317","phone":"034617466","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u0031\\u0030\\u0031\\u0038\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '138963', '711', 'zh-tw', 1000),
(4184, 265, '16-265', 1, '大中原', '{"number":"158358","shop":"\\u5927\\u4e2d\\u539f","phone":"034363353","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0031\\u002d\\u0031\\u865f\\u4e00\\u6a13"}', '158358', '711', 'zh-tw', 1000),
(4185, 265, '16-265', 1, '北原', '{"number":"141235","shop":"\\u5317\\u539f","phone":"034655694","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u0032\\u0033\\u0039\\u865f\\u0032\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '141235', '711', 'zh-tw', 1000),
(4186, 265, '16-265', 1, '統上', '{"number":"970635","shop":"\\u7d71\\u4e0a","phone":"034510953","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u0034\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '970635', '711', 'zh-tw', 1000),
(4187, 265, '16-265', 1, '華薪', '{"number":"188968","shop":"\\u83ef\\u85aa","phone":"034634283","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0039\\u865f\\u0031\\u0038\\u0031\\u865f"}', '188968', '711', 'zh-tw', 1000),
(4188, 265, '16-265', 1, '福瑞', '{"number":"165024","shop":"\\u798f\\u745e","phone":"034162840","address":"\\u4fe1\\u7fa9\\u91cc\\u798f\\u5dde\\u8def\\u0032\\u0030\\u0031\\u865f"}', '165024', '711', 'zh-tw', 1000),
(4189, 265, '16-265', 1, '壢福', '{"number":"140092","shop":"\\u58e2\\u798f","phone":"034589913","address":"\\u4fe1\\u7fa9\\u91cc\\u5ee3\\u5dde\\u8def\\u0032\\u0030\\u0032\\u865f"}', '140092', '711', 'zh-tw', 1000),
(4190, 265, '16-265', 1, '鑫旺', '{"number":"922614","shop":"\\u946b\\u65fa","phone":"032852868","address":"\\u8208\\u5b89\\u4e8c\\u8857\\u0031\\u865f"}', '922614', '711', 'zh-tw', 1000),
(4191, 265, '16-265', 1, '興美', '{"number":"951597","shop":"\\u8208\\u7f8e","phone":"034277815","address":"\\u8208\\u570b\\u8def\\u0038\\u0035\\u865f\\u0038\\u0037\\u865f\\u4e00\\u6a13"}', '951597', '711', 'zh-tw', 1000),
(4192, 265, '16-265', 1, '世紀廣場', '{"number":"940106","shop":"\\u4e16\\u7d00\\u5ee3\\u5834","phone":"032806459","address":"\\u8208\\u5357\\u91cc\\u65b0\\u751f\\u8def\\u0031\\u0038\\u0032\\u865f"}', '940106', '711', 'zh-tw', 1000),
(4193, 265, '16-265', 1, '興榮珍', '{"number":"180207","shop":"\\u8208\\u69ae\\u73cd","phone":"032854526","address":"\\u8208\\u4ec1\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0030\\u4e4b\\u0031\\u865f\\u003b\\u0031\\u0039\\u0038\\u5df7\\u0031\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '180207', '711', 'zh-tw', 1000),
(4194, 265, '16-265', 1, '新壢智', '{"number":"185109","shop":"\\u65b0\\u58e2\\u667a","phone":"032854198","address":"\\u8208\\u4ec1\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '185109', '711', 'zh-tw', 1000),
(4195, 265, '16-265', 1, '榮福', '{"number":"194365","shop":"\\u69ae\\u798f","phone":"034350492","address":"\\u6c38\\u798f\\u8def\\u0031\\u0030\\u0039\\u0032\\u865f\\u0031\\u0030\\u0039\\u0032\\u002d\\u0031\\u865f\\u0031\\u0030\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '194365', '711', 'zh-tw', 1000),
(4196, 265, '16-265', 1, '元化', '{"number":"177566","shop":"\\u5143\\u5316","phone":"034279534","address":"\\u5143\\u5316\\u8def\\u0031\\u002d\\u0031\\u865f"}', '177566', '711', 'zh-tw', 1000),
(4197, 265, '16-265', 1, '成豐', '{"number":"189927","shop":"\\u6210\\u8c50","phone":"034526834","address":"\\u5143\\u5316\\u8def\\u0031\\u0039\\u0037\\u5df7\\u0033\\u865f\\u0031\\u6a13"}', '189927', '711', 'zh-tw', 1000),
(4198, 265, '16-265', 1, '海帝', '{"number":"142548","shop":"\\u6d77\\u5e1d","phone":"034273723","address":"\\u5143\\u5316\\u8def\\u0033\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '142548', '711', 'zh-tw', 1000),
(4199, 265, '16-265', 1, '萬興', '{"number":"968160","shop":"\\u842c\\u8208","phone":"034984476","address":"\\u6708\\u7709\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0037\\u865f\\u0031\\u6a13\\u90e8\\u4efd"}', '968160', '711', 'zh-tw', 1000),
(4200, 265, '16-265', 1, '志廣', '{"number":"174501","shop":"\\u5fd7\\u5ee3","phone":"034028631","address":"\\u5fd7\\u5ee3\\u8def\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '174501', '711', 'zh-tw', 1000),
(4201, 265, '16-265', 1, '柏德', '{"number":"158750","shop":"\\u67cf\\u5fb7","phone":"034664235","address":"\\u4e2d\\u5317\\u8def\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '158750', '711', 'zh-tw', 1000),
(4202, 265, '16-265', 1, '美家', '{"number":"182937","shop":"\\u7f8e\\u5bb6","phone":"034663458","address":"\\u4e2d\\u5317\\u8def\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '182937', '711', 'zh-tw', 1000),
(4203, 265, '16-265', 1, '科學城', '{"number":"912709","shop":"\\u79d1\\u5b78\\u57ce","phone":"034590209","address":"\\u4e2d\\u5317\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0036\\u865f"}', '912709', '711', 'zh-tw', 1000),
(4204, 265, '16-265', 1, '壢和', '{"number":"190352","shop":"\\u58e2\\u548c","phone":"034266230","address":"\\u4e2d\\u548c\\u8def\\u0031\\u0031\\u0034\\u865f"}', '190352', '711', 'zh-tw', 1000),
(4205, 265, '16-265', 1, '新中華', '{"number":"991595","shop":"\\u65b0\\u4e2d\\u83ef","phone":"034627052","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0033\\u0032\\u0038\\u865f"}', '991595', '711', 'zh-tw', 1000),
(4206, 265, '16-265', 1, '華壢', '{"number":"192923","shop":"\\u83ef\\u58e2","phone":"034624181","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0038\\u865f\\u0032\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '192923', '711', 'zh-tw', 1000),
(4207, 265, '16-265', 1, '復華', '{"number":"114071","shop":"\\u5fa9\\u83ef","phone":"034631941","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0036\\u0037\\u0030\\u865f\\u0036\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '114071', '711', 'zh-tw', 1000),
(4208, 265, '16-265', 1, '湯華', '{"number":"187725","shop":"\\u6e6f\\u83ef","phone":"034638554","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0037\\u0034\\u0035\\u865f\\u0037\\u0034\\u0037\\u865f\\u0037\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '187725', '711', 'zh-tw', 1000),
(4209, 265, '16-265', 1, '壢美', '{"number":"198932","shop":"\\u58e2\\u7f8e","phone":"034268113","address":"\\u4e2d\\u7f8e\\u8def\\u0033\\u0039\\u865f\\u0031\\u6a13\\u53ca\\u5efa\\u570b\\u5317\\u8def\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '198932', '711', 'zh-tw', 1000),
(4210, 265, '16-265', 1, '美壢', '{"number":"137948","shop":"\\u7f8e\\u58e2","phone":"034222708","address":"\\u4e2d\\u7f8e\\u8def\\u4e8c\\u6bb5\\u0037\\u0032\\u865f"}', '137948', '711', 'zh-tw', 1000),
(4211, 265, '16-265', 1, '興東', '{"number":"194837","shop":"\\u8208\\u6771","phone":"034385696","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e09\\u6bb5\\u0032\\u0032\\u0036\\u865f\\u0032\\u0032\\u0038\\u865f\\u0032\\u0032\\u0038\\u4e4b\\u0031\\u865f"}', '194837', '711', 'zh-tw', 1000),
(4212, 265, '16-265', 1, '富友', '{"number":"194549","shop":"\\u5bcc\\u53cb","phone":"034569015","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e09\\u6bb5\\u0034\\u0031\\u0039\\u865f\\u0034\\u0032\\u0031\\u865f\\u0034\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '194549', '711', 'zh-tw', 1000),
(4213, 265, '16-265', 1, '新壢揚', '{"number":"957034","shop":"\\u65b0\\u58e2\\u63da","phone":"032804403","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0033\\u0038\\u865f"}', '957034', '711', 'zh-tw', 1000),
(4214, 265, '16-265', 1, '來來', '{"number":"128656","shop":"\\u4f86\\u4f86","phone":"034251211","address":"\\u4e2d\\u592e\\u6771\\u8def\\u0036\\u0032\\u865f"}', '128656', '711', 'zh-tw', 1000),
(4215, 265, '16-265', 1, '夜市', '{"number":"934695","shop":"\\u591c\\u5e02","phone":"034024619","address":"\\u4e2d\\u592e\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0035\\u865f"}', '934695', '711', 'zh-tw', 1000),
(4216, 265, '16-265', 1, '三光', '{"number":"138538","shop":"\\u4e09\\u5149","phone":"034029671","address":"\\u4e2d\\u592e\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0039\\u865f\\u0032\\u0035\\u0039\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '138538', '711', 'zh-tw', 1000),
(4217, 265, '16-265', 1, '聖央', '{"number":"141453","shop":"\\u8056\\u592e","phone":"034228137","address":"\\u4e2d\\u592e\\u897f\\u8def\\u4e00\\u6bb5\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '141453', '711', 'zh-tw', 1000),
(4218, 265, '16-265', 1, '勝壢', '{"number":"135713","shop":"\\u52dd\\u58e2","phone":"034251981","address":"\\u4e2d\\u592e\\u897f\\u8def\\u4e00\\u6bb5\\u4e00\\u865f\\u4e00\\u6a13"}', '135713', '711', 'zh-tw', 1000),
(4219, 265, '16-265', 1, '精材三', '{"number":"195380","shop":"\\u7cbe\\u6750\\u4e09","phone":"034535062","address":"\\u4e2d\\u5712\\u8def\\u0031\\u0038\\u0038\\u865f\\u0042\\u0031\\u6a13"}', '195380', '711', 'zh-tw', 1000),
(4220, 265, '16-265', 1, '政群', '{"number":"903484","shop":"\\u653f\\u7fa4","phone":"034525289","address":"\\u4e2d\\u5712\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0038\\u865f"}', '903484', '711', 'zh-tw', 1000),
(4221, 265, '16-265', 1, '大享', '{"number":"111175","shop":"\\u5927\\u4eab","phone":"034224805","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0032\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '111175', '711', 'zh-tw', 1000),
(4222, 265, '16-265', 1, '高正', '{"number":"951162","shop":"\\u9ad8\\u6b63","phone":"034988724","address":"\\u4e2d\\u6b63\\u8def\\u4e09\\u6bb5\\u0031\\u0033\\u0034\\u865f\\u0031\\u0033\\u0036\\u865f\\u4e00\\u6a13"}', '951162', '711', 'zh-tw', 1000),
(4223, 265, '16-265', 1, '大崙', '{"number":"154116","shop":"\\u5927\\u5d19","phone":"034984287","address":"\\u4e2d\\u6b63\\u8def\\u56db\\u6bb5\\u0033\\u0035\\u865f"}', '154116', '711', 'zh-tw', 1000),
(4224, 265, '16-265', 1, '中孝', '{"number":"159188","shop":"\\u4e2d\\u5b5d","phone":"034517904","address":"\\u5fe0\\u5b5d\\u8def\\u0032\\u0034\\u0038\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '159188', '711', 'zh-tw', 1000),
(4225, 265, '16-265', 1, '富莊', '{"number":"957702","shop":"\\u5bcc\\u838a","phone":"034623667","address":"\\u838a\\u656c\\u8def\\u0031\\u0034\\u0031\\u865f"}', '957702', '711', 'zh-tw', 1000),
(4226, 265, '16-265', 1, '莊壢', '{"number":"193856","shop":"\\u838a\\u58e2","phone":"034536041","address":"\\u838a\\u656c\\u8def\\u0031\\u0039\\u0039\\u865f"}', '193856', '711', 'zh-tw', 1000),
(4227, 265, '16-265', 1, '立莊', '{"number":"130556","shop":"\\u7acb\\u838a","phone":"034632452","address":"\\u838a\\u656c\\u8def\\u0038\\u0030\\u0035\\u865f"}', '130556', '711', 'zh-tw', 1000),
(4228, 265, '16-265', 1, '忠敬', '{"number":"141660","shop":"\\u5fe0\\u656c","phone":"034514795","address":"\\u838a\\u656c\\u8def\\u0039\\u0030\\u865f"}', '141660', '711', 'zh-tw', 1000),
(4229, 265, '16-265', 1, '環宇', '{"number":"174279","shop":"\\u74b0\\u5b87","phone":"034519446","address":"\\u81ea\\u5f37\\u0031\\u0035\\u9130\\u74b0\\u4e2d\\u6771\\u8def\\u0038\\u865f"}', '174279', '711', 'zh-tw', 1000),
(4230, 265, '16-265', 1, '復強', '{"number":"141361","shop":"\\u5fa9\\u5f37","phone":"034638447","address":"\\u81ea\\u5f37\\u516d\\u8def\\u0035\\u0033\\u865f\\u5fa9\\u83ef\\u8857\\u0032\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '141361', '711', 'zh-tw', 1000),
(4231, 265, '16-265', 1, '自強一', '{"number":"167514","shop":"\\u81ea\\u5f37\\u4e00","phone":"034637354","address":"\\u81ea\\u5f37\\u4e00\\u8def\\u0036\\u0035\\u865f\\u0036\\u0037\\u865f\\u0036\\u0039\\u865f"}', '167514', '711', 'zh-tw', 1000),
(4232, 265, '16-265', 1, '精材二', '{"number":"195391","shop":"\\u7cbe\\u6750\\u4e8c","phone":"034536461","address":"\\u81ea\\u5f37\\u4e00\\u8def\\u0038\\u865f\\u0032\\u6a13"}', '195391', '711', 'zh-tw', 1000),
(4233, 266, '17-266', 1, '觀景', '{"number":"173715","shop":"\\u89c0\\u666f","phone":"0226107757","address":"\\u89c0\\u6d77\\u5927\\u9053\\u0035\\u0033\\u865f"}', '173715', '711', 'zh-tw', 1000),
(4234, 266, '17-266', 1, '左岸', '{"number":"149217","shop":"\\u5de6\\u5cb8","phone":"0226108502","address":"\\u9f8d\\u7c73\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0030\\u865f\\u4e4b\\u0031\\u865f\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '149217', '711', 'zh-tw', 1000),
(4235, 266, '17-266', 1, '龍米', '{"number":"167570","shop":"\\u9f8d\\u7c73","phone":"0226188711","address":"\\u9f8d\\u7c73\\u8def\\u4e8c\\u6bb5\\u0034\\u0036\\u865f\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f"}', '167570', '711', 'zh-tw', 1000),
(4236, 266, '17-266', 1, '神州', '{"number":"890184","shop":"\\u795e\\u5dde","phone":"0226184212","address":"\\u9f8d\\u7c73\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0033\\u865f"}', '890184', '711', 'zh-tw', 1000),
(4237, 266, '17-266', 1, '觀海', '{"number":"123628","shop":"\\u89c0\\u6d77","phone":"0226185125","address":"\\u9f8d\\u7c73\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0030\\u865f"}', '123628', '711', 'zh-tw', 1000),
(4238, 266, '17-266', 1, '八仙', '{"number":"183413","shop":"\\u516b\\u4ed9","phone":"0286302400","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0030\\u865f\\u0032\\u0039\\u0032\\u865f\\u0032\\u0039\\u0036\\u865f"}', '183413', '711', 'zh-tw', 1000),
(4239, 266, '17-266', 1, '喜城', '{"number":"127228","shop":"\\u559c\\u57ce","phone":"0226194462","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u0032\\u865f"}', '127228', '711', 'zh-tw', 1000),
(4240, 266, '17-266', 1, '長坑', '{"number":"186928","shop":"\\u9577\\u5751","phone":"0226195195","address":"\\u4e2d\\u83ef\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0038\\u865f"}', '186928', '711', 'zh-tw', 1000),
(4241, 266, '17-266', 1, '西雅圖', '{"number":"165390","shop":"\\u897f\\u96c5\\u5716","phone":"0286305421","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '165390', '711', 'zh-tw', 1000),
(4242, 266, '17-266', 1, '八里', '{"number":"991458","shop":"\\u516b\\u91cc","phone":"0226193747","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '991458', '711', 'zh-tw', 1000),
(4243, 266, '17-266', 1, '益彰', '{"number":"852230","shop":"\\u76ca\\u5f70","phone":"0226102771","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0030\\u0039\\u865f\\u0034\\u0031\\u0031\\u865f"}', '852230', '711', 'zh-tw', 1000),
(4244, 266, '17-266', 1, '海神', '{"number":"183491","shop":"\\u6d77\\u795e","phone":"0286305062","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0036\\u865f\\u0038\\u865f"}', '183491', '711', 'zh-tw', 1000),
(4245, 267, '17-267', 1, '新巨蛋', '{"number":"119825","shop":"\\u65b0\\u5de8\\u86cb","phone":"0222561484","address":"\\u9577\\u6c5f\\u8def\\u4e00\\u6bb5\\u0034\\u0031\\u0039\\u865f\\u0034\\u0032\\u0031\\u865f\\u0034\\u0032\\u0033\\u865f"}', '119825', '711', 'zh-tw', 1000),
(4246, 267, '17-267', 1, '觀泰', '{"number":"151380","shop":"\\u89c0\\u6cf0","phone":"0229686509","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0034\\u5df7\\u0031\\u0036\\u0036\\u5f04\\u0032\\u865f\\u0034\\u865f"}', '151380', '711', 'zh-tw', 1000),
(4247, 267, '17-267', 1, '新展', '{"number":"143183","shop":"\\u65b0\\u5c55","phone":"0289697978","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '143183', '711', 'zh-tw', 1000),
(4248, 267, '17-267', 1, '興觀', '{"number":"195966","shop":"\\u8208\\u89c0","phone":"0229674208","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u5df7\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '195966', '711', 'zh-tw', 1000),
(4249, 267, '17-267', 1, '新觀和', '{"number":"982579","shop":"\\u65b0\\u89c0\\u548c","phone":"0222754553","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '982579', '711', 'zh-tw', 1000),
(4250, 267, '17-267', 1, '溪崑', '{"number":"185899","shop":"\\u6eaa\\u5d11","phone":"0226829303","address":"\\u5927\\u89c0\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u0032\\u5df7\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '185899', '711', 'zh-tw', 1000),
(4251, 267, '17-267', 1, '浮洲', '{"number":"192624","shop":"\\u6d6e\\u6d32","phone":"0289697724","address":"\\u5927\\u89c0\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u5df7\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '192624', '711', 'zh-tw', 1000),
(4252, 267, '17-267', 1, '台藝大', '{"number":"153423","shop":"\\u53f0\\u85dd\\u5927","phone":"0289654552","address":"\\u5927\\u89c0\\u8def\\u4e00\\u6bb5\\u0035\\u0039\\u865f"}', '153423', '711', 'zh-tw', 1000),
(4253, 267, '17-267', 1, '糧驛', '{"number":"910688","shop":"\\u7ce7\\u9a5b","phone":"0222562936","address":"\\u5fb7\\u7fe0\\u91cc\\u9f8d\\u6cc9\\u8857\\u0039\\u0033\\u865f"}', '910688', '711', 'zh-tw', 1000),
(4254, 267, '17-267', 1, '興板', '{"number":"128047","shop":"\\u8208\\u677f","phone":"0289678162","address":"\\u5fb7\\u8208\\u8857\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f"}', '128047', '711', 'zh-tw', 1000),
(4255, 267, '17-267', 1, '千群', '{"number":"872441","shop":"\\u5343\\u7fa4","phone":"0289612979","address":"\\u6771\\u4e18\\u91cc\\u6c11\\u4eab\\u8857\\u0035\\u0033\\u865f"}', '872441', '711', 'zh-tw', 1000),
(4256, 267, '17-267', 1, '存德', '{"number":"135403","shop":"\\u5b58\\u5fb7","phone":"0226758053","address":"\\u7be4\\u884c\\u8def\\u4e8c\\u6bb5\\u0038\\u0036\\u865f\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '135403', '711', 'zh-tw', 1000),
(4257, 267, '17-267', 1, '民族', '{"number":"135034","shop":"\\u6c11\\u65cf","phone":"0229575939","address":"\\u798f\\u797f\\u91cc\\u6c11\\u65cf\\u8def\\u0033\\u0031\\u0030\\u865f"}', '135034', '711', 'zh-tw', 1000),
(4258, 267, '17-267', 1, '府中讚', '{"number":"198404","shop":"\\u5e9c\\u4e2d\\u8b9a","phone":"0229674438","address":"\\u5e9c\\u4e2d\\u8def\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '198404', '711', 'zh-tw', 1000),
(4259, 267, '17-267', 1, '府中', '{"number":"185785","shop":"\\u5e9c\\u4e2d","phone":"0229654479","address":"\\u5e9c\\u4e2d\\u8def\\u0038\\u0032\\u865f\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '185785', '711', 'zh-tw', 1000),
(4260, 267, '17-267', 1, '館東', '{"number":"119397","shop":"\\u9928\\u6771","phone":"0229560071","address":"\\u9928\\u524d\\u6771\\u8def\\u0031\\u0037\\u865f"}', '119397', '711', 'zh-tw', 1000),
(4261, 267, '17-267', 1, '館慶', '{"number":"122887","shop":"\\u9928\\u6176","phone":"0229514559","address":"\\u9928\\u524d\\u6771\\u8def\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '122887', '711', 'zh-tw', 1000),
(4262, 267, '17-267', 1, '武江', '{"number":"198596","shop":"\\u6b66\\u6c5f","phone":"0222504440","address":"\\u5149\\u6b66\\u8857\\u0032\\u5df7\\u0032\\u865f"}', '198596', '711', 'zh-tw', 1000),
(4263, 267, '17-267', 1, '貴興', '{"number":"153386","shop":"\\u8cb4\\u8208","phone":"0229593301","address":"\\u8cb4\\u8208\\u8def\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '153386', '711', 'zh-tw', 1000),
(4264, 267, '17-267', 1, '華貴', '{"number":"195715","shop":"\\u83ef\\u8cb4","phone":"0229645590","address":"\\u8cb4\\u8208\\u8def\\u0038\\u0035\\u865f\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '195715', '711', 'zh-tw', 1000),
(4265, 267, '17-267', 1, '大庭', '{"number":"125509","shop":"\\u5927\\u5ead","phone":"0229607369","address":"\\u570b\\u5149\\u91cc\\u0036\\u9130\\u570b\\u5149\\u8def\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '125509', '711', 'zh-tw', 1000),
(4266, 267, '17-267', 1, '國府', '{"number":"161424","shop":"\\u570b\\u5e9c","phone":"0289698428","address":"\\u570b\\u5149\\u8def\\u0031\\u0038\\u0034\\u865f\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '161424', '711', 'zh-tw', 1000),
(4267, 267, '17-267', 1, '國庭', '{"number":"170244","shop":"\\u570b\\u5ead","phone":"0229651700","address":"\\u570b\\u5149\\u8def\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '170244', '711', 'zh-tw', 1000),
(4268, 267, '17-267', 1, '國慶', '{"number":"158347","shop":"\\u570b\\u6176","phone":"0229647052","address":"\\u570b\\u6176\\u8def\\u0031\\u0035\\u0031\\u865f"}', '158347', '711', 'zh-tw', 1000),
(4269, 267, '17-267', 1, '雅盛', '{"number":"115823","shop":"\\u96c5\\u76db","phone":"0229568540","address":"\\u6f22\\u751f\\u6771\\u8def\\u0031\\u0038\\u0031\\u865f\\u0031\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '115823', '711', 'zh-tw', 1000),
(4270, 267, '17-267', 1, '育軒', '{"number":"195977","shop":"\\u80b2\\u8ed2","phone":"0229517986","address":"\\u6f22\\u751f\\u6771\\u8def\\u0032\\u0036\\u0038\\u865f\\u0032\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '195977', '711', 'zh-tw', 1000),
(4271, 267, '17-267', 1, '漢東', '{"number":"950745","shop":"\\u6f22\\u6771","phone":"0229534142","address":"\\u6f22\\u751f\\u6771\\u8def\\u0033\\u0030\\u0039\\u865f"}', '950745', '711', 'zh-tw', 1000),
(4272, 267, '17-267', 1, '海山', '{"number":"165792","shop":"\\u6d77\\u5c71","phone":"0289611889","address":"\\u6f22\\u751f\\u6771\\u8def\\u0033\\u0031\\u0030\\u865f"}', '165792', '711', 'zh-tw', 1000),
(4273, 267, '17-267', 1, '漢西', '{"number":"171029","shop":"\\u6f22\\u897f","phone":"0222540140","address":"\\u6f22\\u751f\\u897f\\u8def\\u0036\\u0034\\u865f\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '171029', '711', 'zh-tw', 1000),
(4274, 267, '17-267', 1, '合安', '{"number":"197249","shop":"\\u5408\\u5b89","phone":"0229657695","address":"\\u5408\\u5b9c\\u8def\\u0031\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '197249', '711', 'zh-tw', 1000),
(4275, 267, '17-267', 1, '大合宜', '{"number":"195601","shop":"\\u5927\\u5408\\u5b9c","phone":"0289697315","address":"\\u5408\\u5b9c\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '195601', '711', 'zh-tw', 1000),
(4276, 267, '17-267', 1, '國和', '{"number":"924665","shop":"\\u570b\\u548c","phone":"0289526934","address":"\\u548c\\u5e73\\u8def\\u0032\\u0039\\u865f"}', '924665', '711', 'zh-tw', 1000),
(4277, 267, '17-267', 1, '家麒', '{"number":"137904","shop":"\\u5bb6\\u9e92","phone":"0222587476","address":"\\u5b8f\\u570b\\u8def\\u0032\\u0037\\u865f"}', '137904', '711', 'zh-tw', 1000),
(4278, 267, '17-267', 1, '萬鄰', '{"number":"128955","shop":"\\u842c\\u9130","phone":"0222588121","address":"\\u83ef\\u6c5f\\u91cc\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\u0032\\u0032\\u0036\\u5df7\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '128955', '711', 'zh-tw', 1000),
(4279, 267, '17-267', 1, '懷翠', '{"number":"155186","shop":"\\u61f7\\u7fe0","phone":"0222504367","address":"\\u61f7\\u5fb7\\u8857\\u0032\\u0030\\u0033\\u865f\\u0032\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '155186', '711', 'zh-tw', 1000),
(4280, 267, '17-267', 1, '懷德', '{"number":"855206","shop":"\\u61f7\\u5fb7","phone":"0222554373","address":"\\u61f7\\u5fb7\\u8857\\u0035\\u0035\\u865f\\u0035\\u0037\\u865f"}', '855206', '711', 'zh-tw', 1000),
(4281, 267, '17-267', 1, '金園', '{"number":"136037","shop":"\\u91d1\\u5712","phone":"0226864776","address":"\\u91d1\\u9580\\u8857\\u0031\\u0037\\u0035\\u865f"}', '136037', '711', 'zh-tw', 1000),
(4282, 267, '17-267', 1, '金林', '{"number":"174992","shop":"\\u91d1\\u6797","phone":"0226843135","address":"\\u91d1\\u9580\\u8857\\u0033\\u0030\\u0033\\u865f\\u0033\\u0030\\u0035\\u865f"}', '174992', '711', 'zh-tw', 1000),
(4283, 267, '17-267', 1, '金福', '{"number":"181853","shop":"\\u91d1\\u798f","phone":"0226834061","address":"\\u91d1\\u9580\\u8857\\u0033\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '181853', '711', 'zh-tw', 1000),
(4284, 267, '17-267', 1, '成合', '{"number":"968791","shop":"\\u6210\\u5408","phone":"0286873728","address":"\\u91d1\\u9580\\u8857\\u0034\\u0030\\u865f"}', '968791', '711', 'zh-tw', 1000),
(4285, 267, '17-267', 1, '萬板', '{"number":"953087","shop":"\\u842c\\u677f","phone":"0222519201","address":"\\u8392\\u5149\\u8def\\u0032\\u0032\\u0031\\u865f\\u0032\\u0032\\u0033\\u865f"}', '953087', '711', 'zh-tw', 1000),
(4286, 267, '17-267', 1, '春秋', '{"number":"113779","shop":"\\u6625\\u79cb","phone":"0222567192","address":"\\u8392\\u5149\\u8def\\u0034\\u0030\\u5df7\\u0031\\u0034\\u865f\\u0031\\u0036\\u865f"}', '113779', '711', 'zh-tw', 1000),
(4287, 267, '17-267', 1, '華翠', '{"number":"979263","shop":"\\u83ef\\u7fe0","phone":"0222555452","address":"\\u8392\\u5149\\u8def\\u0036\\u0033\\u865f"}', '979263', '711', 'zh-tw', 1000),
(4288, 267, '17-267', 1, '瑞林', '{"number":"158691","shop":"\\u745e\\u6797","phone":"0222588414","address":"\\u9f8d\\u7fe0\\u91cc\\u5927\\u540c\\u8857\\u0035\\u0032\\u865f"}', '158691', '711', 'zh-tw', 1000),
(4289, 267, '17-267', 1, '觀龍', '{"number":"180816","shop":"\\u89c0\\u9f8d","phone":"0222756709","address":"\\u9f8d\\u8208\\u8857\\u0033\\u0039\\u865f\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '180816', '711', 'zh-tw', 1000),
(4290, 267, '17-267', 1, '板權', '{"number":"148948","shop":"\\u677f\\u6b0a","phone":"0222720703","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0039\\u0038\\u002d\\u0032\\u0030\\u0030\\u865f"}', '148948', '711', 'zh-tw', 1000),
(4291, 267, '17-267', 1, '埔站', '{"number":"148041","shop":"\\u57d4\\u7ad9","phone":"0222552884","address":"\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '148041', '711', 'zh-tw', 1000),
(4292, 267, '17-267', 1, '埔運', '{"number":"161572","shop":"\\u57d4\\u904b","phone":"0282524260","address":"\\u6c11\\u751f\\u8def\\u4e09\\u6bb5\\u0034\\u0030\\u865f\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '161572', '711', 'zh-tw', 1000),
(4293, 267, '17-267', 1, '正隆', '{"number":"985534","shop":"\\u6b63\\u9686","phone":"0229567793","address":"\\u6c11\\u751f\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u865f"}', '985534', '711', 'zh-tw', 1000),
(4294, 267, '17-267', 1, '懷民', '{"number":"996279","shop":"\\u61f7\\u6c11","phone":"0222504664","address":"\\u6c11\\u6cbb\\u8857\\u0031\\u0031\\u0031\\u865f"}', '996279', '711', 'zh-tw', 1000),
(4295, 267, '17-267', 1, '坤耀', '{"number":"171649","shop":"\\u5764\\u8000","phone":"0222723226","address":"\\u5357\\u9580\\u8857\\u0033\\u0039\\u865f\\u0031\\u0046"}', '171649', '711', 'zh-tw', 1000),
(4296, 267, '17-267', 1, '雅東', '{"number":"170222","shop":"\\u96c5\\u6771","phone":"0229660592","address":"\\u5357\\u96c5\\u6771\\u8def\\u0033\\u0031\\u4e4b\\u0031\\u865f\\u0035\\u865f\\u0036\\u865f\\u0037\\u865f\\u0031\\u6a13"}', '170222', '711', 'zh-tw', 1000),
(4297, 267, '17-267', 1, '遠揚', '{"number":"978662","shop":"\\u9060\\u63da","phone":"0289664602","address":"\\u5357\\u96c5\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0034\\u865f"}', '978662', '711', 'zh-tw', 1000),
(4298, 267, '17-267', 1, '秋雅', '{"number":"121323","shop":"\\u79cb\\u96c5","phone":"0289669323","address":"\\u5357\\u96c5\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0034\\u5df7\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '121323', '711', 'zh-tw', 1000),
(4299, 267, '17-267', 1, '園林', '{"number":"165552","shop":"\\u5712\\u6797","phone":"0289698424","address":"\\u5357\\u96c5\\u897f\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0032\\u865f\\u0031\\u0030\\u0034\\u865f\\u0031\\u6a13"}', '165552', '711', 'zh-tw', 1000),
(4300, 267, '17-267', 1, '香雅', '{"number":"922131","shop":"\\u9999\\u96c5","phone":"0229679674","address":"\\u5357\\u96c5\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0037\\u865f\\u0032\\u0039\\u0039\\u865f"}', '922131', '711', 'zh-tw', 1000),
(4301, 267, '17-267', 1, '僑一', '{"number":"188371","shop":"\\u50d1\\u4e00","phone":"0229685784","address":"\\u50d1\\u4e2d\\u4e00\\u8857\\u0031\\u0030\\u0034\\u865f\\u0031\\u0030\\u0036\\u865f"}', '188371', '711', 'zh-tw', 1000),
(4302, 267, '17-267', 1, '新僑中', '{"number":"968089","shop":"\\u65b0\\u50d1\\u4e2d","phone":"0229694324","address":"\\u50d1\\u4e2d\\u4e00\\u8857\\u0031\\u0032\\u0034\\u5df7\\u0033\\u5f04\\u0033\\u865f"}', '968089', '711', 'zh-tw', 1000),
(4303, 267, '17-267', 1, '幸運', '{"number":"189499","shop":"\\u5e78\\u904b","phone":"0229614123","address":"\\u5340\\u904b\\u8def\\u0032\\u0031\\u865f"}', '189499', '711', 'zh-tw', 1000),
(4304, 267, '17-267', 1, '瑞新', '{"number":"126890","shop":"\\u745e\\u65b0","phone":"0289683252","address":"\\u745e\\u5b89\\u8857\\u0037\\u0035\\u865f"}', '126890', '711', 'zh-tw', 1000),
(4305, 267, '17-267', 1, '正泰', '{"number":"135388","shop":"\\u6b63\\u6cf0","phone":"0229622750","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0032\\u002d\\u0032\\u0030\\u53ca\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '135388', '711', 'zh-tw', 1000),
(4306, 267, '17-267', 1, '板民', '{"number":"169808","shop":"\\u677f\\u6c11","phone":"0229635213","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\u0037\\u0037\\u865f\\u0031\\u6a13"}', '169808', '711', 'zh-tw', 1000),
(4307, 267, '17-267', 1, '新翠華', '{"number":"125613","shop":"\\u65b0\\u7fe0\\u83ef","phone":"0229547438","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\u0033\\u0031\\u5df7\\u0031\\u0034\\u865f\\u0031\\u0036\\u865f"}', '125613', '711', 'zh-tw', 1000),
(4308, 267, '17-267', 1, '豐成', '{"number":"185671","shop":"\\u8c50\\u6210","phone":"0229593790","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\u0033\\u0031\\u5df7\\u0038\\u0039\\u5f04\\u0031\\u0030\\u865f\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '185671', '711', 'zh-tw', 1000),
(4309, 267, '17-267', 1, '心心', '{"number":"977485","shop":"\\u5fc3\\u5fc3","phone":"0229584608","address":"\\u5be6\\u8e10\\u8def\\u0031\\u0030\\u0035\\u865f\\u0031\\u0030\\u0037\\u865f"}', '977485', '711', 'zh-tw', 1000),
(4310, 267, '17-267', 1, '新兆圓', '{"number":"147989","shop":"\\u65b0\\u5146\\u5713","phone":"0289646258","address":"\\u5be6\\u8e10\\u8def\\u0033\\u0034\\u865f\\u0033\\u0034\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '147989', '711', 'zh-tw', 1000),
(4311, 267, '17-267', 1, '龍翠', '{"number":"844907","shop":"\\u9f8d\\u7fe0","phone":"0222538130","address":"\\u96d9\\u5341\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0038\\u4e4b\\u0031\\u865f\\u0031\\u0033\\u0038\\u4e4b\\u0032\\u865f"}', '844907', '711', 'zh-tw', 1000),
(4312, 267, '17-267', 1, '雙源', '{"number":"174062","shop":"\\u96d9\\u6e90","phone":"0282527754","address":"\\u96d9\\u5341\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u5df7\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f"}', '174062', '711', 'zh-tw', 1000),
(4313, 267, '17-267', 1, '華德', '{"number":"163866","shop":"\\u83ef\\u5fb7","phone":"0289664633","address":"\\u56db\\u5ddd\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u5df7\\u0033\\u5f04\\u0038\\u865f\\u53ca\\u0038\\u4e4b\\u0031\\u865f"}', '163866', '711', 'zh-tw', 1000),
(4314, 267, '17-267', 1, '建茗', '{"number":"118512","shop":"\\u5efa\\u8317","phone":"0229565541","address":"\\u56db\\u5ddd\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0034\\u865f"}', '118512', '711', 'zh-tw', 1000),
(4315, 267, '17-267', 1, '維群', '{"number":"148546","shop":"\\u7dad\\u7fa4","phone":"0222596008","address":"\\u56db\\u7dad\\u8def\\u0031\\u0033\\u0039\\u865f"}', '148546', '711', 'zh-tw', 1000),
(4316, 267, '17-267', 1, '維禮', '{"number":"183790","shop":"\\u7dad\\u79ae","phone":"0282570705","address":"\\u56db\\u7dad\\u8def\\u0032\\u0037\\u0036\\u865f\\u0032\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '183790', '711', 'zh-tw', 1000),
(4317, 267, '17-267', 1, '板維', '{"number":"167846","shop":"\\u677f\\u7dad","phone":"0222546684","address":"\\u56db\\u7dad\\u8def\\u0033\\u0034\\u0035\\u865f\\u0033\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '167846', '711', 'zh-tw', 1000),
(4318, 267, '17-267', 1, '松林', '{"number":"144393","shop":"\\u677e\\u6797","phone":"0222509964","address":"\\u677e\\u6c5f\\u8857\\u0031\\u0030\\u0039\\u5df7\\u0031\\u865f\\u677e\\u6c5f\\u8857\\u0031\\u0030\\u0037\\u865f"}', '144393', '711', 'zh-tw', 1000),
(4319, 267, '17-267', 1, '新海', '{"number":"198910","shop":"\\u65b0\\u6d77","phone":"0282525425","address":"\\u6587\\u5fb7\\u91cc\\u65b0\\u6d77\\u8def\\u0031\\u0033\\u0038\\u865f"}', '198910', '711', 'zh-tw', 1000),
(4320, 267, '17-267', 1, '江翠', '{"number":"181875","shop":"\\u6c5f\\u7fe0","phone":"0222540316","address":"\\u6587\\u5316\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0037\\u5df7\\u0038\\u865f\\u0031\\u6a13\\u0031\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '181875', '711', 'zh-tw', 1000),
(4321, 267, '17-267', 1, '板聖', '{"number":"864060","shop":"\\u677f\\u8056","phone":"0222524835","address":"\\u6587\\u5316\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u0032\\u865f"}', '864060', '711', 'zh-tw', 1000),
(4322, 267, '17-267', 1, '新板橋', '{"number":"118349","shop":"\\u65b0\\u677f\\u6a4b","phone":"0229686041","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0035\\u865f"}', '118349', '711', 'zh-tw', 1000),
(4323, 267, '17-267', 1, '油庫口', '{"number":"141475","shop":"\\u6cb9\\u5eab\\u53e3","phone":"0222569422","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0038\\u5df7\\u0033\\u0038\\u865f\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '141475', '711', 'zh-tw', 1000),
(4324, 267, '17-267', 1, '偉嘉', '{"number":"901710","shop":"\\u5049\\u5609","phone":"0222595486","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0030\\u5df7\\u0033\\u5f04\\u0032\\u865f"}', '901710', '711', 'zh-tw', 1000),
(4325, 267, '17-267', 1, '百壽', '{"number":"132079","shop":"\\u767e\\u58fd","phone":"0222541758","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '132079', '711', 'zh-tw', 1000),
(4326, 267, '17-267', 1, '埔西', '{"number":"185028","shop":"\\u57d4\\u897f","phone":"0222555399","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\u0034\\u0031\\u0039\\u4e4b\\u0035\\u865f\\u0031\\u6a13"}', '185028', '711', 'zh-tw', 1000),
(4327, 267, '17-267', 1, '文聖', '{"number":"188223","shop":"\\u6587\\u8056","phone":"0222589508","address":"\\u6587\\u8056\\u8857\\u0036\\u0034\\u865f"}', '188223', '711', 'zh-tw', 1000),
(4328, 267, '17-267', 1, '佑容', '{"number":"891730","shop":"\\u4f51\\u5bb9","phone":"0229595675","address":"\\u4e94\\u6b0a\\u91cc\\u4e94\\u6b0a\\u8857\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f"}', '891730', '711', 'zh-tw', 1000),
(4329, 267, '17-267', 1, '樹中', '{"number":"120364","shop":"\\u6a39\\u4e2d","phone":"0226861044","address":"\\u6eaa\\u57ce\\u8def\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '120364', '711', 'zh-tw', 1000),
(4330, 267, '17-267', 1, '建宗', '{"number":"922533","shop":"\\u5efa\\u5b97","phone":"0226852258","address":"\\u6eaa\\u798f\\u91cc\\u7be4\\u884c\\u8def\\u4e09\\u6bb5\\u7389\\u5e73\\u5df7\\u0037\\u0036\\u5f04\\u0038\\u865f\\u53ca\\u0031\\u0030\\u865f"}', '922533', '711', 'zh-tw', 1000),
(4331, 267, '17-267', 1, '溪州', '{"number":"122924","shop":"\\u6eaa\\u5dde","phone":"0286873740","address":"\\u6eaa\\u5d11\\u4e8c\\u8857\\u0031\\u0030\\u0038\\u002e\\u0031\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '122924', '711', 'zh-tw', 1000),
(4332, 267, '17-267', 1, '縣東', '{"number":"186799","shop":"\\u7e23\\u6771","phone":"0229628655","address":"\\u7e23\\u6c11\\u5927\\u9053\\u4e8c\\u6bb5\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '186799', '711', 'zh-tw', 1000),
(4333, 267, '17-267', 1, '縣道', '{"number":"151070","shop":"\\u7e23\\u9053","phone":"0229512083","address":"\\u7e23\\u6c11\\u5927\\u9053\\u4e8c\\u6bb5\\u0031\\u0039\\u0036\\u865f"}', '151070', '711', 'zh-tw', 1000),
(4334, 267, '17-267', 1, '勝多', '{"number":"975537","shop":"\\u52dd\\u591a","phone":"0229613848","address":"\\u7e23\\u6c11\\u5927\\u9053\\u4e09\\u6bb5\\u0032\\u0037\\u0030\\u5df7\\u0032\\u002d\\u0036\\u865f"}', '975537', '711', 'zh-tw', 1000),
(4335, 267, '17-267', 1, '杰朋', '{"number":"174512","shop":"\\u6770\\u670b","phone":"0222574817","address":"\\u65b0\\u6d77\\u8def\\u0033\\u0038\\u0035\\u5df7\\u0031\\u0030\\u5f04\\u0031\\u0031\\u865f"}', '174512', '711', 'zh-tw', 1000),
(4336, 267, '17-267', 1, '智樂', '{"number":"174730","shop":"\\u667a\\u6a02","phone":"0229601143","address":"\\u65b0\\u751f\\u8857\\u0038\\u0039\\u5df7\\u0032\\u865f"}', '174730', '711', 'zh-tw', 1000),
(4337, 267, '17-267', 1, '南雅', '{"number":"185246","shop":"\\u5357\\u96c5","phone":"0229654054","address":"\\u65b0\\u8208\\u91cc\\u5357\\u96c5\\u5357\\u8def\\u4e00\\u6bb5\\u0038\\u865f\\u0031\\u6a13"}', '185246', '711', 'zh-tw', 1000),
(4338, 267, '17-267', 1, '板信', '{"number":"190466","shop":"\\u677f\\u4fe1","phone":"0229647407","address":"\\u4fe1\\u7fa9\\u8def\\u0031\\u0034\\u0032\\u865f\\u0031\\u0034\\u0034\\u865f\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '190466', '711', 'zh-tw', 1000),
(4339, 267, '17-267', 1, '維陽', '{"number":"180148","shop":"\\u7dad\\u967d","phone":"0222544725","address":"\\u967d\\u660e\\u8857\\u0031\\u0035\\u0038\\u865f\\u0031\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '180148', '711', 'zh-tw', 1000),
(4340, 267, '17-267', 1, '致理', '{"number":"148177","shop":"\\u81f4\\u7406","phone":"0222556976","address":"\\u967d\\u660e\\u8857\\u0032\\u0033\\u5df7\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '148177', '711', 'zh-tw', 1000),
(4341, 267, '17-267', 1, '戰國', '{"number":"163730","shop":"\\u6230\\u570b","phone":"0229541991","address":"\\u6c38\\u8c50\\u8857\\u0031\\u0037\\u0033\\u865f\\u0031\\u0037\\u0035\\u865f"}', '163730', '711', 'zh-tw', 1000),
(4342, 267, '17-267', 1, '埔墘', '{"number":"846660","shop":"\\u57d4\\u5898","phone":"0229614894","address":"\\u6c38\\u8c50\\u8857\\u0038\\u0037\\u865f"}', '846660', '711', 'zh-tw', 1000),
(4343, 267, '17-267', 1, '英海', '{"number":"158602","shop":"\\u82f1\\u6d77","phone":"0222511636","address":"\\u96e8\\u8fb2\\u8def\\u0035\\u0030\\u865f"}', '158602', '711', 'zh-tw', 1000),
(4344, 267, '17-267', 1, '裕民', '{"number":"166898","shop":"\\u88d5\\u6c11","phone":"0222571695","address":"\\u88d5\\u6c11\\u8857\\u0031\\u0031\\u0030\\u865f"}', '166898', '711', 'zh-tw', 1000),
(4345, 267, '17-267', 1, '家豐', '{"number":"173737","shop":"\\u5bb6\\u8c50","phone":"0229573209","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '173737', '711', 'zh-tw', 1000),
(4346, 267, '17-267', 1, '光仁', '{"number":"165448","shop":"\\u5149\\u4ec1","phone":"0229592301","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0033\\u865f"}', '165448', '711', 'zh-tw', 1000),
(4347, 267, '17-267', 1, '樂福', '{"number":"131490","shop":"\\u6a02\\u798f","phone":"0229633922","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0030\\u0034\\u865f\\u0033\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '131490', '711', 'zh-tw', 1000),
(4348, 267, '17-267', 1, '馥都', '{"number":"165688","shop":"\\u99a5\\u90fd","phone":"0229640706","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0039\\u865f\\u0034\\u0030\\u0031\\u865f"}', '165688', '711', 'zh-tw', 1000),
(4349, 267, '17-267', 1, '舊社', '{"number":"931571","shop":"\\u820a\\u793e","phone":"0229636183","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0032\\u865f"}', '931571', '711', 'zh-tw', 1000),
(4350, 267, '17-267', 1, '青蘋果', '{"number":"953663","shop":"\\u9752\\u860b\\u679c","phone":"0229629746","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0035\\u0033\\u0031\\u5df7\\u0031\\u0037\\u5f04\\u0032\\u0030\\u865f"}', '953663', '711', 'zh-tw', 1000),
(4351, 267, '17-267', 1, '板府', '{"number":"182166","shop":"\\u677f\\u5e9c","phone":"0229625901","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0038\\u5df7\\u0034\\u865f\\u0036\\u865f\\u0031\\u6a13"}', '182166', '711', 'zh-tw', 1000),
(4352, 267, '17-267', 1, '耀心', '{"number":"110301","shop":"\\u8000\\u5fc3","phone":"0289541780","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0030\\u5df7\\u0032\\u0032\\u002d\\u0032\\u002d\\u0031\\u0035\\u002d\\u0033\\u0039\\u002d\\u0034\\u0036\\u865f"}', '110301', '711', 'zh-tw', 1000),
(4353, 267, '17-267', 1, '緯中', '{"number":"921998","shop":"\\u7def\\u4e2d","phone":"0229657833","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0031\\u865f\\u0032\\u0033\\u865f"}', '921998', '711', 'zh-tw', 1000),
(4354, 267, '17-267', 1, '正華', '{"number":"165297","shop":"\\u6b63\\u83ef","phone":"0229681440","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0037\\u0034\\u865f\\u0032\\u0037\\u0036\\u865f"}', '165297', '711', 'zh-tw', 1000),
(4355, 267, '17-267', 1, '中一', '{"number":"992037","shop":"\\u4e2d\\u4e00","phone":"0229654415","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0033\\u0032\\u4e4b\\u0035\\u865f\\u0031\\u6a13"}', '992037', '711', 'zh-tw', 1000),
(4356, 267, '17-267', 1, '板慶', '{"number":"121208","shop":"\\u677f\\u6176","phone":"0229556584","address":"\\u5fe0\\u5b5d\\u8def\\u0033\\u0037\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '121208', '711', 'zh-tw', 1000),
(4357, 267, '17-267', 1, '府運', '{"number":"980942","shop":"\\u5e9c\\u904b","phone":"0229640712","address":"\\u91cd\\u6176\\u8def\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '980942', '711', 'zh-tw', 1000),
(4358, 267, '17-267', 1, '慶中', '{"number":"170990","shop":"\\u6176\\u4e2d","phone":"0229577176","address":"\\u91cd\\u6176\\u8def\\u0031\\u0039\\u0034\\u865f\\u5149\\u660e\\u8857\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '170990', '711', 'zh-tw', 1000),
(4359, 267, '17-267', 1, '昇容', '{"number":"902311","shop":"\\u6607\\u5bb9","phone":"0229581032","address":"\\u91cd\\u6176\\u8def\\u0033\\u0034\\u0036\\u5df7\\u0038\\u865f"}', '902311', '711', 'zh-tw', 1000),
(4360, 267, '17-267', 1, '議會', '{"number":"865269","shop":"\\u8b70\\u6703","phone":"0222542852","address":"\\u838a\\u656c\\u8def\\u0036\\u0030\\u865f"}', '865269', '711', 'zh-tw', 1000),
(4361, 267, '17-267', 1, '板耀', '{"number":"197607","shop":"\\u677f\\u8000","phone":"0222542980","address":"\\u81ea\\u7531\\u8def\\u0035\\u0032\\u865f\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '197607', '711', 'zh-tw', 1000),
(4362, 268, '17-268', 1, '君品', '{"number":"194000","shop":"\\u541b\\u54c1","phone":"0226228201","address":"\\u5317\\u65b0\\u8def\\u0031\\u0034\\u0031\\u5df7\\u0035\\u0036\\u002e\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '194000', '711', 'zh-tw', 1000),
(4363, 268, '17-268', 1, '北淡', '{"number":"173601","shop":"\\u5317\\u6de1","phone":"0226298932","address":"\\u5317\\u65b0\\u8def\\u0031\\u0038\\u0032\\u5df7\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0033\\u0038\\u865f\\u0034\\u0030\\u865f"}', '173601', '711', 'zh-tw', 1000),
(4364, 268, '17-268', 1, '淡大', '{"number":"874126","shop":"\\u6de1\\u5927","phone":"0226203554","address":"\\u5317\\u65b0\\u8def\\u0031\\u0038\\u0032\\u5df7\\u0035\\u5f04\\u0033\\u0039\\u865f"}', '874126', '711', 'zh-tw', 1000),
(4365, 268, '17-268', 1, '巧立', '{"number":"981347","shop":"\\u5de7\\u7acb","phone":"0286311635","address":"\\u5317\\u65b0\\u8def\\u0031\\u0038\\u0034\\u5df7\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '981347', '711', 'zh-tw', 1000),
(4366, 268, '17-268', 1, '金星', '{"number":"170107","shop":"\\u91d1\\u661f","phone":"0226260905","address":"\\u5317\\u65b0\\u8def\\u0036\\u0035\\u865f"}', '170107', '711', 'zh-tw', 1000),
(4367, 268, '17-268', 1, '天元', '{"number":"143770","shop":"\\u5929\\u5143","phone":"0226269419","address":"\\u5317\\u65b0\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '143770', '711', 'zh-tw', 1000),
(4368, 268, '17-268', 1, '和億', '{"number":"194044","shop":"\\u548c\\u5104","phone":"0226237509","address":"\\u6ff1\\u6d77\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0036\\u5df7\\u0036\\u0030\\u5f04\\u0033\\u0035\\u002e\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '194044', '711', 'zh-tw', 1000),
(4369, 268, '17-268', 1, '愛琴灣', '{"number":"184391","shop":"\\u611b\\u7434\\u7063","phone":"0226239285","address":"\\u6ff1\\u6d77\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u0030\\u865f\\u0034\\u0033\\u0032\\u865f"}', '184391', '711', 'zh-tw', 1000),
(4370, 268, '17-268', 1, '立征', '{"number":"122256","shop":"\\u7acb\\u5f81","phone":"0286315475","address":"\\u5927\\u7fa9\\u8857\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '122256', '711', 'zh-tw', 1000),
(4371, 268, '17-268', 1, '水鑫', '{"number":"189857","shop":"\\u6c34\\u946b","phone":"0226219837","address":"\\u5927\\u5fe0\\u8857\\u0038\\u0033\\u865f"}', '189857', '711', 'zh-tw', 1000),
(4372, 268, '17-268', 1, '霞關', '{"number":"912891","shop":"\\u971e\\u95dc","phone":"0226253171","address":"\\u6de1\\u91d1\\u8def\\u0035\\u0039\\u002d\\u0036\\u0031\\u865f\\u0042\\u0031"}', '912891', '711', 'zh-tw', 1000),
(4373, 268, '17-268', 1, '金旦', '{"number":"956341","shop":"\\u91d1\\u65e6","phone":"0226213108","address":"\\u6de1\\u91d1\\u8def\\u4e09\\u6bb5\\u0032\\u0035\\u0034\\u865f\\u0032\\u0035\\u0036\\u865f"}', '956341', '711', 'zh-tw', 1000),
(4374, 268, '17-268', 1, '金紅', '{"number":"916538","shop":"\\u91d1\\u7d05","phone":"0226200484","address":"\\u6de1\\u91d1\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '916538', '711', 'zh-tw', 1000),
(4375, 268, '17-268', 1, '金聖', '{"number":"167156","shop":"\\u91d1\\u8056","phone":"0228010623","address":"\\u6de1\\u91d1\\u8def\\u56db\\u6bb5\\u0034\\u0039\\u0033\\u865f"}', '167156', '711', 'zh-tw', 1000),
(4376, 268, '17-268', 1, '聖約翰', '{"number":"975180","shop":"\\u8056\\u7d04\\u7ff0","phone":"0228010894","address":"\\u6de1\\u91d1\\u8def\\u56db\\u6bb5\\u0035\\u0033\\u0032\\u865f"}', '975180', '711', 'zh-tw', 1000),
(4377, 268, '17-268', 1, '淡芝', '{"number":"185235","shop":"\\u6de1\\u829d","phone":"0228013735","address":"\\u6de1\\u91d1\\u8def\\u4e94\\u6bb5\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '185235', '711', 'zh-tw', 1000),
(4378, 268, '17-268', 1, '川金', '{"number":"193018","shop":"\\u5ddd\\u91d1","phone":"0226221047","address":"\\u6de1\\u91d1\\u8def\\u4e00\\u6bb5\\u0035\\u0036\\u0037\\u865f\\u0035\\u0036\\u0039\\u865f\\u0035\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '193018', '711', 'zh-tw', 1000),
(4379, 268, '17-268', 1, '老街', '{"number":"144522","shop":"\\u8001\\u8857","phone":"0226229691","address":"\\u516c\\u660e\\u8857\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '144522', '711', 'zh-tw', 1000),
(4380, 268, '17-268', 1, '竹圍', '{"number":"119308","shop":"\\u7af9\\u570d","phone":"0228091574","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0030\\u0039\\u865f\\u0031\\u0031\\u0031\\u865f"}', '119308', '711', 'zh-tw', 1000),
(4381, 268, '17-268', 1, '馥竹', '{"number":"181934","shop":"\\u99a5\\u7af9","phone":"0228086729","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0038\\u0037\\u5df7\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '181934', '711', 'zh-tw', 1000),
(4382, 268, '17-268', 1, '立飛', '{"number":"143035","shop":"\\u7acb\\u98db","phone":"0288095328","address":"\\u6c11\\u751f\\u8def\\u0031\\u0032\\u0036\\u865f\\u0031\\u0032\\u0038\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '143035', '711', 'zh-tw', 1000),
(4383, 268, '17-268', 1, '偕成', '{"number":"185420","shop":"\\u5055\\u6210","phone":"0228091272","address":"\\u6c11\\u751f\\u8def\\u0035\\u0034\\u865f"}', '185420', '711', 'zh-tw', 1000),
(4384, 268, '17-268', 1, '立竹', '{"number":"180126","shop":"\\u7acb\\u7af9","phone":"0288092553","address":"\\u6c11\\u65cf\\u8def\\u0035\\u0038\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '180126', '711', 'zh-tw', 1000),
(4385, 268, '17-268', 1, '布拉諾', '{"number":"194457","shop":"\\u5e03\\u62c9\\u8afe","phone":"0286269823","address":"\\u576a\\u9802\\u8def\\u0035\\u0036\\u002d\\u0038\\u865f\\u0035\\u0036\\u002d\\u0039\\u865f\\u0031\\u6a13"}', '194457', '711', 'zh-tw', 1000),
(4386, 268, '17-268', 1, '金沙', '{"number":"173612","shop":"\\u91d1\\u6c99","phone":"0228057369","address":"\\u6c99\\u5d19\\u8def\\u0031\\u0033\\u0033\\u865f"}', '173612', '711', 'zh-tw', 1000),
(4387, 268, '17-268', 1, '鯊魚', '{"number":"181130","shop":"\\u9bca\\u9b5a","phone":"0228052232","address":"\\u6c99\\u5d19\\u8def\\u0031\\u0039\\u0036\\u865f"}', '181130', '711', 'zh-tw', 1000),
(4388, 268, '17-268', 1, '金崙', '{"number":"112400","shop":"\\u91d1\\u5d19","phone":"0228055104","address":"\\u6c99\\u5d19\\u8def\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '112400', '711', 'zh-tw', 1000),
(4389, 268, '17-268', 1, '淡欣', '{"number":"961778","shop":"\\u6de1\\u6b23","phone":"0226210745","address":"\\u6c34\\u6e90\\u8857\\u4e8c\\u6bb5\\u0031\\u0030\\u0034\\u865f"}', '961778', '711', 'zh-tw', 1000),
(4390, 268, '17-268', 1, '鑫鑫', '{"number":"150860","shop":"\\u946b\\u946b","phone":"0226262742","address":"\\u6c34\\u6e90\\u8857\\u4e8c\\u6bb5\\u0037\\u0036\\u865f"}', '150860', '711', 'zh-tw', 1000),
(4391, 268, '17-268', 1, '源德', '{"number":"190499","shop":"\\u6e90\\u5fb7","phone":"0226265872","address":"\\u6c34\\u6e90\\u8857\\u4e00\\u6bb5\\u0037\\u0035\\u4e4b\\u0032\\u865f\\u0031\\u6a13\\u0042\\u0031"}', '190499', '711', 'zh-tw', 1000),
(4392, 268, '17-268', 1, '新春', '{"number":"174039","shop":"\\u65b0\\u6625","phone":"0226267510","address":"\\u65b0\\u6625\\u8857\\u0031\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '174039', '711', 'zh-tw', 1000),
(4393, 268, '17-268', 1, '皇后', '{"number":"972918","shop":"\\u7687\\u540e","phone":"0226200724","address":"\\u65b0\\u6625\\u8857\\u0038\\u0037\\u865f"}', '972918', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(4394, 268, '17-268', 1, '新真理', '{"number":"161158","shop":"\\u65b0\\u771f\\u7406","phone":"0226292848","address":"\\u65b0\\u6c11\\u8857\\u0031\\u0030\\u0032\\u865f\\u0031\\u0030\\u0034\\u865f"}', '161158', '711', 'zh-tw', 1000),
(4395, 268, '17-268', 1, '新淡專', '{"number":"163981","shop":"\\u65b0\\u6de1\\u5c08","phone":"0226282814","address":"\\u65b0\\u6c11\\u8857\\u0031\\u0038\\u0030\\u5df7\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '163981', '711', 'zh-tw', 1000),
(4396, 268, '17-268', 1, '真善美', '{"number":"137764","shop":"\\u771f\\u5584\\u7f8e","phone":"0226297240","address":"\\u65b0\\u5e02\\u4e00\\u8def\\u4e09\\u6bb5\\u0031\\u0034\\u0031\\u865f\\u0031\\u0034\\u0031\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '137764', '711', 'zh-tw', 1000),
(4397, 268, '17-268', 1, '新市鎮', '{"number":"131179","shop":"\\u65b0\\u5e02\\u93ae","phone":"0226228481","address":"\\u65b0\\u5e02\\u4e00\\u8def\\u4e09\\u6bb5\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '131179', '711', 'zh-tw', 1000),
(4398, 268, '17-268', 1, '台北灣', '{"number":"186010","shop":"\\u53f0\\u5317\\u7063","phone":"0226236308","address":"\\u65b0\\u5e02\\u4e00\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '186010', '711', 'zh-tw', 1000),
(4399, 268, '17-268', 1, '淡江', '{"number":"985604","shop":"\\u6de1\\u6c5f","phone":"0226204950","address":"\\u5b78\\u5e9c\\u8def\\u0032\\u0030\\u0037\\u865f"}', '985604', '711', 'zh-tw', 1000),
(4400, 268, '17-268', 1, '學府', '{"number":"164320","shop":"\\u5b78\\u5e9c","phone":"0226281792","address":"\\u5b78\\u5e9c\\u8def\\u0033\\u0039\\u865f\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '164320', '711', 'zh-tw', 1000),
(4401, 268, '17-268', 1, '英專', '{"number":"129187","shop":"\\u82f1\\u5c08","phone":"0286317597","address":"\\u82f1\\u5c08\\u8def\\u0039\\u0033\\u865f"}', '129187', '711', 'zh-tw', 1000),
(4402, 268, '17-268', 1, '協元', '{"number":"162195","shop":"\\u5354\\u5143","phone":"0226219045","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0037\\u0036\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '162195', '711', 'zh-tw', 1000),
(4403, 268, '17-268', 1, '淡水', '{"number":"190008","shop":"\\u6de1\\u6c34","phone":"0226233091","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u0033\\u865f"}', '190008', '711', 'zh-tw', 1000),
(4404, 268, '17-268', 1, '紅林站', '{"number":"160041","shop":"\\u7d05\\u6797\\u7ad9","phone":"0226242082","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\u0036\\u0035\\u865f"}', '160041', '711', 'zh-tw', 1000),
(4405, 268, '17-268', 1, '紅樹林', '{"number":"135540","shop":"\\u7d05\\u6a39\\u6797","phone":"0228086437","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '135540', '711', 'zh-tw', 1000),
(4406, 268, '17-268', 1, '見欣', '{"number":"130453","shop":"\\u898b\\u6b23","phone":"0226261243","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e00\\u6bb5\\u4e09\\u5df7\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '130453', '711', 'zh-tw', 1000),
(4407, 268, '17-268', 1, '金寶', '{"number":"900429","shop":"\\u91d1\\u5bf6","phone":"0226297608","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0036\\u0039\\u865f"}', '900429', '711', 'zh-tw', 1000),
(4408, 268, '17-268', 1, '渡船頭', '{"number":"946377","shop":"\\u6e21\\u8239\\u982d","phone":"0226222172","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f"}', '946377', '711', 'zh-tw', 1000),
(4409, 268, '17-268', 1, '禮萊', '{"number":"195689","shop":"\\u79ae\\u840a","phone":"0226239704","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0032\\u865f\\u0031\\u6a13"}', '195689', '711', 'zh-tw', 1000),
(4410, 268, '17-268', 1, '竹捷', '{"number":"149206","shop":"\\u7af9\\u6377","phone":"0228085610","address":"\\u7af9\\u570d\\u91cc\\u6c11\\u65cf\\u8def\\u0031\\u0030\\u865f"}', '149206', '711', 'zh-tw', 1000),
(4411, 268, '17-268', 1, '吉發', '{"number":"933120","shop":"\\u5409\\u767c","phone":"0228084565","address":"\\u81ea\\u5f37\\u8def\\u0032\\u0037\\u0035\\u865f"}', '933120', '711', 'zh-tw', 1000),
(4412, 268, '17-268', 1, '武強', '{"number":"991137","shop":"\\u6b66\\u5f37","phone":"0228095608","address":"\\u81ea\\u5f37\\u8def\\u0033\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '991137', '711', 'zh-tw', 1000),
(4413, 269, '17-269', 1, '福隆站', '{"number":"159421","shop":"\\u798f\\u9686\\u7ad9","phone":"0224991826","address":"\\u798f\\u9686\\u8857\\u0038\\u865f\\u0038\\u002d\\u0031\\u865f"}', '159421', '711', 'zh-tw', 1000),
(4414, 269, '17-269', 1, '新福隆', '{"number":"946816","shop":"\\u65b0\\u798f\\u9686","phone":"0224992350","address":"\\u798f\\u9686\\u91cc\\u8208\\u9686\\u8857\\u0032\\u0034\\u4e4b\\u0031\\u865f"}', '946816', '711', 'zh-tw', 1000),
(4415, 269, '17-269', 1, '金澳底', '{"number":"195058","shop":"\\u91d1\\u6fb3\\u5e95","phone":"0224903580","address":"\\u4ec1\\u548c\\u8def\\u0032\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '195058', '711', 'zh-tw', 1000),
(4416, 269, '17-269', 1, '貢寮', '{"number":"127549","shop":"\\u8ca2\\u5bee","phone":"0224903435","address":"\\u4ec1\\u548c\\u8def\\u0039\\u865f"}', '127549', '711', 'zh-tw', 1000),
(4417, 270, '17-270', 1, '金全', '{"number":"999854","shop":"\\u91d1\\u5168","phone":"0224081935","address":"\\u6e05\\u6c34\\u8def\\u0035\\u0032\\u865f"}', '999854', '711', 'zh-tw', 1000),
(4418, 270, '17-270', 1, '金美', '{"number":"197629","shop":"\\u91d1\\u7f8e","phone":"0224985386","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0033\\u865f\\u0031\\u0034\\u0035\\u865f"}', '197629', '711', 'zh-tw', 1000),
(4419, 270, '17-270', 1, '金中', '{"number":"188175","shop":"\\u91d1\\u4e2d","phone":"0224081762","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u0030\\u0035\\u865f\\u0033\\u0030\\u0037\\u865f"}', '188175', '711', 'zh-tw', 1000),
(4420, 270, '17-270', 1, '金祥', '{"number":"148786","shop":"\\u91d1\\u7965","phone":"0224082441","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0034\\u0035\\u865f"}', '148786', '711', 'zh-tw', 1000),
(4421, 271, '17-271', 1, '粉寮', '{"number":"976024","shop":"\\u7c89\\u5bee","phone":"0286014401","address":"\\u7c89\\u5bee\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u865f"}', '976024', '711', 'zh-tw', 1000),
(4422, 271, '17-271', 1, '仁森', '{"number":"190329","shop":"\\u4ec1\\u68ee","phone":"0226032979","address":"\\u7c89\\u5bee\\u8def\\u4e00\\u6bb5\\u0036\\u0034\\u865f"}', '190329', '711', 'zh-tw', 1000),
(4423, 271, '17-271', 1, '工林', '{"number":"987769","shop":"\\u5de5\\u6797","phone":"0226012135","address":"\\u5de5\\u516d\\u8def\\u0037\\u0036\\u865f"}', '987769', '711', 'zh-tw', 1000),
(4424, 271, '17-271', 1, '德聖', '{"number":"174165","shop":"\\u5fb7\\u8056","phone":"0226090148","address":"\\u516c\\u5712\\u8def\\u0031\\u0037\\u865f"}', '174165', '711', 'zh-tw', 1000),
(4425, 271, '17-271', 1, '藍天', '{"number":"183882","shop":"\\u85cd\\u5929","phone":"0226094849","address":"\\u516c\\u5712\\u8def\\u0032\\u0030\\u0033\\u865f\\u4e4b\\u0031\\u003b\\u0032\\u0030\\u0033\\u865f\\u4e4b\\u0032"}', '183882', '711', 'zh-tw', 1000),
(4426, 271, '17-271', 1, '貝比', '{"number":"186803","shop":"\\u8c9d\\u6bd4","phone":"0286014119","address":"\\u6e56\\u5357\\u6751\\u0038\\u9130\\u982d\\u6e56\\u0037\\u0030\\u002d\\u0039\\u865f"}', '186803', '711', 'zh-tw', 1000),
(4427, 271, '17-271', 1, '麗興', '{"number":"166072","shop":"\\u9e97\\u8208","phone":"0226093347","address":"\\u9e97\\u5712\\u4e00\\u8857\\u0031\\u0031\\u5df7\\u0031\\u865f\\u0031\\u6a13\\u4e4b\\u0032"}', '166072', '711', 'zh-tw', 1000),
(4428, 271, '17-271', 1, '佳林', '{"number":"160122","shop":"\\u4f73\\u6797","phone":"0226020865","address":"\\u6797\\u53e3\\u8def\\u0031\\u0039\\u0037\\u865f"}', '160122', '711', 'zh-tw', 1000),
(4429, 271, '17-271', 1, '觀林', '{"number":"890634","shop":"\\u89c0\\u6797","phone":"0226035527","address":"\\u6797\\u53e3\\u8def\\u0037\\u0038\\u865f\\u0038\\u0030\\u865f"}', '890634', '711', 'zh-tw', 1000),
(4430, 271, '17-271', 1, '興林', '{"number":"966603","shop":"\\u8208\\u6797","phone":"0226009072","address":"\\u5357\\u52e2\\u6751\\u5357\\u52e2\\u8857\\u0032\\u0038\\u0030\\u865f"}', '966603', '711', 'zh-tw', 1000),
(4431, 271, '17-271', 1, '愛鄉', '{"number":"189525","shop":"\\u611b\\u9109","phone":"0286012278","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0030\\u865f\\u0031\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '189525', '711', 'zh-tw', 1000),
(4432, 271, '17-271', 1, '遠來', '{"number":"185121","shop":"\\u9060\\u4f86","phone":"0226017102","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\u0035\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '185121', '711', 'zh-tw', 1000),
(4433, 271, '17-271', 1, '麗寶', '{"number":"197386","shop":"\\u9e97\\u5bf6","phone":"0226002592","address":"\\u6587\\u5316\\u5317\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '197386', '711', 'zh-tw', 1000),
(4434, 271, '17-271', 1, '臣峰', '{"number":"183295","shop":"\\u81e3\\u5cf0","phone":"0226003717","address":"\\u6587\\u5316\\u5317\\u8def\\u4e00\\u6bb5\\u0036\\u0032\\u4e4b\\u0031\\u865f"}', '183295', '711', 'zh-tw', 1000),
(4435, 271, '17-271', 1, '麗池', '{"number":"960203","shop":"\\u9e97\\u6c60","phone":"0226027950","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0030\\u865f"}', '960203', '711', 'zh-tw', 1000),
(4436, 271, '17-271', 1, '德園', '{"number":"154183","shop":"\\u5fb7\\u5712","phone":"0226068918","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0030\\u5df7\\u0031\\u4e4b\\u0031\\u865f"}', '154183', '711', 'zh-tw', 1000),
(4437, 271, '17-271', 1, '安林', '{"number":"186755","shop":"\\u5b89\\u6797","phone":"0226082671","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e00\\u6bb5\\u0032\\u0034\\u865f\\u0032\\u0036\\u865f"}', '186755', '711', 'zh-tw', 1000),
(4438, 271, '17-271', 1, '美雅仕', '{"number":"199418","shop":"\\u7f8e\\u96c5\\u4ed5","phone":"0226003114","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '199418', '711', 'zh-tw', 1000),
(4439, 271, '17-271', 1, '興都', '{"number":"197490","shop":"\\u8208\\u90fd","phone":"0226090392","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0038\\u865f\\u0031\\u6a13\\u4e4b\\u4e00\\u4e4b\\u4e8c\\u4e4b\\u4e09"}', '197490', '711', 'zh-tw', 1000),
(4440, 271, '17-271', 1, '未來', '{"number":"164892","shop":"\\u672a\\u4f86","phone":"0226035631","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e00\\u6bb5\\u0035\\u0037\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '164892', '711', 'zh-tw', 1000),
(4441, 271, '17-271', 1, '旺來', '{"number":"153526","shop":"\\u65fa\\u4f86","phone":"0286014442","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '153526', '711', 'zh-tw', 1000),
(4442, 271, '17-271', 1, '幸福市', '{"number":"135573","shop":"\\u5e78\\u798f\\u5e02","phone":"0226022319","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e8c\\u6bb5\\u0033\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '135573', '711', 'zh-tw', 1000),
(4443, 271, '17-271', 1, '朗廷會', '{"number":"196280","shop":"\\u6717\\u5ef7\\u6703","phone":"0226088461","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e8c\\u6bb5\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '196280', '711', 'zh-tw', 1000),
(4444, 271, '17-271', 1, '采鋺', '{"number":"968023","shop":"\\u91c7\\u92fa","phone":"0226007384","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0038\\u865f"}', '968023', '711', 'zh-tw', 1000),
(4445, 271, '17-271', 1, '立軒', '{"number":"193214","shop":"\\u7acb\\u8ed2","phone":"0226018410","address":"\\u6587\\u5316\\u4e00\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0030\\u865f\\u0032\\u0030\\u0032\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '193214', '711', 'zh-tw', 1000),
(4446, 271, '17-271', 1, '長坤', '{"number":"198541","shop":"\\u9577\\u5764","phone":"0226001344","address":"\\u6587\\u5316\\u4e00\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '198541', '711', 'zh-tw', 1000),
(4447, 271, '17-271', 1, '民視', '{"number":"168023","shop":"\\u6c11\\u8996","phone":"0286019437","address":"\\u4fe1\\u7fa9\\u8def\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '168023', '711', 'zh-tw', 1000),
(4448, 271, '17-271', 1, '至富', '{"number":"113986","shop":"\\u81f3\\u5bcc","phone":"0286012128","address":"\\u4e2d\\u6e56\\u91cc\\u0031\\u0034\\u9130\\u4e2d\\u6e56\\u0034\\u0030\\u865f\\u4e4b\\u0039"}', '113986', '711', 'zh-tw', 1000),
(4449, 271, '17-271', 1, '霖口', '{"number":"186490","shop":"\\u9716\\u53e3","phone":"0226032893","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0035\\u0030\\u865f\\u0032\\u0035\\u0030\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '186490', '711', 'zh-tw', 1000),
(4450, 271, '17-271', 1, '正林', '{"number":"188522","shop":"\\u6b63\\u6797","phone":"0286014008","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '188522', '711', 'zh-tw', 1000),
(4451, 271, '17-271', 1, '新林口', '{"number":"188728","shop":"\\u65b0\\u6797\\u53e3","phone":"0226035613","address":"\\u4e2d\\u6b63\\u8def\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '188728', '711', 'zh-tw', 1000),
(4452, 271, '17-271', 1, '香賓', '{"number":"119571","shop":"\\u9999\\u8cd3","phone":"0226088040","address":"\\u5fe0\\u5b5d\\u8def\\u0033\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '119571', '711', 'zh-tw', 1000),
(4453, 271, '17-271', 1, '忠柯', '{"number":"162162","shop":"\\u5fe0\\u67ef","phone":"0226080054","address":"\\u5fe0\\u5b5d\\u8def\\u0036\\u0034\\u0032\\u865f"}', '162162', '711', 'zh-tw', 1000),
(4454, 271, '17-271', 1, '卿斳', '{"number":"947934","shop":"\\u537f\\u65b3","phone":"0226015984","address":"\\u7af9\\u6797\\u8def\\u0034\\u0038\\u865f"}', '947934', '711', 'zh-tw', 1000),
(4455, 272, '17-272', 1, '健倫', '{"number":"151128","shop":"\\u5065\\u502b","phone":"0222839655","address":"\\u4fdd\\u65b0\\u91cc\\u0034\\u9130\\u4e09\\u6c11\\u8def\\u0032\\u0033\\u0030\\u865f"}', '151128', '711', 'zh-tw', 1000),
(4456, 272, '17-272', 1, '華安', '{"number":"113388","shop":"\\u83ef\\u5b89","phone":"0228480247","address":"\\u9577\\u5b89\\u8857\\u0031\\u0030\\u0037\\u865f"}', '113388', '711', 'zh-tw', 1000),
(4457, 272, '17-272', 1, '蘆華', '{"number":"131515","shop":"\\u8606\\u83ef","phone":"0282850614","address":"\\u9577\\u5b89\\u8857\\u0031\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '131515', '711', 'zh-tw', 1000),
(4458, 272, '17-272', 1, '長樂', '{"number":"128748","shop":"\\u9577\\u6a02","phone":"0222892936","address":"\\u9577\\u5b89\\u8857\\u0032\\u0036\\u0039\\u865f"}', '128748', '711', 'zh-tw', 1000),
(4459, 272, '17-272', 1, '蘆安', '{"number":"190411","shop":"\\u8606\\u5b89","phone":"0228484952","address":"\\u9577\\u5b89\\u8857\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '190411', '711', 'zh-tw', 1000),
(4460, 272, '17-272', 1, '鷺江', '{"number":"160166","shop":"\\u9dfa\\u6c5f","phone":"0282855403","address":"\\u9577\\u69ae\\u8def\\u0036\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '160166', '711', 'zh-tw', 1000),
(4461, 272, '17-272', 1, '榮華', '{"number":"141176","shop":"\\u69ae\\u83ef","phone":"0282856572","address":"\\u9577\\u69ae\\u8def\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '141176', '711', 'zh-tw', 1000),
(4462, 272, '17-272', 1, '蘆興', '{"number":"184313","shop":"\\u8606\\u8208","phone":"0282869126","address":"\\u9577\\u6a02\\u8def\\u0032\\u4e4b\\u0036\\u865f\\u0031\\u6a13"}', '184313', '711', 'zh-tw', 1000),
(4463, 272, '17-272', 1, '蘆樂', '{"number":"960166","shop":"\\u8606\\u6a02","phone":"0228474074","address":"\\u9577\\u6a02\\u8def\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '960166', '711', 'zh-tw', 1000),
(4464, 272, '17-272', 1, '泰星', '{"number":"187046","shop":"\\u6cf0\\u661f","phone":"0282853450","address":"\\u6210\\u529f\\u91cc\\u9577\\u5b89\\u8857\\u0032\\u0037\\u0036\\u865f"}', '187046', '711', 'zh-tw', 1000),
(4465, 272, '17-272', 1, '得勝', '{"number":"185590","shop":"\\u5f97\\u52dd","phone":"0282854204","address":"\\u5f97\\u52dd\\u8857\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '185590', '711', 'zh-tw', 1000),
(4466, 272, '17-272', 1, '美禎', '{"number":"186951","shop":"\\u7f8e\\u798e","phone":"0228473199","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0032\\u0032\\u865f"}', '186951', '711', 'zh-tw', 1000),
(4467, 272, '17-272', 1, '珈英', '{"number":"985785","shop":"\\u73c8\\u82f1","phone":"0222857510","address":"\\u5fa9\\u8208\\u8def\\u0039\\u0032\\u865f"}', '985785', '711', 'zh-tw', 1000),
(4468, 272, '17-272', 1, '盛發', '{"number":"196110","shop":"\\u76db\\u767c","phone":"0282867631","address":"\\u5149\\u5fa9\\u8def\\u0031\\u0030\\u865f"}', '196110', '711', 'zh-tw', 1000),
(4469, 272, '17-272', 1, '憲金', '{"number":"158462","shop":"\\u61b2\\u91d1","phone":"0222857237","address":"\\u5149\\u83ef\\u8def\\u0032\\u0032\\u5df7\\u0031\\u865f"}', '158462', '711', 'zh-tw', 1000),
(4470, 272, '17-272', 1, '智華', '{"number":"158989","shop":"\\u667a\\u83ef","phone":"0222897911","address":"\\u5149\\u83ef\\u8def\\u0037\\u0032\\u865f"}', '158989', '711', 'zh-tw', 1000),
(4471, 272, '17-272', 1, '民欣', '{"number":"113285","shop":"\\u6c11\\u6b23","phone":"0228473454","address":"\\u5149\\u69ae\\u8def\\u0036\\u0033\\u865f\\u0036\\u0035\\u865f\\u0036\\u0037\\u865f"}', '113285', '711', 'zh-tw', 1000),
(4472, 272, '17-272', 1, '領袖', '{"number":"916284","shop":"\\u9818\\u8896","phone":"0282863383","address":"\\u96c6\\u8ce2\\u8def\\u0032\\u0032\\u0034\\u5df7\\u0036\\u0030\\u865f\\u0036\\u0032\\u865f"}', '916284', '711', 'zh-tw', 1000),
(4473, 272, '17-272', 1, '集德', '{"number":"185589","shop":"\\u96c6\\u5fb7","phone":"0282862748","address":"\\u96c6\\u8ce2\\u8def\\u0032\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '185589', '711', 'zh-tw', 1000),
(4474, 272, '17-272', 1, '集賢', '{"number":"961033","shop":"\\u96c6\\u8ce2","phone":"0222835304","address":"\\u96c6\\u8ce2\\u8def\\u0032\\u0037\\u0031\\u865f"}', '961033', '711', 'zh-tw', 1000),
(4475, 272, '17-272', 1, '長九', '{"number":"159476","shop":"\\u9577\\u4e5d","phone":"0282861065","address":"\\u4e5d\\u828e\\u8857\\u0039\\u0032\\u865f\\u0039\\u0034\\u865f\\u0031\\u6a13"}', '159476', '711', 'zh-tw', 1000),
(4476, 272, '17-272', 1, '蘆權', '{"number":"136934","shop":"\\u8606\\u6b0a","phone":"0282866843","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '136934', '711', 'zh-tw', 1000),
(4477, 272, '17-272', 1, '蘆揚', '{"number":"967101","shop":"\\u8606\\u63da","phone":"0228488352","address":"\\u6c11\\u751f\\u8857\\u0033\\u0030\\u865f"}', '967101', '711', 'zh-tw', 1000),
(4478, 272, '17-272', 1, '新義民', '{"number":"972424","shop":"\\u65b0\\u7fa9\\u6c11","phone":"0222895415","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0032\\u0032\\u865f\\u0031\\u0032\\u0034\\u865f"}', '972424', '711', 'zh-tw', 1000),
(4479, 272, '17-272', 1, '池田', '{"number":"180643","shop":"\\u6c60\\u7530","phone":"0282869533","address":"\\u6c11\\u65cf\\u8def\\u0032\\u0032\\u0034\\u865f\\u0032\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '180643', '711', 'zh-tw', 1000),
(4480, 272, '17-272', 1, '文豪', '{"number":"144511","shop":"\\u6587\\u8c6a","phone":"0228482734","address":"\\u6c11\\u65cf\\u8def\\u0034\\u0030\\u0032\\u865f\\u0034\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '144511', '711', 'zh-tw', 1000),
(4481, 272, '17-272', 1, '民仁', '{"number":"130327","shop":"\\u6c11\\u4ec1","phone":"0282868495","address":"\\u4ec1\\u611b\\u8857\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f"}', '130327', '711', 'zh-tw', 1000),
(4482, 272, '17-272', 1, '新天際', '{"number":"179702","shop":"\\u65b0\\u5929\\u969b","phone":"0228480473","address":"\\u4e09\\u6c11\\u8def\\u0035\\u0037\\u0035\\u865f"}', '179702', '711', 'zh-tw', 1000),
(4483, 272, '17-272', 1, '蘆三', '{"number":"170679","shop":"\\u8606\\u4e09","phone":"0282812524","address":"\\u4e09\\u6c11\\u8def\\u0036\\u865f\\u0038\\u865f"}', '170679', '711', 'zh-tw', 1000),
(4484, 272, '17-272', 1, '雙捷', '{"number":"141626","shop":"\\u96d9\\u6377","phone":"0282856703","address":"\\u4fe1\\u7fa9\\u8def\\u0031\\u0036\\u0032\\u865f\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '141626', '711', 'zh-tw', 1000),
(4485, 272, '17-272', 1, '蘆永', '{"number":"149815","shop":"\\u8606\\u6c38","phone":"0228483614","address":"\\u6c38\\u5b89\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u865f"}', '149815', '711', 'zh-tw', 1000),
(4486, 272, '17-272', 1, '飛龍', '{"number":"113377","shop":"\\u98db\\u9f8d","phone":"0228474291","address":"\\u6c38\\u5b89\\u5357\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0036\\u865f\\u74b0\\u5824\\u5927\\u9053\\u0032\\u865f\\u0036\\u865f"}', '113377', '711', 'zh-tw', 1000),
(4487, 272, '17-272', 1, '蘆荻', '{"number":"110552","shop":"\\u8606\\u837b","phone":"0282862547","address":"\\u6c38\\u5eb7\\u8857\\u0031\\u5df7\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '110552', '711', 'zh-tw', 1000),
(4488, 272, '17-272', 1, '統吉', '{"number":"871482","shop":"\\u7d71\\u5409","phone":"0222897033","address":"\\u6c38\\u5e73\\u8857\\u0033\\u0032\\u5df7\\u0031\\u0032\\u5f04\\u0031\\u865f"}', '871482', '711', 'zh-tw', 1000),
(4489, 272, '17-272', 1, '永樂', '{"number":"173760","shop":"\\u6c38\\u6a02","phone":"0282868745","address":"\\u6c38\\u6a02\\u8857\\u0033\\u0035\\u865f\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '173760', '711', 'zh-tw', 1000),
(4490, 272, '17-272', 1, '和華', '{"number":"185039","shop":"\\u548c\\u83ef","phone":"0222899461","address":"\\u6b63\\u548c\\u8857\\u0032\\u0038\\u865f"}', '185039', '711', 'zh-tw', 1000),
(4491, 272, '17-272', 1, '雙華', '{"number":"155393","shop":"\\u96d9\\u83ef","phone":"0228488245","address":"\\u4e2d\\u83ef\\u8857\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '155393', '711', 'zh-tw', 1000),
(4492, 272, '17-272', 1, '蘆讚', '{"number":"199061","shop":"\\u8606\\u8b9a","phone":"0282854801","address":"\\u4e2d\\u5c71\\u4e8c\\u8def\\u0031\\u0038\\u0034\\u865f"}', '199061', '711', 'zh-tw', 1000),
(4493, 272, '17-272', 1, '新吉麗', '{"number":"990639","shop":"\\u65b0\\u5409\\u9e97","phone":"0222889790","address":"\\u4e2d\\u5c71\\u4e00\\u8def\\u0032\\u0030\\u0034\\u865f\\u0031\\u6a13"}', '990639', '711', 'zh-tw', 1000),
(4494, 272, '17-272', 1, '前進', '{"number":"184531","shop":"\\u524d\\u9032","phone":"0282812439","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0038\\u0035\\u5df7\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '184531', '711', 'zh-tw', 1000),
(4495, 272, '17-272', 1, '蘆正', '{"number":"158451","shop":"\\u8606\\u6b63","phone":"0222827244","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0036\\u0031\\u865f"}', '158451', '711', 'zh-tw', 1000),
(4496, 273, '17-273', 1, '平溪', '{"number":"144359","shop":"\\u5e73\\u6eaa","phone":"0224952040","address":"\\u975c\\u5b89\\u8def\\u4e8c\\u6bb5\\u0033\\u0033\\u0038\\u865f\\u0033\\u0034\\u0030\\u865f"}', '144359', '711', 'zh-tw', 1000),
(4497, 274, '17-274', 1, '坪林', '{"number":"920249","shop":"\\u576a\\u6797","phone":"0226656655","address":"\\u6c34\\u67f3\\u8173\\u8def\\u0031\\u0035\\u0039\\u865f"}', '920249', '711', 'zh-tw', 1000),
(4498, 275, '17-275', 1, '鼻頭角', '{"number":"184210","shop":"\\u9f3b\\u982d\\u89d2","phone":"0224911584","address":"\\u9f3b\\u982d\\u8def\\u0032\\u0032\\u0037\\u4e4b\\u0034\\u865f\\u0031\\u6a13"}', '184210', '711', 'zh-tw', 1000),
(4499, 275, '17-275', 1, '侯硐', '{"number":"192945","shop":"\\u4faf\\u7850","phone":"0224975329","address":"\\u67f4\\u5bee\\u8def\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '192945', '711', 'zh-tw', 1000),
(4500, 275, '17-275', 1, '新建興', '{"number":"151841","shop":"\\u65b0\\u5efa\\u8208","phone":"0224570184","address":"\\u5927\\u57d4\\u8def\\u0031\\u0033\\u0038\\u865f"}', '151841', '711', 'zh-tw', 1000),
(4501, 275, '17-275', 1, '瑞濱', '{"number":"855033","shop":"\\u745e\\u6ff1","phone":"0224972897","address":"\\u6d77\\u6ff1\\u8def\\u0031\\u0035\\u0037\\u865f"}', '855033', '711', 'zh-tw', 1000),
(4502, 275, '17-275', 1, '九份', '{"number":"909541","shop":"\\u4e5d\\u4efd","phone":"0224061659","address":"\\u57fa\\u5c71\\u8857\\u0033\\u865f"}', '909541', '711', 'zh-tw', 1000),
(4503, 275, '17-275', 1, '瑞信', '{"number":"149011","shop":"\\u745e\\u4fe1","phone":"0224063884","address":"\\u6c11\\u751f\\u8857\\u0032\\u0033\\u865f"}', '149011', '711', 'zh-tw', 1000),
(4504, 275, '17-275', 1, '瑞芳', '{"number":"112189","shop":"\\u745e\\u82b3","phone":"0224063893","address":"\\u660e\\u71c8\\u8def\\u4e09\\u6bb5\\u0035\\u0032\\u865f\\u0035\\u0034\\u865f"}', '112189', '711', 'zh-tw', 1000),
(4505, 275, '17-275', 1, '瑞明', '{"number":"167938","shop":"\\u745e\\u660e","phone":"0224061545","address":"\\u660e\\u71c8\\u8def\\u4e09\\u6bb5\\u0038\\u0036\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '167938', '711', 'zh-tw', 1000),
(4506, 275, '17-275', 1, '三爪坑', '{"number":"126959","shop":"\\u4e09\\u722a\\u5751","phone":"0224978934","address":"\\u4e09\\u722a\\u5b50\\u5751\\u8def\\u0031\\u0035\\u865f\\u0031\\u0037\\u865f"}', '126959', '711', 'zh-tw', 1000),
(4507, 276, '17-276', 1, '豐康', '{"number":"959339","shop":"\\u8c50\\u5eb7","phone":"0226726462","address":"\\u6210\\u798f\\u8def\\u0032\\u0034\\u0031\\u865f"}', '959339', '711', 'zh-tw', 1000),
(4508, 276, '17-276', 1, '北霆', '{"number":"195885","shop":"\\u5317\\u9706","phone":"0226738703","address":"\\u5927\\u540c\\u8def\\u0032\\u0034\\u0034\\u865f\\u0031\\u6a13"}', '195885', '711', 'zh-tw', 1000),
(4509, 276, '17-276', 1, '峽太', '{"number":"111038","shop":"\\u5cfd\\u592a","phone":"0286711944","address":"\\u5927\\u540c\\u8def\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f"}', '111038', '711', 'zh-tw', 1000),
(4510, 276, '17-276', 1, '峽北', '{"number":"181417","shop":"\\u5cfd\\u5317","phone":"0286726321","address":"\\u5927\\u540c\\u8def\\u0039\\u865f\\u0031\\u6a13"}', '181417', '711', 'zh-tw', 1000),
(4511, 276, '17-276', 1, '大峽', '{"number":"188876","shop":"\\u5927\\u5cfd","phone":"0286722354","address":"\\u5927\\u5b78\\u8def\\u0031\\u0033\\u9130\\u0031\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '188876', '711', 'zh-tw', 1000),
(4512, 276, '17-276', 1, '新北大', '{"number":"177418","shop":"\\u65b0\\u5317\\u5927","phone":"0226714880","address":"\\u5927\\u5b78\\u8def\\u0031\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '177418', '711', 'zh-tw', 1000),
(4513, 276, '17-276', 1, '峽光', '{"number":"187976","shop":"\\u5cfd\\u5149","phone":"0286716051","address":"\\u5149\\u660e\\u8def\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '187976', '711', 'zh-tw', 1000),
(4514, 276, '17-276', 1, '御成', '{"number":"942515","shop":"\\u5fa1\\u6210","phone":"0286710784","address":"\\u570b\\u5149\\u8857\\u0033\\u0035\\u865f"}', '942515', '711', 'zh-tw', 1000),
(4515, 276, '17-276', 1, '龍恩', '{"number":"131249","shop":"\\u9f8d\\u6069","phone":"0286715410","address":"\\u570b\\u5b78\\u8857\\u0031\\u0033\\u865f"}', '131249', '711', 'zh-tw', 1000),
(4516, 276, '17-276', 1, '嘉添', '{"number":"137591","shop":"\\u5609\\u6dfb","phone":"0286714891","address":"\\u5609\\u6dfb\\u8def\\u0031\\u0030\\u0039\\u002d\\u0032\\u865f"}', '137591', '711', 'zh-tw', 1000),
(4517, 276, '17-276', 1, '成峽', '{"number":"179780","shop":"\\u6210\\u5cfd","phone":"0286767975","address":"\\u4ecb\\u58fd\\u8def\\u4e09\\u6bb5\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '179780', '711', 'zh-tw', 1000),
(4518, 276, '17-276', 1, '金銘', '{"number":"902241","shop":"\\u91d1\\u9298","phone":"0286741722","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u865f"}', '902241', '711', 'zh-tw', 1000),
(4519, 276, '17-276', 1, '福峽', '{"number":"122245","shop":"\\u798f\\u5cfd","phone":"0286720541","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '122245', '711', 'zh-tw', 1000),
(4520, 276, '17-276', 1, '新峽', '{"number":"174785","shop":"\\u65b0\\u5cfd","phone":"0226731461","address":"\\u6c11\\u6b0a\\u8857\\u0031\\u0038\\u0034\\u865f\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '174785', '711', 'zh-tw', 1000),
(4521, 276, '17-276', 1, '中園', '{"number":"121426","shop":"\\u4e2d\\u5712","phone":"0286715297","address":"\\u6c11\\u6b0a\\u8857\\u0032\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '121426', '711', 'zh-tw', 1000),
(4522, 276, '17-276', 1, '民昇', '{"number":"144706","shop":"\\u6c11\\u6607","phone":"0286713134","address":"\\u6c11\\u751f\\u8857\\u0031\\u0033\\u0036\\u865f"}', '144706', '711', 'zh-tw', 1000),
(4523, 276, '17-276', 1, '萬誠', '{"number":"185132","shop":"\\u842c\\u8aa0","phone":"0226748742","address":"\\u6c11\\u751f\\u8857\\u0032\\u0035\\u865f"}', '185132', '711', 'zh-tw', 1000),
(4524, 276, '17-276', 1, '歐洲', '{"number":"158336","shop":"\\u6b50\\u6d32","phone":"0226719429","address":"\\u4e09\\u6a39\\u8def\\u0031\\u0039\\u0039\\u865f"}', '158336', '711', 'zh-tw', 1000),
(4525, 276, '17-276', 1, '綠雅', '{"number":"959328","shop":"\\u7da0\\u96c5","phone":"0286715490","address":"\\u6587\\u5316\\u8def\\u0031\\u0032\\u0032\\u865f"}', '959328', '711', 'zh-tw', 1000),
(4526, 276, '17-276', 1, '榮泰', '{"number":"185925","shop":"\\u69ae\\u6cf0","phone":"0286711644","address":"\\u6587\\u5316\\u8def\\u0036\\u0033\\u865f\\u0036\\u0035\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '185925', '711', 'zh-tw', 1000),
(4527, 276, '17-276', 1, '橫溪', '{"number":"997962","shop":"\\u6a6b\\u6eaa","phone":"0286766628","address":"\\u6eaa\\u5317\\u8857\\u0031\\u0030\\u0039\\u865f"}', '997962', '711', 'zh-tw', 1000),
(4528, 276, '17-276', 1, '岩昇', '{"number":"126432","shop":"\\u5ca9\\u6607","phone":"0286761485","address":"\\u6eaa\\u6771\\u8def\\u0033\\u0030\\u0030\\u865f"}', '126432', '711', 'zh-tw', 1000),
(4529, 276, '17-276', 1, '北大成', '{"number":"187482","shop":"\\u5317\\u5927\\u6210","phone":"0286713490","address":"\\u5b78\\u6210\\u8def\\u0033\\u0030\\u0031\\u865f\\u0033\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '187482', '711', 'zh-tw', 1000),
(4530, 276, '17-276', 1, '學勤', '{"number":"982007","shop":"\\u5b78\\u52e4","phone":"0286721564","address":"\\u5b78\\u52e4\\u8def\\u0031\\u0030\\u0035\\u865f\\u53ca\\u5927\\u5fb7\\u8def\\u0032\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '982007', '711', 'zh-tw', 1000),
(4531, 276, '17-276', 1, '綠洲', '{"number":"861131","shop":"\\u7da0\\u6d32","phone":"0226717933","address":"\\u9cf6\\u5c71\\u91cc\\u0031\\u0032\\u9130\\u4e2d\\u5c71\\u8def\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '861131', '711', 'zh-tw', 1000),
(4532, 276, '17-276', 1, '恩主', '{"number":"148960","shop":"\\u6069\\u4e3b","phone":"0226721540","address":"\\u9cf6\\u5c71\\u91cc\\u0032\\u0031\\u9130\\u5fa9\\u8208\\u8def\\u0034\\u0034\\u0037\\u865f"}', '148960', '711', 'zh-tw', 1000),
(4533, 276, '17-276', 1, '華晟', '{"number":"195449","shop":"\\u83ef\\u665f","phone":"0286720824","address":"\\u4e2d\\u83ef\\u8def\\u0033\\u0038\\u4e4b\\u0031\\u865f\\u0033\\u0038\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '195449', '711', 'zh-tw', 1000),
(4534, 276, '17-276', 1, '冠綸', '{"number":"120412","shop":"\\u51a0\\u7db8","phone":"0286721694","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u0039\\u865f\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '120412', '711', 'zh-tw', 1000),
(4535, 276, '17-276', 1, '芳榮', '{"number":"185545","shop":"\\u82b3\\u69ae","phone":"0226741474","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0035\\u0033\\u0036\\u865f\\u0035\\u0033\\u0038\\u865f"}', '185545', '711', 'zh-tw', 1000),
(4536, 276, '17-276', 1, '天下', '{"number":"111913","shop":"\\u5929\\u4e0b","phone":"0226713245","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0030\\u865f\\u0031\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '111913', '711', 'zh-tw', 1000),
(4537, 277, '17-277', 1, '淺水灣', '{"number":"198873","shop":"\\u6dfa\\u6c34\\u7063","phone":"0286352497","address":"\\u4e2d\\u67f3\\u6751\\u5317\\u52e2\\u5b50\\u0034\\u0032\\u4e4b\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '198873', '711', 'zh-tw', 1000),
(4538, 277, '17-277', 1, '金芝', '{"number":"198585","shop":"\\u91d1\\u829d","phone":"0226364574","address":"\\u4e2d\\u8208\\u8857\\u4e00\\u6bb5\\u0032\\u865f"}', '198585', '711', 'zh-tw', 1000),
(4539, 277, '17-277', 1, '三芝', '{"number":"122360","shop":"\\u4e09\\u829d","phone":"0286353879","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '122360', '711', 'zh-tw', 1000),
(4540, 278, '17-278', 1, '泰和', '{"number":"977119","shop":"\\u6cf0\\u548c","phone":"0289762147","address":"\\u9577\\u5b89\\u8857\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '977119', '711', 'zh-tw', 1000),
(4541, 278, '17-278', 1, '長元', '{"number":"165666","shop":"\\u9577\\u5143","phone":"0229777863","address":"\\u9577\\u5143\\u8857\\u0032\\u002d\\u0032\\u865f"}', '165666', '711', 'zh-tw', 1000),
(4542, 278, '17-278', 1, '車路頭', '{"number":"845715","shop":"\\u8eca\\u8def\\u982d","phone":"0222800354","address":"\\u8eca\\u8def\\u982d\\u8857\\u0031\\u0033\\u0035\\u865f"}', '845715', '711', 'zh-tw', 1000),
(4543, 278, '17-278', 1, '清茂', '{"number":"875060","shop":"\\u6e05\\u8302","phone":"0229742235","address":"\\u6210\\u529f\\u8def\\u0031\\u0030\\u0036\\u865f\\u4e4b\\u0032"}', '875060', '711', 'zh-tw', 1000),
(4544, 278, '17-278', 1, '真旺', '{"number":"188418","shop":"\\u771f\\u65fa","phone":"0229742151","address":"\\u6210\\u529f\\u8def\\u0035\\u0030\\u5df7\\u0031\\u865f"}', '188418', '711', 'zh-tw', 1000),
(4545, 278, '17-278', 1, '美慈', '{"number":"158945","shop":"\\u7f8e\\u6148","phone":"0222860963","address":"\\u6148\\u611b\\u8857\\u0035\\u0032\\u865f"}', '158945', '711', 'zh-tw', 1000),
(4546, 278, '17-278', 1, '大智', '{"number":"948638","shop":"\\u5927\\u667a","phone":"0229836622","address":"\\u5927\\u540c\\u5317\\u8def\\u0036\\u0033\\u865f"}', '948638', '711', 'zh-tw', 1000),
(4547, 278, '17-278', 1, '興光', '{"number":"164696","shop":"\\u8208\\u5149","phone":"0229763955","address":"\\u5927\\u540c\\u5357\\u8def\\u0032\\u0032\\u0030\\u865f"}', '164696', '711', 'zh-tw', 1000),
(4548, 278, '17-278', 1, '三禾', '{"number":"131157","shop":"\\u4e09\\u79be","phone":"0229818723","address":"\\u5927\\u667a\\u8857\\u0031\\u0033\\u0039\\u865f\\u0031\\u0033\\u0039\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '131157', '711', 'zh-tw', 1000),
(4549, 278, '17-278', 1, '重智', '{"number":"122773","shop":"\\u91cd\\u667a","phone":"0229869556","address":"\\u5927\\u667a\\u8857\\u0031\\u0039\\u0035\\u865f"}', '122773', '711', 'zh-tw', 1000),
(4550, 278, '17-278', 1, '頂華', '{"number":"900924","shop":"\\u9802\\u83ef","phone":"0229875488","address":"\\u9802\\u5d01\\u8857\\u0031\\u0038\\u0039\\u865f"}', '900924', '711', 'zh-tw', 1000),
(4551, 278, '17-278', 1, '頂宏', '{"number":"181428","shop":"\\u9802\\u5b8f","phone":"0229869877","address":"\\u9802\\u5d01\\u8857\\u0032\\u0031\\u0030\\u5df7\\u0032\\u0033\\u5f04\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '181428', '711', 'zh-tw', 1000),
(4552, 278, '17-278', 1, '福運', '{"number":"165611","shop":"\\u798f\\u904b","phone":"0229741171","address":"\\u798f\\u5fb7\\u5317\\u8def\\u0035\\u0037\\u865f\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '165611', '711', 'zh-tw', 1000),
(4553, 278, '17-278', 1, '環德', '{"number":"189352","shop":"\\u74b0\\u5fb7","phone":"0229769304","address":"\\u798f\\u5fb7\\u5357\\u8def\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '189352', '711', 'zh-tw', 1000),
(4554, 278, '17-278', 1, '三田', '{"number":"195922","shop":"\\u4e09\\u7530","phone":"0229897011","address":"\\u798f\\u7530\\u91cc\\u4e09\\u6c11\\u8857\\u0032\\u0037\\u0034\\u865f\\u0032\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '195922', '711', 'zh-tw', 1000),
(4555, 278, '17-278', 1, '復貴', '{"number":"190525","shop":"\\u5fa9\\u8cb4","phone":"0285124863","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0036\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '190525', '711', 'zh-tw', 1000),
(4556, 278, '17-278', 1, '登頂', '{"number":"164180","shop":"\\u767b\\u9802","phone":"0285121927","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0032\\u865f"}', '164180', '711', 'zh-tw', 1000),
(4557, 278, '17-278', 1, '先嗇宮', '{"number":"197054","shop":"\\u5148\\u55c7\\u5bae","phone":"0229990523","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0032\\u0035\\u865f\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '197054', '711', 'zh-tw', 1000),
(4558, 278, '17-278', 1, '頂崁', '{"number":"174660","shop":"\\u9802\\u5d01","phone":"0285112088","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '174660', '711', 'zh-tw', 1000),
(4559, 278, '17-278', 1, '集興', '{"number":"174741","shop":"\\u96c6\\u8208","phone":"0229743480","address":"\\u5149\\u660e\\u91cc\\u0032\\u0034\\u9130\\u96c6\\u7f8e\\u8857\\u0032\\u0030\\u0032\\u865f"}', '174741', '711', 'zh-tw', 1000),
(4560, 278, '17-278', 1, '集美', '{"number":"976105","shop":"\\u96c6\\u7f8e","phone":"0229772012","address":"\\u96c6\\u7f8e\\u8857\\u0031\\u0030\\u0037\\u865f"}', '976105', '711', 'zh-tw', 1000),
(4561, 278, '17-278', 1, '美吉', '{"number":"199832","shop":"\\u7f8e\\u5409","phone":"0229741941","address":"\\u96c6\\u7f8e\\u8857\\u0032\\u0032\\u0033\\u865f\\u0032\\u0032\\u0035\\u865f"}', '199832', '711', 'zh-tw', 1000),
(4562, 278, '17-278', 1, '川詠山', '{"number":"180953","shop":"\\u5ddd\\u8a60\\u5c71","phone":"0228577239","address":"\\u96c6\\u8ce2\\u8def\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '180953', '711', 'zh-tw', 1000),
(4563, 278, '17-278', 1, '立行', '{"number":"126616","shop":"\\u7acb\\u884c","phone":"0282839480","address":"\\u529b\\u884c\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0038\\u865f\\u0031\\u0036\\u0030\\u865f"}', '126616', '711', 'zh-tw', 1000),
(4564, 278, '17-278', 1, '大立', '{"number":"195302","shop":"\\u5927\\u7acb","phone":"0229860146","address":"\\u529b\\u884c\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0034\\u865f\\u0031\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '195302', '711', 'zh-tw', 1000),
(4565, 278, '17-278', 1, '立福', '{"number":"189466","shop":"\\u7acb\\u798f","phone":"0229847213","address":"\\u529b\\u884c\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u4e4b\\u0031\\u865f\\u0036\\u0030\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '189466', '711', 'zh-tw', 1000),
(4566, 278, '17-278', 1, '六張街', '{"number":"197504","shop":"\\u516d\\u5f35\\u8857","phone":"0289851895","address":"\\u516d\\u5f35\\u8857\\u0032\\u0035\\u0035\\u5df7\\u0031\\u0037\\u5f04\\u0031\\u865f\\u0031\\u6a13\\u0032\\u0035\\u0035\\u5df7\\u0031\\u0035\\u865f"}', '197504', '711', 'zh-tw', 1000),
(4567, 278, '17-278', 1, '龍濱', '{"number":"144289","shop":"\\u9f8d\\u6ff1","phone":"0229769472","address":"\\u9f8d\\u6ff1\\u8def\\u0032\\u0030\\u0037\\u865f\\u0032\\u0030\\u0039\\u865f"}', '144289', '711', 'zh-tw', 1000),
(4568, 278, '17-278', 1, '福濱', '{"number":"188809","shop":"\\u798f\\u6ff1","phone":"0229761371","address":"\\u9f8d\\u6ff1\\u8def\\u0035\\u0031\\u865f\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '188809', '711', 'zh-tw', 1000),
(4569, 278, '17-278', 1, '天龍', '{"number":"957333","shop":"\\u5929\\u9f8d","phone":"0229775504","address":"\\u9f8d\\u9580\\u8def\\u0032\\u0031\\u0037\\u865f\\u0032\\u0031\\u0039\\u865f\\u0032\\u0032\\u0031\\u865f"}', '957333', '711', 'zh-tw', 1000),
(4570, 278, '17-278', 1, '高仁', '{"number":"846420","shop":"\\u9ad8\\u4ec1","phone":"0229875145","address":"\\u4ec1\\u611b\\u8857\\u0032\\u0037\\u0034\\u865f"}', '846420', '711', 'zh-tw', 1000),
(4571, 278, '17-278', 1, '竑嘉', '{"number":"187035","shop":"\\u7ad1\\u5609","phone":"0229752331","address":"\\u4ec1\\u611b\\u8857\\u0033\\u0032\\u865f\\u4e4b\\u0031"}', '187035', '711', 'zh-tw', 1000),
(4572, 278, '17-278', 1, '分子尾', '{"number":"120700","shop":"\\u5206\\u5b50\\u5c3e","phone":"0289857944","address":"\\u4ec1\\u611b\\u8857\\u0034\\u0037\\u0039\\u865f\\u0034\\u0037\\u0039\\u4e4b\\u0031\\u865f"}', '120700', '711', 'zh-tw', 1000),
(4573, 278, '17-278', 1, '仁仁', '{"number":"991654","shop":"\\u4ec1\\u4ec1","phone":"0229763564","address":"\\u4ec1\\u611b\\u8857\\u0035\\u0030\\u865f"}', '991654', '711', 'zh-tw', 1000),
(4574, 278, '17-278', 1, '天勝', '{"number":"996969","shop":"\\u5929\\u52dd","phone":"0228571747","address":"\\u4ec1\\u611b\\u8857\\u0036\\u0038\\u0037\\u865f"}', '996969', '711', 'zh-tw', 1000),
(4575, 278, '17-278', 1, '天台', '{"number":"189123","shop":"\\u5929\\u53f0","phone":"0229771812","address":"\\u4ec1\\u5fb7\\u91cc\\u6b63\\u7fa9\\u5357\\u8def\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '189123', '711', 'zh-tw', 1000),
(4576, 278, '17-278', 1, '原億', '{"number":"192761","shop":"\\u539f\\u5104","phone":"0229766182","address":"\\u4ec1\\u548c\\u8857\\u0039\\u0035\\u865f\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '192761', '711', 'zh-tw', 1000),
(4577, 278, '17-278', 1, '大興', '{"number":"130143","shop":"\\u5927\\u8208","phone":"0228577324","address":"\\u4ec1\\u83ef\\u8857\\u0038\\u0030\\u5df7\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '130143', '711', 'zh-tw', 1000),
(4578, 278, '17-278', 1, '百利', '{"number":"137720","shop":"\\u767e\\u5229","phone":"0289827881","address":"\\u4ec1\\u7fa9\\u8857\\u0032\\u0030\\u0038\\u865f"}', '137720', '711', 'zh-tw', 1000),
(4579, 278, '17-278', 1, '百義', '{"number":"971100","shop":"\\u767e\\u7fa9","phone":"0289859414","address":"\\u4ec1\\u7fa9\\u8857\\u0032\\u0033\\u0032\\u865f"}', '971100', '711', 'zh-tw', 1000),
(4580, 278, '17-278', 1, '長泰', '{"number":"195162","shop":"\\u9577\\u6cf0","phone":"0229746205","address":"\\u4e09\\u548c\\u8def\\u0032\\u6bb5\\u0031\\u0032\\u0035\\u865f\\u0031\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '195162', '711', 'zh-tw', 1000),
(4581, 278, '17-278', 1, '長揚', '{"number":"187297","shop":"\\u9577\\u63da","phone":"0229786970","address":"\\u4e09\\u548c\\u8def\\u4e8c\\u6bb5\\u0036\\u865f\\u4e4b\\u0032"}', '187297', '711', 'zh-tw', 1000),
(4582, 278, '17-278', 1, '重運', '{"number":"118408","shop":"\\u91cd\\u904b","phone":"0222860431","address":"\\u4e09\\u548c\\u8def\\u56db\\u6bb5\\u0031\\u0031\\u0031\\u002d\\u0031\\u53ca\\u0031\\u0031\\u0031\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '118408', '711', 'zh-tw', 1000),
(4583, 278, '17-278', 1, '匯和', '{"number":"117966","shop":"\\u532f\\u548c","phone":"0222865428","address":"\\u4e09\\u548c\\u8def\\u56db\\u6bb5\\u0033\\u0039\\u0030\\u5df7\\u0032\\u865f"}', '117966', '711', 'zh-tw', 1000),
(4584, 278, '17-278', 1, '荷運', '{"number":"181358","shop":"\\u8377\\u904b","phone":"0222809692","address":"\\u4e09\\u548c\\u8def\\u56db\\u6bb5\\u0039\\u0037\\u865f\\u002e\\u0039\\u0037\\u4e4b\\u0031\\u002e\\u0039\\u0037\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '181358', '711', 'zh-tw', 1000),
(4585, 278, '17-278', 1, '陡門頭', '{"number":"171281","shop":"\\u9661\\u9580\\u982d","phone":"0229832749","address":"\\u4e09\\u6c11\\u8857\\u0033\\u0032\\u0039\\u865f"}', '171281', '711', 'zh-tw', 1000),
(4586, 278, '17-278', 1, '集吉', '{"number":"170200","shop":"\\u96c6\\u5409","phone":"0228570294","address":"\\u4e09\\u8ce2\\u8857\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '170200', '711', 'zh-tw', 1000),
(4587, 278, '17-278', 1, '重樂', '{"number":"198954","shop":"\\u91cd\\u6a02","phone":"0228559436","address":"\\u4e09\\u4fe1\\u8def\\u0031\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '198954', '711', 'zh-tw', 1000),
(4588, 278, '17-278', 1, '新陽', '{"number":"190190","shop":"\\u65b0\\u967d","phone":"0229898294","address":"\\u4e09\\u967d\\u8def\\u0036\\u0032\\u865f\\u0036\\u0034\\u865f"}', '190190', '711', 'zh-tw', 1000),
(4589, 278, '17-278', 1, '文興', '{"number":"893873","shop":"\\u6587\\u8208","phone":"0289727842","address":"\\u6587\\u5316\\u5357\\u8def\\u0037\\u865f"}', '893873', '711', 'zh-tw', 1000),
(4590, 278, '17-278', 1, '富仟', '{"number":"186412","shop":"\\u5bcc\\u4edf","phone":"0229990329","address":"\\u4e94\\u8c37\\u738b\\u5317\\u8857\\u0031\\u0033\\u0039\\u865f"}', '186412', '711', 'zh-tw', 1000),
(4591, 278, '17-278', 1, '五華', '{"number":"996132","shop":"\\u4e94\\u83ef","phone":"0229889366","address":"\\u4e94\\u83ef\\u8857\\u0031\\u0034\\u0038\\u865f"}', '996132', '711', 'zh-tw', 1000),
(4592, 278, '17-278', 1, '重華', '{"number":"147440","shop":"\\u91cd\\u83ef","phone":"0228579451","address":"\\u4e94\\u83ef\\u8857\\u0031\\u0038\\u0031\\u865f\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '147440', '711', 'zh-tw', 1000),
(4593, 278, '17-278', 1, '慈佑', '{"number":"114174","shop":"\\u6148\\u4f51","phone":"0289852194","address":"\\u6eaa\\u5c3e\\u8857\\u0031\\u0038\\u0039\\u865f\\u0031\\u0039\\u0031\\u865f"}', '114174', '711', 'zh-tw', 1000),
(4594, 278, '17-278', 1, '幸亞', '{"number":"119032","shop":"\\u5e78\\u4e9e","phone":"0289853160","address":"\\u6eaa\\u5c3e\\u8857\\u0032\\u0039\\u865f"}', '119032', '711', 'zh-tw', 1000),
(4595, 278, '17-278', 1, '重富', '{"number":"190400","shop":"\\u91cd\\u5bcc","phone":"0228571641","address":"\\u6eaa\\u5c3e\\u8857\\u0033\\u0032\\u0031\\u865f\\u0033\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '190400', '711', 'zh-tw', 1000),
(4596, 278, '17-278', 1, '下竹圍', '{"number":"171568","shop":"\\u4e0b\\u7af9\\u570d","phone":"0222800646","address":"\\u4e0b\\u7af9\\u570d\\u8857\\u0032\\u0036\\u865f"}', '171568', '711', 'zh-tw', 1000),
(4597, 278, '17-278', 1, '前瞻', '{"number":"173667","shop":"\\u524d\\u77bb","phone":"0229996424","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e8c\\u6bb5\\u0032\\u0035\\u0038\\u865f"}', '173667', '711', 'zh-tw', 1000),
(4598, 278, '17-278', 1, '銀座', '{"number":"947369","shop":"\\u9280\\u5ea7","phone":"0229714834","address":"\\u4fe1\\u7fa9\\u897f\\u8857\\u0034\\u865f"}', '947369', '711', 'zh-tw', 1000),
(4599, 278, '17-278', 1, '合康', '{"number":"179632","shop":"\\u5408\\u5eb7","phone":"0222807405","address":"\\u6c38\\u798f\\u8857\\u0031\\u0037\\u0039\\u4e4b\\u0031\\u53ca\\u0031\\u0037\\u0039\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '179632', '711', 'zh-tw', 1000),
(4600, 278, '17-278', 1, '長壽', '{"number":"167949","shop":"\\u9577\\u58fd","phone":"0229817585","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0031\\u0039\\u0038\\u865f\\u0032\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '167949', '711', 'zh-tw', 1000),
(4601, 278, '17-278', 1, '三安', '{"number":"128863","shop":"\\u4e09\\u5b89","phone":"0229835596","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0032\\u0033\\u0035\\u865f"}', '128863', '711', 'zh-tw', 1000),
(4602, 278, '17-278', 1, '正龍', '{"number":"171225","shop":"\\u6b63\\u9f8d","phone":"0289814199","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0033\\u0033\\u0032\\u865f"}', '171225', '711', 'zh-tw', 1000),
(4603, 278, '17-278', 1, '正陽', '{"number":"855217","shop":"\\u6b63\\u967d","phone":"0229822396","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0033\\u0038\\u0036\\u865f\\u0033\\u0038\\u0038\\u865f"}', '855217', '711', 'zh-tw', 1000),
(4604, 278, '17-278', 1, '平安', '{"number":"962586","shop":"\\u5e73\\u5b89","phone":"0229871687","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0035\\u0031\\u865f"}', '962586', '711', 'zh-tw', 1000),
(4605, 278, '17-278', 1, '義北', '{"number":"195151","shop":"\\u7fa9\\u5317","phone":"0229812234","address":"\\u6b63\\u7fa9\\u5317\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '195151', '711', 'zh-tw', 1000),
(4606, 278, '17-278', 1, '三重一', '{"number":"183893","shop":"\\u4e09\\u91cd\\u4e00","phone":"0229747875","address":"\\u6b63\\u7fa9\\u5357\\u8def\\u0031\\u0033\\u0033\\u865f\\u0031\\u0033\\u0035\\u865f"}', '183893', '711', 'zh-tw', 1000),
(4607, 278, '17-278', 1, '正南', '{"number":"119755","shop":"\\u6b63\\u5357","phone":"0229762825","address":"\\u6b63\\u7fa9\\u5357\\u8def\\u0036\\u0037\\u865f\\u0036\\u0039\\u865f"}', '119755', '711', 'zh-tw', 1000),
(4608, 278, '17-278', 1, '新洛華', '{"number":"130350","shop":"\\u65b0\\u6d1b\\u83ef","phone":"0229844685","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0031\\u0033\\u865f\\u0031\\u0031\\u0035\\u865f"}', '130350', '711', 'zh-tw', 1000),
(4609, 278, '17-278', 1, '興頂', '{"number":"188245","shop":"\\u8208\\u9802","phone":"0229990814","address":"\\u4e2d\\u8208\\u5317\\u8857\\u0031\\u0037\\u0037\\u865f"}', '188245', '711', 'zh-tw', 1000),
(4610, 278, '17-278', 1, '愛家', '{"number":"187415","shop":"\\u611b\\u5bb6","phone":"0285110144","address":"\\u4e2d\\u8208\\u5317\\u8857\\u0034\\u0032\\u5df7\\u0031\\u0031\\u865f"}', '187415', '711', 'zh-tw', 1000),
(4611, 278, '17-278', 1, '正果', '{"number":"154862","shop":"\\u6b63\\u679c","phone":"0289859885","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0031\\u0032\\u0032\\u865f\\u0031\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '154862', '711', 'zh-tw', 1000),
(4612, 278, '17-278', 1, '正孝', '{"number":"164238","shop":"\\u6b63\\u5b5d","phone":"0229867748","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0033\\u865f"}', '164238', '711', 'zh-tw', 1000),
(4613, 278, '17-278', 1, '日揚', '{"number":"164537","shop":"\\u65e5\\u63da","phone":"0289852787","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0031\\u0038\\u4e4b\\u0032\\u865f\\u4e4b\\u0033\\u865f\\u4e4b\\u0034\\u865f\\u0031\\u6a13"}', '164537', '711', 'zh-tw', 1000),
(4614, 278, '17-278', 1, '虹諭', '{"number":"113539","shop":"\\u8679\\u8aed","phone":"0229848146","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0031\\u0039\\u0033\\u5df7\\u0032\\u0031\\u5f04\\u0034\\u0033\\u865f"}', '113539', '711', 'zh-tw', 1000),
(4615, 278, '17-278', 1, '正大', '{"number":"996338","shop":"\\u6b63\\u5927","phone":"0229841990","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u0032\\u0033\\u0035\\u865f"}', '996338', '711', 'zh-tw', 1000),
(4616, 278, '17-278', 1, '中南', '{"number":"119179","shop":"\\u4e2d\\u5357","phone":"0229754553","address":"\\u4e2d\\u6b63\\u5357\\u8def\\u0032\\u0034\\u0038\\u002d\\u0031\\u865f\\u0032\\u0034\\u0038\\u002d\\u0032\\u865f"}', '119179', '711', 'zh-tw', 1000),
(4617, 278, '17-278', 1, '健華', '{"number":"116675","shop":"\\u5065\\u83ef","phone":"0289825067","address":"\\u5fe0\\u5b5d\\u8def\\u4e8c\\u6bb5\\u0036\\u0033\\u865f"}', '116675', '711', 'zh-tw', 1000),
(4618, 278, '17-278', 1, '明益', '{"number":"888158","shop":"\\u660e\\u76ca","phone":"0289882175","address":"\\u5fe0\\u5b5d\\u8def\\u4e09\\u6bb5\\u0036\\u0031\\u865f"}', '888158', '711', 'zh-tw', 1000),
(4619, 278, '17-278', 1, '重安', '{"number":"173999","shop":"\\u91cd\\u5b89","phone":"0229724075","address":"\\u91cd\\u5b89\\u8857\\u0036\\u0030\\u865f\\u53ca\\u0036\\u0030\\u002d\\u0031\\u865f"}', '173999', '711', 'zh-tw', 1000),
(4620, 278, '17-278', 1, '湯城', '{"number":"182605","shop":"\\u6e6f\\u57ce","phone":"0229995017","address":"\\u91cd\\u65b0\\u8def\\u0035\\u6bb5\\u0036\\u0030\\u0039\\u5df7\\u0031\\u0036\\u4e4b\\u0037\\u865f\\u0031\\u6a13"}', '182605', '711', 'zh-tw', 1000),
(4621, 278, '17-278', 1, '三重', '{"number":"989411","shop":"\\u4e09\\u91cd","phone":"0229727244","address":"\\u91cd\\u65b0\\u8def\\u4e09\\u6bb5\\u0031\\u0038\\u865f"}', '989411', '711', 'zh-tw', 1000),
(4622, 278, '17-278', 1, '星光美', '{"number":"196888","shop":"\\u661f\\u5149\\u7f8e","phone":"0229862812","address":"\\u91cd\\u65b0\\u8def\\u4e09\\u6bb5\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '196888', '711', 'zh-tw', 1000),
(4623, 278, '17-278', 1, '重美', '{"number":"142135","shop":"\\u91cd\\u7f8e","phone":"0229748754","address":"\\u91cd\\u65b0\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0030\\u865f\\u0031\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '142135', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(4624, 278, '17-278', 1, '重新', '{"number":"149284","shop":"\\u91cd\\u65b0","phone":"0229717873","address":"\\u91cd\\u65b0\\u8def\\u56db\\u6bb5\\u0034\\u0035\\u865f"}', '149284', '711', 'zh-tw', 1000),
(4625, 278, '17-278', 1, '湯旺', '{"number":"116538","shop":"\\u6e6f\\u65fa","phone":"0222789758","address":"\\u91cd\\u65b0\\u8def\\u4e94\\u6bb5\\u0036\\u0030\\u0039\\u5df7\\u0032\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '116538', '711', 'zh-tw', 1000),
(4626, 278, '17-278', 1, '修德', '{"number":"174213","shop":"\\u4fee\\u5fb7","phone":"0229874770","address":"\\u91cd\\u967d\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '174213', '711', 'zh-tw', 1000),
(4627, 278, '17-278', 1, '興園', '{"number":"201025","shop":"\\u8208\\u5712","phone":"0229846951","address":"\\u91cd\\u967d\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0032\\u865f\\u0031\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '201025', '711', 'zh-tw', 1000),
(4628, 278, '17-278', 1, '鑫強', '{"number":"985545","shop":"\\u946b\\u5f37","phone":"0229869271","address":"\\u81ea\\u5f37\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u865f\\u0033\\u0032\\u865f"}', '985545', '711', 'zh-tw', 1000),
(4629, 278, '17-278', 1, '三好', '{"number":"159465","shop":"\\u4e09\\u597d","phone":"0289857653","address":"\\u81ea\\u5f37\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0032\\u865f\\u0031\\u0030\\u0034\\u865f\\u0031\\u6a13"}', '159465', '711', 'zh-tw', 1000),
(4630, 278, '17-278', 1, '幸福', '{"number":"832498","shop":"\\u5e78\\u798f","phone":"0229860690","address":"\\u81ea\\u5f37\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0032\\u865f"}', '832498', '711', 'zh-tw', 1000),
(4631, 278, '17-278', 1, '正強', '{"number":"189824","shop":"\\u6b63\\u5f37","phone":"0229817723","address":"\\u81ea\\u5f37\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u865f\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '189824', '711', 'zh-tw', 1000),
(4632, 279, '17-279', 1, '北深', '{"number":"187622","shop":"\\u5317\\u6df1","phone":"0226640166","address":"\\u5317\\u6df1\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0033\\u865f"}', '187622', '711', 'zh-tw', 1000),
(4633, 279, '17-279', 1, '深坑', '{"number":"162313","shop":"\\u6df1\\u5751","phone":"0226624509","address":"\\u5317\\u6df1\\u8def\\u4e09\\u6bb5\\u0031\\u0034\\u0035\\u865f"}', '162313', '711', 'zh-tw', 1000),
(4634, 279, '17-279', 1, '萬順', '{"number":"143024","shop":"\\u842c\\u9806","phone":"0226647847","address":"\\u5317\\u6df1\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0038\\u865f\\u0032\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '143024', '711', 'zh-tw', 1000),
(4635, 279, '17-279', 1, '真誠', '{"number":"880833","shop":"\\u771f\\u8aa0","phone":"0226642915","address":"\\u5317\\u6df1\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u0033\\u865f"}', '880833', '711', 'zh-tw', 1000),
(4636, 279, '17-279', 1, '鑫庫', '{"number":"901330","shop":"\\u946b\\u5eab","phone":"0226645927","address":"\\u5317\\u6df1\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0038\\u865f\\u0031\\u0032\\u0030\\u865f"}', '901330', '711', 'zh-tw', 1000),
(4637, 279, '17-279', 1, '埔昇', '{"number":"963567","shop":"\\u57d4\\u6607","phone":"0226645677","address":"\\u57d4\\u65b0\\u8857\\u0036\\u0033\\u865f"}', '963567', '711', 'zh-tw', 1000),
(4638, 279, '17-279', 1, '平埔', '{"number":"127435","shop":"\\u5e73\\u57d4","phone":"0226645195","address":"\\u6587\\u5316\\u8857\\u0038\\u0032\\u865f"}', '127435', '711', 'zh-tw', 1000),
(4639, 280, '17-280', 1, '錠富', '{"number":"146517","shop":"\\u9320\\u5bcc","phone":"0226633273","address":"\\u9686\\u76db\\u6751\\u96d9\\u6eaa\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '146517', '711', 'zh-tw', 1000),
(4640, 281, '17-281', 1, '石門', '{"number":"909390","shop":"\\u77f3\\u9580","phone":"0226383480","address":"\\u4e2d\\u5c71\\u8def\\u0037\\u0038\\u865f"}', '909390', '711', 'zh-tw', 1000),
(4641, 282, '17-282', 1, '樹保', '{"number":"923097","shop":"\\u6a39\\u4fdd","phone":"0286884493","address":"\\u4fdd\\u5b89\\u8857\\u4e8c\\u6bb5\\u0033\\u0035\\u0037\\u865f"}', '923097', '711', 'zh-tw', 1000),
(4642, 282, '17-282', 1, '新樹工', '{"number":"164917","shop":"\\u65b0\\u6a39\\u5de5","phone":"0226851613","address":"\\u4fdd\\u5b89\\u8857\\u4e8c\\u6bb5\\u0036\\u865f"}', '164917', '711', 'zh-tw', 1000),
(4643, 282, '17-282', 1, '慶嶸', '{"number":"130615","shop":"\\u6176\\u5db8","phone":"0226853064","address":"\\u4fdd\\u5b89\\u8857\\u4e00\\u6bb5\\u0033\\u0032\\u0033\\u865f\\u0033\\u0032\\u0033\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '130615', '711', 'zh-tw', 1000),
(4644, 282, '17-282', 1, '樹林', '{"number":"174637","shop":"\\u6a39\\u6797","phone":"0226873876","address":"\\u4fdd\\u5b89\\u8857\\u4e00\\u6bb5\\u0033\\u865f"}', '174637', '711', 'zh-tw', 1000),
(4645, 282, '17-282', 1, '博林', '{"number":"195553","shop":"\\u535a\\u6797","phone":"0286755145","address":"\\u535a\\u611b\\u8857\\u0031\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '195553', '711', 'zh-tw', 1000),
(4646, 282, '17-282', 1, '新宇鈞', '{"number":"971133","shop":"\\u65b0\\u5b87\\u921e","phone":"0226754414","address":"\\u5927\\u5b89\\u8def\\u0031\\u0031\\u0035\\u865f\\u0031\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '971133', '711', 'zh-tw', 1000),
(4647, 282, '17-282', 1, '樹安', '{"number":"992576","shop":"\\u6a39\\u5b89","phone":"0226810554","address":"\\u5927\\u5b89\\u8def\\u0035\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '992576', '711', 'zh-tw', 1000),
(4648, 282, '17-282', 1, '樹英', '{"number":"936303","shop":"\\u6a39\\u82f1","phone":"0286866284","address":"\\u5927\\u540c\\u91cc\\u4e2d\\u83ef\\u8def\\u0031\\u0032\\u0030\\u865f"}', '936303', '711', 'zh-tw', 1000),
(4649, 282, '17-282', 1, '學林', '{"number":"119238","shop":"\\u5b78\\u6797","phone":"0226687903","address":"\\u5927\\u96c5\\u8def\\u0033\\u0034\\u0031\\u865f\\u0033\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '119238', '711', 'zh-tw', 1000),
(4650, 282, '17-282', 1, '友勤', '{"number":"131940","shop":"\\u53cb\\u52e4","phone":"0289701627","address":"\\u5927\\u6709\\u8def\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '131940', '711', 'zh-tw', 1000),
(4651, 282, '17-282', 1, '榮德', '{"number":"932482","shop":"\\u69ae\\u5fb7","phone":"0286851196","address":"\\u6771\\u69ae\\u8857\\u0038\\u002d\\u0031\\u0030\\u865f"}', '932482', '711', 'zh-tw', 1000),
(4652, 282, '17-282', 1, '順興', '{"number":"891280","shop":"\\u9806\\u8208","phone":"0286869460","address":"\\u6771\\u8208\\u8857\\u0034\\u0031\\u865f"}', '891280', '711', 'zh-tw', 1000),
(4653, 282, '17-282', 1, '復育', '{"number":"182812","shop":"\\u5fa9\\u80b2","phone":"0226855167","address":"\\u5fa9\\u8208\\u8def\\u0032\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '182812', '711', 'zh-tw', 1000),
(4654, 282, '17-282', 1, '樹復', '{"number":"198736","shop":"\\u6a39\\u5fa9","phone":"0226874232","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0034\\u0030\\u865f"}', '198736', '711', 'zh-tw', 1000),
(4655, 282, '17-282', 1, '昌展', '{"number":"165770","shop":"\\u660c\\u5c55","phone":"0226819109","address":"\\u5fa9\\u8208\\u8def\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '165770', '711', 'zh-tw', 1000),
(4656, 282, '17-282', 1, '大東圓', '{"number":"164386","shop":"\\u5927\\u6771\\u5713","phone":"0226809701","address":"\\u67d1\\u5712\\u8857\\u4e00\\u6bb5\\u0036\\u0037\\u865f\\u0036\\u0037\\u002d\\u0031\\u865f\\u0036\\u0037\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '164386', '711', 'zh-tw', 1000),
(4657, 282, '17-282', 1, '武林', '{"number":"916468","shop":"\\u6b66\\u6797","phone":"0226887713","address":"\\u5149\\u83ef\\u8857\\u0032\\u865f\\u0034\\u865f"}', '916468', '711', 'zh-tw', 1000),
(4658, 282, '17-282', 1, '凱園', '{"number":"113894","shop":"\\u51f1\\u5712","phone":"0286849170","address":"\\u570b\\u51f1\\u8857\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '113894', '711', 'zh-tw', 1000),
(4659, 282, '17-282', 1, '御昇', '{"number":"116697","shop":"\\u5fa1\\u6607","phone":"0226809307","address":"\\u4f73\\u5712\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '116697', '711', 'zh-tw', 1000),
(4660, 282, '17-282', 1, '大智通', '{"number":"151003","shop":"\\u5927\\u667a\\u901a","phone":"0226685036","address":"\\u4f73\\u5712\\u8def\\u4e8c\\u6bb5\\u0037\\u0030\\u002d\\u0031\\u865f"}', '151003', '711', 'zh-tw', 1000),
(4661, 282, '17-282', 1, '樹佳', '{"number":"180414","shop":"\\u6a39\\u4f73","phone":"0226684654","address":"\\u4f73\\u5712\\u8def\\u4e09\\u6bb5\\u0033\\u0031\\u4e4b\\u0031\\u865f"}', '180414', '711', 'zh-tw', 1000),
(4662, 282, '17-282', 1, '佳辰', '{"number":"116594","shop":"\\u4f73\\u8fb0","phone":"0289700664","address":"\\u4f73\\u5712\\u8def\\u4e09\\u6bb5\\u0034\\u0038\\u0038\\u865f"}', '116594', '711', 'zh-tw', 1000),
(4663, 282, '17-282', 1, '樹園', '{"number":"975331","shop":"\\u6a39\\u5712","phone":"0226806053","address":"\\u4f73\\u5712\\u8def\\u4e00\\u6bb5\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '975331', '711', 'zh-tw', 1000),
(4664, 282, '17-282', 1, '俊安', '{"number":"111371","shop":"\\u4fca\\u5b89","phone":"0226756413","address":"\\u4fca\\u82f1\\u8857\\u0031\\u0035\\u0036\\u865f"}', '111371', '711', 'zh-tw', 1000),
(4665, 282, '17-282', 1, '大展', '{"number":"200653","shop":"\\u5927\\u5c55","phone":"0286874074","address":"\\u4fca\\u82f1\\u8857\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '200653', '711', 'zh-tw', 1000),
(4666, 282, '17-282', 1, '千歲', '{"number":"846235","shop":"\\u5343\\u6b72","phone":"0226829285","address":"\\u5343\\u6b72\\u8857\\u0032\\u0036\\u002d\\u0031\\u0030\\u865f"}', '846235', '711', 'zh-tw', 1000),
(4667, 282, '17-282', 1, 'TBI', '{"number":"183619","shop":"\\u0054\\u0042\\u0049","phone":"0226886797","address":"\\u4e09\\u591a\\u8def\\u0031\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '183619', '711', 'zh-tw', 1000),
(4668, 282, '17-282', 1, '福多', '{"number":"158473","shop":"\\u798f\\u591a","phone":"0286884842","address":"\\u4e09\\u798f\\u8857\\u0033\\u0039\\u865f\\u0034\\u0031\\u865f"}', '158473', '711', 'zh-tw', 1000),
(4669, 282, '17-282', 1, '合喬', '{"number":"173704","shop":"\\u5408\\u55ac","phone":"0286882331","address":"\\u4e09\\u798f\\u8857\\u0036\\u0038\\u865f"}', '173704', '711', 'zh-tw', 1000),
(4670, 282, '17-282', 1, '俊興', '{"number":"118475","shop":"\\u4fca\\u8208","phone":"0226897687","address":"\\u4e09\\u4fca\\u8857\\u0031\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '118475', '711', 'zh-tw', 1000),
(4671, 282, '17-282', 1, '俊龍', '{"number":"953928","shop":"\\u4fca\\u9f8d","phone":"0286881124","address":"\\u4e09\\u4fca\\u8857\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '953928', '711', 'zh-tw', 1000),
(4672, 282, '17-282', 1, '龍興', '{"number":"199072","shop":"\\u9f8d\\u8208","phone":"0226891028","address":"\\u4e09\\u8208\\u91cc\\u9f8d\\u8208\\u8857\\u0033\\u0033\\u865f"}', '199072', '711', 'zh-tw', 1000),
(4673, 282, '17-282', 1, '三暉', '{"number":"934606","shop":"\\u4e09\\u6689","phone":"0226868745","address":"\\u6a39\\u798f\\u91cc\\u5fa9\\u8208\\u8def\\u0031\\u865f"}', '934606', '711', 'zh-tw', 1000),
(4674, 282, '17-282', 1, '樹新', '{"number":"164397","shop":"\\u6a39\\u65b0","phone":"0226812205","address":"\\u6a39\\u65b0\\u8def\\u0032\\u0034\\u0035\\u865f"}', '164397', '711', 'zh-tw', 1000),
(4675, 282, '17-282', 1, '佳宏', '{"number":"941567","shop":"\\u4f73\\u5b8f","phone":"0286868619","address":"\\u592a\\u5e73\\u8def\\u0031\\u0035\\u0030\\u5df7\\u0031\\u865f"}', '941567', '711', 'zh-tw', 1000),
(4676, 282, '17-282', 1, '太順', '{"number":"188016","shop":"\\u592a\\u9806","phone":"0286847720","address":"\\u592a\\u9806\\u8857\\u0034\\u0039\\u5df7\\u0032\\u865f"}', '188016', '711', 'zh-tw', 1000),
(4677, 282, '17-282', 1, '昌聖', '{"number":"130268","shop":"\\u660c\\u8056","phone":"0286754204","address":"\\u6587\\u5316\\u8857\\u0032\\u0031\\u865f\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '130268', '711', 'zh-tw', 1000),
(4678, 282, '17-282', 1, '城雅', '{"number":"111946","shop":"\\u57ce\\u96c5","phone":"0289706098","address":"\\u5b78\\u6210\\u8def\\u0035\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '111946', '711', 'zh-tw', 1000),
(4679, 282, '17-282', 1, '樹樺', '{"number":"165220","shop":"\\u6a39\\u6a3a","phone":"0286861904","address":"\\u4e2d\\u83ef\\u8def\\u0033\\u0034\\u0031\\u4e4b\\u0035\\u865f\\u0033\\u0034\\u0031\\u4e4b\\u0036\\u865f\\u4e00\\u6a13"}', '165220', '711', 'zh-tw', 1000),
(4680, 282, '17-282', 1, '華鎮', '{"number":"196350","shop":"\\u83ef\\u93ae","phone":"0286867884","address":"\\u4e2d\\u83ef\\u8def\\u0033\\u0038\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '196350', '711', 'zh-tw', 1000),
(4681, 282, '17-282', 1, '山佳', '{"number":"931054","shop":"\\u5c71\\u4f73","phone":"0226808909","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0038\\u0037\\u865f"}', '931054', '711', 'zh-tw', 1000),
(4682, 282, '17-282', 1, '統友', '{"number":"883728","shop":"\\u7d71\\u53cb","phone":"0226866259","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0038\\u0036\\u865f"}', '883728', '711', 'zh-tw', 1000),
(4683, 282, '17-282', 1, '樹龍', '{"number":"996567","shop":"\\u6a39\\u9f8d","phone":"0226822314","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '996567', '711', 'zh-tw', 1000),
(4684, 282, '17-282', 1, '樹鳳', '{"number":"173597","shop":"\\u6a39\\u9cf3","phone":"0226765713","address":"\\u4e2d\\u6b63\\u8def\\u0034\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '173597', '711', 'zh-tw', 1000),
(4685, 282, '17-282', 1, '慶斌', '{"number":"123101","shop":"\\u6176\\u658c","phone":"0226684258","address":"\\u4e2d\\u6d32\\u8857\\u0035\\u0031\\u5df7\\u0031\\u865f"}', '123101', '711', 'zh-tw', 1000),
(4686, 283, '17-283', 1, '雙祥', '{"number":"953319","shop":"\\u96d9\\u7965","phone":"0224932928","address":"\\u96d9\\u6eaa\\u6751\\u592a\\u5e73\\u8def\\u0036\\u0035\\u865f\\u0036\\u0037\\u865f"}', '953319', '711', 'zh-tw', 1000),
(4687, 283, '17-283', 1, '雙溪', '{"number":"903646","shop":"\\u96d9\\u6eaa","phone":"0224931201","address":"\\u81ea\\u5f37\\u8def\\u0037\\u865f"}', '903646', '711', 'zh-tw', 1000),
(4688, 284, '17-284', 1, '泰山', '{"number":"149309","shop":"\\u6cf0\\u5c71","phone":"0222975073","address":"\\u6953\\u6c5f\\u8def\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f"}', '149309', '711', 'zh-tw', 1000),
(4689, 284, '17-284', 1, '十八甲', '{"number":"188946","shop":"\\u5341\\u516b\\u7532","phone":"0285314338","address":"\\u798f\\u8208\\u4e00\\u8857\\u0038\\u0037\\u865f"}', '188946', '711', 'zh-tw', 1000),
(4690, 284, '17-284', 1, '明志', '{"number":"127642","shop":"\\u660e\\u5fd7","phone":"0229046227","address":"\\u5de5\\u5c08\\u8def\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '127642', '711', 'zh-tw', 1000),
(4691, 284, '17-284', 1, '貴鳳', '{"number":"159122","shop":"\\u8cb4\\u9cf3","phone":"0229044794","address":"\\u8cb4\\u9cf3\\u8857\\u0032\\u865f"}', '159122', '711', 'zh-tw', 1000),
(4692, 284, '17-284', 1, '奕真', '{"number":"993144","shop":"\\u5955\\u771f","phone":"0222960960","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0035\\u865f\\u0031\\u6a13\\u0028\\u90e8\\u4efd\\u0029"}', '993144', '711', 'zh-tw', 1000),
(4693, 284, '17-284', 1, '仁泰', '{"number":"170369","shop":"\\u4ec1\\u6cf0","phone":"0229099380","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\u0031\\u865f"}', '170369', '711', 'zh-tw', 1000),
(4694, 284, '17-284', 1, '明泰', '{"number":"131618","shop":"\\u660e\\u6cf0","phone":"0229047697","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0036\\u865f\\u0033\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '131618', '711', 'zh-tw', 1000),
(4695, 284, '17-284', 1, '義學', '{"number":"197401","shop":"\\u7fa9\\u5b78","phone":"0229097094","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\u0037\\u0034\\u865f\\u0037\\u0036\\u865f"}', '197401', '711', 'zh-tw', 1000),
(4696, 284, '17-284', 1, '明貴', '{"number":"141006","shop":"\\u660e\\u8cb4","phone":"0229041663","address":"\\u660e\\u5fd7\\u8def\\u4e09\\u6bb5\\u0034\\u0034\\u865f\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '141006', '711', 'zh-tw', 1000),
(4697, 284, '17-284', 1, '滿泰', '{"number":"170509","shop":"\\u6eff\\u6cf0","phone":"0222978381","address":"\\u660e\\u5fd7\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u865f"}', '170509', '711', 'zh-tw', 1000),
(4698, 284, '17-284', 1, '季欣', '{"number":"200642","shop":"\\u5b63\\u6b23","phone":"0229009494","address":"\\u5168\\u8208\\u8def\\u0031\\u0030\\u0039\\u865f"}', '200642', '711', 'zh-tw', 1000),
(4699, 284, '17-284', 1, '福興', '{"number":"193339","shop":"\\u798f\\u8208","phone":"0222979975","address":"\\u5168\\u8208\\u8def\\u0031\\u0036\\u0035\\u865f"}', '193339', '711', 'zh-tw', 1000),
(4700, 284, '17-284', 1, '武仁', '{"number":"932851","shop":"\\u6b66\\u4ec1","phone":"0229007082","address":"\\u4ec1\\u611b\\u8def\\u0031\\u0030\\u0030\\u5df7\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f"}', '932851', '711', 'zh-tw', 1000),
(4701, 284, '17-284', 1, '公園賞', '{"number":"136624","shop":"\\u516c\\u5712\\u8cde","phone":"0285315095","address":"\\u4ec1\\u611b\\u8def\\u0036\\u0036\\u865f"}', '136624', '711', 'zh-tw', 1000),
(4702, 284, '17-284', 1, '日勝', '{"number":"979241","shop":"\\u65e5\\u52dd","phone":"0229090401","address":"\\u5c71\\u8173\\u91cc\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\u0035\\u0031\\u0035\\u865f\\u0035\\u0031\\u0037\\u865f"}', '979241', '711', 'zh-tw', 1000),
(4703, 284, '17-284', 1, '珈多', '{"number":"181107","shop":"\\u73c8\\u591a","phone":"0229082024","address":"\\u53f0\\u9e97\\u8857\\u0035\\u865f\\u0037\\u865f\\u0039\\u865f\\u0031\\u6a13"}', '181107', '711', 'zh-tw', 1000),
(4704, 284, '17-284', 1, '羚陽', '{"number":"189503","shop":"\\u7f9a\\u967d","phone":"0229000858","address":"\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\u0033\\u0030\\u0032\\u865f\\u0033\\u0030\\u0034\\u865f"}', '189503', '711', 'zh-tw', 1000),
(4705, 284, '17-284', 1, '新陽光', '{"number":"128221","shop":"\\u65b0\\u967d\\u5149","phone":"0285311274","address":"\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u0038\\u865f\\u0033\\u0037\\u0030\\u865f"}', '128221', '711', 'zh-tw', 1000),
(4706, 284, '17-284', 1, '泰陽', '{"number":"120722","shop":"\\u6cf0\\u967d","phone":"0229047256","address":"\\u65b0\\u5317\\u5927\\u9053\\u516d\\u6bb5\\u0034\\u0037\\u0030\\u865f\\u0034\\u0037\\u0032\\u865f"}', '120722', '711', 'zh-tw', 1000),
(4707, 284, '17-284', 1, '輔新', '{"number":"147956","shop":"\\u8f14\\u65b0","phone":"0229090535","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e94\\u6bb5\\u0033\\u0038\\u0035\\u865f"}', '147956', '711', 'zh-tw', 1000),
(4708, 284, '17-284', 1, '明日城', '{"number":"185095","shop":"\\u660e\\u65e5\\u57ce","phone":"0285315790","address":"\\u4fe1\\u83ef\\u516d\\u8857\\u0031\\u0037\\u865f\\u0031\\u0039\\u865f\\u0031\\u6a13"}', '185095', '711', 'zh-tw', 1000),
(4709, 285, '17-285', 1, '城運', '{"number":"956662","shop":"\\u57ce\\u904b","phone":"0222688683","address":"\\u627f\\u5929\\u8def\\u0031\\u0030\\u865f"}', '956662', '711', 'zh-tw', 1000),
(4710, 285, '17-285', 1, '承天', '{"number":"119283","shop":"\\u627f\\u5929","phone":"0222687436","address":"\\u627f\\u5929\\u8def\\u0031\\u865f"}', '119283', '711', 'zh-tw', 1000),
(4711, 285, '17-285', 1, '新紫城', '{"number":"126823","shop":"\\u65b0\\u7d2b\\u57ce","phone":"0222681974","address":"\\u798f\\u5b89\\u8857\\u0033\\u0038\\u865f\\u0034\\u0030\\u865f"}', '126823', '711', 'zh-tw', 1000),
(4712, 285, '17-285', 1, '聖運', '{"number":"996202","shop":"\\u8056\\u904b","phone":"0222730671","address":"\\u67d1\\u6797\\u91cc\\u660e\\u5fb7\\u8def\\u4e8c\\u6bb5\\u0031\\u0035\\u0039\\u865f"}', '996202', '711', 'zh-tw', 1000),
(4713, 285, '17-285', 1, '光員', '{"number":"148627","shop":"\\u5149\\u54e1","phone":"0222669197","address":"\\u5149\\u660e\\u8857\\u0031\\u0035\\u865f"}', '148627', '711', 'zh-tw', 1000),
(4714, 285, '17-285', 1, '濬家', '{"number":"977913","shop":"\\u6fec\\u5bb6","phone":"0289669773","address":"\\u5ee3\\u660e\\u8857\\u0032\\u865f"}', '977913', '711', 'zh-tw', 1000),
(4715, 285, '17-285', 1, '志城', '{"number":"189330","shop":"\\u5fd7\\u57ce","phone":"0222661870","address":"\\u91d1\\u57ce\\u8def\\u4e09\\u6bb5\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f\\u0032\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '189330', '711', 'zh-tw', 1000),
(4716, 285, '17-285', 1, '金城', '{"number":"888147","shop":"\\u91d1\\u57ce","phone":"0222633381","address":"\\u91d1\\u57ce\\u8def\\u4e09\\u6bb5\\u0037\\u0031\\u865f"}', '888147', '711', 'zh-tw', 1000),
(4717, 285, '17-285', 1, '立金', '{"number":"158646","shop":"\\u7acb\\u91d1","phone":"0222603255","address":"\\u7acb\\u5fb7\\u8def\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f"}', '158646', '711', 'zh-tw', 1000),
(4718, 285, '17-285', 1, '民生廠', '{"number":"970602","shop":"\\u6c11\\u751f\\u5ee0","phone":"0222677917","address":"\\u6c11\\u751f\\u8857\\u0034\\u865f\\u0042\\u0031"}', '970602', '711', 'zh-tw', 1000),
(4719, 285, '17-285', 1, '德城', '{"number":"171122","shop":"\\u5fb7\\u57ce","phone":"0222648474","address":"\\u660e\\u5fb7\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0039\\u865f\\u0031\\u0034\\u0031\\u865f"}', '171122', '711', 'zh-tw', 1000),
(4720, 285, '17-285', 1, '上北可', '{"number":"883924","shop":"\\u4e0a\\u5317\\u53ef","phone":"0222668183","address":"\\u660e\\u5fb7\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0032\\u865f"}', '883924', '711', 'zh-tw', 1000),
(4721, 285, '17-285', 1, '金峰', '{"number":"197102","shop":"\\u91d1\\u5cf0","phone":"0222616746","address":"\\u660e\\u5cf0\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f"}', '197102', '711', 'zh-tw', 1000),
(4722, 285, '17-285', 1, '延和', '{"number":"864613","shop":"\\u5ef6\\u548c","phone":"0222619569","address":"\\u5e73\\u548c\\u91cc\\u5ef6\\u548c\\u8def\\u0031\\u0030\\u0036\\u865f"}', '864613', '711', 'zh-tw', 1000),
(4723, 285, '17-285', 1, '佳福', '{"number":"149239","shop":"\\u4f73\\u798f","phone":"0222644239","address":"\\u9752\\u96f2\\u8def\\u0031\\u0035\\u0032\\u865f"}', '149239', '711', 'zh-tw', 1000),
(4724, 285, '17-285', 1, '文青', '{"number":"187471","shop":"\\u6587\\u9752","phone":"0282602435","address":"\\u9752\\u96f2\\u8def\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f"}', '187471', '711', 'zh-tw', 1000),
(4725, 285, '17-285', 1, '青雲', '{"number":"200767","shop":"\\u9752\\u96f2","phone":"0222742215","address":"\\u9752\\u96f2\\u8def\\u0034\\u0039\\u0039\\u865f\\u0035\\u0030\\u0031\\u865f"}', '200767', '711', 'zh-tw', 1000),
(4726, 285, '17-285', 1, '清和', '{"number":"163899","shop":"\\u6e05\\u548c","phone":"0222740716","address":"\\u6e05\\u6c34\\u8def\\u0031\\u0030\\u0030\\u865f"}', '163899', '711', 'zh-tw', 1000),
(4727, 285, '17-285', 1, '廷寮', '{"number":"155120","shop":"\\u5ef7\\u5bee","phone":"0282627892","address":"\\u6e05\\u6c34\\u8def\\u0032\\u0035\\u0032\\u865f\\u0032\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '155120', '711', 'zh-tw', 1000),
(4728, 285, '17-285', 1, '金源', '{"number":"126085","shop":"\\u91d1\\u6e90","phone":"0222604178","address":"\\u6c34\\u6e90\\u8857\\u0035\\u0039\\u865f"}', '126085', '711', 'zh-tw', 1000),
(4729, 285, '17-285', 1, '信利', '{"number":"924757","shop":"\\u4fe1\\u5229","phone":"0222749266","address":"\\u8208\\u57ce\\u8def\\u0039\\u0036\\u5df7\\u0034\\u865f"}', '924757', '711', 'zh-tw', 1000),
(4730, 285, '17-285', 1, '學裕', '{"number":"165998","shop":"\\u5b78\\u88d5","phone":"0222663508","address":"\\u5b78\\u6210\\u8def\\u0039\\u0031\\u5df7\\u0032\\u865f\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '165998', '711', 'zh-tw', 1000),
(4731, 285, '17-285', 1, '學城', '{"number":"164755","shop":"\\u5b78\\u57ce","phone":"0222652690","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0038\\u865f"}', '164755', '711', 'zh-tw', 1000),
(4732, 285, '17-285', 1, '新學府', '{"number":"188212","shop":"\\u65b0\\u5b78\\u5e9c","phone":"0222627929","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0033\\u865f\\u0032\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '188212', '711', 'zh-tw', 1000),
(4733, 285, '17-285', 1, '鴻成', '{"number":"110286","shop":"\\u9d3b\\u6210","phone":"0222628731","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '110286', '711', 'zh-tw', 1000),
(4734, 285, '17-285', 1, '隆城', '{"number":"190880","shop":"\\u9686\\u57ce","phone":"0222647617","address":"\\u5b78\\u58eb\\u8def\\u0031\\u0035\\u5df7\\u0032\\u865f\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '190880', '711', 'zh-tw', 1000),
(4735, 285, '17-285', 1, '新亞洲', '{"number":"141969","shop":"\\u65b0\\u4e9e\\u6d32","phone":"0222693503","address":"\\u4e9e\\u6d32\\u8def\\u0031\\u0031\\u0030\\u865f\\u0031\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '141969', '711', 'zh-tw', 1000),
(4736, 285, '17-285', 1, '延城', '{"number":"151092","shop":"\\u5ef6\\u57ce","phone":"0222629014","address":"\\u5ef6\\u548c\\u8def\\u0032\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '151092', '711', 'zh-tw', 1000),
(4737, 285, '17-285', 1, '祥吉', '{"number":"880268","shop":"\\u7965\\u5409","phone":"0282602068","address":"\\u5ef6\\u5409\\u8857\\u0031\\u0039\\u0034\\u865f"}', '880268', '711', 'zh-tw', 1000),
(4738, 285, '17-285', 1, '泳豐', '{"number":"187839","shop":"\\u6cf3\\u8c50","phone":"0222746318","address":"\\u6c38\\u8c50\\u8def\\u0032\\u0036\\u0034\\u4e4b\\u0031\\u865f"}', '187839', '711', 'zh-tw', 1000),
(4739, 285, '17-285', 1, '皇裕', '{"number":"962069","shop":"\\u7687\\u88d5","phone":"0222707944","address":"\\u88d5\\u6c11\\u8def\\u0031\\u0031\\u0034\\u5df7\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '962069', '711', 'zh-tw', 1000),
(4740, 285, '17-285', 1, '金裕', '{"number":"184184","shop":"\\u91d1\\u88d5","phone":"0222706865","address":"\\u88d5\\u6c11\\u8def\\u0032\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '184184', '711', 'zh-tw', 1000),
(4741, 285, '17-285', 1, '新裕生', '{"number":"971203","shop":"\\u65b0\\u88d5\\u751f","phone":"0222632523","address":"\\u88d5\\u6c11\\u8def\\u0035\\u0037\\u865f\\u53ca\\u0035\\u0035\\u5df7\\u0032\\u865f"}', '971203', '711', 'zh-tw', 1000),
(4742, 285, '17-285', 1, '中林', '{"number":"186870","shop":"\\u4e2d\\u6797","phone":"0222749849","address":"\\u54e1\\u6797\\u8857\\u0031\\u0034\\u865f"}', '186870', '711', 'zh-tw', 1000),
(4743, 285, '17-285', 1, '慶祥', '{"number":"174763","shop":"\\u6176\\u7965","phone":"0222690465","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '174763', '711', 'zh-tw', 1000),
(4744, 285, '17-285', 1, '鑫城', '{"number":"197342","shop":"\\u946b\\u57ce","phone":"0282733284","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '197342', '711', 'zh-tw', 1000),
(4745, 285, '17-285', 1, '忠華', '{"number":"164375","shop":"\\u5fe0\\u83ef","phone":"0222629661","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0035\\u865f\\u0031\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '164375', '711', 'zh-tw', 1000),
(4746, 285, '17-285', 1, '燿福', '{"number":"182317","shop":"\\u71ff\\u798f","phone":"0222675013","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '182317', '711', 'zh-tw', 1000),
(4747, 285, '17-285', 1, '祥泰', '{"number":"184678","shop":"\\u7965\\u6cf0","phone":"0222679712","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u0038\\u865f"}', '184678', '711', 'zh-tw', 1000),
(4748, 285, '17-285', 1, '中山二', '{"number":"130534","shop":"\\u4e2d\\u5c71\\u4e8c","phone":"0222695891","address":"\\u4e2d\\u5c71\\u8def\\u0033\\u865f\\u0042\\u0031\\u6a13"}', '130534', '711', 'zh-tw', 1000),
(4749, 285, '17-285', 1, '太子', '{"number":"187138","shop":"\\u592a\\u5b50","phone":"0222684903","address":"\\u4e2d\\u5c71\\u8def\\u0034\\u0037\\u865f"}', '187138', '711', 'zh-tw', 1000),
(4750, 285, '17-285', 1, '高峰', '{"number":"187655","shop":"\\u9ad8\\u5cf0","phone":"0222704792","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0037\\u865f"}', '187655', '711', 'zh-tw', 1000),
(4751, 285, '17-285', 1, '摩漾', '{"number":"182292","shop":"\\u6469\\u6f3e","phone":"0282733155","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\u0036\\u0031\\u5df7\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '182292', '711', 'zh-tw', 1000),
(4752, 285, '17-285', 1, '新永寧', '{"number":"971144","shop":"\\u65b0\\u6c38\\u5be7","phone":"0222671893","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0031\\u4e4b\\u0031\\u865f\\u53ca\\u6c38\\u5be7\\u8def\\u0031\\u865f\\u0033\\u865f"}', '971144', '711', 'zh-tw', 1000),
(4753, 285, '17-285', 1, '土城', '{"number":"833642","shop":"\\u571f\\u57ce","phone":"0222678704","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\u0034\\u0032\\u865f"}', '833642', '711', 'zh-tw', 1000),
(4754, 285, '17-285', 1, '虹海', '{"number":"164663","shop":"\\u8679\\u6d77","phone":"0222678273","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0039\\u865f\\u0031\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '164663', '711', 'zh-tw', 1000),
(4755, 285, '17-285', 1, '頂埔', '{"number":"186995","shop":"\\u9802\\u57d4","phone":"0222676292","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\u0032\\u0037\\u0034\\u865f\\u0032\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '186995', '711', 'zh-tw', 1000),
(4756, 285, '17-285', 1, '太陽城', '{"number":"133108","shop":"\\u592a\\u967d\\u57ce","phone":"0222677452","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\u0032\\u0038\\u0031\\u4e4b\\u0038\\u865f\\u0032\\u0038\\u0031\\u4e4b\\u0039\\u865f"}', '133108', '711', 'zh-tw', 1000),
(4757, 285, '17-285', 1, '頂孝', '{"number":"194734","shop":"\\u9802\\u5b5d","phone":"0222674213","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\u0035\\u0030\\u002d\\u0033\\u002e\\u0035\\u0030\\u002d\\u0035\\u865f\\u0031\\u6a13"}', '194734', '711', 'zh-tw', 1000),
(4758, 285, '17-285', 1, '福祥', '{"number":"163903","shop":"\\u798f\\u7965","phone":"0282613294","address":"\\u4e2d\\u592e\\u8def\\u4e00\\u6bb5\\u0033\\u0032\\u0030\\u865f\\u0033\\u0032\\u0032\\u865f"}', '163903', '711', 'zh-tw', 1000),
(4759, 285, '17-285', 1, '皇翔', '{"number":"992923","shop":"\\u7687\\u7fd4","phone":"0222645433","address":"\\u4e2d\\u592e\\u8def\\u4e00\\u6bb5\\u0038\\u0038\\u865f\\u0031\\u6a13\\u3001\\u88d5\\u6c11\\u8def\\u0031\\u0030\\u002d\\u0031\\u865f\\u002e\\u0031\\u0030\\u865f\\u002e\\u0038\\u002d\\u0031\\u865f\\u002e\\u0038\\u865f"}', '992923', '711', 'zh-tw', 1000),
(4760, 285, '17-285', 1, '城政', '{"number":"198666","shop":"\\u57ce\\u653f","phone":"0222668017","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '198666', '711', 'zh-tw', 1000),
(4761, 285, '17-285', 1, '忠承', '{"number":"992897","shop":"\\u5fe0\\u627f","phone":"0222696854","address":"\\u5fe0\\u627f\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '992897', '711', 'zh-tw', 1000),
(4762, 286, '17-286', 1, '溫泉', '{"number":"153331","shop":"\\u6eab\\u6cc9","phone":"0224987100","address":"\\u5927\\u9d6c\\u91cc\\u842c\\u91cc\\u52a0\\u6295\\u0031\\u0035\\u9130\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '153331', '711', 'zh-tw', 1000),
(4763, 286, '17-286', 1, '翡翠灣', '{"number":"127952","shop":"\\u7fe1\\u7fe0\\u7063","phone":"0224928842","address":"\\u9f9c\\u543c\\u6751\\u7f8e\\u5d19\\u0033\\u0038\\u865f\\u0033\\u0039\\u865f"}', '127952', '711', 'zh-tw', 1000),
(4764, 286, '17-286', 1, '萬里', '{"number":"875417","shop":"\\u842c\\u91cc","phone":"0224924901","address":"\\u746a\\u934a\\u8def\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f"}', '875417', '711', 'zh-tw', 1000),
(4765, 286, '17-286', 1, '新野柳', '{"number":"961354","shop":"\\u65b0\\u91ce\\u67f3","phone":"0224926187","address":"\\u91ce\\u67f3\\u6e2f\\u6771\\u8def\\u0031\\u0035\\u0038\\u865f"}', '961354', '711', 'zh-tw', 1000),
(4766, 287, '17-287', 1, '那魯灣', '{"number":"910552","shop":"\\u90a3\\u9b6f\\u7063","phone":"0226616123","address":"\\u70cf\\u4f86\\u91cc\\u6eab\\u6cc9\\u8857\\u0038\\u0030\\u865f"}', '910552', '711', 'zh-tw', 1000),
(4767, 287, '17-287', 1, '來鑫', '{"number":"987909","shop":"\\u4f86\\u946b","phone":"0226617621","address":"\\u5fe0\\u6cbb\\u91cc\\u5830\\u5824\\u0039\\u865f\\u0031\\u0031\\u865f"}', '987909', '711', 'zh-tw', 1000),
(4768, 288, '17-288', 1, '大五股', '{"number":"962380","shop":"\\u5927\\u4e94\\u80a1","phone":"0222953630","address":"\\u6210\\u6cf0\\u8def\\u4e8c\\u6bb5\\u0038\\u0031\\u865f"}', '962380', '711', 'zh-tw', 1000),
(4769, 288, '17-288', 1, '成泰', '{"number":"198839","shop":"\\u6210\\u6cf0","phone":"0222935446","address":"\\u6210\\u6cf0\\u8def\\u4e8c\\u6bb5\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '198839', '711', 'zh-tw', 1000),
(4770, 288, '17-288', 1, '成旺', '{"number":"185877","shop":"\\u6210\\u65fa","phone":"0282922814","address":"\\u6210\\u6cf0\\u8def\\u4e09\\u6bb5\\u0032\\u0031\\u0032\\u865f\\u0032\\u0031\\u0036\\u865f\\u0032\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '185877', '711', 'zh-tw', 1000),
(4771, 288, '17-288', 1, '利客來', '{"number":"985671","shop":"\\u5229\\u5ba2\\u4f86","phone":"0222953384","address":"\\u6210\\u6cf0\\u8def\\u4e09\\u6bb5\\u0034\\u0031\\u0039\\u865f"}', '985671', '711', 'zh-tw', 1000),
(4772, 288, '17-288', 1, '泰股', '{"number":"978640","shop":"\\u6cf0\\u80a1","phone":"0222936457","address":"\\u6210\\u6cf0\\u8def\\u4e09\\u6bb5\\u0035\\u0037\\u0037\\u5df7\\u0032\\u0034\\u865f"}', '978640', '711', 'zh-tw', 1000),
(4773, 288, '17-288', 1, '成洲', '{"number":"163888","shop":"\\u6210\\u6d32","phone":"0282925864","address":"\\u6210\\u6cf0\\u8def\\u4e09\\u6bb5\\u0035\\u0037\\u0037\\u5df7\\u0039\\u0032\\u865f\\u0039\\u0034\\u865f"}', '163888', '711', 'zh-tw', 1000),
(4774, 288, '17-288', 1, '泰里', '{"number":"148982","shop":"\\u6cf0\\u91cc","phone":"0282927574","address":"\\u6210\\u6cf0\\u8def\\u56db\\u6bb5\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '148982', '711', 'zh-tw', 1000),
(4775, 288, '17-288', 1, '德泰', '{"number":"185729","shop":"\\u5fb7\\u6cf0","phone":"0285317352","address":"\\u6210\\u6cf0\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u865f"}', '185729', '711', 'zh-tw', 1000),
(4776, 288, '17-288', 1, '來峰', '{"number":"186766","shop":"\\u4f86\\u5cf0","phone":"0282927346","address":"\\u6210\\u6cf0\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0033\\u865f\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '186766', '711', 'zh-tw', 1000),
(4777, 288, '17-288', 1, '新圓山', '{"number":"977636","shop":"\\u65b0\\u5713\\u5c71","phone":"0222926587","address":"\\u6210\\u6cf0\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0031\\u865f"}', '977636', '711', 'zh-tw', 1000),
(4778, 288, '17-288', 1, '登福', '{"number":"921149","shop":"\\u767b\\u798f","phone":"0282952765","address":"\\u767b\\u6797\\u8def\\u0037\\u0036\\u4e4b\\u0033\\u865f"}', '921149', '711', 'zh-tw', 1000),
(4779, 288, '17-288', 1, '登揚', '{"number":"196648","shop":"\\u767b\\u63da","phone":"0222952065","address":"\\u767b\\u6797\\u8def\\u0039\\u0036\\u865f"}', '196648', '711', 'zh-tw', 1000),
(4780, 288, '17-288', 1, '洲子洋', '{"number":"186191","shop":"\\u6d32\\u5b50\\u6d0b","phone":"0282925292","address":"\\u82b3\\u6d32\\u516b\\u8def\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f\\u0031\\u0031\\u0031\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '186191', '711', 'zh-tw', 1000),
(4781, 288, '17-288', 1, '福臨', '{"number":"956835","shop":"\\u798f\\u81e8","phone":"0282921740","address":"\\u5de5\\u5546\\u8def\\u0031\\u0035\\u0030\\u865f"}', '956835', '711', 'zh-tw', 1000),
(4782, 288, '17-288', 1, '弘龍', '{"number":"967983","shop":"\\u5f18\\u9f8d","phone":"0222952745","address":"\\u5de5\\u5546\\u8def\\u0031\\u0036\\u865f"}', '967983', '711', 'zh-tw', 1000),
(4783, 288, '17-288', 1, '龍五', '{"number":"921976","shop":"\\u9f8d\\u4e94","phone":"0282952619","address":"\\u51cc\\u96f2\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0036\\u865f"}', '921976', '711', 'zh-tw', 1000),
(4784, 288, '17-288', 1, '成曜', '{"number":"195173","shop":"\\u6210\\u66dc","phone":"0282921773","address":"\\u51cc\\u96f2\\u8def\\u4e00\\u6bb5\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '195173', '711', 'zh-tw', 1000),
(4785, 288, '17-288', 1, '水碓', '{"number":"890601","shop":"\\u6c34\\u7893","phone":"0222917335","address":"\\u6c34\\u7893\\u8def\\u0031\\u0034\\u865f"}', '890601', '711', 'zh-tw', 1000),
(4786, 288, '17-288', 1, '維中', '{"number":"966898","shop":"\\u7dad\\u4e2d","phone":"0229840834","address":"\\u56db\\u7dad\\u8def\\u0031\\u0032\\u0030\\u865f"}', '966898', '711', 'zh-tw', 1000),
(4787, 288, '17-288', 1, '福泰', '{"number":"165703","shop":"\\u798f\\u6cf0","phone":"0222933841","address":"\\u4e94\\u798f\\u8def\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '165703', '711', 'zh-tw', 1000),
(4788, 288, '17-288', 1, '新台', '{"number":"922348","shop":"\\u65b0\\u53f0","phone":"0222997131","address":"\\u4e94\\u5de5\\u516d\\u8def\\u0031\\u0034\\u865f"}', '922348', '711', 'zh-tw', 1000),
(4789, 288, '17-288', 1, '富美', '{"number":"942733","shop":"\\u5bcc\\u7f8e","phone":"0222981368","address":"\\u4e94\\u80a1\\u5de5\\u696d\\u5340\\u4e94\\u6b0a\\u8def\\u0032\\u0033\\u865f"}', '942733', '711', 'zh-tw', 1000),
(4790, 288, '17-288', 1, '富得', '{"number":"126281","shop":"\\u5bcc\\u5f97","phone":"0222990711","address":"\\u4e94\\u6b0a\\u8def\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '126281', '711', 'zh-tw', 1000),
(4791, 288, '17-288', 1, '民揚', '{"number":"183402","shop":"\\u6c11\\u63da","phone":"0222952225","address":"\\u65b0\\u4e94\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '183402', '711', 'zh-tw', 1000),
(4792, 288, '17-288', 1, '御城', '{"number":"175065","shop":"\\u5fa1\\u57ce","phone":"0222937343","address":"\\u5fa1\\u53f2\\u8def\\u0033\\u865f\\u0035\\u865f\\u0031\\u6a13"}', '175065', '711', 'zh-tw', 1000),
(4793, 288, '17-288', 1, '股興', '{"number":"174419","shop":"\\u80a1\\u8208","phone":"0229873854","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0033\\u865f"}', '174419', '711', 'zh-tw', 1000),
(4794, 289, '17-289', 1, '尊爵', '{"number":"906841","shop":"\\u5c0a\\u7235","phone":"0226429012","address":"\\u4f2f\\u7235\\u8857\\u0033\\u0032\\u865f"}', '906841', '711', 'zh-tw', 1000),
(4795, 289, '17-289', 1, '新盛昌', '{"number":"922968","shop":"\\u65b0\\u76db\\u660c","phone":"0226486529","address":"\\u9577\\u6c5f\\u8857\\u0031\\u0033\\u5df7\\u0031\\u865f"}', '922968', '711', 'zh-tw', 1000),
(4796, 289, '17-289', 1, '汐科', '{"number":"135768","shop":"\\u6c50\\u79d1","phone":"0226498508","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0037\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '135768', '711', 'zh-tw', 1000),
(4797, 289, '17-289', 1, '智慧', '{"number":"959292","shop":"\\u667a\\u6167","phone":"0286421397","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0031\\u865f"}', '959292', '711', 'zh-tw', 1000),
(4798, 289, '17-289', 1, '進益', '{"number":"897864","shop":"\\u9032\\u76ca","phone":"0286923235","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0034\\u865f"}', '897864', '711', 'zh-tw', 1000),
(4799, 289, '17-289', 1, '建成', '{"number":"194941","shop":"\\u5efa\\u6210","phone":"0226498736","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0036\\u0036\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '194941', '711', 'zh-tw', 1000),
(4800, 289, '17-289', 1, '保長坑', '{"number":"195852","shop":"\\u4fdd\\u9577\\u5751","phone":"0286489674","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u0031\\u865f\\u0032\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '195852', '711', 'zh-tw', 1000),
(4801, 289, '17-289', 1, '旭昇', '{"number":"177061","shop":"\\u65ed\\u6607","phone":"0286478304","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\u0033\\u0033\\u0032\\u865f"}', '177061', '711', 'zh-tw', 1000),
(4802, 289, '17-289', 1, '鎮天', '{"number":"180506","shop":"\\u93ae\\u5929","phone":"0226905907","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\u0036\\u0031\\u0031\\u4e4b\\u0035\\u865f\\u0036\\u0031\\u0031\\u4e4b\\u0036\\u865f\\u0031\\u6a13"}', '180506', '711', 'zh-tw', 1000),
(4803, 289, '17-289', 1, '汐園', '{"number":"183642","shop":"\\u6c50\\u5712","phone":"0226902446","address":"\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0037\\u4e4b\\u0037\\u865f\\u0031\\u6a13"}', '183642', '711', 'zh-tw', 1000),
(4804, 289, '17-289', 1, '矽功', '{"number":"966430","shop":"\\u77fd\\u529f","phone":"0226410436","address":"\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0034\\u865f"}', '966430', '711', 'zh-tw', 1000),
(4805, 289, '17-289', 1, '聯合報', '{"number":"990204","shop":"\\u806f\\u5408\\u5831","phone":"0226484793","address":"\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '990204', '711', 'zh-tw', 1000),
(4806, 289, '17-289', 1, '德厚', '{"number":"194435","shop":"\\u5fb7\\u539a","phone":"0226956411","address":"\\u798f\\u5fb7\\u4e8c\\u8def\\u0031\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '194435', '711', 'zh-tw', 1000),
(4807, 289, '17-289', 1, '福百', '{"number":"896447","shop":"\\u798f\\u767e","phone":"0226933348","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0031\\u0036\\u0031\\u865f"}', '896447', '711', 'zh-tw', 1000),
(4808, 289, '17-289', 1, '汐福', '{"number":"199038","shop":"\\u6c50\\u798f","phone":"0226949011","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0032\\u0034\\u0033\\u865f"}', '199038', '711', 'zh-tw', 1000),
(4809, 289, '17-289', 1, '建德', '{"number":"163800","shop":"\\u5efa\\u5fb7","phone":"0226932349","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0033\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '163800', '711', 'zh-tw', 1000),
(4810, 289, '17-289', 1, '建陽', '{"number":"136163","shop":"\\u5efa\\u967d","phone":"0226958543","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0034\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '136163', '711', 'zh-tw', 1000),
(4811, 289, '17-289', 1, '勝福', '{"number":"132002","shop":"\\u52dd\\u798f","phone":"0286934526","address":"\\u798f\\u5fb7\\u4e00\\u8def\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f\\u0028\\u593e\\u5c64\\u0029\\u6a13"}', '132002', '711', 'zh-tw', 1000),
(4812, 289, '17-289', 1, '湖鑫', '{"number":"171133","shop":"\\u6e56\\u946b","phone":"0226943740","address":"\\u6e56\\u524d\\u8857\\u0033\\u0037\\u865f\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '171133', '711', 'zh-tw', 1000),
(4813, 289, '17-289', 1, '新旭勝', '{"number":"128391","shop":"\\u65b0\\u65ed\\u52dd","phone":"0226490241","address":"\\u5efa\\u6210\\u8def\\u0031\\u0036\\u0030\\u5df7\\u0032\\u865f"}', '128391', '711', 'zh-tw', 1000),
(4814, 289, '17-289', 1, '橋東', '{"number":"184977","shop":"\\u6a4b\\u6771","phone":"0286423691","address":"\\u5efa\\u6210\\u8def\\u0033\\u0031\\u865f\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '184977', '711', 'zh-tw', 1000),
(4815, 289, '17-289', 1, '旭泰', '{"number":"111120","shop":"\\u65ed\\u6cf0","phone":"0226414436","address":"\\u5efa\\u6210\\u8def\\u0035\\u0037\\u5df7\\u0031\\u865f\\u0033\\u865f"}', '111120', '711', 'zh-tw', 1000),
(4816, 289, '17-289', 1, '汐湖', '{"number":"142331","shop":"\\u6c50\\u6e56","phone":"0226923147","address":"\\u5eb7\\u5be7\\u8857\\u0031\\u0034\\u0031\\u5df7\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '142331', '711', 'zh-tw', 1000),
(4817, 289, '17-289', 1, '康湖', '{"number":"999898","shop":"\\u5eb7\\u6e56","phone":"0226950174","address":"\\u5eb7\\u5be7\\u8857\\u0034\\u0039\\u0030\\u865f"}', '999898', '711', 'zh-tw', 1000),
(4818, 289, '17-289', 1, '潤安', '{"number":"891006","shop":"\\u6f64\\u5b89","phone":"0226485573","address":"\\u9f8d\\u5b89\\u8def\\u0033\\u0032\\u865f"}', '891006', '711', 'zh-tw', 1000),
(4819, 289, '17-289', 1, '白雲', '{"number":"118914","shop":"\\u767d\\u96f2","phone":"0226606510","address":"\\u6c11\\u6b0a\\u8857\\u4e8c\\u6bb5\\u0037\\u0039\\u865f\\u4e4b\\u0031"}', '118914', '711', 'zh-tw', 1000),
(4820, 289, '17-289', 1, '湖前', '{"number":"167732","shop":"\\u6e56\\u524d","phone":"0226958128","address":"\\u660e\\u5cf0\\u8857\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '167732', '711', 'zh-tw', 1000),
(4821, 289, '17-289', 1, '伯爵', '{"number":"180997","shop":"\\u4f2f\\u7235","phone":"0286951684","address":"\\u660e\\u5cf0\\u8857\\u0031\\u0033\\u865f\\u0031\\u0033\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '180997', '711', 'zh-tw', 1000),
(4822, 289, '17-289', 1, '明峰', '{"number":"187688","shop":"\\u660e\\u5cf0","phone":"0226944744","address":"\\u660e\\u5cf0\\u8857\\u0031\\u0037\\u0039\\u4e4b\\u0031\\u865f"}', '187688', '711', 'zh-tw', 1000),
(4823, 289, '17-289', 1, '艾科卡', '{"number":"141062","shop":"\\u827e\\u79d1\\u5361","phone":"0286489199","address":"\\u8304\\u82f3\\u8def\\u0031\\u0039\\u0036\\u865f"}', '141062', '711', 'zh-tw', 1000),
(4824, 289, '17-289', 1, '茄安', '{"number":"194930","shop":"\\u8304\\u5b89","phone":"0286477286","address":"\\u8304\\u82f3\\u8def\\u0032\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '194930', '711', 'zh-tw', 1000),
(4825, 289, '17-289', 1, '福仁', '{"number":"164456","shop":"\\u798f\\u4ec1","phone":"0226496368","address":"\\u4ec1\\u611b\\u8def\\u0031\\u0034\\u0033\\u865f"}', '164456', '711', 'zh-tw', 1000),
(4826, 289, '17-289', 1, '汐峰', '{"number":"174121","shop":"\\u6c50\\u5cf0","phone":"0226429873","address":"\\u4ec1\\u611b\\u8def\\u0033\\u0032\\u865f\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '174121', '711', 'zh-tw', 1000),
(4827, 289, '17-289', 1, '實萬', '{"number":"188359","shop":"\\u5be6\\u842c","phone":"0226461145","address":"\\u6c50\\u842c\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '188359', '711', 'zh-tw', 1000),
(4828, 289, '17-289', 1, '明園', '{"number":"173575","shop":"\\u660e\\u5712","phone":"0226462170","address":"\\u6c50\\u842c\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '173575', '711', 'zh-tw', 1000),
(4829, 289, '17-289', 1, '汐政', '{"number":"186869","shop":"\\u6c50\\u653f","phone":"0226419577","address":"\\u6c50\\u842c\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0032\\u865f"}', '186869', '711', 'zh-tw', 1000),
(4830, 289, '17-289', 1, '鄉長', '{"number":"959306","shop":"\\u9109\\u9577","phone":"0226917900","address":"\\u9109\\u9577\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u865f"}', '959306', '711', 'zh-tw', 1000),
(4831, 289, '17-289', 1, '東晴', '{"number":"174925","shop":"\\u6771\\u6674","phone":"0226481974","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e8c\\u6bb5\\u0038\\u0030\\u865f"}', '174925', '711', 'zh-tw', 1000),
(4832, 289, '17-289', 1, '登峰', '{"number":"174523","shop":"\\u767b\\u5cf0","phone":"0226919970","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '174523', '711', 'zh-tw', 1000),
(4833, 289, '17-289', 1, '遠東', '{"number":"179849","shop":"\\u9060\\u6771","phone":"0286981019","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\u0037\\u0035\\u865f\\u0031\\u6a13\\u4e4b\\u0032"}', '179849', '711', 'zh-tw', 1000),
(4834, 289, '17-289', 1, '東科大', '{"number":"151852","shop":"\\u6771\\u79d1\\u5927","phone":"0226969945","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\u0039\\u0036\\u865f"}', '151852', '711', 'zh-tw', 1000),
(4835, 289, '17-289', 1, '青山', '{"number":"183088","shop":"\\u9752\\u5c71","phone":"0286423480","address":"\\u65b0\\u8208\\u8def\\u0038\\u0033\\u002d\\u0032\\u865f"}', '183088', '711', 'zh-tw', 1000),
(4836, 289, '17-289', 1, '汐止站', '{"number":"977935","shop":"\\u6c50\\u6b62\\u7ad9","phone":"0286915835","address":"\\u4fe1\\u7fa9\\u8def\\u0031\\u865f"}', '977935', '711', 'zh-tw', 1000),
(4837, 289, '17-289', 1, '富鄰', '{"number":"128737","shop":"\\u5bcc\\u9130","phone":"0226601799","address":"\\u5b9c\\u8208\\u8857\\u0038\\u865f"}', '128737', '711', 'zh-tw', 1000),
(4838, 289, '17-289', 1, '新樟樹', '{"number":"996235","shop":"\\u65b0\\u6a1f\\u6a39","phone":"0226436365","address":"\\u6a1f\\u6a39\\u4e8c\\u8def\\u0032\\u0035\\u0035\\u865f"}', '996235', '711', 'zh-tw', 1000),
(4839, 289, '17-289', 1, '新汐農', '{"number":"200745","shop":"\\u65b0\\u6c50\\u8fb2","phone":"0226414429","address":"\\u6a1f\\u6a39\\u4e00\\u8def\\u0031\\u0031\\u0033\\u865f\\u0031\\u0031\\u0035\\u865f"}', '200745', '711', 'zh-tw', 1000),
(4840, 289, '17-289', 1, '樟福', '{"number":"184759","shop":"\\u6a1f\\u798f","phone":"0226434449","address":"\\u6a1f\\u6a39\\u4e00\\u8def\\u0032\\u0035\\u0036\\u865f\\u0032\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '184759', '711', 'zh-tw', 1000),
(4841, 289, '17-289', 1, '汐旺', '{"number":"190662","shop":"\\u6c50\\u65fa","phone":"0226934931","address":"\\u4e2d\\u8208\\u91cc\\u0036\\u9130\\u4e2d\\u8208\\u8def\\u0031\\u0030\\u0035\\u865f"}', '190662', '711', 'zh-tw', 1000),
(4842, 289, '17-289', 1, '社后', '{"number":"148753","shop":"\\u793e\\u540e","phone":"0226943031","address":"\\u4e2d\\u8208\\u91cc\\u4e2d\\u8208\\u8def\\u0031\\u0039\\u0030\\u865f"}', '148753', '711', 'zh-tw', 1000),
(4843, 289, '17-289', 1, '新工建', '{"number":"184841","shop":"\\u65b0\\u5de5\\u5efa","phone":"0226486390","address":"\\u4e2d\\u8208\\u8def\\u0036\\u0030\\u865f"}', '184841', '711', 'zh-tw', 1000),
(4844, 289, '17-289', 1, '汐忠', '{"number":"171580","shop":"\\u6c50\\u5fe0","phone":"0286917056","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u0032\\u0038\\u0032\\u865f"}', '171580', '711', 'zh-tw', 1000),
(4845, 289, '17-289', 1, '茄苳', '{"number":"185523","shop":"\\u8304\\u82f3","phone":"0286484946","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u0033\\u0035\\u0037\\u865f\\u0033\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '185523', '711', 'zh-tw', 1000),
(4846, 290, '17-290', 1, '安成', '{"number":"159328","shop":"\\u5b89\\u6210","phone":"0286662996","address":"\\u5b89\\u6210\\u8857\\u0033\\u0035\\u865f\\u0032\\u0039\\u865f"}', '159328', '711', 'zh-tw', 1000),
(4847, 290, '17-290', 1, '安康', '{"number":"180034","shop":"\\u5b89\\u5eb7","phone":"0222124641","address":"\\u5b89\\u5fb7\\u8857\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13\\u002b\\u0032\\u6a13"}', '180034', '711', 'zh-tw', 1000),
(4848, 290, '17-290', 1, '安德', '{"number":"197434","shop":"\\u5b89\\u5fb7","phone":"0222125348","address":"\\u5b89\\u5fb7\\u8857\\u0038\\u865f\\u0031\\u0030\\u865f\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '197434', '711', 'zh-tw', 1000),
(4849, 290, '17-290', 1, '統和', '{"number":"128911","shop":"\\u7d71\\u548c","phone":"0286662431","address":"\\u5b89\\u548c\\u91cc\\u5b89\\u6c11\\u8857\\u0033\\u0033\\u0035\\u865f\\u0033\\u0033\\u0037\\u865f"}', '128911', '711', 'zh-tw', 1000),
(4850, 290, '17-290', 1, '新猷', '{"number":"166393","shop":"\\u65b0\\u7337","phone":"0229433640","address":"\\u5b89\\u548c\\u8def\\u4e09\\u6bb5\\u0038\\u0031\\u865f\\u0038\\u0033\\u865f\\u0031\\u6a13"}', '166393', '711', 'zh-tw', 1000),
(4851, 290, '17-290', 1, '全新', '{"number":"197788","shop":"\\u5168\\u65b0","phone":"0222127952","address":"\\u5b89\\u5eb7\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '197788', '711', 'zh-tw', 1000),
(4852, 290, '17-290', 1, '德玉', '{"number":"188407","shop":"\\u5fb7\\u7389","phone":"0222144764","address":"\\u5b89\\u5eb7\\u8def\\u4e09\\u6bb5\\u0031\\u0039\\u0035\\u865f"}', '188407', '711', 'zh-tw', 1000),
(4853, 290, '17-290', 1, '康曜', '{"number":"141073","shop":"\\u5eb7\\u66dc","phone":"0222158391","address":"\\u5b89\\u5eb7\\u8def\\u4e09\\u6bb5\\u0034\\u0031\\u865f"}', '141073', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(4854, 290, '17-290', 1, '百豐', '{"number":"110998","shop":"\\u767e\\u8c50","phone":"0286669386","address":"\\u5b89\\u5eb7\\u8def\\u4e00\\u6bb5\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '110998', '711', 'zh-tw', 1000),
(4855, 290, '17-290', 1, '安城', '{"number":"159339","shop":"\\u5b89\\u57ce","phone":"0286661108","address":"\\u5b89\\u5eb7\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0033\\u865f"}', '159339', '711', 'zh-tw', 1000),
(4856, 290, '17-290', 1, '安民', '{"number":"138893","shop":"\\u5b89\\u6c11","phone":"0286666260","address":"\\u5b89\\u6c11\\u8857\\u0031\\u0033\\u0033\\u5df7\\u0039\\u865f\\u0031\\u0031\\u865f"}', '138893', '711', 'zh-tw', 1000),
(4857, 290, '17-290', 1, '安博', '{"number":"195896","shop":"\\u5b89\\u535a","phone":"0222125845","address":"\\u5b89\\u6c11\\u8857\\u0031\\u0035\\u0034\\u865f\\u0031\\u0035\\u0034\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '195896', '711', 'zh-tw', 1000),
(4858, 290, '17-290', 1, '凡賽絲', '{"number":"164685","shop":"\\u51e1\\u8cfd\\u7d72","phone":"0222120010","address":"\\u5b89\\u6c11\\u8857\\u0032\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '164685', '711', 'zh-tw', 1000),
(4859, 290, '17-290', 1, '安坑', '{"number":"197836","shop":"\\u5b89\\u5751","phone":"0222114396","address":"\\u5b89\\u6c11\\u8857\\u0033\\u0034\\u0036\\u865f\\u0033\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '197836', '711', 'zh-tw', 1000),
(4860, 290, '17-290', 1, '及人', '{"number":"976426","shop":"\\u53ca\\u4eba","phone":"0286663157","address":"\\u5b89\\u6c11\\u8857\\u0037\\u0032\\u865f"}', '976426', '711', 'zh-tw', 1000),
(4861, 290, '17-290', 1, '安佳', '{"number":"165530","shop":"\\u5b89\\u4f73","phone":"0222004799","address":"\\u5b89\\u7965\\u8def\\u0031\\u0031\\u0031\\u865f"}', '165530', '711', 'zh-tw', 1000),
(4862, 290, '17-290', 1, '安忠', '{"number":"953353","shop":"\\u5b89\\u5fe0","phone":"0222119842","address":"\\u5b89\\u5fe0\\u8def\\u0032\\u0030\\u865f"}', '953353', '711', 'zh-tw', 1000),
(4863, 290, '17-290', 1, '景大', '{"number":"187769","shop":"\\u666f\\u5927","phone":"0222120371","address":"\\u5b89\\u5fe0\\u8def\\u0037\\u0031\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '187769', '711', 'zh-tw', 1000),
(4864, 290, '17-290', 1, '寶元', '{"number":"193258","shop":"\\u5bf6\\u5143","phone":"0229134813","address":"\\u5bf6\\u6a4b\\u8def\\u0031\\u0035\\u0036\\u4e4b\\u0032\\u865f\\u0031\\u0035\\u0036\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '193258', '711', 'zh-tw', 1000),
(4865, 290, '17-290', 1, '新寶橋', '{"number":"931216","shop":"\\u65b0\\u5bf6\\u6a4b","phone":"0289145826","address":"\\u5bf6\\u6a4b\\u8def\\u0031\\u0039\\u0032\\u865f"}', '931216', '711', 'zh-tw', 1000),
(4866, 290, '17-290', 1, '寶科', '{"number":"199175","shop":"\\u5bf6\\u79d1","phone":"0289118174","address":"\\u5bf6\\u6a4b\\u8def\\u0032\\u0033\\u0035\\u5df7\\u0035\\u865f\\u0031\\u6a13"}', '199175', '711', 'zh-tw', 1000),
(4867, 290, '17-290', 1, '寶福', '{"number":"152132","shop":"\\u5bf6\\u798f","phone":"0286653467","address":"\\u5bf6\\u6a4b\\u8def\\u0037\\u0038\\u5df7\\u0033\\u865f\\u0031\\u0046"}', '152132', '711', 'zh-tw', 1000),
(4868, 290, '17-290', 1, '寶中', '{"number":"958901","shop":"\\u5bf6\\u4e2d","phone":"0286653843","address":"\\u5bf6\\u6176\\u8857\\u0036\\u0036\\u865f"}', '958901', '711', 'zh-tw', 1000),
(4869, 290, '17-290', 1, '統客', '{"number":"143688","shop":"\\u7d71\\u5ba2","phone":"0229143624","address":"\\u5bf6\\u8208\\u8def\\u0034\\u0039\\u865f"}', '143688', '711', 'zh-tw', 1000),
(4870, 290, '17-290', 1, '寶強', '{"number":"173841","shop":"\\u5bf6\\u5f37","phone":"0289145258","address":"\\u5bf6\\u4e2d\\u8def\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '173841', '711', 'zh-tw', 1000),
(4871, 290, '17-290', 1, '雙鑫', '{"number":"162173","shop":"\\u96d9\\u946b","phone":"0286658848","address":"\\u5317\\u65b0\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0039\\u865f"}', '162173', '711', 'zh-tw', 1000),
(4872, 290, '17-290', 1, '新極景', '{"number":"202523","shop":"\\u65b0\\u6975\\u666f","phone":"0229109385","address":"\\u5317\\u65b0\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0032\\u002d\\u0031\\u865f"}', '202523', '711', 'zh-tw', 1000),
(4873, 290, '17-290', 1, '寶新', '{"number":"146126","shop":"\\u5bf6\\u65b0","phone":"0229137463","address":"\\u5317\\u65b0\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u865f"}', '146126', '711', 'zh-tw', 1000),
(4874, 290, '17-290', 1, '新矽谷', '{"number":"119021","shop":"\\u65b0\\u77fd\\u8c37","phone":"0289131481","address":"\\u5317\\u65b0\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0035\\u002d\\u0031\\u865f"}', '119021', '711', 'zh-tw', 1000),
(4875, 290, '17-290', 1, '新贊', '{"number":"185947","shop":"\\u65b0\\u8d0a","phone":"0229138103","address":"\\u5317\\u65b0\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '185947', '711', 'zh-tw', 1000),
(4876, 290, '17-290', 1, '冠冠', '{"number":"184760","shop":"\\u51a0\\u51a0","phone":"0229131493","address":"\\u5317\\u65b0\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0031\\u865f"}', '184760', '711', 'zh-tw', 1000),
(4877, 290, '17-290', 1, '北新', '{"number":"170705","shop":"\\u5317\\u65b0","phone":"0229152711","address":"\\u5317\\u65b0\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0039\\u865f\\u0032\\u0039\\u0031\\u865f"}', '170705', '711', 'zh-tw', 1000),
(4878, 290, '17-290', 1, '新宜', '{"number":"905701","shop":"\\u65b0\\u5b9c","phone":"0222170873","address":"\\u5317\\u5b9c\\u8def\\u4e8c\\u6bb5\\u0034\\u865f\\u0036\\u865f"}', '905701', '711', 'zh-tw', 1000),
(4879, 290, '17-290', 1, '北宜', '{"number":"185811","shop":"\\u5317\\u5b9c","phone":"0222174891","address":"\\u5317\\u5b9c\\u8def\\u4e8c\\u6bb5\\u0038\\u0032\\u865f\\u4e4b\\u0032"}', '185811', '711', 'zh-tw', 1000),
(4880, 290, '17-290', 1, '碧興', '{"number":"148719","shop":"\\u78a7\\u8208","phone":"0229119875","address":"\\u5317\\u5b9c\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0030\\u865f\\u0031\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '148719', '711', 'zh-tw', 1000),
(4881, 290, '17-290', 1, '碧潭', '{"number":"119777","shop":"\\u78a7\\u6f6d","phone":"0286659633","address":"\\u5317\\u5b9c\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u865f"}', '119777', '711', 'zh-tw', 1000),
(4882, 290, '17-290', 1, '新店站', '{"number":"129154","shop":"\\u65b0\\u5e97\\u7ad9","phone":"0229129553","address":"\\u5317\\u5b9c\\u8def\\u4e00\\u6bb5\\u0032\\u865f"}', '129154', '711', 'zh-tw', 1000),
(4883, 290, '17-290', 1, '青潭', '{"number":"895961","shop":"\\u9752\\u6f6d","phone":"0286657746","address":"\\u5317\\u5b9c\\u8def\\u4e00\\u6bb5\\u0034\\u0031\\u002d\\u0031\\u865f"}', '895961', '711', 'zh-tw', 1000),
(4884, 290, '17-290', 1, '新店', '{"number":"193063","shop":"\\u65b0\\u5e97","phone":"0222125434","address":"\\u78a7\\u6f6d\\u8def\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '193063', '711', 'zh-tw', 1000),
(4885, 290, '17-290', 1, '涵碧', '{"number":"990260","shop":"\\u6db5\\u78a7","phone":"0222124146","address":"\\u78a7\\u6f6d\\u8def\\u0033\\u0037\\u865f"}', '990260', '711', 'zh-tw', 1000),
(4886, 290, '17-290', 1, '連豐', '{"number":"996121","shop":"\\u9023\\u8c50","phone":"0289116434","address":"\\u5927\\u8c50\\u8def\\u0031\\u0032\\u865f"}', '996121', '711', 'zh-tw', 1000),
(4887, 290, '17-290', 1, '德正', '{"number":"976932","shop":"\\u5fb7\\u6b63","phone":"0229185319","address":"\\u5fb7\\u6b63\\u8857\\u0032\\u0033\\u5df7\\u0031\\u865f"}', '976932', '711', 'zh-tw', 1000),
(4888, 290, '17-290', 1, '二十張', '{"number":"144360","shop":"\\u4e8c\\u5341\\u5f35","phone":"0229102940","address":"\\u4e8c\\u5341\\u5f35\\u8def\\u0035\\u865f\\u0031\\u6a13"}', '144360', '711', 'zh-tw', 1000),
(4889, 290, '17-290', 1, '雙建', '{"number":"110507","shop":"\\u96d9\\u5efa","phone":"0222194843","address":"\\u4e8c\\u5341\\u5f35\\u8def\\u0036\\u0034\\u865f\\u0036\\u0034\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '110507', '711', 'zh-tw', 1000),
(4890, 290, '17-290', 1, '新明', '{"number":"991333","shop":"\\u65b0\\u660e","phone":"0229127361","address":"\\u5149\\u660e\\u8857\\u0031\\u0034\\u0030\\u865f"}', '991333', '711', 'zh-tw', 1000),
(4891, 290, '17-290', 1, '天闊', '{"number":"128520","shop":"\\u5929\\u95ca","phone":"0289123449","address":"\\u74b0\\u6cb3\\u8def\\u0031\\u0036\\u865f"}', '128520', '711', 'zh-tw', 1000),
(4892, 290, '17-290', 1, '大盛', '{"number":"181668","shop":"\\u5927\\u76db","phone":"0222198674","address":"\\u5efa\\u570b\\u8def\\u0031\\u0036\\u0037\\u865f\\u0031\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '181668', '711', 'zh-tw', 1000),
(4893, 290, '17-290', 1, '新錦秀', '{"number":"971889","shop":"\\u65b0\\u9326\\u79c0","phone":"0222141427","address":"\\u9326\\u79c0\\u8def\\u0031\\u0033\\u865f\\u0031\\u0035\\u865f\\u0031\\u6a13"}', '971889', '711', 'zh-tw', 1000),
(4894, 290, '17-290', 1, '大坪林', '{"number":"159225","shop":"\\u5927\\u576a\\u6797","phone":"0229101292","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0038\\u865f"}', '159225', '711', 'zh-tw', 1000),
(4895, 290, '17-290', 1, '江菱', '{"number":"992495","shop":"\\u6c5f\\u83f1","phone":"0286673234","address":"\\u6c11\\u6b0a\\u8def\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '992495', '711', 'zh-tw', 1000),
(4896, 290, '17-290', 1, '同仁', '{"number":"906748","shop":"\\u540c\\u4ec1","phone":"0222187490","address":"\\u6c11\\u6b0a\\u8def\\u0039\\u0036\\u865f"}', '906748', '711', 'zh-tw', 1000),
(4897, 290, '17-290', 1, '愛莘', '{"number":"166946","shop":"\\u611b\\u8398","phone":"0222191951","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0031\\u0032\\u865f"}', '166946', '711', 'zh-tw', 1000),
(4898, 290, '17-290', 1, '福強', '{"number":"149538","shop":"\\u798f\\u5f37","phone":"0229161926","address":"\\u4e09\\u6c11\\u8def\\u0031\\u0034\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '149538', '711', 'zh-tw', 1000),
(4899, 290, '17-290', 1, '福德', '{"number":"173542","shop":"\\u798f\\u5fb7","phone":"0229139545","address":"\\u4e09\\u6c11\\u8def\\u0031\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '173542', '711', 'zh-tw', 1000),
(4900, 290, '17-290', 1, '百福', '{"number":"188278","shop":"\\u767e\\u798f","phone":"0229160810","address":"\\u4e09\\u6c11\\u8def\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '188278', '711', 'zh-tw', 1000),
(4901, 290, '17-290', 1, '新順安', '{"number":"155566","shop":"\\u65b0\\u9806\\u5b89","phone":"0229118504","address":"\\u9806\\u5b89\\u8857\\u0035\\u0031\\u865f\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '155566', '711', 'zh-tw', 1000),
(4902, 290, '17-290', 1, '新和', '{"number":"132105","shop":"\\u65b0\\u548c","phone":"0229438493","address":"\\u65b0\\u548c\\u8857\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '132105', '711', 'zh-tw', 1000),
(4903, 290, '17-290', 1, '新燕', '{"number":"980090","shop":"\\u65b0\\u71d5","phone":"0226667848","address":"\\u65b0\\u70cf\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u0032\\u865f\\u0033\\u0038\\u0034\\u865f\\u0031\\u6a13"}', '980090', '711', 'zh-tw', 1000),
(4904, 290, '17-290', 1, '南強', '{"number":"185534","shop":"\\u5357\\u5f37","phone":"0289147488","address":"\\u4e2d\\u8208\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u0038\\u865f\\u0031\\u0046"}', '185534', '711', 'zh-tw', 1000),
(4905, 290, '17-290', 1, '中行', '{"number":"188706","shop":"\\u4e2d\\u884c","phone":"0229128620","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0033\\u865f\\u0031\\u0039\\u0035\\u865f"}', '188706', '711', 'zh-tw', 1000),
(4906, 290, '17-290', 1, '五峰', '{"number":"896366","shop":"\\u4e94\\u5cf0","phone":"0229105740","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0035\\u0032\\u865f"}', '896366', '711', 'zh-tw', 1000),
(4907, 290, '17-290', 1, '鎮鑫', '{"number":"985349","shop":"\\u93ae\\u946b","phone":"0289146427","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '985349', '711', 'zh-tw', 1000),
(4908, 290, '17-290', 1, '新福民', '{"number":"185442","shop":"\\u65b0\\u798f\\u6c11","phone":"0222196485","address":"\\u4e2d\\u592e\\u8def\\u0031\\u0033\\u0035\\u865f"}', '185442', '711', 'zh-tw', 1000),
(4909, 290, '17-290', 1, '真親切', '{"number":"197180","shop":"\\u771f\\u89aa\\u5207","phone":"0222199322","address":"\\u4e2d\\u592e\\u8def\\u0032\\u0031\\u0032\\u865f\\u0032\\u0031\\u0034\\u865f"}', '197180', '711', 'zh-tw', 1000),
(4910, 290, '17-290', 1, '新中', '{"number":"189787","shop":"\\u65b0\\u4e2d","phone":"0289113412","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '189787', '711', 'zh-tw', 1000),
(4911, 290, '17-290', 1, '建國', '{"number":"189813","shop":"\\u5efa\\u570b","phone":"0229179890","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0033\\u0036\\u865f"}', '189813', '711', 'zh-tw', 1000),
(4912, 290, '17-290', 1, '百和', '{"number":"996903","shop":"\\u767e\\u548c","phone":"0229128626","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0036\\u865f\\u0033\\u0030\\u0038\\u865f"}', '996903', '711', 'zh-tw', 1000),
(4913, 290, '17-290', 1, '真莘', '{"number":"185073","shop":"\\u771f\\u8398","phone":"0222193728","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0036\\u0032\\u865f"}', '185073', '711', 'zh-tw', 1000),
(4914, 290, '17-290', 1, '莊鑫', '{"number":"190307","shop":"\\u838a\\u946b","phone":"0286673439","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0030\\u0033\\u4e4b\\u0033\\u865f\\u0035\\u0030\\u0033\\u4e4b\\u0034\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '190307', '711', 'zh-tw', 1000),
(4915, 290, '17-290', 1, '正民', '{"number":"189905","shop":"\\u6b63\\u6c11","phone":"0282193475","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0030\\u0038\\u865f\\u0031\\u6a13"}', '189905', '711', 'zh-tw', 1000),
(4916, 290, '17-290', 1, '新廣', '{"number":"173782","shop":"\\u65b0\\u5ee3","phone":"0222188613","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0034\\u0032\\u4e4b\\u0035\\u865f\\u0031\\u6a13"}', '173782', '711', 'zh-tw', 1000),
(4917, 290, '17-290', 1, '嶄新', '{"number":"981794","shop":"\\u5d84\\u65b0","phone":"0289146919","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0037\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '981794', '711', 'zh-tw', 1000),
(4918, 290, '17-290', 1, '正鵬', '{"number":"184047","shop":"\\u6b63\\u9d6c","phone":"0286672490","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0038\\u0038\\u865f\\u0036\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '184047', '711', 'zh-tw', 1000),
(4919, 291, '17-291', 1, '莊勝', '{"number":"161701","shop":"\\u838a\\u52dd","phone":"0222027506","address":"\\u516b\\u5fb7\\u8857\\u0035\\u0039\\u865f\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '161701', '711', 'zh-tw', 1000),
(4920, 291, '17-291', 1, '昌宏', '{"number":"170163","shop":"\\u660c\\u5b8f","phone":"0229939148","address":"\\u660c\\u9686\\u8857\\u0033\\u0031\\u865f"}', '170163', '711', 'zh-tw', 1000),
(4921, 291, '17-291', 1, '傑出', '{"number":"120755","shop":"\\u5091\\u51fa","phone":"0229920278","address":"\\u660c\\u5e73\\u8857\\u0036\\u0031\\u865f\\u0036\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '120755', '711', 'zh-tw', 1000),
(4922, 291, '17-291', 1, '金座', '{"number":"120744","shop":"\\u91d1\\u5ea7","phone":"0229927231","address":"\\u9577\\u9752\\u8857\\u0035\\u865f\\u0037\\u865f"}', '120744', '711', 'zh-tw', 1000),
(4923, 291, '17-291', 1, '林宏', '{"number":"163626","shop":"\\u6797\\u5b8f","phone":"0222036415","address":"\\u6210\\u529f\\u8857\\u0031\\u865f"}', '163626', '711', 'zh-tw', 1000),
(4924, 291, '17-291', 1, '新年', '{"number":"864897","shop":"\\u65b0\\u5e74","phone":"0222023870","address":"\\u8c50\\u5e74\\u8857\\u0035\\u0034\\u865f"}', '864897', '711', 'zh-tw', 1000),
(4925, 291, '17-291', 1, '福德三', '{"number":"197630","shop":"\\u798f\\u5fb7\\u4e09","phone":"0285212274","address":"\\u798f\\u5fb7\\u4e09\\u8857\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '197630', '711', 'zh-tw', 1000),
(4926, 291, '17-291', 1, '五工', '{"number":"128689","shop":"\\u4e94\\u5de5","phone":"0222999109","address":"\\u798f\\u57fa\\u91cc\\u0031\\u0037\\u9130\\u4e94\\u5de5\\u4e8c\\u8def\\u0039\\u0031\\u865f"}', '128689', '711', 'zh-tw', 1000),
(4927, 291, '17-291', 1, '福基', '{"number":"946366","shop":"\\u798f\\u57fa","phone":"0222991171","address":"\\u798f\\u57fa\\u91cc\\u4e94\\u5de5\\u8def\\u0037\\u0030\\u865f"}', '946366', '711', 'zh-tw', 1000),
(4928, 291, '17-291', 1, '昌福', '{"number":"186629","shop":"\\u660c\\u798f","phone":"0229906614","address":"\\u798f\\u58fd\\u8857\\u0031\\u0030\\u0031\\u865f\\u0031\\u6a13"}', '186629', '711', 'zh-tw', 1000),
(4929, 291, '17-291', 1, '福壽', '{"number":"171546","shop":"\\u798f\\u58fd","phone":"0222761740","address":"\\u798f\\u58fd\\u8857\\u0031\\u0034\\u0030\\u865f"}', '171546', '711', 'zh-tw', 1000),
(4930, 291, '17-291', 1, '福營', '{"number":"158990","shop":"\\u798f\\u71df","phone":"0229013274","address":"\\u798f\\u71df\\u91cc\\u5efa\\u570b\\u4e00\\u8def\\u0035\\u0030\\u865f\\u0035\\u0032\\u865f"}', '158990', '711', 'zh-tw', 1000),
(4931, 291, '17-291', 1, '美新', '{"number":"186423","shop":"\\u7f8e\\u65b0","phone":"0229964129","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0031\\u865f\\u0031\\u0034\\u0033\\u865f"}', '186423', '711', 'zh-tw', 1000),
(4932, 291, '17-291', 1, '安復', '{"number":"832502","shop":"\\u5b89\\u5fa9","phone":"0229971153","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0033\\u865f"}', '832502', '711', 'zh-tw', 1000),
(4933, 291, '17-291', 1, '復和', '{"number":"164021","shop":"\\u5fa9\\u548c","phone":"0222769964","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\u0037\\u0039\\u865f\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '164021', '711', 'zh-tw', 1000),
(4934, 291, '17-291', 1, '富營', '{"number":"158565","shop":"\\u5bcc\\u71df","phone":"0229033920","address":"\\u5bcc\\u570b\\u8def\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '158565', '711', 'zh-tw', 1000),
(4935, 291, '17-291', 1, '宏福', '{"number":"112569","shop":"\\u5b8f\\u798f","phone":"0222778284","address":"\\u516c\\u5712\\u4e00\\u8def\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '112569', '711', 'zh-tw', 1000),
(4936, 291, '17-291', 1, '新龍', '{"number":"947336","shop":"\\u65b0\\u9f8d","phone":"0222056440","address":"\\u5149\\u660e\\u91cc\\u6c11\\u5b89\\u897f\\u8def\\u0032\\u0033\\u0032\\u865f"}', '947336', '711', 'zh-tw', 1000),
(4937, 291, '17-291', 1, '新宏盛', '{"number":"967190","shop":"\\u65b0\\u5b8f\\u76db","phone":"0222064537","address":"\\u5f8c\\u6e2f\\u4e00\\u8def\\u0031\\u0031\\u0034\\u865f"}', '967190', '711', 'zh-tw', 1000),
(4938, 291, '17-291', 1, '意幼', '{"number":"197331","shop":"\\u610f\\u5e7c","phone":"0229081423","address":"\\u5f8c\\u6e2f\\u4e00\\u8def\\u0031\\u0037\\u0033\\u865f\\u0031\\u6a13"}', '197331', '711', 'zh-tw', 1000),
(4939, 291, '17-291', 1, '后福', '{"number":"119364","shop":"\\u540e\\u798f","phone":"0222051513","address":"\\u5f8c\\u6e2f\\u4e00\\u8def\\u0032\\u0039\\u865f"}', '119364', '711', 'zh-tw', 1000),
(4940, 291, '17-291', 1, '後港', '{"number":"113182","shop":"\\u5f8c\\u6e2f","phone":"0222040529","address":"\\u5f8c\\u6e2f\\u4e00\\u8def\\u0037\\u0036\\u5df7\\u0031\\u0034\\u5f04\\u0031\\u865f\\u0031\\u6a13"}', '113182', '711', 'zh-tw', 1000),
(4941, 291, '17-291', 1, '新茂', '{"number":"166131","shop":"\\u65b0\\u8302","phone":"0229900950","address":"\\u5316\\u6210\\u8def\\u0031\\u0031\\u0038\\u865f\\u0031\\u0032\\u0030\\u865f"}', '166131', '711', 'zh-tw', 1000),
(4942, 291, '17-291', 1, '新化成', '{"number":"188751","shop":"\\u65b0\\u5316\\u6210","phone":"0229920145","address":"\\u5316\\u6210\\u8def\\u0032\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '188751', '711', 'zh-tw', 1000),
(4943, 291, '17-291', 1, '原成', '{"number":"166201","shop":"\\u539f\\u6210","phone":"0285212445","address":"\\u5316\\u6210\\u8def\\u0033\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '166201', '711', 'zh-tw', 1000),
(4944, 291, '17-291', 1, '莊成', '{"number":"957355","shop":"\\u838a\\u6210","phone":"0229947258","address":"\\u5316\\u6210\\u8def\\u0033\\u0035\\u0034\\u865f"}', '957355', '711', 'zh-tw', 1000),
(4945, 291, '17-291', 1, '頭前', '{"number":"886082","shop":"\\u982d\\u524d","phone":"0285216806","address":"\\u5316\\u6210\\u8def\\u0034\\u0032\\u0039\\u002d\\u0034\\u865f"}', '886082', '711', 'zh-tw', 1000),
(4946, 291, '17-291', 1, '時安', '{"number":"174202","shop":"\\u6642\\u5b89","phone":"0222041891","address":"\\u5efa\\u5b89\\u8857\\u0039\\u0035\\u865f\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '174202', '711', 'zh-tw', 1000),
(4947, 291, '17-291', 1, '建中', '{"number":"174833","shop":"\\u5efa\\u4e2d","phone":"0229961326","address":"\\u5efa\\u4e2d\\u8857\\u0036\\u865f\\u0038\\u865f"}', '174833', '711', 'zh-tw', 1000),
(4948, 291, '17-291', 1, '新統義', '{"number":"144692","shop":"\\u65b0\\u7d71\\u7fa9","phone":"0229960564","address":"\\u5efa\\u4e2d\\u8857\\u0039\\u0031\\u865f\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '144692', '711', 'zh-tw', 1000),
(4949, 291, '17-291', 1, '藝寶', '{"number":"149723","shop":"\\u85dd\\u5bf6","phone":"0222771804","address":"\\u7acb\\u4fe1\\u4e09\\u8857\\u0038\\u865f"}', '149723', '711', 'zh-tw', 1000),
(4950, 291, '17-291', 1, '龍安', '{"number":"164249","shop":"\\u9f8d\\u5b89","phone":"0222049994","address":"\\u9f8d\\u5b89\\u8def\\u0032\\u0035\\u0036\\u865f"}', '164249', '711', 'zh-tw', 1000),
(4951, 291, '17-291', 1, '莊龍', '{"number":"968827","shop":"\\u838a\\u9f8d","phone":"0229043056","address":"\\u9f8d\\u5b89\\u8def\\u0036\\u0036\\u865f"}', '968827', '711', 'zh-tw', 1000),
(4952, 291, '17-291', 1, '新安', '{"number":"166038","shop":"\\u65b0\\u5b89","phone":"0222028937","address":"\\u6c11\\u5b89\\u6771\\u8def\\u0031\\u0038\\u0035\\u865f\\u0031\\u0038\\u0037\\u865f\\u90e8\\u4efd\\u0031\\u6a13"}', '166038', '711', 'zh-tw', 1000),
(4953, 291, '17-291', 1, '西盛', '{"number":"921714","shop":"\\u897f\\u76db","phone":"0222084323","address":"\\u6c11\\u5b89\\u897f\\u8def\\u0031\\u0031\\u0033\\u865f\\u4e4b\\u0031"}', '921714', '711', 'zh-tw', 1000),
(4954, 291, '17-291', 1, '光華', '{"number":"934776","shop":"\\u5149\\u83ef","phone":"0222073795","address":"\\u6c11\\u5b89\\u897f\\u8def\\u0033\\u0039\\u0030\\u865f"}', '934776', '711', 'zh-tw', 1000),
(4955, 291, '17-291', 1, '宏懋', '{"number":"174224","shop":"\\u5b8f\\u61cb","phone":"0222047391","address":"\\u6c11\\u5b89\\u897f\\u8def\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '174224', '711', 'zh-tw', 1000),
(4956, 291, '17-291', 1, '富新', '{"number":"190651","shop":"\\u5bcc\\u65b0","phone":"0222047494","address":"\\u74ca\\u6797\\u5357\\u8def\\u0031\\u0031\\u0038\\u002d\\u0035\\u865f"}', '190651', '711', 'zh-tw', 1000),
(4957, 291, '17-291', 1, '輔泰', '{"number":"962748","shop":"\\u8f14\\u6cf0","phone":"0229048544","address":"\\u4e09\\u6cf0\\u8def\\u0031\\u0031\\u865f"}', '962748', '711', 'zh-tw', 1000),
(4958, 291, '17-291', 1, '雙鳳', '{"number":"137834","shop":"\\u96d9\\u9cf3","phone":"0229081398","address":"\\u96d9\\u9cf3\\u8def\\u0031\\u0031\\u0034\\u865f\\u0031\\u6a13"}', '137834', '711', 'zh-tw', 1000),
(4959, 291, '17-291', 1, '錦興', '{"number":"164087","shop":"\\u9326\\u8208","phone":"0229965441","address":"\\u601d\\u6e90\\u8def\\u0031\\u0038\\u0031\\u865f"}', '164087', '711', 'zh-tw', 1000),
(4960, 291, '17-291', 1, '茂源', '{"number":"170565","shop":"\\u8302\\u6e90","phone":"0229949736","address":"\\u601d\\u6e90\\u8def\\u0034\\u0030\\u002d\\u0031\\u865f"}', '170565', '711', 'zh-tw', 1000),
(4961, 291, '17-291', 1, '廣進', '{"number":"893035","shop":"\\u5ee3\\u9032","phone":"0282019030","address":"\\u56db\\u7dad\\u8def\\u0031\\u0037\\u0033\\u865f"}', '893035', '711', 'zh-tw', 1000),
(4962, 291, '17-291', 1, '維妮', '{"number":"181716","shop":"\\u7dad\\u59ae","phone":"0222037122","address":"\\u56db\\u7dad\\u8def\\u0032\\u0033\\u865f\\u0031\\u6a13"}', '181716', '711', 'zh-tw', 1000),
(4963, 291, '17-291', 1, '添祥', '{"number":"132633","shop":"\\u6dfb\\u7965","phone":"0229012645","address":"\\u5929\\u7965\\u8857\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '132633', '711', 'zh-tw', 1000),
(4964, 291, '17-291', 1, '采旺', '{"number":"893448","shop":"\\u91c7\\u65fa","phone":"0229087919","address":"\\u5929\\u7965\\u8857\\u0037\\u0034\\u865f"}', '893448', '711', 'zh-tw', 1000),
(4965, 291, '17-291', 1, '美福', '{"number":"194505","shop":"\\u7f8e\\u798f","phone":"0229909254","address":"\\u982d\\u8208\\u8857\\u0031\\u0038\\u0036\\u865f\\u0031\\u0038\\u0038\\u865f"}', '194505', '711', 'zh-tw', 1000),
(4966, 291, '17-291', 1, '富安', '{"number":"194387","shop":"\\u5bcc\\u5b89","phone":"0222022357","address":"\\u842c\\u5b89\\u8857\\u0031\\u0038\\u002d\\u0031\\u865f\\u0031\\u0032\\u002d\\u0031\\u865f"}', '194387', '711', 'zh-tw', 1000),
(4967, 291, '17-291', 1, '弘安', '{"number":"164227","shop":"\\u5f18\\u5b89","phone":"0222035994","address":"\\u842c\\u5b89\\u8857\\u0038\\u0032\\u865f\\u0038\\u0034\\u865f"}', '164227', '711', 'zh-tw', 1000),
(4968, 291, '17-291', 1, '九州', '{"number":"192602","shop":"\\u4e5d\\u5dde","phone":"0222984540","address":"\\u4e94\\u5de5\\u4e8c\\u8def\\u0036\\u0030\\u865f\\u0036\\u0032\\u5df7\\u0031\\u865f"}', '192602', '711', 'zh-tw', 1000),
(4969, 291, '17-291', 1, '新福圓', '{"number":"982627","shop":"\\u65b0\\u798f\\u5713","phone":"0222984180","address":"\\u4e94\\u5de5\\u4e09\\u8def\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '982627', '711', 'zh-tw', 1000),
(4970, 291, '17-291', 1, '福來', '{"number":"126797","shop":"\\u798f\\u4f86","phone":"0222984899","address":"\\u4e94\\u6b0a\\u4e00\\u8def\\u0038\\u865f"}', '126797', '711', 'zh-tw', 1000),
(4971, 291, '17-291', 1, '龍盛', '{"number":"119504","shop":"\\u9f8d\\u76db","phone":"0222029412","address":"\\u897f\\u76db\\u8857\\u0032\\u0030\\u0034\\u5df7\\u0031\\u865f\\u0031\\u6a13\\u0032\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '119504', '711', 'zh-tw', 1000),
(4972, 291, '17-291', 1, '新展盛', '{"number":"980805","shop":"\\u65b0\\u5c55\\u76db","phone":"0222048185","address":"\\u897f\\u76db\\u8857\\u0033\\u0032\\u0035\\u865f\\u0033\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '980805', '711', 'zh-tw', 1000),
(4973, 291, '17-291', 1, '一級棒', '{"number":"174257","shop":"\\u4e00\\u7d1a\\u68d2","phone":"0229018947","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e03\\u6bb5\\u0034\\u0038\\u0032\\u865f"}', '174257', '711', 'zh-tw', 1000),
(4974, 291, '17-291', 1, '丹鳳', '{"number":"890092","shop":"\\u4e39\\u9cf3","phone":"0229072566","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e03\\u6bb5\\u0038\\u0034\\u0032\\u865f"}', '890092', '711', 'zh-tw', 1000),
(4975, 291, '17-291', 1, '新樹', '{"number":"136059","shop":"\\u65b0\\u6a39","phone":"0222048764","address":"\\u65b0\\u6a39\\u8def\\u0031\\u0036\\u0036\\u865f\\u53ca\\u6c11\\u5b89\\u8def\\u0034\\u0036\\u0031\\u865f"}', '136059', '711', 'zh-tw', 1000),
(4976, 291, '17-291', 1, '國瑞', '{"number":"998105","shop":"\\u570b\\u745e","phone":"0222045410","address":"\\u65b0\\u6a39\\u8def\\u0033\\u0030\\u0030\\u865f\\u4e4b\\u0035"}', '998105', '711', 'zh-tw', 1000),
(4977, 291, '17-291', 1, '儷新', '{"number":"892032","shop":"\\u5137\\u65b0","phone":"0282019766","address":"\\u65b0\\u6a39\\u8def\\u0034\\u0035\\u0031\\u865f"}', '892032', '711', 'zh-tw', 1000),
(4978, 291, '17-291', 1, '品嘉', '{"number":"150804","shop":"\\u54c1\\u5609","phone":"0229087554","address":"\\u65b0\\u6a39\\u8def\\u0036\\u0039\\u4e4b\\u0034\\u865f\\u4e4b\\u0035\\u865f\\u0031\\u6a13"}', '150804', '711', 'zh-tw', 1000),
(4979, 291, '17-291', 1, '莊泰', '{"number":"970222","shop":"\\u838a\\u6cf0","phone":"0222023295","address":"\\u65b0\\u6cf0\\u8def\\u0032\\u0031\\u865f"}', '970222', '711', 'zh-tw', 1000),
(4980, 291, '17-291', 1, '新泰', '{"number":"844310","shop":"\\u65b0\\u6cf0","phone":"0229973483","address":"\\u65b0\\u6cf0\\u8def\\u0032\\u0036\\u0037\\u865f"}', '844310', '711', 'zh-tw', 1000),
(4981, 291, '17-291', 1, '雙泰', '{"number":"928151","shop":"\\u96d9\\u6cf0","phone":"0229971829","address":"\\u65b0\\u6cf0\\u8def\\u0033\\u0033\\u0030\\u865f"}', '928151', '711', 'zh-tw', 1000),
(4982, 291, '17-291', 1, '興洲', '{"number":"201069","shop":"\\u8208\\u6d32","phone":"0222765348","address":"\\u65b0\\u6cf0\\u8def\\u0034\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '201069', '711', 'zh-tw', 1000),
(4983, 291, '17-291', 1, '武聖廟', '{"number":"196051","shop":"\\u6b66\\u8056\\u5edf","phone":"0289928410","address":"\\u65b0\\u838a\\u8def\\u0034\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '196051', '711', 'zh-tw', 1000),
(4984, 291, '17-291', 1, '思源', '{"number":"159443","shop":"\\u601d\\u6e90","phone":"0229977848","address":"\\u5e78\\u798f\\u8def\\u0034\\u0030\\u865f\\u0034\\u0032\\u865f"}', '159443', '711', 'zh-tw', 1000),
(4985, 291, '17-291', 1, '鑫福', '{"number":"142168","shop":"\\u946b\\u798f","phone":"0229964324","address":"\\u5e78\\u798f\\u8def\\u0037\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '142168', '711', 'zh-tw', 1000),
(4986, 291, '17-291', 1, '花旗', '{"number":"872108","shop":"\\u82b1\\u65d7","phone":"0289918896","address":"\\u4e2d\\u6e2f\\u8def\\u0031\\u0033\\u0032\\u5df7\\u0032\\u0036\\u865f"}', '872108', '711', 'zh-tw', 1000),
(4987, 291, '17-291', 1, '中港', '{"number":"780399","shop":"\\u4e2d\\u6e2f","phone":"0229978073","address":"\\u4e2d\\u6e2f\\u8def\\u0031\\u0033\\u0033\\u865f"}', '780399', '711', 'zh-tw', 1000),
(4988, 291, '17-291', 1, '福港', '{"number":"161963","shop":"\\u798f\\u6e2f","phone":"0229977091","address":"\\u4e2d\\u6e2f\\u8def\\u0033\\u0039\\u0030\\u865f"}', '161963', '711', 'zh-tw', 1000),
(4989, 291, '17-291', 1, '港義', '{"number":"149745","shop":"\\u6e2f\\u7fa9","phone":"0222766035","address":"\\u4e2d\\u6e2f\\u8def\\u0035\\u0032\\u0037\\u865f"}', '149745', '711', 'zh-tw', 1000),
(4990, 291, '17-291', 1, '中泰', '{"number":"136967","shop":"\\u4e2d\\u6cf0","phone":"0222762842","address":"\\u4e2d\\u6e2f\\u4e00\\u8857\\u0031\\u0030\\u865f\\u0031\\u0030\\u002d\\u0031\\u865f"}', '136967', '711', 'zh-tw', 1000),
(4991, 291, '17-291', 1, '幸和', '{"number":"135023","shop":"\\u5e78\\u548c","phone":"0222771851","address":"\\u4e2d\\u548c\\u8857\\u0031\\u0037\\u0034\\u865f\\u0031\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '135023', '711', 'zh-tw', 1000),
(4992, 291, '17-291', 1, '榮和', '{"number":"151988","shop":"\\u69ae\\u548c","phone":"0229919383","address":"\\u4e2d\\u548c\\u8857\\u0031\\u0039\\u0031\\u5df7\\u0031\\u865f\\u0033\\u865f\\u0035\\u865f"}', '151988', '711', 'zh-tw', 1000),
(4993, 291, '17-291', 1, '宏全', '{"number":"944441","shop":"\\u5b8f\\u5168","phone":"0222799919","address":"\\u4e2d\\u548c\\u8857\\u0036\\u0031\\u865f"}', '944441', '711', 'zh-tw', 1000),
(4994, 291, '17-291', 1, '莊捷', '{"number":"194217","shop":"\\u838a\\u6377","phone":"0229906318","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u865f\\u0033\\u0037\\u4e4b\\u0031\\u865f\\u0033\\u0039\\u865f\\u0033\\u0039\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '194217', '711', 'zh-tw', 1000),
(4995, 291, '17-291', 1, '真豪', '{"number":"940863","shop":"\\u771f\\u8c6a","phone":"0289944791","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0037\\u0033\\u865f"}', '940863', '711', 'zh-tw', 1000),
(4996, 291, '17-291', 1, '宜增', '{"number":"169901","shop":"\\u5b9c\\u589e","phone":"0229906376","address":"\\u4e2d\\u5e73\\u8def\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '169901', '711', 'zh-tw', 1000),
(4997, 291, '17-291', 1, '藝高', '{"number":"148568","shop":"\\u85dd\\u9ad8","phone":"0229972069","address":"\\u4e2d\\u5e73\\u8def\\u0033\\u0035\\u0037\\u865f"}', '148568', '711', 'zh-tw', 1000),
(4998, 291, '17-291', 1, '中央', '{"number":"159432","shop":"\\u4e2d\\u592e","phone":"0285217131","address":"\\u4e2d\\u5e73\\u8def\\u0034\\u0033\\u0039\\u865f\\u0042\\u0031\\u6a13"}', '159432', '711', 'zh-tw', 1000),
(4999, 291, '17-291', 1, '中平', '{"number":"167592","shop":"\\u4e2d\\u5e73","phone":"0229904121","address":"\\u4e2d\\u5e73\\u8def\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '167592', '711', 'zh-tw', 1000),
(5000, 291, '17-291', 1, '加州', '{"number":"171111","shop":"\\u52a0\\u5dde","phone":"0229983481","address":"\\u4e2d\\u5e73\\u8def\\u0038\\u0031\\u5df7\\u0032\\u865f"}', '171111', '711', 'zh-tw', 1000),
(5001, 291, '17-291', 1, '榮富', '{"number":"164098","shop":"\\u69ae\\u5bcc","phone":"0229972753","address":"\\u4e2d\\u69ae\\u8857\\u0034\\u0033\\u865f\\u0034\\u0037\\u865f"}', '164098', '711', 'zh-tw', 1000),
(5002, 291, '17-291', 1, '副都心', '{"number":"182719","shop":"\\u526f\\u90fd\\u5fc3","phone":"0285213407","address":"\\u4e2d\\u592e\\u8def\\u0032\\u0038\\u0037\\u865f\\u0032\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '182719', '711', 'zh-tw', 1000),
(5003, 291, '17-291', 1, '都峰苑', '{"number":"194480","shop":"\\u90fd\\u5cf0\\u82d1","phone":"0285218624","address":"\\u4e2d\\u592e\\u8def\\u0036\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '194480', '711', 'zh-tw', 1000),
(5004, 291, '17-291', 1, '榮信', '{"number":"190846","shop":"\\u69ae\\u4fe1","phone":"0229963682","address":"\\u4e2d\\u539f\\u91cc\\u4e2d\\u69ae\\u8857\\u0032\\u0035\\u9130\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '190846', '711', 'zh-tw', 1000),
(5005, 291, '17-291', 1, '昌原', '{"number":"169897","shop":"\\u660c\\u539f","phone":"0229962402","address":"\\u4e2d\\u539f\\u8def\\u0031\\u0033\\u0037\\u4e4b\\u0031\\u4e4b\\u0032\\u4e4b\\u0033\\u865f\\u0031\\u6a13"}', '169897', '711', 'zh-tw', 1000),
(5006, 291, '17-291', 1, '新港原', '{"number":"158875","shop":"\\u65b0\\u6e2f\\u539f","phone":"0229923296","address":"\\u4e2d\\u539f\\u8def\\u0032\\u0030\\u0031\\u865f\\u0032\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '158875', '711', 'zh-tw', 1000),
(5007, 291, '17-291', 1, '文正', '{"number":"184276","shop":"\\u6587\\u6b63","phone":"0229942142","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '184276', '711', 'zh-tw', 1000),
(5008, 291, '17-291', 1, '輔進', '{"number":"165828","shop":"\\u8f14\\u9032","phone":"0229056534","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0031\\u0030\\u865f"}', '165828', '711', 'zh-tw', 1000),
(5009, 291, '17-291', 1, '輔明', '{"number":"965220","shop":"\\u8f14\\u660e","phone":"0229028207","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0031\\u0034\\u5df7\\u0039\\u0039\\u865f"}', '965220', '711', 'zh-tw', 1000),
(5010, 291, '17-291', 1, '輔大', '{"number":"960535","shop":"\\u8f14\\u5927","phone":"0229026304","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0031\\u0036\\u002d\\u0031\\u865f"}', '960535', '711', 'zh-tw', 1000),
(5011, 291, '17-291', 1, '新遠', '{"number":"901307","shop":"\\u65b0\\u9060","phone":"0229088727","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0035\\u0031\\u865f\\u4e4b\\u0038\\u865f"}', '901307', '711', 'zh-tw', 1000),
(5012, 291, '17-291', 1, '三洋', '{"number":"189189","shop":"\\u4e09\\u6d0b","phone":"0229088626","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0037\\u0037\\u865f\\u0036\\u0037\\u0039\\u865f"}', '189189', '711', 'zh-tw', 1000),
(5013, 291, '17-291', 1, '鳳祥', '{"number":"131777","shop":"\\u9cf3\\u7965","phone":"0229072129","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0030\\u0038\\u002d\\u0032\\u865f"}', '131777', '711', 'zh-tw', 1000),
(5014, 291, '17-291', 1, '迴龍站', '{"number":"183723","shop":"\\u8ff4\\u9f8d\\u7ad9","phone":"0229015542","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0039\\u0035\\u865f\\u0038\\u0039\\u0035\\u865f\\u4e4b\\u0031\\u865f"}', '183723', '711', 'zh-tw', 1000),
(5015, 291, '17-291', 1, '傑元', '{"number":"139173","shop":"\\u5091\\u5143","phone":"0229068264","address":"\\u4e2d\\u6b63\\u8def\\u0039\\u0032\\u0039\\u5df7\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f"}', '139173', '711', 'zh-tw', 1000),
(5016, 291, '17-291', 1, '富旺', '{"number":"153401","shop":"\\u5bcc\\u65fa","phone":"0229945910","address":"\\u81ea\\u7acb\\u8857\\u0031\\u0037\\u0036\\u865f\\u0031\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '153401', '711', 'zh-tw', 1000),
(5017, 292, '17-292', 1, '歌德', '{"number":"123477","shop":"\\u6b4c\\u5fb7","phone":"0286780326","address":"\\u5fb7\\u660c\\u4e8c\\u8857\\u0037\\u0037\\u865f\\u4e4b\\u0031"}', '123477', '711', 'zh-tw', 1000),
(5018, 292, '17-292', 1, '元町', '{"number":"165596","shop":"\\u5143\\u753a","phone":"0226708742","address":"\\u5149\\u660e\\u8857\\u0031\\u0032\\u0038\\u865f\\u0031\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '165596', '711', 'zh-tw', 1000),
(5019, 292, '17-292', 1, '歌園', '{"number":"126373","shop":"\\u6b4c\\u5712","phone":"0286774484","address":"\\u570b\\u83ef\\u8def\\u0033\\u0031\\u865f"}', '126373', '711', 'zh-tw', 1000),
(5020, 292, '17-292', 1, '尖山', '{"number":"126786","shop":"\\u5c16\\u5c71","phone":"0226774621","address":"\\u570b\\u969b\\u4e8c\\u8def\\u0036\\u5df7\\u0031\\u865f"}', '126786', '711', 'zh-tw', 1000),
(5021, 292, '17-292', 1, '鶯歌', '{"number":"162542","shop":"\\u9daf\\u6b4c","phone":"0226798006","address":"\\u570b\\u6176\\u8857\\u0031\\u0033\\u0039\\u865f"}', '162542', '711', 'zh-tw', 1000),
(5022, 292, '17-292', 1, '歌亭', '{"number":"916099","shop":"\\u6b4c\\u4ead","phone":"0226791544","address":"\\u5c16\\u5c71\\u91cc\\u5c16\\u5c71\\u8def\\u0031\\u0035\\u0030\\u865f"}', '916099', '711', 'zh-tw', 1000),
(5023, 292, '17-292', 1, '樂陶', '{"number":"179861","shop":"\\u6a02\\u9676","phone":"0226775483","address":"\\u5c16\\u5c71\\u8def\\u0032\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '179861', '711', 'zh-tw', 1000),
(5024, 292, '17-292', 1, '鶯瓷', '{"number":"149653","shop":"\\u9daf\\u74f7","phone":"0226776941","address":"\\u5c16\\u5c71\\u57d4\\u8def\\u0031\\u0030\\u0030\\u865f\\u0031\\u0030\\u0032\\u865f"}', '149653', '711', 'zh-tw', 1000),
(5025, 292, '17-292', 1, '金億', '{"number":"123639","shop":"\\u91d1\\u5104","phone":"0226777111","address":"\\u5efa\\u570b\\u8def\\u0032\\u0037\\u0038\\u865f"}', '123639', '711', 'zh-tw', 1000),
(5026, 292, '17-292', 1, '鶯育', '{"number":"993867","shop":"\\u9daf\\u80b2","phone":"0286781712","address":"\\u5357\\u96c5\\u8def\\u0033\\u0034\\u865f\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '993867', '711', 'zh-tw', 1000),
(5027, 292, '17-292', 1, '三靖', '{"number":"950907","shop":"\\u4e09\\u9756","phone":"0226746991","address":"\\u4e09\\u9daf\\u8def\\u0035\\u0032\\u865f\\u4e00\\u6a13"}', '950907', '711', 'zh-tw', 1000),
(5028, 292, '17-292', 1, '聖陶', '{"number":"976150","shop":"\\u8056\\u9676","phone":"0226783246","address":"\\u6587\\u5316\\u8def\\u0034\\u0030\\u0037\\u865f\\u0034\\u0031\\u0031\\u865f"}', '976150', '711', 'zh-tw', 1000),
(5029, 292, '17-292', 1, '鶯歌讚', '{"number":"196361","shop":"\\u9daf\\u6b4c\\u8b9a","phone":"0226772438","address":"\\u6587\\u5316\\u8def\\u0036\\u0038\\u002d\\u0031\\u865f\\u0032\\u6a13\\u0043\\u002b\\u0044\\u5340"}', '196361', '711', 'zh-tw', 1000),
(5030, 292, '17-292', 1, '金鶯', '{"number":"912271","shop":"\\u91d1\\u9daf","phone":"0226777210","address":"\\u9daf\\u6843\\u8def\\u0031\\u0033\\u0031\\u002d\\u0031\\u0033\\u0033\\u865f"}', '912271', '711', 'zh-tw', 1000),
(5031, 292, '17-292', 1, '長虹', '{"number":"982328","shop":"\\u9577\\u8679","phone":"0226789855","address":"\\u9daf\\u6843\\u8def\\u0034\\u0033\\u0032\\u865f\\u0031\\u6a13"}', '982328', '711', 'zh-tw', 1000),
(5032, 292, '17-292', 1, '翔鳳', '{"number":"190422","shop":"\\u7fd4\\u9cf3","phone":"0226773047","address":"\\u9daf\\u6843\\u8def\\u0034\\u0036\\u0037\\u865f\\u0034\\u0036\\u0039\\u865f"}', '190422', '711', 'zh-tw', 1000),
(5033, 292, '17-292', 1, '萬全', '{"number":"901260","shop":"\\u842c\\u5168","phone":"0286776880","address":"\\u9daf\\u6843\\u8def\\u0036\\u0036\\u0030\\u865f"}', '901260', '711', 'zh-tw', 1000),
(5034, 292, '17-292', 1, '鳳福', '{"number":"163947","shop":"\\u9cf3\\u798f","phone":"0226774207","address":"\\u9daf\\u6843\\u8def\\u4e8c\\u6bb5\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '163947', '711', 'zh-tw', 1000),
(5035, 292, '17-292', 1, '鶯桃', '{"number":"165633","shop":"\\u9daf\\u6843","phone":"0226782143","address":"\\u9daf\\u6843\\u8def\\u4e8c\\u6bb5\\u0037\\u865f"}', '165633', '711', 'zh-tw', 1000),
(5036, 292, '17-292', 1, '國鶯', '{"number":"197397","shop":"\\u570b\\u9daf","phone":"0226705843","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0032\\u865f\\u0031\\u0046"}', '197397', '711', 'zh-tw', 1000),
(5037, 292, '17-292', 1, '二甲', '{"number":"166751","shop":"\\u4e8c\\u7532","phone":"0226797209","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0031\\u0036\\u0035\\u865f\\u0031\\u0036\\u0037\\u865f"}', '166751', '711', 'zh-tw', 1000),
(5038, 292, '17-292', 1, '博鑫', '{"number":"972273","shop":"\\u535a\\u946b","phone":"0226708042","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0032\\u0038\\u0033\\u002d\\u0031\\u865f\\u0032\\u0038\\u0033\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '972273', '711', 'zh-tw', 1000),
(5039, 292, '17-292', 1, '二橋', '{"number":"138549","shop":"\\u4e8c\\u6a4b","phone":"0226774894","address":"\\u4e2d\\u6b63\\u4e09\\u8def\\u0039\\u0033\\u865f"}', '138549', '711', 'zh-tw', 1000),
(5040, 292, '17-292', 1, '加百列', '{"number":"194594","shop":"\\u52a0\\u767e\\u5217","phone":"0286777134","address":"\\u4e2d\\u6b63\\u4e00\\u8def\\u0031\\u0033\\u0031\\u865f\\u0031\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '194594', '711', 'zh-tw', 1000),
(5041, 293, '17-293', 1, '保生', '{"number":"860655","shop":"\\u4fdd\\u751f","phone":"0222314015","address":"\\u4fdd\\u5b89\\u91cc\\u4fdd\\u751f\\u8def\\u0031\\u865f"}', '860655', '711', 'zh-tw', 1000),
(5042, 293, '17-293', 1, '元坊', '{"number":"152062","shop":"\\u5143\\u574a","phone":"0229285539","address":"\\u4fdd\\u5b89\\u8def\\u0031\\u0033\\u0034\\u865f\\u0031\\u0033\\u0036\\u865f"}', '152062', '711', 'zh-tw', 1000),
(5043, 293, '17-293', 1, '新保福', '{"number":"970439","shop":"\\u65b0\\u4fdd\\u798f","phone":"0229233298","address":"\\u4fdd\\u5b89\\u8def\\u0032\\u0032\\u0030\\u865f"}', '970439', '711', 'zh-tw', 1000),
(5044, 293, '17-293', 1, '保平', '{"number":"159487","shop":"\\u4fdd\\u5e73","phone":"0229239344","address":"\\u4fdd\\u5e73\\u8def\\u0031\\u0033\\u0035\\u865f"}', '159487', '711', 'zh-tw', 1000),
(5045, 293, '17-293', 1, '新保捷', '{"number":"990640","shop":"\\u65b0\\u4fdd\\u6377","phone":"0282316627","address":"\\u4fdd\\u751f\\u8def\\u0032\\u0032\\u5df7\\u0032\\u865f\\u0031\\u6a13"}', '990640', '711', 'zh-tw', 1000),
(5046, 293, '17-293', 1, '保順', '{"number":"951438","shop":"\\u4fdd\\u9806","phone":"0289232533","address":"\\u4fdd\\u9806\\u8def\\u0033\\u0039\\u865f\\u53ca\\u4fdd\\u9806\\u8def\\u0033\\u0037\\u5df7\\u0032\\u865f"}', '951438', '711', 'zh-tw', 1000),
(5047, 293, '17-293', 1, '麗金', '{"number":"992598","shop":"\\u9e97\\u91d1","phone":"0229267956","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\u0038\\u0033\\u865f\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '992598', '711', 'zh-tw', 1000),
(5048, 293, '17-293', 1, '得和', '{"number":"189868","shop":"\\u5f97\\u548c","phone":"0229282743","address":"\\u5f97\\u548c\\u8def\\u0031\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '189868', '711', 'zh-tw', 1000),
(5049, 293, '17-293', 1, '得福', '{"number":"162575","shop":"\\u5f97\\u798f","phone":"0229225730","address":"\\u5f97\\u548c\\u8def\\u0032\\u0034\\u0031\\u865f"}', '162575', '711', 'zh-tw', 1000),
(5050, 293, '17-293', 1, '秀朗', '{"number":"142456","shop":"\\u79c0\\u6717","phone":"0229299747","address":"\\u5f97\\u548c\\u8def\\u0033\\u0038\\u0039\\u865f\\u0033\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '142456', '711', 'zh-tw', 1000),
(5051, 293, '17-293', 1, '北福', '{"number":"992624","shop":"\\u5317\\u798f","phone":"0289211047","address":"\\u798f\\u548c\\u8def\\u0031\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '992624', '711', 'zh-tw', 1000),
(5052, 293, '17-293', 1, '安福', '{"number":"978802","shop":"\\u5b89\\u798f","phone":"0229226454","address":"\\u798f\\u548c\\u8def\\u0032\\u0031\\u0033\\u865f"}', '978802', '711', 'zh-tw', 1000),
(5053, 293, '17-293', 1, '環永', '{"number":"130866","shop":"\\u74b0\\u6c38","phone":"0222326083","address":"\\u74b0\\u6cb3\\u897f\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0031\\u865f\\u0032\\u0033\\u0033\\u865f\\u0031\\u6a13"}', '130866', '711', 'zh-tw', 1000),
(5054, 293, '17-293', 1, '永權', '{"number":"181473","shop":"\\u6c38\\u6b0a","phone":"0229440937","address":"\\u6c11\\u6b0a\\u8def\\u0033\\u0032\\u865f\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '181473', '711', 'zh-tw', 1000),
(5055, 293, '17-293', 1, '邁群', '{"number":"959270","shop":"\\u9081\\u7fa4","phone":"0229451487","address":"\\u6c11\\u751f\\u8def\\u0034\\u0032\\u865f"}', '959270', '711', 'zh-tw', 1000),
(5056, 293, '17-293', 1, '有民', '{"number":"197113","shop":"\\u6709\\u6c11","phone":"0229495640","address":"\\u6c11\\u6709\\u8857\\u0039\\u865f\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '197113', '711', 'zh-tw', 1000),
(5057, 293, '17-293', 1, '仁寶', '{"number":"195335","shop":"\\u4ec1\\u5bf6","phone":"0229272401","address":"\\u4ec1\\u611b\\u8def\\u0032\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '195335', '711', 'zh-tw', 1000),
(5058, 293, '17-293', 1, '昇陽', '{"number":"906092","shop":"\\u6607\\u967d","phone":"0222311802","address":"\\u96d9\\u548c\\u91cc\\u0031\\u9130\\u4e2d\\u548c\\u8def\\u0034\\u0031\\u0037\\u865f\\u0034\\u0031\\u0039\\u865f"}', '906092', '711', 'zh-tw', 1000),
(5059, 293, '17-293', 1, '保鑽', '{"number":"912282","shop":"\\u4fdd\\u947d","phone":"0229453250","address":"\\u6f6d\\u5898\\u91cc\\u5b89\\u6a02\\u8def\\u0031\\u0033\\u0038\\u865f\\u0031\\u0034\\u0030\\u865f"}', '912282', '711', 'zh-tw', 1000),
(5060, 293, '17-293', 1, '龍馬', '{"number":"930981","shop":"\\u9f8d\\u99ac","phone":"0222323194","address":"\\u6587\\u5316\\u8def\\u0031\\u0038\\u0038\\u865f"}', '930981', '711', 'zh-tw', 1000),
(5061, 293, '17-293', 1, '永和', '{"number":"895798","shop":"\\u6c38\\u548c","phone":"0229291091","address":"\\u6587\\u5316\\u8def\\u0037\\u865f"}', '895798', '711', 'zh-tw', 1000),
(5062, 293, '17-293', 1, '永騰', '{"number":"193742","shop":"\\u6c38\\u9a30","phone":"0286604387","address":"\\u4fe1\\u7fa9\\u8def\\u0037\\u865f\\u0031\\u6a13"}', '193742', '711', 'zh-tw', 1000),
(5063, 293, '17-293', 1, '孟揚', '{"number":"872061","shop":"\\u5b5f\\u63da","phone":"0229235080","address":"\\u79c0\\u548c\\u91cc\\u6797\\u68ee\\u8def\\u0036\\u0032\\u865f"}', '872061', '711', 'zh-tw', 1000),
(5064, 293, '17-293', 1, '和和', '{"number":"127332","shop":"\\u548c\\u548c","phone":"0229299306","address":"\\u79c0\\u6717\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0038\\u865f"}', '127332', '711', 'zh-tw', 1000),
(5065, 293, '17-293', 1, '復美', '{"number":"999359","shop":"\\u5fa9\\u7f8e","phone":"0229293764","address":"\\u79c0\\u6717\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0036\\u865f"}', '999359', '711', 'zh-tw', 1000),
(5066, 293, '17-293', 1, '富朋', '{"number":"170048","shop":"\\u5bcc\\u670b","phone":"0229287719","address":"\\u6c38\\u548c\\u8def\\u4e8c\\u6bb5\\u0031\\u0031\\u0036\\u865f"}', '170048', '711', 'zh-tw', 1000),
(5067, 293, '17-293', 1, '樂華', '{"number":"200859","shop":"\\u6a02\\u83ef","phone":"0229252723","address":"\\u6c38\\u548c\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0033\\u4e4b\\u0031\\u865f\\u0031\\u0034\\u0035\\u865f\\u0031\\u81f3\\u0032\\u6a13"}', '200859', '711', 'zh-tw', 1000),
(5068, 293, '17-293', 1, '宏圖', '{"number":"148638","shop":"\\u5b8f\\u5716","phone":"0232335456","address":"\\u6c38\\u548c\\u8def\\u4e00\\u6bb5\\u0038\\u0035\\u865f"}', '148638', '711', 'zh-tw', 1000),
(5069, 293, '17-293', 1, '宇陽', '{"number":"122980","shop":"\\u5b87\\u967d","phone":"0229252456","address":"\\u6c38\\u5229\\u8def\\u0037\\u0037\\u865f"}', '122980', '711', 'zh-tw', 1000),
(5070, 293, '17-293', 1, '福愛', '{"number":"166197","shop":"\\u798f\\u611b","phone":"0222324404","address":"\\u6c38\\u5e73\\u8def\\u0032\\u0037\\u0034\\u865f\\u4ec1\\u611b\\u8def\\u0032\\u0034\\u0032\\u865f"}', '166197', '711', 'zh-tw', 1000),
(5071, 293, '17-293', 1, '永利', '{"number":"875303","shop":"\\u6c38\\u5229","phone":"0286605379","address":"\\u6c38\\u5143\\u91cc\\u6c38\\u5143\\u8def\\u0039\\u0033\\u865f"}', '875303', '711', 'zh-tw', 1000),
(5072, 293, '17-293', 1, '新永元', '{"number":"989042","shop":"\\u65b0\\u6c38\\u5143","phone":"0229273661","address":"\\u6c38\\u5143\\u8def\\u0032\\u0038\\u865f\\u0033\\u0030\\u865f"}', '989042', '711', 'zh-tw', 1000),
(5073, 293, '17-293', 1, '昇庚', '{"number":"978606","shop":"\\u6607\\u5e9a","phone":"0282317044","address":"\\u6c38\\u8c9e\\u8def\\u0031\\u0038\\u0032\\u865f\\u0031\\u0038\\u0034\\u865f"}', '978606', '711', 'zh-tw', 1000),
(5074, 293, '17-293', 1, '添丁', '{"number":"200790","shop":"\\u6dfb\\u4e01","phone":"0229210564","address":"\\u6c38\\u8c9e\\u8def\\u0033\\u0036\\u0035\\u865f\\u0033\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '200790', '711', 'zh-tw', 1000),
(5075, 293, '17-293', 1, '界和', '{"number":"164009","shop":"\\u754c\\u548c","phone":"0229211350","address":"\\u4e2d\\u548c\\u8def\\u0033\\u0033\\u0039\\u865f\\u0033\\u0033\\u0039\\u865f\\u4e4b\\u0031"}', '164009', '711', 'zh-tw', 1000),
(5076, 293, '17-293', 1, '永平', '{"number":"189765","shop":"\\u6c38\\u5e73","phone":"0229279417","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0039\\u81f3\\u0031\\u0035\\u0033\\u865f"}', '189765', '711', 'zh-tw', 1000),
(5077, 293, '17-293', 1, '永中', '{"number":"166153","shop":"\\u6c38\\u4e2d","phone":"0229231380","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0038\\u865f"}', '166153', '711', 'zh-tw', 1000),
(5078, 293, '17-293', 1, '忠信', '{"number":"118785","shop":"\\u5fe0\\u4fe1","phone":"0289211344","address":"\\u4e2d\\u8208\\u8857\\u0031\\u0030\\u0031\\u865f"}', '118785', '711', 'zh-tw', 1000),
(5079, 293, '17-293', 1, '民光', '{"number":"885698","shop":"\\u6c11\\u5149","phone":"0229459258","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0036\\u0036\\u865f"}', '885698', '711', 'zh-tw', 1000),
(5080, 293, '17-293', 1, '潭安', '{"number":"163992","shop":"\\u6f6d\\u5b89","phone":"0229476442","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0036\\u0037\\u865f"}', '163992', '711', 'zh-tw', 1000),
(5081, 293, '17-293', 1, '大正', '{"number":"166164","shop":"\\u5927\\u6b63","phone":"0289213847","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u0039\\u865f\\u0035\\u0036\\u0031\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '166164', '711', 'zh-tw', 1000),
(5082, 293, '17-293', 1, '豫溪', '{"number":"165541","shop":"\\u8c6b\\u6eaa","phone":"0229295836","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0030\\u0032\\u5df7\\u0031\\u865f\\u0033\\u865f\\u53ca\\u4e2d\\u6b63\\u8def\\u0037\\u0031\\u0030\\u865f"}', '165541', '711', 'zh-tw', 1000),
(5083, 293, '17-293', 1, '永竹', '{"number":"183594","shop":"\\u6c38\\u7af9","phone":"0229266730","address":"\\u7af9\\u6797\\u8def\\u0031\\u0037\\u0032\\u865f\\u0031\\u0037\\u0034\\u865f\\u0031\\u6a13"}', '183594', '711', 'zh-tw', 1000),
(5084, 293, '17-293', 1, '竹林', '{"number":"985615","shop":"\\u7af9\\u6797","phone":"0289251932","address":"\\u7af9\\u6797\\u8def\\u0032\\u0031\\u0031\\u865f"}', '985615', '711', 'zh-tw', 1000),
(5085, 293, '17-293', 1, '永興', '{"number":"810410","shop":"\\u6c38\\u8208","phone":"0229215441","address":"\\u7af9\\u6797\\u8def\\u0039\\u0038\\u865f"}', '810410', '711', 'zh-tw', 1000),
(5086, 294, '17-294', 1, '椰城', '{"number":"137959","shop":"\\u6930\\u57ce","phone":"0229478067","address":"\\u5b89\\u5e73\\u8def\\u0036\\u0031\\u865f"}', '137959', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(5087, 294, '17-294', 1, '板南', '{"number":"137133","shop":"\\u677f\\u5357","phone":"0222216293","address":"\\u677f\\u5357\\u8def\\u0034\\u0038\\u0036\\u865f"}', '137133', '711', 'zh-tw', 1000),
(5088, 294, '17-294', 1, '元龍', '{"number":"164881","shop":"\\u5143\\u9f8d","phone":"0232349309","address":"\\u677f\\u5357\\u8def\\u0036\\u0035\\u0035\\u865f\\u0031\\u6a13"}', '164881', '711', 'zh-tw', 1000),
(5089, 294, '17-294', 1, '保健', '{"number":"138181","shop":"\\u4fdd\\u5065","phone":"0289411332","address":"\\u4fdd\\u5065\\u8def\\u0032\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '138181', '711', 'zh-tw', 1000),
(5090, 294, '17-294', 1, '秀景', '{"number":"901363","shop":"\\u79c0\\u666f","phone":"0229438436","address":"\\u6210\\u529f\\u8def\\u0031\\u0031\\u0035\\u865f\\u0031\\u0031\\u0037\\u865f"}', '901363', '711', 'zh-tw', 1000),
(5091, 294, '17-294', 1, '景旺', '{"number":"197098","shop":"\\u666f\\u65fa","phone":"0229485754","address":"\\u6210\\u529f\\u8def\\u0031\\u865f"}', '197098', '711', 'zh-tw', 1000),
(5092, 294, '17-294', 1, '吉客', '{"number":"141202","shop":"\\u5409\\u5ba2","phone":"0289535763","address":"\\u5fb7\\u5149\\u8def\\u0039\\u0030\\u865f\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '141202', '711', 'zh-tw', 1000),
(5093, 294, '17-294', 1, '景仁', '{"number":"862374","shop":"\\u666f\\u4ec1","phone":"0229424974","address":"\\u6771\\u5357\\u91cc\\u0031\\u0034\\u9130\\u5fe0\\u5b5d\\u8857\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '862374', '711', 'zh-tw', 1000),
(5094, 294, '17-294', 1, '興榮', '{"number":"975456","shop":"\\u8208\\u69ae","phone":"0286688301","address":"\\u798f\\u5357\\u91cc\\u0032\\u0031\\u9130\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '975456', '711', 'zh-tw', 1000),
(5095, 294, '17-294', 1, '一新', '{"number":"173793","shop":"\\u4e00\\u65b0","phone":"0222468497","address":"\\u798f\\u7965\\u91cc\\u0032\\u0037\\u9130\\u6c38\\u548c\\u8def\\u0035\\u0036\\u865f\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '173793', '711', 'zh-tw', 1000),
(5096, 294, '17-294', 1, '福勝', '{"number":"951313","shop":"\\u798f\\u52dd","phone":"0222499480","address":"\\u798f\\u7965\\u8def\\u0031\\u0035\\u0038\\u865f"}', '951313', '711', 'zh-tw', 1000),
(5097, 294, '17-294', 1, '福泉', '{"number":"132884","shop":"\\u798f\\u6cc9","phone":"0222436653","address":"\\u798f\\u7965\\u8def\\u0036\\u0038\\u865f\\u0037\\u0030\\u865f"}', '132884', '711', 'zh-tw', 1000),
(5098, 294, '17-294', 1, '和復', '{"number":"138457","shop":"\\u548c\\u5fa9","phone":"0229431063","address":"\\u5fa9\\u8208\\u8def\\u0031\\u0039\\u865f"}', '138457', '711', 'zh-tw', 1000),
(5099, 294, '17-294', 1, '民自', '{"number":"875646","shop":"\\u6c11\\u81ea","phone":"0232348395","address":"\\u51a0\\u7a57\\u91cc\\u6c11\\u4eab\\u8857\\u0033\\u0038\\u865f\\u0033\\u0038\\u4e4b\\u0031\\u865f"}', '875646', '711', 'zh-tw', 1000),
(5100, 294, '17-294', 1, '廣麗', '{"number":"188267","shop":"\\u5ee3\\u9e97","phone":"0282456964","address":"\\u5ee3\\u798f\\u8def\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '188267', '711', 'zh-tw', 1000),
(5101, 294, '17-294', 1, '和捷', '{"number":"190558","shop":"\\u548c\\u6377","phone":"0229491524","address":"\\u548c\\u5e73\\u8857\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '190558', '711', 'zh-tw', 1000),
(5102, 294, '17-294', 1, '禧緻', '{"number":"902931","shop":"\\u79a7\\u7dfb","phone":"0229448161","address":"\\u83ef\\u65b0\\u8857\\u0031\\u0035\\u0036\\u865f"}', '902931', '711', 'zh-tw', 1000),
(5103, 294, '17-294', 1, '建一', '{"number":"946551","shop":"\\u5efa\\u4e00","phone":"0232343779","address":"\\u5efa\\u5eb7\\u8def\\u0031\\u0030\\u0031\\u865f"}', '946551', '711', 'zh-tw', 1000),
(5104, 294, '17-294', 1, '建康', '{"number":"159498","shop":"\\u5efa\\u5eb7","phone":"0282452425","address":"\\u5efa\\u5eb7\\u8def\\u0032\\u0037\\u0030\\u865f"}', '159498', '711', 'zh-tw', 1000),
(5105, 294, '17-294', 1, '建六', '{"number":"197722","shop":"\\u5efa\\u516d","phone":"0222228354","address":"\\u5efa\\u516d\\u8def\\u0036\\u0032\\u865f"}', '197722', '711', 'zh-tw', 1000),
(5106, 294, '17-294', 1, '春吉', '{"number":"164858","shop":"\\u6625\\u5409","phone":"0232340711","address":"\\u5efa\\u4e00\\u8def\\u0031\\u0034\\u0038\\u865f"}', '164858', '711', 'zh-tw', 1000),
(5107, 294, '17-294', 1, '和建', '{"number":"189916","shop":"\\u548c\\u5efa","phone":"0222224875","address":"\\u5efa\\u4e00\\u8def\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '189916', '711', 'zh-tw', 1000),
(5108, 294, '17-294', 1, '和錦', '{"number":"113609","shop":"\\u548c\\u9326","phone":"0222435251","address":"\\u9326\\u548c\\u8def\\u0034\\u0030\\u0032\\u865f\\u0034\\u0030\\u0034\\u865f"}', '113609', '711', 'zh-tw', 1000),
(5109, 294, '17-294', 1, '錦盛', '{"number":"151601","shop":"\\u9326\\u76db","phone":"0222479571","address":"\\u9326\\u76db\\u91cc\\u5713\\u901a\\u8def\\u0033\\u0033\\u0035\\u5df7\\u4e09\\u5f04\\u0032\\u0031\\u865f"}', '151601', '711', 'zh-tw', 1000),
(5110, 294, '17-294', 1, '景禮', '{"number":"886875","shop":"\\u666f\\u79ae","phone":"0222434828","address":"\\u666f\\u5b89\\u8def\\u0031\\u0030\\u0030\\u865f\\u0031\\u0030\\u0032\\u865f"}', '886875', '711', 'zh-tw', 1000),
(5111, 294, '17-294', 1, '景安', '{"number":"864749","shop":"\\u666f\\u5b89","phone":"0222453094","address":"\\u666f\\u5b89\\u8def\\u0032\\u0031\\u0030\\u865f"}', '864749', '711', 'zh-tw', 1000),
(5112, 294, '17-294', 1, '景平', '{"number":"181211","shop":"\\u666f\\u5e73","phone":"0229426487","address":"\\u666f\\u5e73\\u8def\\u0031\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '181211', '711', 'zh-tw', 1000),
(5113, 294, '17-294', 1, '得晴', '{"number":"165921","shop":"\\u5f97\\u6674","phone":"0229494039","address":"\\u666f\\u5e73\\u8def\\u0032\\u0033\\u0039\\u5df7\\u0031\\u865f\\u0031\\u6a13"}', '165921', '711', 'zh-tw', 1000),
(5114, 294, '17-294', 1, '天城', '{"number":"127930","shop":"\\u5929\\u57ce","phone":"0229484876","address":"\\u666f\\u5e73\\u8def\\u0032\\u0034\\u0030\\u5df7\\u0031\\u5f04\\u0034\\u865f"}', '127930', '711', 'zh-tw', 1000),
(5115, 294, '17-294', 1, '宏禧', '{"number":"190695","shop":"\\u5b8f\\u79a7","phone":"0222483082","address":"\\u666f\\u5e73\\u8def\\u0034\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '190695', '711', 'zh-tw', 1000),
(5116, 294, '17-294', 1, '連勝', '{"number":"140508","shop":"\\u9023\\u52dd","phone":"0222423559","address":"\\u666f\\u5e73\\u8def\\u0035\\u0031\\u0033\\u865f"}', '140508', '711', 'zh-tw', 1000),
(5117, 294, '17-294', 1, '福真', '{"number":"187910","shop":"\\u798f\\u771f","phone":"0282452305","address":"\\u666f\\u5e73\\u8def\\u0036\\u0037\\u0039\\u865f\\u0036\\u0038\\u0031\\u865f"}', '187910', '711', 'zh-tw', 1000),
(5118, 294, '17-294', 1, '冠德', '{"number":"159166","shop":"\\u51a0\\u5fb7","phone":"0229405370","address":"\\u666f\\u5e73\\u8def\\u0037\\u0031\\u002d\\u0035\\u865f"}', '159166', '711', 'zh-tw', 1000),
(5119, 294, '17-294', 1, '福美', '{"number":"148155","shop":"\\u798f\\u7f8e","phone":"0222437842","address":"\\u666f\\u5e73\\u8def\\u0037\\u0035\\u0036\\u865f\\u0037\\u0035\\u0038\\u865f"}', '148155', '711', 'zh-tw', 1000),
(5120, 294, '17-294', 1, '景鑽', '{"number":"180492","shop":"\\u666f\\u947d","phone":"0229435424","address":"\\u666f\\u65b0\\u8857\\u0033\\u0037\\u0033\\u865f\\u0033\\u0037\\u0033\\u4e4b\\u0031\\u865f"}', '180492', '711', 'zh-tw', 1000),
(5121, 294, '17-294', 1, '景新', '{"number":"832605","shop":"\\u666f\\u65b0","phone":"0229472362","address":"\\u666f\\u65b0\\u8857\\u0034\\u0033\\u0036\\u865f"}', '832605', '711', 'zh-tw', 1000),
(5122, 294, '17-294', 1, '景福', '{"number":"880899","shop":"\\u666f\\u798f","phone":"0289422088","address":"\\u666f\\u65b0\\u8857\\u0034\\u0036\\u0037\\u5df7\\u0032\\u0032\\u865f"}', '880899', '711', 'zh-tw', 1000),
(5123, 294, '17-294', 1, '莒光', '{"number":"113458","shop":"\\u8392\\u5149","phone":"0229641491","address":"\\u8392\\u5149\\u8def\\u0031\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '113458', '711', 'zh-tw', 1000),
(5124, 294, '17-294', 1, '莒城', '{"number":"186892","shop":"\\u8392\\u57ce","phone":"0232346247","address":"\\u8392\\u5149\\u8def\\u0039\\u0031\\u865f\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '186892', '711', 'zh-tw', 1000),
(5125, 294, '17-294', 1, '泰隆', '{"number":"985682","shop":"\\u6cf0\\u9686","phone":"0232345468","address":"\\u7acb\\u5fb7\\u8857\\u0031\\u0030\\u0032\\u865f"}', '985682', '711', 'zh-tw', 1000),
(5126, 294, '17-294', 1, '立德', '{"number":"961387","shop":"\\u7acb\\u5fb7","phone":"0232347894","address":"\\u7acb\\u5fb7\\u8857\\u0031\\u0030\\u0033\\u865f"}', '961387', '711', 'zh-tw', 1000),
(5127, 294, '17-294', 1, '板勝', '{"number":"166441","shop":"\\u677f\\u52dd","phone":"0222437141","address":"\\u9023\\u57ce\\u8def\\u0032\\u0031\\u0039\\u5df7\\u0036\\u865f\\u0038\\u865f"}', '166441', '711', 'zh-tw', 1000),
(5128, 294, '17-294', 1, '新連正', '{"number":"911924","shop":"\\u65b0\\u9023\\u6b63","phone":"0222281985","address":"\\u9023\\u57ce\\u8def\\u0033\\u0034\\u0037\\u5df7\\u0032\\u865f"}', '911924', '711', 'zh-tw', 1000),
(5129, 294, '17-294', 1, '全茂', '{"number":"981990","shop":"\\u5168\\u8302","phone":"0282286711","address":"\\u9023\\u57ce\\u8def\\u0034\\u0036\\u0039\\u5df7\\u0039\\u865f\\u0031\\u0031\\u865f"}', '981990', '711', 'zh-tw', 1000),
(5130, 294, '17-294', 1, '連城', '{"number":"198884","shop":"\\u9023\\u57ce","phone":"0282458951","address":"\\u9023\\u57ce\\u8def\\u0038\\u0039\\u5df7\\u0033\\u4e4b\\u0031\\u865f\\u0035\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '198884', '711', 'zh-tw', 1000),
(5131, 294, '17-294', 1, '新積穗', '{"number":"158521","shop":"\\u65b0\\u7a4d\\u7a57","phone":"0222226128","address":"\\u6c11\\u5b89\\u8857\\u0032\\u0037\\u865f\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '158521', '711', 'zh-tw', 1000),
(5132, 294, '17-294', 1, '佳客', '{"number":"958934","shop":"\\u4f73\\u5ba2","phone":"0229633321","address":"\\u6c11\\u5fb7\\u8def\\u0031\\u0032\\u0036\\u865f\\u0031\\u0032\\u0036\\u4e4b\\u0031\\u865f"}', '958934', '711', 'zh-tw', 1000),
(5133, 294, '17-294', 1, '民德', '{"number":"150859","shop":"\\u6c11\\u5fb7","phone":"0289517714","address":"\\u6c11\\u5fb7\\u8def\\u0034\\u0037\\u865f\\u0034\\u0037\\u002d\\u0031\\u865f"}', '150859', '711', 'zh-tw', 1000),
(5134, 294, '17-294', 1, '新民享', '{"number":"186386","shop":"\\u65b0\\u6c11\\u4eab","phone":"0232342502","address":"\\u6c11\\u4eab\\u8857\\u0039\\u0031\\u865f"}', '186386', '711', 'zh-tw', 1000),
(5135, 294, '17-294', 1, '永振', '{"number":"169794","shop":"\\u6c38\\u632f","phone":"0222425124","address":"\\u5357\\u83ef\\u8def\\u0031\\u0034\\u865f"}', '169794', '711', 'zh-tw', 1000),
(5136, 294, '17-294', 1, '永華', '{"number":"177212","shop":"\\u6c38\\u83ef","phone":"0222433147","address":"\\u5357\\u5c71\\u8def\\u0031\\u0032\\u0037\\u5df7\\u0031\\u0038\\u5f04\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '177212', '711', 'zh-tw', 1000),
(5137, 294, '17-294', 1, '藍山', '{"number":"127309","shop":"\\u85cd\\u5c71","phone":"0222455838","address":"\\u5357\\u5c71\\u8def\\u0034\\u0031\\u865f\\u53ca\\u0033\\u0037\\u5df7\\u0032\\u865f"}', '127309', '711', 'zh-tw', 1000),
(5138, 294, '17-294', 1, '橋安', '{"number":"137982","shop":"\\u6a4b\\u5b89","phone":"0222424310","address":"\\u6a4b\\u5b89\\u8857\\u0032\\u0030\\u865f\\u0031\\u0046"}', '137982', '711', 'zh-tw', 1000),
(5139, 294, '17-294', 1, '橋和', '{"number":"167787","shop":"\\u6a4b\\u548c","phone":"0222214135","address":"\\u6a4b\\u548c\\u8def\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '167787', '711', 'zh-tw', 1000),
(5140, 294, '17-294', 1, '景愛', '{"number":"141729","shop":"\\u666f\\u611b","phone":"0289419312","address":"\\u4ec1\\u611b\\u8857\\u0034\\u0035\\u865f\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '141729', '711', 'zh-tw', 1000),
(5141, 294, '17-294', 1, '壽德', '{"number":"993650","shop":"\\u58fd\\u5fb7","phone":"0229520956","address":"\\u58fd\\u5fb7\\u8857\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '993650', '711', 'zh-tw', 1000),
(5142, 294, '17-294', 1, '德旺', '{"number":"111647","shop":"\\u5fb7\\u65fa","phone":"0229648813","address":"\\u58fd\\u5fb7\\u8857\\u0032\\u0032\\u865f\\u0031\\u6a13"}', '111647', '711', 'zh-tw', 1000),
(5143, 294, '17-294', 1, '杰明', '{"number":"122865","shop":"\\u6770\\u660e","phone":"0222425701","address":"\\u6cf0\\u548c\\u8857\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '122865', '711', 'zh-tw', 1000),
(5144, 294, '17-294', 1, '樂鑫', '{"number":"166120","shop":"\\u6a02\\u946b","phone":"0222214293","address":"\\u65b0\\u751f\\u8857\\u0031\\u0034\\u0036\\u865f"}', '166120', '711', 'zh-tw', 1000),
(5145, 294, '17-294', 1, '新生', '{"number":"196420","shop":"\\u65b0\\u751f","phone":"0222225809","address":"\\u65b0\\u751f\\u8857\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '196420', '711', 'zh-tw', 1000),
(5146, 294, '17-294', 1, '聖武', '{"number":"114657","shop":"\\u8056\\u6b66","phone":"0222224961","address":"\\u65b0\\u751f\\u8857\\u0034\\u0038\\u865f\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '114657', '711', 'zh-tw', 1000),
(5147, 294, '17-294', 1, '頂新', '{"number":"186825","shop":"\\u9802\\u65b0","phone":"0229493001","address":"\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u865f\\u0035\\u0031\\u865f"}', '186825', '711', 'zh-tw', 1000),
(5148, 294, '17-294', 1, '南勢角', '{"number":"135300","shop":"\\u5357\\u52e2\\u89d2","phone":"0229446821","address":"\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0035\\u0035\\u865f"}', '135300', '711', 'zh-tw', 1000),
(5149, 294, '17-294', 1, '捷興', '{"number":"135056","shop":"\\u6377\\u8208","phone":"0229423902","address":"\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\u0038\\u0031\\u865f"}', '135056', '711', 'zh-tw', 1000),
(5150, 294, '17-294', 1, '福和', '{"number":"123064","shop":"\\u798f\\u548c","phone":"0229408207","address":"\\u79c0\\u6717\\u91cc\\u5927\\u52c7\\u8857\\u0032\\u0035\\u5df7\\u0031\\u865f"}', '123064', '711', 'zh-tw', 1000),
(5151, 294, '17-294', 1, '宜安', '{"number":"159317","shop":"\\u5b9c\\u5b89","phone":"0229415661","address":"\\u5b9c\\u5b89\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '159317', '711', 'zh-tw', 1000),
(5152, 294, '17-294', 1, '永宜', '{"number":"184070","shop":"\\u6c38\\u5b9c","phone":"0232333935","address":"\\u5b9c\\u5b89\\u8def\\u0031\\u0031\\u0038\\u5df7\\u0032\\u0032\\u865f\\u0032\\u0034\\u865f\\u0031\\u6a13"}', '184070', '711', 'zh-tw', 1000),
(5153, 294, '17-294', 1, '中安', '{"number":"961871","shop":"\\u4e2d\\u5b89","phone":"0229459706","address":"\\u5b9c\\u5b89\\u8def\\u0036\\u0032\\u865f\\u0036\\u0036\\u865f"}', '961871', '711', 'zh-tw', 1000),
(5154, 294, '17-294', 1, '員和', '{"number":"194402","shop":"\\u54e1\\u548c","phone":"0222214419","address":"\\u54e1\\u5c71\\u8def\\u0031\\u0031\\u0038\\u865f\\u0031\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '194402', '711', 'zh-tw', 1000),
(5155, 294, '17-294', 1, '員山', '{"number":"844712","shop":"\\u54e1\\u5c71","phone":"0222238595","address":"\\u54e1\\u5c71\\u8def\\u0031\\u0036\\u0033\\u865f"}', '844712', '711', 'zh-tw', 1000),
(5156, 294, '17-294', 1, '嘉新', '{"number":"200697","shop":"\\u5609\\u65b0","phone":"0222220392","address":"\\u54e1\\u5c71\\u8def\\u0034\\u0031\\u0039\\u865f\\u0034\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '200697', '711', 'zh-tw', 1000),
(5157, 294, '17-294', 1, '員新', '{"number":"185349","shop":"\\u54e1\\u65b0","phone":"0222215243","address":"\\u54e1\\u5c71\\u8def\\u0035\\u0030\\u0034\\u865f"}', '185349', '711', 'zh-tw', 1000),
(5158, 294, '17-294', 1, '景圓', '{"number":"188762","shop":"\\u666f\\u5713","phone":"0222480308","address":"\\u5713\\u901a\\u8def\\u0031\\u0036\\u0032\\u002d\\u0031\\u865f\\u0031\\u0036\\u0032\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '188762', '711', 'zh-tw', 1000),
(5159, 294, '17-294', 1, '圓通', '{"number":"864901","shop":"\\u5713\\u901a","phone":"0222452292","address":"\\u5713\\u901a\\u8def\\u0032\\u0038\\u0030\\u865f\\u0032\\u0038\\u0032\\u865f"}', '864901', '711', 'zh-tw', 1000),
(5160, 294, '17-294', 1, '連通', '{"number":"163877","shop":"\\u9023\\u901a","phone":"0222446708","address":"\\u5713\\u901a\\u8def\\u0032\\u0039\\u0033\\u865f"}', '163877', '711', 'zh-tw', 1000),
(5161, 294, '17-294', 1, '安斌', '{"number":"144418","shop":"\\u5b89\\u658c","phone":"0229202294","address":"\\u4e2d\\u5b89\\u8857\\u0038\\u0034\\u865f\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '144418', '711', 'zh-tw', 1000),
(5162, 294, '17-294', 1, '南谷', '{"number":"946528","shop":"\\u5357\\u8c37","phone":"0222493893","address":"\\u4e2d\\u548c\\u8def\\u0032\\u0035\\u0037\\u865f"}', '946528', '711', 'zh-tw', 1000),
(5163, 294, '17-294', 1, '日昇', '{"number":"194011","shop":"\\u65e5\\u6607","phone":"0229273961","address":"\\u4e2d\\u548c\\u8def\\u0033\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '194011', '711', 'zh-tw', 1000),
(5164, 294, '17-294', 1, '日福', '{"number":"895787","shop":"\\u65e5\\u798f","phone":"0229209816","address":"\\u4e2d\\u548c\\u8def\\u0033\\u0038\\u0030\\u865f"}', '895787', '711', 'zh-tw', 1000),
(5165, 294, '17-294', 1, '廣美', '{"number":"183631","shop":"\\u5ee3\\u7f8e","phone":"0282458352","address":"\\u4e2d\\u548c\\u8def\\u0035\\u0032\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '183631', '711', 'zh-tw', 1000),
(5166, 294, '17-294', 1, '漳和', '{"number":"152006","shop":"\\u6f33\\u548c","phone":"0222452548","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0031\\u002d\\u0036\\u865f"}', '152006', '711', 'zh-tw', 1000),
(5167, 294, '17-294', 1, '家美', '{"number":"165426","shop":"\\u5bb6\\u7f8e","phone":"0222420594","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0037\\u865f\\u4e4b\\u0031"}', '165426', '711', 'zh-tw', 1000),
(5168, 294, '17-294', 1, '正原', '{"number":"179724","shop":"\\u6b63\\u539f","phone":"0222281549","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0035\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '179724', '711', 'zh-tw', 1000),
(5169, 294, '17-294', 1, '水源', '{"number":"126775","shop":"\\u6c34\\u6e90","phone":"0222477245","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u865f"}', '126775', '711', 'zh-tw', 1000),
(5170, 294, '17-294', 1, '松旺', '{"number":"902953","shop":"\\u677e\\u65fa","phone":"0282276167","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0038\\u865f"}', '902953', '711', 'zh-tw', 1000),
(5171, 294, '17-294', 1, '環冠', '{"number":"144717","shop":"\\u74b0\\u51a0","phone":"0222287912","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0031\\u0031\\u0038\\u4e4b\\u0036\\u4e4b\\u0037\\u4e4b\\u0038\\u865f"}', '144717', '711', 'zh-tw', 1000),
(5172, 294, '17-294', 1, '沅氣', '{"number":"132264","shop":"\\u6c85\\u6c23","phone":"0222263294","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0032\\u0039\\u865f\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '132264', '711', 'zh-tw', 1000),
(5173, 294, '17-294', 1, '德偉', '{"number":"200837","shop":"\\u5fb7\\u5049","phone":"0222429271","address":"\\u4e2d\\u8208\\u8857\\u0031\\u0036\\u0032\\u865f\\u0031\\u0036\\u0034\\u865f"}', '200837', '711', 'zh-tw', 1000),
(5174, 294, '17-294', 1, '富興', '{"number":"895710","shop":"\\u5bcc\\u8208","phone":"0222404174","address":"\\u4e2d\\u8208\\u91cc\\u5fa9\\u8208\\u8def\\u0032\\u0037\\u0037\\u002d\\u0031\\u865f\\u0032\\u0037\\u0039\\u865f"}', '895710', '711', 'zh-tw', 1000),
(5175, 294, '17-294', 1, '和醫', '{"number":"971775","shop":"\\u548c\\u91ab","phone":"0222497312","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0039\\u0031\\u865f\\u0042\\u0031"}', '971775', '711', 'zh-tw', 1000),
(5176, 294, '17-294', 1, '新和高', '{"number":"148166","shop":"\\u65b0\\u548c\\u9ad8","phone":"0222217490","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '148166', '711', 'zh-tw', 1000),
(5177, 294, '17-294', 1, '景鑫', '{"number":"189086","shop":"\\u666f\\u946b","phone":"0232349418","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0038\\u0033\\u865f"}', '189086', '711', 'zh-tw', 1000),
(5178, 294, '17-294', 1, '世紀', '{"number":"174590","shop":"\\u4e16\\u7d00","phone":"0282278576","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0031\\u0030\\u865f\\u0031\\u6a13\\u004b\\u68df"}', '174590', '711', 'zh-tw', 1000),
(5179, 294, '17-294', 1, '艾德蒙', '{"number":"187013","shop":"\\u827e\\u5fb7\\u8499","phone":"0282262320","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '187013', '711', 'zh-tw', 1000),
(5180, 294, '17-294', 1, '景順', '{"number":"164847","shop":"\\u666f\\u9806","phone":"0222267420","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0037\\u0038\\u865f\\u0031\\u6a13"}', '164847', '711', 'zh-tw', 1000),
(5181, 294, '17-294', 1, '宏鑫', '{"number":"148502","shop":"\\u5b8f\\u946b","phone":"0282282070","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0033\\u0037\\u865f"}', '148502', '711', 'zh-tw', 1000),
(5182, 294, '17-294', 1, '立言', '{"number":"165725","shop":"\\u7acb\\u8a00","phone":"0222287924","address":"\\u4e2d\\u6b63\\u8def\\u0038\\u0037\\u0032\\u865f"}', '165725', '711', 'zh-tw', 1000),
(5183, 294, '17-294', 1, '孝忠', '{"number":"950435","shop":"\\u5b5d\\u5fe0","phone":"0229401045","address":"\\u5fe0\\u5b5d\\u8857\\u0033\\u0037\\u5df7\\u0032\\u865f"}', '950435', '711', 'zh-tw', 1000),
(5184, 294, '17-294', 1, '秀杉', '{"number":"132219","shop":"\\u79c0\\u6749","phone":"0229421382","address":"\\u81ea\\u7acb\\u8def\\u0031\\u0032\\u0039\\u865f\\u0031\\u0033\\u0031\\u865f"}', '132219', '711', 'zh-tw', 1000),
(5185, 294, '17-294', 1, '興和', '{"number":"132747","shop":"\\u8208\\u548c","phone":"0229464251","address":"\\u81ea\\u7acb\\u8def\\u0031\\u0038\\u0037\\u865f\\u0031\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '132747', '711', 'zh-tw', 1000),
(5186, 295, '18-295', 1, '北大門', '{"number":"193122","shop":"\\u5317\\u5927\\u9580","phone":"035259596","address":"\\u5317\\u9580\\u8857\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '193122', '711', 'zh-tw', 1000),
(5187, 295, '18-295', 1, '欽天', '{"number":"181749","shop":"\\u6b3d\\u5929","phone":"035235596","address":"\\u6210\\u5fb7\\u8def\\u0031\\u0032\\u0033\\u865f"}', '181749', '711', 'zh-tw', 1000),
(5188, 295, '18-295', 1, '城北', '{"number":"864808","shop":"\\u57ce\\u5317","phone":"035239470","address":"\\u57ce\\u5317\\u8857\\u0034\\u0033\\u865f"}', '864808', '711', 'zh-tw', 1000),
(5189, 295, '18-295', 1, '竹陵', '{"number":"118730","shop":"\\u7af9\\u9675","phone":"035153239","address":"\\u6771\\u5927\\u8def\\u4e8c\\u6bb5\\u0031\\u0037\\u0034\\u865f"}', '118730', '711', 'zh-tw', 1000),
(5190, 295, '18-295', 1, '新大', '{"number":"150723","shop":"\\u65b0\\u5927","phone":"035426095","address":"\\u6771\\u5927\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '150723', '711', 'zh-tw', 1000),
(5191, 295, '18-295', 1, '東妮', '{"number":"155290","shop":"\\u6771\\u59ae","phone":"035362446","address":"\\u6771\\u5927\\u8def\\u4e09\\u6bb5\\u0037\\u0031\\u0038\\u865f\\u0037\\u0032\\u0030\\u865f\\u0031\\u6a13"}', '155290', '711', 'zh-tw', 1000),
(5192, 295, '18-295', 1, '菄大', '{"number":"167994","shop":"\\u83c4\\u5927","phone":"035360700","address":"\\u6771\\u5927\\u8def\\u56db\\u6bb5\\u0032\\u0035\\u0038\\u002e\\u0032\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '167994', '711', 'zh-tw', 1000),
(5193, 295, '18-295', 1, '東中', '{"number":"184427","shop":"\\u6771\\u4e2d","phone":"035212078","address":"\\u6771\\u9580\\u8857\\u0031\\u0039\\u0034\\u865f\\u0031\\u002b\\u0042\\u0031\\u6a13"}', '184427', '711', 'zh-tw', 1000),
(5194, 295, '18-295', 1, '竹森', '{"number":"174176","shop":"\\u7af9\\u68ee","phone":"035424164","address":"\\u5149\\u83ef\\u6771\\u8857\\u0031\\u0030\\u0037\\u865f"}', '174176', '711', 'zh-tw', 1000),
(5195, 295, '18-295', 1, '宏光', '{"number":"136152","shop":"\\u5b8f\\u5149","phone":"035317661","address":"\\u5149\\u83ef\\u4e00\\u8857\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '136152', '711', 'zh-tw', 1000),
(5196, 295, '18-295', 1, '海寶', '{"number":"985796","shop":"\\u6d77\\u5bf6","phone":"035367934","address":"\\u6d77\\u6ff1\\u91cc\\u69ae\\u6ff1\\u8def\\u0031\\u865f"}', '985796', '711', 'zh-tw', 1000),
(5197, 295, '18-295', 1, '新悅', '{"number":"973047","shop":"\\u65b0\\u6085","phone":"035428767","address":"\\u7d93\\u570b\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '973047', '711', 'zh-tw', 1000),
(5198, 295, '18-295', 1, '富盛', '{"number":"187437","shop":"\\u5bcc\\u76db","phone":"035224473","address":"\\u7d93\\u570b\\u8def\\u4e8c\\u6bb5\\u0033\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '187437', '711', 'zh-tw', 1000),
(5199, 295, '18-295', 1, '竹灣', '{"number":"164467","shop":"\\u7af9\\u7063","phone":"035263560","address":"\\u5ba2\\u96c3\\u91cc\\u5ef6\\u5e73\\u8def\\u4e00\\u6bb5\\u0032\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '164467', '711', 'zh-tw', 1000),
(5200, 295, '18-295', 1, '恆新', '{"number":"896137","shop":"\\u6046\\u65b0","phone":"035242900","address":"\\u6c11\\u5bcc\\u91cc\\u0037\\u9130\\u5317\\u5927\\u8def\\u0033\\u0034\\u0032\\u865f"}', '896137', '711', 'zh-tw', 1000),
(5201, 295, '18-295', 1, '雅新', '{"number":"124621","shop":"\\u96c5\\u65b0","phone":"035319675","address":"\\u6e73\\u96c5\\u8857\\u0031\\u0035\\u0034\\u865f"}', '124621', '711', 'zh-tw', 1000),
(5202, 295, '18-295', 1, '新雅竹', '{"number":"188463","shop":"\\u65b0\\u96c5\\u7af9","phone":"035456467","address":"\\u6e73\\u96c5\\u8857\\u0032\\u0035\\u0035\\u865f"}', '188463', '711', 'zh-tw', 1000),
(5203, 295, '18-295', 1, '大潤', '{"number":"957687","shop":"\\u5927\\u6f64","phone":"035359394","address":"\\u6e73\\u96c5\\u91cc\\u0032\\u0032\\u9130\\u6e73\\u96c5\\u8857\\u0034\\u0036\\u865f"}', '957687', '711', 'zh-tw', 1000),
(5204, 295, '18-295', 1, '水擇', '{"number":"920191","shop":"\\u6c34\\u64c7","phone":"035210801","address":"\\u6c34\\u7530\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0039\\u0034\\u865f"}', '920191', '711', 'zh-tw', 1000),
(5205, 295, '18-295', 1, '厚稼', '{"number":"122706","shop":"\\u539a\\u7a3c","phone":"035425780","address":"\\u9435\\u9053\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0030\\u865f"}', '122706', '711', 'zh-tw', 1000),
(5206, 295, '18-295', 1, '福盛', '{"number":"932862","shop":"\\u798f\\u76db","phone":"035327718","address":"\\u9435\\u9053\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '932862', '711', 'zh-tw', 1000),
(5207, 295, '18-295', 1, '竹光', '{"number":"173922","shop":"\\u7af9\\u5149","phone":"035323204","address":"\\u6587\\u96c5\\u91cc\\u0031\\u0038\\u9130\\u7af9\\u5149\\u8def\\u0031\\u0032\\u0033\\u865f"}', '173922', '711', 'zh-tw', 1000),
(5208, 295, '18-295', 1, '冠盈', '{"number":"120010","shop":"\\u51a0\\u76c8","phone":"035364694","address":"\\u897f\\u6ff1\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0036\\u865f"}', '120010', '711', 'zh-tw', 1000),
(5209, 295, '18-295', 1, '聖華', '{"number":"112466","shop":"\\u8056\\u83ef","phone":"035363894","address":"\\u897f\\u6ff1\\u8def\\u4e00\\u6bb5\\u0033\\u0039\\u0039\\u865f"}', '112466', '711', 'zh-tw', 1000),
(5210, 295, '18-295', 1, '磐石', '{"number":"181439","shop":"\\u78d0\\u77f3","phone":"035338457","address":"\\u897f\\u5927\\u8def\\u0037\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '181439', '711', 'zh-tw', 1000),
(5211, 295, '18-295', 1, '竹城', '{"number":"886761","shop":"\\u7af9\\u57ce","phone":"035250326","address":"\\u897f\\u9580\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0030\\u0030\\u865f"}', '886761', '711', 'zh-tw', 1000),
(5212, 295, '18-295', 1, '民富', '{"number":"149170","shop":"\\u6c11\\u5bcc","phone":"035262998","address":"\\u65b0\\u6c11\\u91cc\\u897f\\u5927\\u8def\\u0036\\u0034\\u0032\\u865f"}', '149170', '711', 'zh-tw', 1000),
(5213, 295, '18-295', 1, '盛天', '{"number":"950033","shop":"\\u76db\\u5929","phone":"035369457","address":"\\u5ef6\\u5e73\\u8def\\u4e09\\u6bb5\\u0035\\u0034\\u0035\\u865f"}', '950033', '711', 'zh-tw', 1000),
(5214, 295, '18-295', 1, '世達', '{"number":"985866","shop":"\\u4e16\\u9054","phone":"035268728","address":"\\u5ef6\\u5e73\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0039\\u865f\\u0031\\u6a13"}', '985866', '711', 'zh-tw', 1000),
(5215, 295, '18-295', 1, '新世界', '{"number":"953478","shop":"\\u65b0\\u4e16\\u754c","phone":"035242975","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0032\\u0031\\u865f"}', '953478', '711', 'zh-tw', 1000),
(5216, 295, '18-295', 1, '正國', '{"number":"976688","shop":"\\u6b63\\u570b","phone":"035436459","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0038\\u0036\\u4e4b\\u0031\\u865f\\u4e00\\u6a13"}', '976688', '711', 'zh-tw', 1000),
(5217, 295, '18-295', 1, '正御', '{"number":"184162","shop":"\\u6b63\\u5fa1","phone":"035430369","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0039\\u865f\\u0031\\u002b\\u0042\\u0031\\u6a13"}', '184162', '711', 'zh-tw', 1000),
(5218, 295, '18-295', 1, '空軍', '{"number":"132297","shop":"\\u7a7a\\u8ecd","phone":"035430162","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0038\\u0035\\u865f\\u0033\\u0038\\u0037\\u865f\\u0031\\u6a13"}', '132297', '711', 'zh-tw', 1000),
(5219, 296, '18-296', 1, '富首', '{"number":"155131","shop":"\\u5bcc\\u9996","phone":"035678054","address":"\\u6148\\u6fdf\\u8def\\u0032\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '155131', '711', 'zh-tw', 1000),
(5220, 296, '18-296', 1, '迎竹', '{"number":"195379","shop":"\\u8fce\\u7af9","phone":"035165987","address":"\\u5927\\u5b78\\u8def\\u0031\\u0030\\u0030\\u0031\\u002d\\u0032\\u865f"}', '195379', '711', 'zh-tw', 1000),
(5221, 296, '18-296', 1, '交大', '{"number":"121415","shop":"\\u4ea4\\u5927","phone":"035724785","address":"\\u5927\\u5b78\\u8def\\u0031\\u0030\\u0030\\u0031\\u865f\\u0028\\u7b2c\\u4e8c\\u9910\\u5ef3\\u0029"}', '121415', '711', 'zh-tw', 1000),
(5222, 296, '18-296', 1, '新勝', '{"number":"991506","shop":"\\u65b0\\u52dd","phone":"035715124","address":"\\u6771\\u5149\\u8def\\u0037\\u0035\\u865f\\u0031\\u6a13"}', '991506', '711', 'zh-tw', 1000),
(5223, 296, '18-296', 1, '東環', '{"number":"980791","shop":"\\u6771\\u74b0","phone":"035267230","address":"\\u6771\\u9580\\u8857\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '980791', '711', 'zh-tw', 1000),
(5224, 296, '18-296', 1, '鑫旭升', '{"number":"980735","shop":"\\u946b\\u65ed\\u5347","phone":"035619048","address":"\\u6771\\u5357\\u8857\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '980735', '711', 'zh-tw', 1000),
(5225, 296, '18-296', 1, '竹高', '{"number":"141590","shop":"\\u7af9\\u9ad8","phone":"036885432","address":"\\u6771\\u5c71\\u8857\\u0031\\u0037\\u865f\\u0031\\u0039\\u865f\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '141590', '711', 'zh-tw', 1000),
(5226, 296, '18-296', 1, '聯發科', '{"number":"198699","shop":"\\u806f\\u767c\\u79d1","phone":"035679040","address":"\\u7be4\\u884c\\u4e00\\u8def\\u0031\\u865f"}', '198699', '711', 'zh-tw', 1000),
(5227, 296, '18-296', 1, '鑫昌', '{"number":"921046","shop":"\\u946b\\u660c","phone":"035267141","address":"\\u5fa9\\u8208\\u8def\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '921046', '711', 'zh-tw', 1000),
(5228, 296, '18-296', 1, '高灃', '{"number":"155142","shop":"\\u9ad8\\u7043","phone":"035670804","address":"\\u9ad8\\u7fe0\\u8def\\u0033\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '155142', '711', 'zh-tw', 1000),
(5229, 296, '18-296', 1, '寶豐', '{"number":"123190","shop":"\\u5bf6\\u8c50","phone":"035294018","address":"\\u9ad8\\u5cf0\\u8def\\u0035\\u0033\\u0036\\u5df7\\u0035\\u0038\\u865f\\u4e4b\\u0031"}', '123190', '711', 'zh-tw', 1000),
(5230, 296, '18-296', 1, 'GRC', '{"number":"184520","shop":"\\u0047\\u0052\\u0043","phone":"036686584","address":"\\u5de5\\u696d\\u6771\\u4e09\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '184520', '711', 'zh-tw', 1000),
(5231, 296, '18-296', 1, '科技城', '{"number":"197526","shop":"\\u79d1\\u6280\\u57ce","phone":"035670954","address":"\\u5de5\\u696d\\u6771\\u56db\\u8def\\u0034\\u0032\\u865f"}', '197526', '711', 'zh-tw', 1000),
(5232, 296, '18-296', 1, '關圓', '{"number":"154666","shop":"\\u95dc\\u5713","phone":"035788214","address":"\\u95dc\\u6771\\u8def\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '154666', '711', 'zh-tw', 1000),
(5233, 296, '18-296', 1, '關新', '{"number":"197261","shop":"\\u95dc\\u65b0","phone":"035782449","address":"\\u95dc\\u65b0\\u8def\\u0031\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '197261', '711', 'zh-tw', 1000),
(5234, 296, '18-296', 1, '藍海', '{"number":"185257","shop":"\\u85cd\\u6d77","phone":"035679182","address":"\\u95dc\\u65b0\\u8def\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '185257', '711', 'zh-tw', 1000),
(5235, 296, '18-296', 1, '清大', '{"number":"164962","shop":"\\u6e05\\u5927","phone":"035166254","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0031\\u865f"}', '164962', '711', 'zh-tw', 1000),
(5236, 296, '18-296', 1, '新馬偕', '{"number":"123204","shop":"\\u65b0\\u99ac\\u5055","phone":"035718278","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0036\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '123204', '711', 'zh-tw', 1000),
(5237, 296, '18-296', 1, '關東', '{"number":"118589","shop":"\\u95dc\\u6771","phone":"035782975","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0037\\u865f\\u0031\\u0038\\u0039\\u865f"}', '118589', '711', 'zh-tw', 1000),
(5238, 296, '18-296', 1, '科學', '{"number":"161170","shop":"\\u79d1\\u5b78","phone":"036686852","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0035\\u0032\\u0037\\u865f\\u0035\\u0032\\u0037\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '161170', '711', 'zh-tw', 1000),
(5239, 296, '18-296', 1, '科有', '{"number":"192853","shop":"\\u79d1\\u6709","phone":"035779289","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u0031\\u5df7\\u0037\\u0030\\u002d\\u0031\\u865f"}', '192853', '711', 'zh-tw', 1000),
(5240, 296, '18-296', 1, '梅竹', '{"number":"136819","shop":"\\u6885\\u7af9","phone":"035714668","address":"\\u5149\\u660e\\u91cc\\u0031\\u0034\\u9130\\u5927\\u5b78\\u8def\\u0035\\u0036\\u865f\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f"}', '136819', '711', 'zh-tw', 1000),
(5241, 296, '18-296', 1, '金功', '{"number":"135470","shop":"\\u91d1\\u529f","phone":"035738402","address":"\\u5efa\\u529f\\u4e8c\\u8def\\u0032\\u865f\\u53ca\\u0036\\u865f\\u0031\\u6a13"}', '135470', '711', 'zh-tw', 1000),
(5242, 296, '18-296', 1, '高清', '{"number":"874609","shop":"\\u9ad8\\u6e05","phone":"035737884","address":"\\u5efa\\u529f\\u91cc\\u5efa\\u529f\\u8def\\u0036\\u865f\\u0031\\u6a13"}', '874609', '711', 'zh-tw', 1000),
(5243, 296, '18-296', 1, '文清', '{"number":"180090","shop":"\\u6587\\u6e05","phone":"035744701","address":"\\u5efa\\u529f\\u8def\\u0034\\u0039\\u865f\\u0031\\u002e\\u0032\\u6a13"}', '180090', '711', 'zh-tw', 1000),
(5244, 296, '18-296', 1, '公學', '{"number":"158406","shop":"\\u516c\\u5b78","phone":"035748532","address":"\\u5efa\\u529f\\u4e00\\u8def\\u0039\\u0033\\u865f"}', '158406', '711', 'zh-tw', 1000),
(5245, 296, '18-296', 1, '新竹建華', '{"number":"943046","shop":"\\u65b0\\u7af9\\u5efa\\u83ef","phone":"035621048","address":"\\u5efa\\u83ef\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '943046', '711', 'zh-tw', 1000),
(5246, 296, '18-296', 1, '建盛', '{"number":"131386","shop":"\\u5efa\\u76db","phone":"035748898","address":"\\u5efa\\u4e2d\\u4e00\\u8def\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '131386', '711', 'zh-tw', 1000),
(5247, 296, '18-296', 1, '金鑫', '{"number":"192705","shop":"\\u91d1\\u946b","phone":"035718865","address":"\\u91d1\\u57ce\\u4e00\\u8def\\u0035\\u0030\\u002d\\u0039\\u865f"}', '192705', '711', 'zh-tw', 1000),
(5248, 296, '18-296', 1, '宏欣', '{"number":"121150","shop":"\\u5b8f\\u6b23","phone":"035772746","address":"\\u91d1\\u5c71\\u8857\\u0031\\u0035\\u0032\\u865f\\u0031\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '121150', '711', 'zh-tw', 1000),
(5249, 296, '18-296', 1, '金山街', '{"number":"992864","shop":"\\u91d1\\u5c71\\u8857","phone":"035794468","address":"\\u91d1\\u5c71\\u8857\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '992864', '711', 'zh-tw', 1000),
(5250, 296, '18-296', 1, '金山六', '{"number":"142629","shop":"\\u91d1\\u5c71\\u516d","phone":"035786334","address":"\\u91d1\\u5c71\\u516d\\u8857\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '142629', '711', 'zh-tw', 1000),
(5251, 296, '18-296', 1, '宏遠', '{"number":"179654","shop":"\\u5b8f\\u9060","phone":"036686441","address":"\\u91d1\\u5c71\\u5341\\u4e94\\u8857\\u0031\\u865f\\u0031\\u6a13"}', '179654', '711', 'zh-tw', 1000),
(5252, 296, '18-296', 1, '孟竹', '{"number":"852724","shop":"\\u5b5f\\u7af9","phone":"035723256","address":"\\u8ecd\\u529f\\u91cc\\u0031\\u0036\\u9130\\u5efa\\u65b0\\u8def\\u0032\\u0036\\u865f\\u0031\\u6a13"}', '852724', '711', 'zh-tw', 1000),
(5253, 296, '18-296', 1, '智邦', '{"number":"137694","shop":"\\u667a\\u90a6","phone":"036661816","address":"\\u79d1\\u5b78\\u5de5\\u696d\\u5712\\u5340\\u7814\\u65b0\\u4e09\\u8def\\u0031\\u865f"}', '137694', '711', 'zh-tw', 1000),
(5254, 296, '18-296', 1, '科園', '{"number":"137672","shop":"\\u79d1\\u5712","phone":"035678117","address":"\\u79d1\\u5b78\\u5712\\u8def\\u0034\\u0035\\u865f"}', '137672', '711', 'zh-tw', 1000),
(5255, 296, '18-296', 1, '新竹友達', '{"number":"922566","shop":"\\u65b0\\u7af9\\u53cb\\u9054","phone":"035789976","address":"\\u79d1\\u5b78\\u5712\\u5340\\u529b\\u884c\\u4e8c\\u8def\\u0031\\u865f"}', '922566', '711', 'zh-tw', 1000),
(5256, 296, '18-296', 1, '台積-12', '{"number":"902849","shop":"\\u53f0\\u7a4d\\u002d\\u0031\\u0032","phone":"036663357","address":"\\u529b\\u884c\\u516d\\u8def\\u0038\\u865f"}', '902849', '711', 'zh-tw', 1000),
(5257, 296, '18-296', 1, '友達五', '{"number":"922577","shop":"\\u53cb\\u9054\\u4e94","phone":"035773422","address":"\\u529b\\u884c\\u8def\\u0032\\u0033\\u865f\\u0036\\u6a13"}', '922577', '711', 'zh-tw', 1000),
(5258, 296, '18-296', 1, '鑫八廠', '{"number":"972240","shop":"\\u946b\\u516b\\u5ee0","phone":"036668578","address":"\\u529b\\u884c\\u8def\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '972240', '711', 'zh-tw', 1000),
(5259, 296, '18-296', 1, '世界先進', '{"number":"970451","shop":"\\u4e16\\u754c\\u5148\\u9032","phone":"035778992","address":"\\u529b\\u884c\\u8def\\u0039\\u865f\\u0032\\u6a13"}', '970451', '711', 'zh-tw', 1000),
(5260, 296, '18-296', 1, '明泰科技', '{"number":"181233","shop":"\\u660e\\u6cf0\\u79d1\\u6280","phone":"035795684","address":"\\u529b\\u884c\\u4e03\\u8def\\u0038\\u865f\\u0042\\u0031\\u6a13"}', '181233', '711', 'zh-tw', 1000),
(5261, 296, '18-296', 1, '聯發D', '{"number":"195140","shop":"\\u806f\\u767c\\u0044","phone":"035770495","address":"\\u529b\\u884c\\u4e09\\u8def\\u0031\\u0031\\u865f"}', '195140', '711', 'zh-tw', 1000),
(5262, 296, '18-296', 1, '力成捌', '{"number":"181820","shop":"\\u529b\\u6210\\u634c","phone":"035775874","address":"\\u529b\\u884c\\u4e09\\u8def\\u0031\\u0035\\u865f\\u0036\\u6a13"}', '181820', '711', 'zh-tw', 1000),
(5263, 296, '18-296', 1, '鉅晶', '{"number":"116000","shop":"\\u9245\\u6676","phone":"035780840","address":"\\u529b\\u884c\\u4e00\\u8def\\u0031\\u0038\\u865f\\u0034\\u6a13"}', '116000', '711', 'zh-tw', 1000),
(5264, 296, '18-296', 1, '矽導', '{"number":"165851","shop":"\\u77fd\\u5c0e","phone":"035794397","address":"\\u529b\\u884c\\u4e00\\u8def\\u0031\\u865f"}', '165851', '711', 'zh-tw', 1000),
(5265, 296, '18-296', 1, '篤明', '{"number":"110105","shop":"\\u7be4\\u660e","phone":"035284791","address":"\\u6797\\u68ee\\u8def\\u0031\\u0038\\u0034\\u865f"}', '110105', '711', 'zh-tw', 1000),
(5266, 296, '18-296', 1, '俊友', '{"number":"197582","shop":"\\u4fca\\u53cb","phone":"035263172","address":"\\u6797\\u68ee\\u8def\\u0038\\u0031\\u865f"}', '197582', '711', 'zh-tw', 1000),
(5267, 296, '18-296', 1, '風城', '{"number":"155197","shop":"\\u98a8\\u57ce","phone":"035331847","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '155197', '711', 'zh-tw', 1000),
(5268, 296, '18-296', 1, '新揚', '{"number":"111452","shop":"\\u65b0\\u63da","phone":"035316942","address":"\\u6c11\\u751f\\u8def\\u0031\\u0034\\u0039\\u865f\\u0031\\u0035\\u0031\\u865f\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '111452', '711', 'zh-tw', 1000),
(5269, 296, '18-296', 1, '竹博', '{"number":"180403","shop":"\\u7af9\\u535a","phone":"035152946","address":"\\u6c11\\u751f\\u8def\\u0032\\u0032\\u0036\\u865f"}', '180403', '711', 'zh-tw', 1000),
(5270, 296, '18-296', 1, '千久', '{"number":"920032","shop":"\\u5343\\u4e45","phone":"035338512","address":"\\u6c11\\u4e3b\\u8def\\u0031\\u0035\\u0034\\u865f\\u0031\\u0035\\u0036\\u865f"}', '920032', '711', 'zh-tw', 1000),
(5271, 296, '18-296', 1, '新竹民', '{"number":"137030","shop":"\\u65b0\\u7af9\\u6c11","phone":"035341957","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0031\\u0034\\u865f\\u0031\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '137030', '711', 'zh-tw', 1000),
(5272, 296, '18-296', 1, '雙民', '{"number":"166348","shop":"\\u96d9\\u6c11","phone":"035347583","address":"\\u6c11\\u65cf\\u8def\\u0032\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '166348', '711', 'zh-tw', 1000),
(5273, 296, '18-296', 1, '里客', '{"number":"951678","shop":"\\u91cc\\u5ba2","phone":"035244323","address":"\\u6c11\\u65cf\\u8def\\u0037\\u865f\\u0031\\u6a13"}', '951678', '711', 'zh-tw', 1000),
(5274, 296, '18-296', 1, '青草湖', '{"number":"154828","shop":"\\u9752\\u8349\\u6e56","phone":"035296583","address":"\\u660e\\u6e56\\u91cc\\u660e\\u6e56\\u8def\\u0033\\u9130\\u0031\\u0030\\u0031\\u0032\\u002d\\u0031\\u865f"}', '154828', '711', 'zh-tw', 1000),
(5275, 296, '18-296', 1, '天湖', '{"number":"944326","shop":"\\u5929\\u6e56","phone":"035621482","address":"\\u660e\\u6e56\\u8def\\u0031\\u0038\\u0030\\u865f"}', '944326', '711', 'zh-tw', 1000),
(5276, 296, '18-296', 1, '明瑚', '{"number":"122979","shop":"\\u660e\\u745a","phone":"035191443","address":"\\u660e\\u6e56\\u8def\\u0034\\u0031\\u0030\\u865f\\u0031\\u6a13"}', '122979', '711', 'zh-tw', 1000),
(5277, 296, '18-296', 1, '煙波', '{"number":"972262","shop":"\\u7159\\u6ce2","phone":"035296586","address":"\\u660e\\u6e56\\u8def\\u0039\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '972262', '711', 'zh-tw', 1000),
(5278, 296, '18-296', 1, '耀明', '{"number":"120962","shop":"\\u8000\\u660e","phone":"035622948","address":"\\u5357\\u5927\\u8def\\u0035\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '120962', '711', 'zh-tw', 1000),
(5279, 296, '18-296', 1, '育賢', '{"number":"142010","shop":"\\u80b2\\u8ce2","phone":"035624805","address":"\\u5357\\u5927\\u8def\\u0036\\u0031\\u0031\\u865f\\u0036\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '142010', '711', 'zh-tw', 1000),
(5280, 296, '18-296', 1, '埔竹', '{"number":"143806","shop":"\\u57d4\\u7af9","phone":"035781471","address":"\\u57d4\\u9802\\u4e8c\\u8def\\u0031\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '143806', '711', 'zh-tw', 1000),
(5281, 296, '18-296', 1, '竹科', '{"number":"122636","shop":"\\u7af9\\u79d1","phone":"035790747","address":"\\u57d4\\u9802\\u8def\\u0038\\u865f"}', '122636', '711', 'zh-tw', 1000),
(5282, 296, '18-296', 1, '千甲', '{"number":"155647","shop":"\\u5343\\u7532","phone":"035750224","address":"\\u5343\\u7532\\u8def\\u0032\\u0033\\u0035\\u865f"}', '155647', '711', 'zh-tw', 1000),
(5283, 296, '18-296', 1, '新親仁', '{"number":"941914","shop":"\\u65b0\\u89aa\\u4ec1","phone":"035336597","address":"\\u89aa\\u4ec1\\u91cc\\u4ec1\\u611b\\u8857\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '941914', '711', 'zh-tw', 1000),
(5284, 296, '18-296', 1, '新站', '{"number":"141855","shop":"\\u65b0\\u7ad9","phone":"035244549","address":"\\u69ae\\u5149\\u91cc\\u6797\\u68ee\\u8def\\u0037\\u865f\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0034\\u0035\\u0038\\u865f"}', '141855', '711', 'zh-tw', 1000),
(5285, 296, '18-296', 1, '東品', '{"number":"996660","shop":"\\u6771\\u54c1","phone":"035618092","address":"\\u98df\\u54c1\\u8def\\u0031\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '996660', '711', 'zh-tw', 1000),
(5286, 296, '18-296', 1, '寶捷', '{"number":"194619","shop":"\\u5bf6\\u6377","phone":"035340151","address":"\\u7530\\u7f8e\\u4e09\\u8857\\u0033\\u0035\\u865f"}', '194619', '711', 'zh-tw', 1000),
(5287, 296, '18-296', 1, '竹醫', '{"number":"131928","shop":"\\u7af9\\u91ab","phone":"035334622","address":"\\u9435\\u9053\\u8def\\u4e8c\\u6bb5\\u0039\\u865f\\u0031\\u6a13"}', '131928', '711', 'zh-tw', 1000),
(5288, 296, '18-296', 1, '竹揚', '{"number":"916631","shop":"\\u7af9\\u63da","phone":"035318119","address":"\\u6587\\u83ef\\u91cc\\u5317\\u5927\\u8def\\u0033\\u0038\\u865f"}', '916631', '711', 'zh-tw', 1000),
(5289, 296, '18-296', 1, '大遠百', '{"number":"138158","shop":"\\u5927\\u9060\\u767e","phone":"035210960","address":"\\u897f\\u9580\\u8857\\u0031\\u0030\\u0035\\u865f"}', '138158', '711', 'zh-tw', 1000),
(5290, 296, '18-296', 1, '科管', '{"number":"970118","shop":"\\u79d1\\u7ba1","phone":"035670844","address":"\\u65b0\\u5b89\\u8def\\u0032\\u865f"}', '970118', '711', 'zh-tw', 1000),
(5291, 296, '18-296', 1, '揚明', '{"number":"993786","shop":"\\u63da\\u660e","phone":"035795413","address":"\\u65b0\\u5b89\\u8def\\u0037\\u865f"}', '993786', '711', 'zh-tw', 1000),
(5292, 296, '18-296', 1, '翊銘', '{"number":"920216","shop":"\\u7fca\\u9298","phone":"035774378","address":"\\u65b0\\u838a\\u8857\\u0031\\u0038\\u0032\\u865f\\u0031\\u0038\\u0036\\u865f"}', '920216', '711', 'zh-tw', 1000),
(5293, 296, '18-296', 1, '復全', '{"number":"127240","shop":"\\u5fa9\\u5168","phone":"035771145","address":"\\u65b0\\u838a\\u91cc\\u9577\\u6625\\u8857\\u0031\\u0033\\u865f"}', '127240', '711', 'zh-tw', 1000),
(5294, 296, '18-296', 1, '宏府', '{"number":"942917","shop":"\\u5b8f\\u5e9c","phone":"035745036","address":"\\u5b78\\u5e9c\\u8def\\u0031\\u0036\\u0034\\u865f"}', '942917', '711', 'zh-tw', 1000),
(5295, 296, '18-296', 1, '學英', '{"number":"924919","shop":"\\u5b78\\u82f1","phone":"035728236","address":"\\u5b78\\u5e9c\\u8def\\u0033\\u0037\\u865f"}', '924919', '711', 'zh-tw', 1000),
(5296, 296, '18-296', 1, '新唐', '{"number":"189064","shop":"\\u65b0\\u5510","phone":"035787840","address":"\\u7814\\u65b0\\u4e09\\u8def\\u0034\\u865f\\u0032\\u6a13"}', '189064', '711', 'zh-tw', 1000),
(5297, 296, '18-296', 1, '晏丞', '{"number":"170853","shop":"\\u664f\\u4e1e","phone":"035612425","address":"\\u632f\\u8208\\u8def\\u0035\\u0030\\u865f\\u0031\\u6a13"}', '170853', '711', 'zh-tw', 1000),
(5298, 296, '18-296', 1, '竹運', '{"number":"189606","shop":"\\u7af9\\u904b","phone":"035266371","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u0031\\u865f"}', '189606', '711', 'zh-tw', 1000),
(5299, 296, '18-296', 1, '鳳美', '{"number":"991399","shop":"\\u9cf3\\u7f8e","phone":"035337159","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0036\\u0034\\u865f"}', '991399', '711', 'zh-tw', 1000),
(5300, 296, '18-296', 1, '泰一', '{"number":"130833","shop":"\\u6cf0\\u4e00","phone":"035254716","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\u0036\\u0036\\u0038\\u865f"}', '130833', '711', 'zh-tw', 1000),
(5301, 296, '18-296', 1, '華國', '{"number":"173955","shop":"\\u83ef\\u570b","phone":"035332309","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f"}', '173955', '711', 'zh-tw', 1000),
(5302, 296, '18-296', 1, '保忠', '{"number":"135861","shop":"\\u4fdd\\u5fe0","phone":"035738890","address":"\\u5fe0\\u5b5d\\u8def\\u0031\\u865f"}', '135861', '711', 'zh-tw', 1000),
(5303, 296, '18-296', 1, '佑忠', '{"number":"942191","shop":"\\u4f51\\u5fe0","phone":"035619024","address":"\\u5fe0\\u5b5d\\u8def\\u0034\\u0033\\u0030\\u865f\\u0034\\u0033\\u0032\\u865f"}', '942191', '711', 'zh-tw', 1000),
(5304, 296, '18-296', 1, '自興', '{"number":"961402","shop":"\\u81ea\\u8208","phone":"035354292","address":"\\u81ea\\u7531\\u8def\\u0036\\u0039\\u865f"}', '961402', '711', 'zh-tw', 1000),
(5305, 297, '18-297', 1, '東香', '{"number":"158749","shop":"\\u6771\\u9999","phone":"035402700","address":"\\u9802\\u57d4\\u8def\\u0032\\u865f"}', '158749', '711', 'zh-tw', 1000),
(5306, 297, '18-297', 1, '海天', '{"number":"149181","shop":"\\u6d77\\u5929","phone":"035364888","address":"\\u6d77\\u57d4\\u8def\\u0031\\u0033\\u0036\\u865f"}', '149181', '711', 'zh-tw', 1000),
(5307, 297, '18-297', 1, '璟觀', '{"number":"188108","shop":"\\u749f\\u89c0","phone":"035297705","address":"\\u666f\\u89c0\\u5927\\u9053\\u0038\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '188108', '711', 'zh-tw', 1000),
(5308, 297, '18-297', 1, '華耀', '{"number":"198976","shop":"\\u83ef\\u8000","phone":"035378614","address":"\\u660e\\u5fb7\\u8def\\u0031\\u865f\\u0031\\u6a13"}', '198976', '711', 'zh-tw', 1000),
(5309, 297, '18-297', 1, '岦湖', '{"number":"130925","shop":"\\u5ca6\\u6e56","phone":"035182449","address":"\\u5167\\u6e56\\u8def\\u0031\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '130925', '711', 'zh-tw', 1000),
(5310, 297, '18-297', 1, '祥園', '{"number":"932183","shop":"\\u7965\\u5712","phone":"035402722","address":"\\u725b\\u57d4\\u5317\\u8def\\u0035\\u0030\\u865f"}', '932183', '711', 'zh-tw', 1000),
(5311, 297, '18-297', 1, '香圃', '{"number":"151656","shop":"\\u9999\\u5703","phone":"035305337","address":"\\u725b\\u57d4\\u6771\\u8def\\u0032\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '151656', '711', 'zh-tw', 1000),
(5312, 297, '18-297', 1, '東埔', '{"number":"130936","shop":"\\u6771\\u57d4","phone":"035399314","address":"\\u725b\\u57d4\\u8def\\u0031\\u0034\\u0036\\u865f"}', '130936', '711', 'zh-tw', 1000),
(5313, 297, '18-297', 1, '香山', '{"number":"946241","shop":"\\u9999\\u5c71","phone":"035300114","address":"\\u725b\\u57d4\\u8def\\u0034\\u0034\\u0037\\u865f"}', '946241', '711', 'zh-tw', 1000),
(5314, 297, '18-297', 1, '松邑', '{"number":"123411","shop":"\\u677e\\u9091","phone":"035304086","address":"\\u725b\\u57d4\\u5357\\u8def\\u0032\\u865f"}', '123411', '711', 'zh-tw', 1000),
(5315, 297, '18-297', 1, '華鑫', '{"number":"113218","shop":"\\u83ef\\u946b","phone":"035182741","address":"\\u4e94\\u798f\\u8def\\u4e8c\\u6bb5\\u0037\\u0032\\u0035\\u865f\\u0037\\u0032\\u0037\\u865f\\u0037\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '113218', '711', 'zh-tw', 1000),
(5316, 297, '18-297', 1, '豪運', '{"number":"187183","shop":"\\u8c6a\\u904b","phone":"035398840","address":"\\u9999\\u5317\\u8def\\u0031\\u0038\\u0031\\u865f\\u0031\\u0038\\u0033\\u865f"}', '187183', '711', 'zh-tw', 1000),
(5317, 297, '18-297', 1, '香光', '{"number":"126498","shop":"\\u9999\\u5149","phone":"035400747","address":"\\u9999\\u5317\\u8def\\u0038\\u0032\\u865f\\u0031\\u6a13"}', '126498', '711', 'zh-tw', 1000),
(5318, 297, '18-297', 1, '新竹延平', '{"number":"943600","shop":"\\u65b0\\u7af9\\u5ef6\\u5e73","phone":"035401035","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\u0038\\u0032\\u865f\\u0038\\u0034\\u865f"}', '943600', '711', 'zh-tw', 1000),
(5319, 297, '18-297', 1, '新豪康', '{"number":"143828","shop":"\\u65b0\\u8c6a\\u5eb7","phone":"035398534","address":"\\u5143\\u57f9\\u8857\\u0033\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '143828', '711', 'zh-tw', 1000),
(5320, 297, '18-297', 1, '鎵華', '{"number":"180263","shop":"\\u93b5\\u83ef","phone":"035183412","address":"\\u4e2d\\u83ef\\u8def\\u516d\\u6bb5\\u0031\\u0033\\u0031\\u002e\\u0031\\u0033\\u0033\\u002e\\u0031\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '180263', '711', 'zh-tw', 1000),
(5321, 297, '18-297', 1, '香江', '{"number":"126524","shop":"\\u9999\\u6c5f","phone":"035181847","address":"\\u4e2d\\u83ef\\u8def\\u516d\\u6bb5\\u0034\\u0032\\u0038\\u002d\\u0034\\u0033\\u0030\\u865f"}', '126524', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(5322, 297, '18-297', 1, '佳香', '{"number":"150767","shop":"\\u4f73\\u9999","phone":"035182254","address":"\\u4e2d\\u83ef\\u8def\\u516d\\u6bb5\\u516d\\u5341\\u4e4b\\u4e00\\u3001\\u516d\\u5341\\u4e4b\\u4e8c\\u865f\\u0031\\u6a13"}', '150767', '711', 'zh-tw', 1000),
(5323, 297, '18-297', 1, '香華', '{"number":"947635","shop":"\\u9999\\u83ef","phone":"035309674","address":"\\u4e2d\\u83ef\\u8def\\u56db\\u6bb5\\u0036\\u0030\\u0032\\u865f\\u0036\\u0030\\u0034\\u865f"}', '947635', '711', 'zh-tw', 1000),
(5324, 297, '18-297', 1, '東珈', '{"number":"194815","shop":"\\u6771\\u73c8","phone":"035385031","address":"\\u4e2d\\u83ef\\u8def\\u4e94\\u6bb5\\u0031\\u0035\\u0036\\u865f"}', '194815', '711', 'zh-tw', 1000),
(5325, 297, '18-297', 1, '隆華', '{"number":"167444","shop":"\\u9686\\u83ef","phone":"035398995","address":"\\u4e2d\\u83ef\\u8def\\u4e94\\u6bb5\\u0031\\u0039\\u0033\\u865f\\u0031\\u6a13"}', '167444', '711', 'zh-tw', 1000),
(5326, 297, '18-297', 1, '頂福', '{"number":"901868","shop":"\\u9802\\u798f","phone":"035388361","address":"\\u4e2d\\u5c71\\u8def\\u0036\\u0032\\u0038\\u865f\\u0036\\u0033\\u0030\\u865f"}', '901868', '711', 'zh-tw', 1000),
(5327, 298, '19-298', 1, '盟創', '{"number":"953696","shop":"\\u76df\\u5275","phone":"036686093","address":"\\u5275\\u65b0\\u4e8c\\u8def\\u0036\\u865f"}', '953696', '711', 'zh-tw', 1000),
(5328, 298, '19-298', 1, '寶雅', '{"number":"131272","shop":"\\u5bf6\\u96c5","phone":"035679055","address":"\\u5927\\u5d0e\\u6751\\u5927\\u96c5\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0033\\u5df7\\u0031\\u0035\\u865f"}', '131272', '711', 'zh-tw', 1000),
(5329, 298, '19-298', 1, '情友', '{"number":"912617","shop":"\\u60c5\\u53cb","phone":"035206568","address":"\\u96d9\\u6eaa\\u6751\\u5bf6\\u65b0\\u8def\\u0031\\u865f"}', '912617', '711', 'zh-tw', 1000),
(5330, 298, '19-298', 1, '台積P6', '{"number":"122290","shop":"\\u53f0\\u7a4d\\u0050\\u0036","phone":"035798243","address":"\\u65b0\\u7af9\\u79d1\\u5b78\\u5712\\u5340\\u5712\\u5340\\u4e8c\\u8def\\u0031\\u0036\\u0036\\u865f"}', '122290', '711', 'zh-tw', 1000),
(5331, 298, '19-298', 1, '乾坤科', '{"number":"193627","shop":"\\u4e7e\\u5764\\u79d1","phone":"035799157","address":"\\u7814\\u767c\\u4e8c\\u8def\\u0032\\u865f\\u0042\\u0031\\u6a13"}', '193627', '711', 'zh-tw', 1000),
(5332, 298, '19-298', 1, '台積電', '{"number":"130338","shop":"\\u53f0\\u7a4d\\u96fb","phone":"035773140","address":"\\u7814\\u65b0\\u4e8c\\u8def\\u0036\\u865f"}', '130338', '711', 'zh-tw', 1000),
(5333, 298, '19-298', 1, '台積三', '{"number":"912938","shop":"\\u53f0\\u7a4d\\u4e09","phone":"035797212","address":"\\u7814\\u65b0\\u4e00\\u8def\\u0039\\u865f"}', '912938', '711', 'zh-tw', 1000),
(5334, 298, '19-298', 1, '台積', '{"number":"143552","shop":"\\u53f0\\u7a4d","phone":"035790640","address":"\\u5712\\u5340\\u4e8c\\u8def\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '143552', '711', 'zh-tw', 1000),
(5335, 298, '19-298', 1, '積七', '{"number":"154080","shop":"\\u7a4d\\u4e03","phone":"035790146","address":"\\u5712\\u5340\\u4e8c\\u8def\\u0031\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '154080', '711', 'zh-tw', 1000),
(5336, 298, '19-298', 1, '台積二', '{"number":"912927","shop":"\\u53f0\\u7a4d\\u4e8c","phone":"035797355","address":"\\u5712\\u5340\\u4e09\\u8def\\u0031\\u0032\\u0031\\u865f\\u0042\\u0031"}', '912927', '711', 'zh-tw', 1000),
(5337, 298, '19-298', 1, '進一廠', '{"number":"183343","shop":"\\u9032\\u4e00\\u5ee0","phone":"035798620","address":"\\u5712\\u5340\\u4e09\\u8def\\u0031\\u0032\\u0033\\u865f"}', '183343', '711', 'zh-tw', 1000),
(5338, 298, '19-298', 1, '園區', '{"number":"161125","shop":"\\u5712\\u5340","phone":"036686614","address":"\\u5712\\u5340\\u4e09\\u8def\\u0031\\u865f"}', '161125', '711', 'zh-tw', 1000),
(5339, 299, '19-299', 1, '中德', '{"number":"190721","shop":"\\u4e2d\\u5fb7","phone":"035805510","address":"\\u5317\\u57d4\\u6751\\u4e2d\\u5c71\\u8def\\u0034\\u0032\\u865f\\u4e00\\u6a13"}', '190721', '711', 'zh-tw', 1000),
(5340, 299, '19-299', 1, '金廣福', '{"number":"137926","shop":"\\u91d1\\u5ee3\\u798f","phone":"035803135","address":"\\u5357\\u8208\\u8857\\u0031\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '137926', '711', 'zh-tw', 1000),
(5341, 300, '19-300', 1, '洪興', '{"number":"195346","shop":"\\u6d2a\\u8208","phone":"035800263","address":"\\u5ce8\\u7709\\u6751\\u0031\\u9130\\u0038\\u002d\\u0038\\u865f\\u0031\\u6a13"}', '195346', '711', 'zh-tw', 1000),
(5342, 301, '19-301', 1, '石光', '{"number":"141659","shop":"\\u77f3\\u5149","phone":"035868624","address":"\\u77f3\\u5149\\u91cc\\u77f3\\u5ca1\\u5b50\\u0032\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '141659', '711', 'zh-tw', 1000),
(5343, 301, '19-301', 1, '關西', '{"number":"130475","shop":"\\u95dc\\u897f","phone":"035171983","address":"\\u6b63\\u7fa9\\u8def\\u0032\\u0038\\u0036\\u002d\\u0031\\u865f"}', '130475', '711', 'zh-tw', 1000),
(5344, 301, '19-301', 1, '馬武督', '{"number":"971340","shop":"\\u99ac\\u6b66\\u7763","phone":"035171785","address":"\\u4e2d\\u8c50\\u65b0\\u8def\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '971340', '711', 'zh-tw', 1000),
(5345, 301, '19-301', 1, '新關中', '{"number":"911876","shop":"\\u65b0\\u95dc\\u4e2d","phone":"035879439","address":"\\u4e2d\\u8208\\u8def\\u0031\\u0037\\u865f"}', '911876', '711', 'zh-tw', 1000),
(5346, 302, '19-302', 1, '華科', '{"number":"142928","shop":"\\u83ef\\u79d1","phone":"035931167","address":"\\u6a6b\\u5c71\\u6751\\u0039\\u9130\\u4e2d\\u8c50\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '142928', '711', 'zh-tw', 1000),
(5347, 302, '19-302', 1, '內灣', '{"number":"920917","shop":"\\u5167\\u7063","phone":"035849373","address":"\\u5167\\u7063\\u6751\\u0032\\u0030\\u865f"}', '920917', '711', 'zh-tw', 1000),
(5348, 302, '19-302', 1, '橫山', '{"number":"910437","shop":"\\u6a6b\\u5c71","phone":"035934706","address":"\\u4e2d\\u8c50\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0032\\u865f"}', '910437', '711', 'zh-tw', 1000),
(5349, 302, '19-302', 1, '騰達', '{"number":"180528","shop":"\\u9a30\\u9054","phone":"035934063","address":"\\u4e2d\\u8c50\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0031\\u865f"}', '180528', '711', 'zh-tw', 1000),
(5350, 303, '19-303', 1, '豐鈴', '{"number":"127343","shop":"\\u8c50\\u9234","phone":"035972263","address":"\\u5b89\\u5b85\\u56db\\u8857\\u0032\\u865f"}', '127343', '711', 'zh-tw', 1000),
(5351, 303, '19-303', 1, '湖口廠', '{"number":"169886","shop":"\\u6e56\\u53e3\\u5ee0","phone":"035694694","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u865f"}', '169886', '711', 'zh-tw', 1000),
(5352, 303, '19-303', 1, '羅湖', '{"number":"187220","shop":"\\u7f85\\u6e56","phone":"035902084","address":"\\u6210\\u529f\\u8def\\u0031\\u0030\\u0039\\u0032\\u865f"}', '187220', '711', 'zh-tw', 1000),
(5353, 303, '19-303', 1, '耕新', '{"number":"110699","shop":"\\u8015\\u65b0","phone":"035907092","address":"\\u6210\\u529f\\u8def\\u0032\\u0037\\u0036\\u865f"}', '110699', '711', 'zh-tw', 1000),
(5354, 303, '19-303', 1, '鑫力成', '{"number":"131755","shop":"\\u946b\\u529b\\u6210","phone":"036960841","address":"\\u5927\\u540c\\u8def\\u0031\\u0030\\u865f\\u0036\\u6a13"}', '131755', '711', 'zh-tw', 1000),
(5355, 303, '19-303', 1, '力成三', '{"number":"182971","shop":"\\u529b\\u6210\\u4e09","phone":"036960346","address":"\\u5927\\u540c\\u8def\\u0031\\u0035\\u4e4b\\u0031\\u865f\\u0036\\u6a13"}', '182971', '711', 'zh-tw', 1000),
(5356, 303, '19-303', 1, '力成科', '{"number":"990710","shop":"\\u529b\\u6210\\u79d1","phone":"035972154","address":"\\u5927\\u540c\\u8def\\u0032\\u0036\\u865f\\u0036\\u6a13"}', '990710', '711', 'zh-tw', 1000),
(5357, 303, '19-303', 1, '德和', '{"number":"155599","shop":"\\u5fb7\\u548c","phone":"035903462","address":"\\u5fb7\\u8208\\u8def\\u0032\\u0031\\u0036\\u865f\\u0032\\u0031\\u0038\\u865f"}', '155599', '711', 'zh-tw', 1000),
(5358, 303, '19-303', 1, '宏橋', '{"number":"953489","shop":"\\u5b8f\\u6a4b","phone":"035974841","address":"\\u5de5\\u696d\\u4e00\\u8def\\u0037\\u865f\\u0037\\u002d\\u0031\\u865f"}', '953489', '711', 'zh-tw', 1000),
(5359, 303, '19-303', 1, '湖安', '{"number":"988337","shop":"\\u6e56\\u5b89","phone":"035974735","address":"\\u5149\\u5fa9\\u6771\\u8def\\u0033\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '988337', '711', 'zh-tw', 1000),
(5360, 303, '19-303', 1, '豐鼎', '{"number":"141718","shop":"\\u8c50\\u9f0e","phone":"036960448","address":"\\u5149\\u5fa9\\u6771\\u8def\\u0038\\u865f\\u0031\\u6a13"}', '141718', '711', 'zh-tw', 1000),
(5361, 303, '19-303', 1, '源威', '{"number":"910703","shop":"\\u6e90\\u5a01","phone":"035986517","address":"\\u5149\\u83ef\\u8def\\u0036\\u0036\\u0036\\u865f\\u0031\\u0046"}', '910703', '711', 'zh-tw', 1000),
(5362, 303, '19-303', 1, '三立', '{"number":"910806","shop":"\\u4e09\\u7acb","phone":"035693326","address":"\\u6e56\\u93e1\\u6751\\u516b\\u5fb7\\u8def\\u4e00\\u6bb5\\u0037\\u0031\\u0038\\u865f"}', '910806', '711', 'zh-tw', 1000),
(5363, 303, '19-303', 1, '仁智', '{"number":"186593","shop":"\\u4ec1\\u667a","phone":"036960527","address":"\\u4ec1\\u548c\\u8def\\u0033\\u0038\\u865f\\u0031\\u6a13"}', '186593', '711', 'zh-tw', 1000),
(5364, 303, '19-303', 1, '晨希', '{"number":"990880","shop":"\\u6668\\u5e0c","phone":"035976142","address":"\\u69ae\\u5149\\u8def\\u0036\\u0031\\u0037\\u865f"}', '990880', '711', 'zh-tw', 1000),
(5365, 303, '19-303', 1, '力成貳', '{"number":"990846","shop":"\\u529b\\u6210\\u8cb3","phone":"035974877","address":"\\u4e09\\u6c11\\u8def\\u0037\\u865f\\u0042\\u0031"}', '990846', '711', 'zh-tw', 1000),
(5366, 303, '19-303', 1, '晨寶', '{"number":"167765","shop":"\\u6668\\u5bf6","phone":"036960464","address":"\\u4e09\\u6c11\\u5357\\u8def\\u0031\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '167765', '711', 'zh-tw', 1000),
(5367, 303, '19-303', 1, '鳳山綺', '{"number":"141877","shop":"\\u9cf3\\u5c71\\u7dba","phone":"035974427","address":"\\u52dd\\u5229\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0034\\u865f\\u0031\\u6a13"}', '141877', '711', 'zh-tw', 1000),
(5368, 303, '19-303', 1, '裝甲', '{"number":"138929","shop":"\\u88dd\\u7532","phone":"036960001","address":"\\u52dd\\u5229\\u8def\\u4e8c\\u6bb5\\u0039\\u0033\\u865f\\u0039\\u0034\\u865f\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '138929', '711', 'zh-tw', 1000),
(5369, 303, '19-303', 1, '力成玖', '{"number":"181819","shop":"\\u529b\\u6210\\u7396","phone":"036960463","address":"\\u6587\\u5316\\u8def\\u0034\\u865f\\u0042\\u0031\\u6a13"}', '181819', '711', 'zh-tw', 1000),
(5370, 303, '19-303', 1, '文樂', '{"number":"149310","shop":"\\u6587\\u6a02","phone":"036960007","address":"\\u6587\\u5316\\u8def\\u0035\\u0035\\u865f"}', '149310', '711', 'zh-tw', 1000),
(5371, 303, '19-303', 1, '醫湖', '{"number":"863458","shop":"\\u91ab\\u6e56","phone":"035904938","address":"\\u5b5d\\u52e2\\u91cc\\u5fe0\\u5b5d\\u8def\\u0032\\u0030\\u865f\\u0032\\u0032\\u865f"}', '863458', '711', 'zh-tw', 1000),
(5372, 303, '19-303', 1, '源晟', '{"number":"944751","shop":"\\u6e90\\u665f","phone":"035579768","address":"\\u65b0\\u8208\\u8def\\u0036\\u0032\\u0038\\u865f\\u0036\\u0033\\u0030\\u865f"}', '944751', '711', 'zh-tw', 1000),
(5373, 303, '19-303', 1, '新湖工', '{"number":"171351","shop":"\\u65b0\\u6e56\\u5de5","phone":"035974942","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u0034\\u865f"}', '171351', '711', 'zh-tw', 1000),
(5374, 303, '19-303', 1, '忠平', '{"number":"154105","shop":"\\u5fe0\\u5e73","phone":"035904720","address":"\\u4e2d\\u5e73\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0031\\u865f\\u0031\\u6a13"}', '154105', '711', 'zh-tw', 1000),
(5375, 303, '19-303', 1, '湖崗', '{"number":"187091","shop":"\\u6e56\\u5d17","phone":"035995848","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0033\\u0030\\u865f"}', '187091', '711', 'zh-tw', 1000),
(5376, 303, '19-303', 1, '湖山', '{"number":"930800","shop":"\\u6e56\\u5c71","phone":"035901262","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0034\\u0038\\u0039\\u865f"}', '930800', '711', 'zh-tw', 1000),
(5377, 303, '19-303', 1, '達陞', '{"number":"141556","shop":"\\u9054\\u965e","phone":"035905264","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '141556', '711', 'zh-tw', 1000),
(5378, 303, '19-303', 1, '王爺', '{"number":"182340","shop":"\\u738b\\u723a","phone":"035904065","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '182340', '711', 'zh-tw', 1000),
(5379, 303, '19-303', 1, '源泰', '{"number":"922751","shop":"\\u6e90\\u6cf0","phone":"035999488","address":"\\u4e2d\\u8208\\u8857\\u0031\\u0037\\u0034\\u002d\\u0031\\u0037\\u0036\\u865f"}', '922751', '711', 'zh-tw', 1000),
(5380, 303, '19-303', 1, '新湖中', '{"number":"966865","shop":"\\u65b0\\u6e56\\u4e2d","phone":"036992852","address":"\\u4e2d\\u6b63\\u6751\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0035\\u865f"}', '966865', '711', 'zh-tw', 1000),
(5381, 303, '19-303', 1, '湖口', '{"number":"123363","shop":"\\u6e56\\u53e3","phone":"035994895","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u865f"}', '123363', '711', 'zh-tw', 1000),
(5382, 303, '19-303', 1, '碩禾科', '{"number":"195818","shop":"\\u78a9\\u79be\\u79d1","phone":"035970269","address":"\\u81ea\\u5f37\\u8def\\u0031\\u0038\\u865f\\u0031\\u6a13"}', '195818', '711', 'zh-tw', 1000),
(5383, 304, '19-304', 1, '景碩', '{"number":"181831","shop":"\\u666f\\u78a9","phone":"035574721","address":"\\u5efa\\u8208\\u8def\\u4e8c\\u6bb5\\u0035\\u0032\\u0036\\u865f\\u884c\\u653f\\u68df\\u0033\\u6a13"}', '181831', '711', 'zh-tw', 1000),
(5384, 304, '19-304', 1, '新庄子', '{"number":"962977","shop":"\\u65b0\\u5e84\\u5b50","phone":"035597054","address":"\\u5efa\\u8208\\u8def\\u4e8c\\u6bb5\\u0037\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '962977', '711', 'zh-tw', 1000),
(5385, 304, '19-304', 1, '豐興', '{"number":"914037","shop":"\\u8c50\\u8208","phone":"035599897","address":"\\u5efa\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0032\\u0038\\u865f"}', '914037', '711', 'zh-tw', 1000),
(5386, 304, '19-304', 1, '世豊', '{"number":"988038","shop":"\\u4e16\\u8c4a","phone":"035590282","address":"\\u5efa\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0033\\u865f\\u0031\\u0037\\u0035\\u865f\\u4e00\\u6a13"}', '988038', '711', 'zh-tw', 1000),
(5387, 304, '19-304', 1, '欣樂', '{"number":"154943","shop":"\\u6b23\\u6a02","phone":"035577364","address":"\\u5eb7\\u6a02\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u0038\\u865f"}', '154943', '711', 'zh-tw', 1000),
(5388, 304, '19-304', 1, '埔和', '{"number":"166854","shop":"\\u57d4\\u548c","phone":"035689849","address":"\\u57d4\\u548c\\u6751\\u57d4\\u9802\\u0032\\u0038\\u0031\\u4e4b\\u0031\\u865f"}', '166854', '711', 'zh-tw', 1000),
(5389, 304, '19-304', 1, '源冠', '{"number":"142526","shop":"\\u6e90\\u51a0","phone":"035572871","address":"\\u5c1a\\u4ec1\\u8857\\u0039\\u0032\\u865f\\u0031\\u6a13"}', '142526', '711', 'zh-tw', 1000),
(5390, 304, '19-304', 1, '新康', '{"number":"121459","shop":"\\u65b0\\u5eb7","phone":"035572191","address":"\\u677e\\u6797\\u6751\\u0037\\u9130\\u5eb7\\u6a02\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '121459', '711', 'zh-tw', 1000),
(5391, 304, '19-304', 1, '明大', '{"number":"169842","shop":"\\u660e\\u5927","phone":"035578461","address":"\\u677e\\u6797\\u6751\\u65b0\\u8208\\u8def\\u0031\\u865f"}', '169842', '711', 'zh-tw', 1000),
(5392, 304, '19-304', 1, '新新豐', '{"number":"954633","shop":"\\u65b0\\u65b0\\u8c50","phone":"035578411","address":"\\u65b0\\u8208\\u8def\\u0031\\u0037\\u0037\\u865f\\u0031\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '954633', '711', 'zh-tw', 1000),
(5393, 304, '19-304', 1, '新高湖', '{"number":"967282","shop":"\\u65b0\\u9ad8\\u6e56","phone":"035571841","address":"\\u65b0\\u8208\\u8def\\u0034\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '967282', '711', 'zh-tw', 1000),
(5394, 304, '19-304', 1, '明新', '{"number":"123352","shop":"\\u660e\\u65b0","phone":"035594933","address":"\\u65b0\\u8208\\u8def\\u0037\\u865f"}', '123352', '711', 'zh-tw', 1000),
(5395, 304, '19-304', 1, '新豐新庄', '{"number":"126340","shop":"\\u65b0\\u8c50\\u65b0\\u5e84","phone":"035577859","address":"\\u65b0\\u5e84\\u8def\\u0033\\u0038\\u0033\\u865f"}', '126340', '711', 'zh-tw', 1000),
(5396, 304, '19-304', 1, '冠華', '{"number":"121460","shop":"\\u51a0\\u83ef","phone":"035577964","address":"\\u5fe0\\u5b5d\\u6751\\u54e1\\u5c71\\u0031\\u0034\\u0038\\u4e4b\\u0032\\u865f\\u0031\\u6a13"}', '121460', '711', 'zh-tw', 1000),
(5397, 304, '19-304', 1, '冠宇', '{"number":"137524","shop":"\\u51a0\\u5b87","phone":"035578596","address":"\\u5fe0\\u5b5d\\u8def\\u0031\\u865f"}', '137524', '711', 'zh-tw', 1000),
(5398, 305, '19-305', 1, '埔嵩', '{"number":"193007","shop":"\\u57d4\\u5d69","phone":"035895938","address":"\\u7530\\u65b0\\u8def\\u0032\\u0039\\u0032\\u865f\\u0032\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '193007', '711', 'zh-tw', 1000),
(5399, 305, '19-305', 1, '埔義', '{"number":"132356","shop":"\\u57d4\\u7fa9","phone":"035884984","address":"\\u4e0b\\u5bee\\u91cc\\u7fa9\\u6c11\\u8def\\u4e09\\u6bb5\\u0033\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '132356', '711', 'zh-tw', 1000),
(5400, 305, '19-305', 1, '埔昌', '{"number":"167606","shop":"\\u57d4\\u660c","phone":"035886284","address":"\\u7fa9\\u6c11\\u8def\\u4e00\\u6bb5\\u0039\\u0032\\u865f"}', '167606', '711', 'zh-tw', 1000),
(5401, 305, '19-305', 1, '新埔', '{"number":"154013","shop":"\\u65b0\\u57d4","phone":"035887237","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0032\\u0031\\u865f"}', '154013', '711', 'zh-tw', 1000),
(5402, 305, '19-305', 1, '埔中', '{"number":"893655","shop":"\\u57d4\\u4e2d","phone":"035888775","address":"\\u4e2d\\u6b63\\u8def\\u0036\\u0031\\u0039\\u865f\\u0036\\u0032\\u0031\\u865f"}', '893655', '711', 'zh-tw', 1000),
(5403, 305, '19-305', 1, '埔田', '{"number":"137535","shop":"\\u57d4\\u7530","phone":"035882584","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u865f\\u0031\\u6a13"}', '137535', '711', 'zh-tw', 1000),
(5404, 306, '19-306', 1, '飛鳳', '{"number":"965932","shop":"\\u98db\\u9cf3","phone":"035928161","address":"\\u5bcc\\u6797\\u8def\\u4e8c\\u6bb5\\u0035\\u0035\\u0036\\u865f"}', '965932', '711', 'zh-tw', 1000),
(5405, 306, '19-306', 1, '飛凰', '{"number":"124687","shop":"\\u98db\\u51f0","phone":"035120589","address":"\\u5bcc\\u6797\\u8def\\u4e8c\\u6bb5\\u0037\\u0032\\u0039\\u865f"}', '124687', '711', 'zh-tw', 1000),
(5406, 306, '19-306', 1, '富林', '{"number":"992233","shop":"\\u5bcc\\u6797","phone":"035924182","address":"\\u5bcc\\u6797\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '992233', '711', 'zh-tw', 1000),
(5407, 306, '19-306', 1, '大矽谷', '{"number":"953607","shop":"\\u5927\\u77fd\\u8c37","phone":"035928993","address":"\\u4e09\\u6c11\\u8def\\u0032\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '953607', '711', 'zh-tw', 1000),
(5408, 306, '19-306', 1, '宥昌', '{"number":"181691","shop":"\\u5ba5\\u660c","phone":"035926051","address":"\\u6587\\u5bcc\\u8857\\u0031\\u0030\\u0030\\u865f\\u0031\\u6a13"}', '181691', '711', 'zh-tw', 1000),
(5409, 306, '19-306', 1, '芎林', '{"number":"991089","shop":"\\u828e\\u6797","phone":"035927327","address":"\\u6587\\u5c71\\u8def\\u0035\\u0032\\u0039\\u865f\\u0035\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '991089', '711', 'zh-tw', 1000),
(5410, 307, '19-307', 1, '隘口', '{"number":"158082","shop":"\\u9698\\u53e3","phone":"036585403","address":"\\u9698\\u53e3\\u4e8c\\u8def\\u0032\\u0037\\u865f"}', '158082', '711', 'zh-tw', 1000),
(5411, 307, '19-307', 1, '東鐵', '{"number":"179953","shop":"\\u6771\\u9435","phone":"036670376","address":"\\u9698\\u53e3\\u4e09\\u8857\\u0032\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '179953', '711', 'zh-tw', 1000),
(5412, 307, '19-307', 1, '博明', '{"number":"142559","shop":"\\u535a\\u660e","phone":"035529864","address":"\\u535a\\u611b\\u8857\\u0032\\u0033\\u0035\\u865f\\u0032\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '142559', '711', 'zh-tw', 1000),
(5413, 307, '19-307', 1, '博祐', '{"number":"952811","shop":"\\u535a\\u7950","phone":"035535243","address":"\\u535a\\u611b\\u8857\\u0032\\u0035\\u002d\\u0031\\u865f"}', '952811', '711', 'zh-tw', 1000),
(5414, 307, '19-307', 1, '新北竹', '{"number":"183033","shop":"\\u65b0\\u5317\\u7af9","phone":"035554064","address":"\\u535a\\u611b\\u8857\\u0033\\u0035\\u0038\\u002e\\u0033\\u0036\\u0030\\u865f\\u0031\\u6a13"}', '183033', '711', 'zh-tw', 1000),
(5415, 307, '19-307', 1, '博愛街', '{"number":"185903","shop":"\\u535a\\u611b\\u8857","phone":"035530848","address":"\\u535a\\u611b\\u8857\\u0037\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '185903', '711', 'zh-tw', 1000),
(5416, 307, '19-307', 1, '鳳岡', '{"number":"944588","shop":"\\u9cf3\\u5ca1","phone":"035563289","address":"\\u9577\\u9752\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u0038\\u865f\\u0033\\u0039\\u0030\\u865f"}', '944588', '711', 'zh-tw', 1000),
(5417, 307, '19-307', 1, '璞玉', '{"number":"181738","shop":"\\u749e\\u7389","phone":"036577690","address":"\\u6771\\u8208\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u865f"}', '181738', '711', 'zh-tw', 1000),
(5418, 307, '19-307', 1, '六家', '{"number":"112802","shop":"\\u516d\\u5bb6","phone":"036672052","address":"\\u798f\\u8208\\u6771\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '112802', '711', 'zh-tw', 1000),
(5419, 307, '19-307', 1, '興韻', '{"number":"113838","shop":"\\u8208\\u97fb","phone":"035584179","address":"\\u798f\\u8208\\u8def\\u0037\\u0035\\u0033\\u865f"}', '113838', '711', 'zh-tw', 1000),
(5420, 307, '19-307', 1, '豐富', '{"number":"193487","shop":"\\u8c50\\u5bcc","phone":"036670394","address":"\\u5fa9\\u8208\\u4e09\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '193487', '711', 'zh-tw', 1000),
(5421, 307, '19-307', 1, '新縣政', '{"number":"999957","shop":"\\u65b0\\u7e23\\u653f","phone":"036568254","address":"\\u5149\\u660e\\u4e5d\\u8def\\u0031\\u0032\\u865f\\u0031\\u6a13"}', '999957', '711', 'zh-tw', 1000),
(5422, 307, '19-307', 1, '沐庭', '{"number":"997847","shop":"\\u6c90\\u5ead","phone":"035586247","address":"\\u5149\\u660e\\u516d\\u8def\\u0031\\u0030\\u0036\\u865f\\u0031\\u6a13"}', '997847', '711', 'zh-tw', 1000),
(5423, 307, '19-307', 1, '縣政府', '{"number":"182720","shop":"\\u7e23\\u653f\\u5e9c","phone":"036573682","address":"\\u5149\\u660e\\u516d\\u8def\\u0031\\u0030\\u865f"}', '182720', '711', 'zh-tw', 1000),
(5424, 307, '19-307', 1, '光揚', '{"number":"951623","shop":"\\u5149\\u63da","phone":"035588571","address":"\\u5149\\u660e\\u516d\\u8def\\u0032\\u0034\\u0037\\u865f\\u0032\\u0034\\u0039\\u865f\\u0032\\u0035\\u0031\\u865f\\u4e00\\u6a13"}', '951623', '711', 'zh-tw', 1000),
(5425, 307, '19-307', 1, '斗崙', '{"number":"190053","shop":"\\u6597\\u5d19","phone":"035511063","address":"\\u5149\\u660e\\u5341\\u4e00\\u8def\\u0031\\u0038\\u0038\\u865f\\u0031\\u0039\\u0030\\u865f\\u0031\\u6a13"}', '190053', '711', 'zh-tw', 1000),
(5426, 307, '19-307', 1, '明采', '{"number":"165493","shop":"\\u660e\\u91c7","phone":"035587067","address":"\\u5149\\u660e\\u4e00\\u8def\\u0031\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '165493', '711', 'zh-tw', 1000),
(5427, 307, '19-307', 1, '竹樺', '{"number":"177337","shop":"\\u7af9\\u6a3a","phone":"035516946","address":"\\u83ef\\u8208\\u8857\\u0032\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '177337', '711', 'zh-tw', 1000),
(5428, 307, '19-307', 1, '嘉豐', '{"number":"123189","shop":"\\u5609\\u8c50","phone":"036582578","address":"\\u5609\\u8c50\\u5317\\u8def\\u0037\\u0036\\u865f\\u0037\\u0038\\u865f"}', '123189', '711', 'zh-tw', 1000),
(5429, 307, '19-307', 1, '嘉家', '{"number":"132389","shop":"\\u5609\\u5bb6","phone":"036681534","address":"\\u5609\\u8c50\\u5341\\u4e00\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '132389', '711', 'zh-tw', 1000),
(5430, 307, '19-307', 1, '家興', '{"number":"158831","shop":"\\u5bb6\\u8208","phone":"035502894","address":"\\u5609\\u8c50\\u4e94\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '158831', '711', 'zh-tw', 1000),
(5431, 307, '19-307', 1, '銘豐', '{"number":"198622","shop":"\\u9298\\u8c50","phone":"036589700","address":"\\u5609\\u8c50\\u4e94\\u8def\\u4e00\\u6bb5\\u0031\\u865f\\u0031\\u6a13"}', '198622', '711', 'zh-tw', 1000),
(5432, 307, '19-307', 1, '新薪荷', '{"number":"977315","shop":"\\u65b0\\u85aa\\u8377","phone":"035543978","address":"\\u4e09\\u6c11\\u8def\\u0032\\u0034\\u0033\\u865f\\u0032\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '977315', '711', 'zh-tw', 1000),
(5433, 307, '19-307', 1, '加勝', '{"number":"183985","shop":"\\u52a0\\u52dd","phone":"035501009","address":"\\u52dd\\u5229\\u516b\\u8857\\u4e8c\\u6bb5\\u0036\\u0033\\u002e\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '183985', '711', 'zh-tw', 1000),
(5434, 307, '19-307', 1, '采虹', '{"number":"180322","shop":"\\u91c7\\u8679","phone":"036583504","address":"\\u52dd\\u5229\\u516b\\u8857\\u4e00\\u6bb5\\u0033\\u0034\\u0035\\u002e\\u0033\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '180322', '711', 'zh-tw', 1000),
(5435, 307, '19-307', 1, '宇軒', '{"number":"122038","shop":"\\u5b87\\u8ed2","phone":"036576632","address":"\\u52dd\\u5229\\u4e8c\\u8def\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '122038', '711', 'zh-tw', 1000),
(5436, 307, '19-307', 1, '文元', '{"number":"154002","shop":"\\u6587\\u5143","phone":"035601747","address":"\\u53f0\\u5143\\u4e8c\\u8857\\u0031\\u865f\\u0031\\u6a13"}', '154002', '711', 'zh-tw', 1000),
(5437, 307, '19-307', 1, '晨星科', '{"number":"182018","shop":"\\u6668\\u661f\\u79d1","phone":"035601439","address":"\\u53f0\\u5143\\u8857\\u0031\\u0038\\u865f\\u0037\\u6a13\\u4e4b\\u0031"}', '182018', '711', 'zh-tw', 1000),
(5438, 307, '19-307', 1, '台元', '{"number":"112318","shop":"\\u53f0\\u5143","phone":"035526524","address":"\\u53f0\\u5143\\u8857\\u0032\\u0036\\u002d\\u0038\\u865f"}', '112318', '711', 'zh-tw', 1000),
(5439, 307, '19-307', 1, '大硯', '{"number":"181602","shop":"\\u5927\\u786f","phone":"036688042","address":"\\u6587\\u8208\\u8def\\u0033\\u0031\\u0031\\u865f"}', '181602', '711', 'zh-tw', 1000),
(5440, 307, '19-307', 1, '新瓦屋', '{"number":"186607","shop":"\\u65b0\\u74e6\\u5c4b","phone":"036577424","address":"\\u6587\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0032\\u002e\\u0031\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '186607', '711', 'zh-tw', 1000),
(5441, 307, '19-307', 1, '鐵興', '{"number":"200583","shop":"\\u9435\\u8208","phone":"036582631","address":"\\u6587\\u8208\\u8def\\u4e00\\u6bb5\\u0032\\u0034\\u0036\\u865f\\u0032\\u0034\\u0038\\u865f\\u4e00\\u6a13"}', '200583', '711', 'zh-tw', 1000),
(5442, 307, '19-307', 1, '文嘉', '{"number":"132770","shop":"\\u6587\\u5609","phone":"036577740","address":"\\u6587\\u8208\\u8def\\u4e00\\u6bb5\\u0033\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '132770', '711', 'zh-tw', 1000),
(5443, 307, '19-307', 1, '縣汶', '{"number":"142098","shop":"\\u7e23\\u6c76","phone":"035584427","address":"\\u7e23\\u653f\\u4e8c\\u8def\\u0032\\u0033\\u0033\\u865f\\u0032\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '142098', '711', 'zh-tw', 1000),
(5444, 307, '19-307', 1, '新縣福', '{"number":"136576","shop":"\\u65b0\\u7e23\\u798f","phone":"035587354","address":"\\u7e23\\u653f\\u4e8c\\u8def\\u0034\\u0031\\u0034\\u865f\\u0034\\u0031\\u0036\\u865f\\u0031\\u6a13"}', '136576', '711', 'zh-tw', 1000),
(5445, 307, '19-307', 1, '縣科', '{"number":"144739","shop":"\\u7e23\\u79d1","phone":"035585349","address":"\\u7e23\\u653f\\u4e8c\\u8def\\u5357\\u6bb5\\u0031\\u0030\\u0033\\u865f"}', '144739', '711', 'zh-tw', 1000),
(5446, 307, '19-307', 1, '府樂', '{"number":"158934","shop":"\\u5e9c\\u6a02","phone":"035585235","address":"\\u7e23\\u653f\\u4e5d\\u8def\\u0038\\u0030\\u865f\\u4e00\\u6a13"}', '158934', '711', 'zh-tw', 1000),
(5447, 307, '19-307', 1, '華盛', '{"number":"127402","shop":"\\u83ef\\u76db","phone":"036560893","address":"\\u65b0\\u793e\\u91cc\\u83ef\\u8208\\u8857\\u0036\\u0038\\u865f"}', '127402', '711', 'zh-tw', 1000),
(5448, 307, '19-307', 1, '泰鑫', '{"number":"929187","shop":"\\u6cf0\\u946b","phone":"036567717","address":"\\u65b0\\u6cf0\\u8def\\u0033\\u0031\\u865f\\u4e00\\u6a13"}', '929187', '711', 'zh-tw', 1000),
(5449, 307, '19-307', 1, '隘心', '{"number":"180399","shop":"\\u9698\\u5fc3","phone":"036583107","address":"\\u8208\\u9686\\u8def\\u4e94\\u6bb5\\u0031\\u0035\\u0031\\u865f"}', '180399', '711', 'zh-tw', 1000),
(5450, 307, '19-307', 1, '竹崙', '{"number":"131456","shop":"\\u7af9\\u5d19","phone":"035539359","address":"\\u4e2d\\u83ef\\u8def\\u0031\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '131456', '711', 'zh-tw', 1000),
(5451, 307, '19-307', 1, '飛利浦', '{"number":"883315","shop":"\\u98db\\u5229\\u6d66","phone":"035544216","address":"\\u4e2d\\u83ef\\u8def\\u0035\\u0034\\u0038\\u865f\\u0035\\u0035\\u0030\\u865f"}', '883315', '711', 'zh-tw', 1000),
(5452, 307, '19-307', 1, '竹北中華', '{"number":"142515","shop":"\\u7af9\\u5317\\u4e2d\\u83ef","phone":"035535441","address":"\\u4e2d\\u83ef\\u8def\\u0038\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '142515', '711', 'zh-tw', 1000),
(5453, 307, '19-307', 1, '安村', '{"number":"149804","shop":"\\u5b89\\u6751","phone":"035559247","address":"\\u4e2d\\u5c71\\u8def\\u0034\\u0031\\u0036\\u002d\\u0031\\u865f"}', '149804', '711', 'zh-tw', 1000),
(5454, 307, '19-307', 1, '竹北', '{"number":"896218","shop":"\\u7af9\\u5317","phone":"035513391","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u0031\\u0039\\u0034\\u865f"}', '896218', '711', 'zh-tw', 1000),
(5455, 307, '19-307', 1, '統賀', '{"number":"947738","shop":"\\u7d71\\u8cc0","phone":"035536749","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u0036\\u0037\\u865f\\u0036\\u0039\\u865f"}', '947738', '711', 'zh-tw', 1000),
(5456, 307, '19-307', 1, '北泰', '{"number":"163637","shop":"\\u5317\\u6cf0","phone":"035530956","address":"\\u4e2d\\u6b63\\u897f\\u8def\\u0031\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '163637', '711', 'zh-tw', 1000),
(5457, 307, '19-307', 1, '中新', '{"number":"124632","shop":"\\u4e2d\\u65b0","phone":"035559619","address":"\\u4e2d\\u6b63\\u897f\\u8def\\u0033\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '124632', '711', 'zh-tw', 1000),
(5458, 307, '19-307', 1, '聯新', '{"number":"173807","shop":"\\u806f\\u65b0","phone":"035517846","address":"\\u4e2d\\u6b63\\u897f\\u8def\\u0036\\u0030\\u0032\\u865f\\u0031\\u6a13"}', '173807', '711', 'zh-tw', 1000),
(5459, 307, '19-307', 1, '十興', '{"number":"131098","shop":"\\u5341\\u8208","phone":"036589536","address":"\\u838a\\u656c\\u5317\\u8def\\u0031\\u0033\\u0030\\u865f"}', '131098', '711', 'zh-tw', 1000),
(5460, 307, '19-307', 1, '縣運', '{"number":"149701","shop":"\\u7e23\\u904b","phone":"035502437","address":"\\u838a\\u656c\\u5357\\u8def\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '149701', '711', 'zh-tw', 1000),
(5461, 307, '19-307', 1, '強利', '{"number":"153537","shop":"\\u5f37\\u5229","phone":"036577810","address":"\\u81ea\\u5f37\\u5317\\u8def\\u0031\\u0031\\u0031\\u865f"}', '153537', '711', 'zh-tw', 1000),
(5462, 307, '19-307', 1, '強興', '{"number":"174327","shop":"\\u5f37\\u8208","phone":"036684746","address":"\\u81ea\\u5f37\\u5317\\u8def\\u0032\\u0032\\u0033\\u865f"}', '174327', '711', 'zh-tw', 1000),
(5463, 307, '19-307', 1, '強鹿', '{"number":"165208","shop":"\\u5f37\\u9e7f","phone":"036577734","address":"\\u81ea\\u5f37\\u5317\\u8def\\u0032\\u0035\\u0036\\u865f\\u0031\\u6a13"}', '165208', '711', 'zh-tw', 1000),
(5464, 307, '19-307', 1, '首璽', '{"number":"122603","shop":"\\u9996\\u74bd","phone":"036682461","address":"\\u81ea\\u5f37\\u516d\\u8857\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '122603', '711', 'zh-tw', 1000),
(5465, 307, '19-307', 1, '鹿家', '{"number":"923226","shop":"\\u9e7f\\u5bb6","phone":"035509423","address":"\\u81ea\\u5f37\\u5357\\u8def\\u0031\\u0033\\u0036\\u865f"}', '923226', '711', 'zh-tw', 1000),
(5466, 307, '19-307', 1, '鐵家', '{"number":"944256","shop":"\\u9435\\u5bb6","phone":"036583620","address":"\\u81ea\\u5f37\\u5357\\u8def\\u0032\\u0031\\u0031\\u865f"}', '944256', '711', 'zh-tw', 1000),
(5467, 308, '19-308', 1, '東鑽', '{"number":"188979","shop":"\\u6771\\u947d","phone":"035963395","address":"\\u5317\\u8208\\u8def\\u4e09\\u6bb5\\u0035\\u0031\\u0037\\u865f\\u0035\\u0031\\u0039\\u865f"}', '188979', '711', 'zh-tw', 1000),
(5468, 308, '19-308', 1, '東興', '{"number":"181059","shop":"\\u6771\\u8208","phone":"035102419","address":"\\u5317\\u8208\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '181059', '711', 'zh-tw', 1000),
(5469, 308, '19-308', 1, '光春', '{"number":"871976","shop":"\\u5149\\u6625","phone":"035952490","address":"\\u9577\\u6625\\u8def\\u4e09\\u6bb5\\u0032\\u0035\\u0033\\u865f"}', '871976', '711', 'zh-tw', 1000),
(5470, 308, '19-308', 1, '昌春', '{"number":"165013","shop":"\\u660c\\u6625","phone":"035102827","address":"\\u9577\\u6625\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '165013', '711', 'zh-tw', 1000),
(5471, 308, '19-308', 1, '朝陽', '{"number":"164973","shop":"\\u671d\\u967d","phone":"035942462","address":"\\u671d\\u967d\\u8def\\u0037\\u0032\\u865f\\u0037\\u0034\\u865f"}', '164973', '711', 'zh-tw', 1000),
(5472, 308, '19-308', 1, '員崠', '{"number":"941121","shop":"\\u54e1\\u5d20","phone":"035953697","address":"\\u6771\\u5cf0\\u8def\\u0033\\u0033\\u0036\\u865f"}', '941121', '711', 'zh-tw', 1000),
(5473, 308, '19-308', 1, '崠豪', '{"number":"144843","shop":"\\u5d20\\u8c6a","phone":"035104291","address":"\\u6771\\u6797\\u8def\\u0031\\u0030\\u0033\\u865f\\u0031\\u6a13"}', '144843', '711', 'zh-tw', 1000),
(5474, 308, '19-308', 1, '東豐', '{"number":"947381","shop":"\\u6771\\u8c50","phone":"035947715","address":"\\u6771\\u5be7\\u91cc\\u6771\\u5be7\\u8def\\u4e00\\u6bb5\\u0031\\u865f"}', '947381', '711', 'zh-tw', 1000),
(5475, 308, '19-308', 1, '商華', '{"number":"188865","shop":"\\u5546\\u83ef","phone":"035100157","address":"\\u6771\\u5be7\\u8def\\u4e09\\u6bb5\\u0032\\u0035\\u865f\\u0031\\u6a13"}', '188865', '711', 'zh-tw', 1000),
(5476, 308, '19-308', 1, '富正', '{"number":"165002","shop":"\\u5bcc\\u6b63","phone":"035110382","address":"\\u6771\\u5be7\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '165002', '711', 'zh-tw', 1000),
(5477, 308, '19-308', 1, '星都心', '{"number":"195287","shop":"\\u661f\\u90fd\\u5fc3","phone":"035824528","address":"\\u5149\\u660e\\u8def\\u0031\\u0038\\u0032\\u865f\\u0031\\u0038\\u0036\\u865f"}', '195287', '711', 'zh-tw', 1000),
(5478, 308, '19-308', 1, '上員', '{"number":"164504","shop":"\\u4e0a\\u54e1","phone":"035833769","address":"\\u5149\\u660e\\u8def\\u0035\\u0033\\u0038\\u5df7\\u0032\\u0035\\u865f"}', '164504', '711', 'zh-tw', 1000),
(5479, 308, '19-308', 1, '東亭', '{"number":"912765","shop":"\\u6771\\u4ead","phone":"035104097","address":"\\u548c\\u6c5f\\u8857\\u0032\\u865f\\u0036\\u865f"}', '912765', '711', 'zh-tw', 1000),
(5480, 308, '19-308', 1, '菄族', '{"number":"130707","shop":"\\u83c4\\u65cf","phone":"035822817","address":"\\u6c11\\u65cf\\u8def\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '130707', '711', 'zh-tw', 1000),
(5481, 308, '19-308', 1, '竹永', '{"number":"181325","shop":"\\u7af9\\u6c38","phone":"035102849","address":"\\u4ec1\\u611b\\u91cc\\u5317\\u8208\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0035\\u865f\\u0031\\u0038\\u0037\\u865f"}', '181325', '711', 'zh-tw', 1000),
(5482, 308, '19-308', 1, '竹東', '{"number":"131629","shop":"\\u7af9\\u6771","phone":"035102610","address":"\\u5b78\\u524d\\u8def\\u0032\\u0039\\u865f\\u0031\\u6a13"}', '131629', '711', 'zh-tw', 1000),
(5483, 308, '19-308', 1, '員道', '{"number":"193144","shop":"\\u54e1\\u9053","phone":"035834875","address":"\\u54e1\\u5c71\\u8def\\u0032\\u0031\\u0038\\u4e4b\\u0031\\u865f"}', '193144', '711', 'zh-tw', 1000),
(5484, 308, '19-308', 1, '東福', '{"number":"958956","shop":"\\u6771\\u798f","phone":"035947900","address":"\\u4e2d\\u8c50\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0035\\u865f"}', '958956', '711', 'zh-tw', 1000),
(5485, 308, '19-308', 1, '竹豐', '{"number":"161181","shop":"\\u7af9\\u8c50","phone":"035110479","address":"\\u4e2d\\u8c50\\u8def\\u4e09\\u6bb5\\u0039\\u0033\\u865f\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '161181', '711', 'zh-tw', 1000),
(5486, 308, '19-308', 1, '東融', '{"number":"155429","shop":"\\u6771\\u878d","phone":"035821769","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0038\\u865f\\u0031\\u6a13"}', '155429', '711', 'zh-tw', 1000),
(5487, 308, '19-308', 1, '寶山', '{"number":"128140","shop":"\\u5bf6\\u5c71","phone":"035821311","address":"\\u4e2d\\u8208\\u8def\\u4e09\\u6bb5\\u0031\\u0037\\u0033\\u865f"}', '128140', '711', 'zh-tw', 1000),
(5488, 308, '19-308', 1, '竹興', '{"number":"967961","shop":"\\u7af9\\u8208","phone":"035827876","address":"\\u4e2d\\u8208\\u8def\\u56db\\u6bb5\\u0036\\u0035\\u0030\\u865f"}', '967961', '711', 'zh-tw', 1000),
(5489, 308, '19-308', 1, '四重埔', '{"number":"126672","shop":"\\u56db\\u91cd\\u57d4","phone":"035830831","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0031\\u0035\\u0037\\u865f"}', '126672', '711', 'zh-tw', 1000),
(5490, 308, '19-308', 1, '東宏', '{"number":"144865","shop":"\\u6771\\u5b8f","phone":"035102990","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0031\\u0037\\u865f\\u0031\\u6a13"}', '144865', '711', 'zh-tw', 1000),
(5491, 309, '20-309', 1, '泰勝', '{"number":"195025","shop":"\\u6cf0\\u52dd","phone":"039801965","address":"\\u6cf0\\u96c5\\u8def\\u4e00\\u6bb5\\u0033\\u0034\\u865f\\u0031\\u6a13"}', '195025', '711', 'zh-tw', 1000),
(5492, 310, '20-310', 1, '冬森', '{"number":"180296","shop":"\\u51ac\\u68ee","phone":"039595683","address":"\\u51ac\\u5c71\\u8def\\u0031\\u0030\\u0030\\u4e4b\\u0031\\u865f"}', '180296', '711', 'zh-tw', 1000),
(5493, 310, '20-310', 1, '冬山', '{"number":"931928","shop":"\\u51ac\\u5c71","phone":"039595237","address":"\\u51ac\\u5c71\\u8def\\u4e00\\u6bb5\\u0039\\u0038\\u0034\\u865f"}', '931928', '711', 'zh-tw', 1000),
(5494, 310, '20-310', 1, '廣達', '{"number":"192543","shop":"\\u5ee3\\u9054","phone":"039615971","address":"\\u5ee3\\u8208\\u8def\\u0031\\u0036\\u0036\\u865f\\u0031\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '192543', '711', 'zh-tw', 1000),
(5495, 310, '20-310', 1, '義成', '{"number":"882644","shop":"\\u7fa9\\u6210","phone":"039580078","address":"\\u9806\\u5b89\\u6751\\u7fa9\\u6210\\u8def\\u4e09\\u6bb5\\u0032\\u865f"}', '882644', '711', 'zh-tw', 1000),
(5496, 310, '20-310', 1, '詠淇', '{"number":"943921","shop":"\\u8a60\\u6dc7","phone":"039596549","address":"\\u9999\\u548c\\u6751\\u51ac\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u0032\\u0035\\u865f"}', '943921', '711', 'zh-tw', 1000),
(5497, 310, '20-310', 1, '羅義', '{"number":"991115","shop":"\\u7f85\\u7fa9","phone":"039680401","address":"\\u7fa9\\u6210\\u8def\\u4e09\\u6bb5\\u0033\\u0036\\u0031\\u865f\\u0033\\u0036\\u0033\\u865f\\u0031\\u6a13"}', '991115', '711', 'zh-tw', 1000),
(5498, 311, '20-311', 1, '永聖', '{"number":"965909","shop":"\\u6c38\\u8056","phone":"039876105","address":"\\u5927\\u5fe0\\u6751\\u5927\\u5fe0\\u8def\\u0031\\u0032\\u0030\\u002d\\u0031\\u0032\\u0032\\u865f"}', '965909', '711', 'zh-tw', 1000),
(5499, 311, '20-311', 1, '瑞發', '{"number":"893895","shop":"\\u745e\\u767c","phone":"039874162","address":"\\u5fb7\\u967d\\u8def\\u0036\\u0035\\u865f"}', '893895', '711', 'zh-tw', 1000),
(5500, 311, '20-311', 1, '圓達', '{"number":"112938","shop":"\\u5713\\u9054","phone":"039874660","address":"\\u7901\\u6eaa\\u8def\\u4e03\\u6bb5\\u0036\\u0035\\u865f\\u0036\\u0039\\u865f"}', '112938', '711', 'zh-tw', 1000),
(5501, 311, '20-311', 1, '泉發', '{"number":"137753","shop":"\\u6cc9\\u767c","phone":"039875091","address":"\\u7901\\u6eaa\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0032\\u865f\\u0033\\u0030\\u0036\\u865f"}', '137753', '711', 'zh-tw', 1000),
(5502, 311, '20-311', 1, '礁溪', '{"number":"165437","shop":"\\u7901\\u6eaa","phone":"039885542","address":"\\u7901\\u6eaa\\u8def\\u56db\\u6bb5\\u0038\\u0035\\u865f\\u0038\\u0037\\u865f"}', '165437', '711', 'zh-tw', 1000),
(5503, 311, '20-311', 1, '湯圍', '{"number":"981392","shop":"\\u6e6f\\u570d","phone":"039883627","address":"\\u7901\\u6eaa\\u8def\\u4e94\\u6bb5\\u0035\\u0031\\u865f"}', '981392', '711', 'zh-tw', 1000),
(5504, 311, '20-311', 1, '嘉融', '{"number":"930280","shop":"\\u5609\\u878d","phone":"039289535","address":"\\u5433\\u6c99\\u6751\\u7901\\u6eaa\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0032\\u865f"}', '930280', '711', 'zh-tw', 1000),
(5505, 311, '20-311', 1, '金桔', '{"number":"183608","shop":"\\u91d1\\u6854","phone":"039873623","address":"\\u7389\\u9f8d\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0037\\u865f"}', '183608', '711', 'zh-tw', 1000),
(5506, 311, '20-311', 1, '泉湧', '{"number":"167824","shop":"\\u6cc9\\u6e67","phone":"039876652","address":"\\u7389\\u77f3\\u6751\\u6eab\\u6cc9\\u8def\\u0031\\u0035\\u9130\\u0038\\u0035\\u865f\\u0031\\u6a13"}', '167824', '711', 'zh-tw', 1000),
(5507, 311, '20-311', 1, '永裕', '{"number":"932116","shop":"\\u6c38\\u88d5","phone":"039872422","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0030\\u0034\\u865f"}', '932116', '711', 'zh-tw', 1000),
(5508, 311, '20-311', 1, '駿隆', '{"number":"128117","shop":"\\u99ff\\u9686","phone":"039887913","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0035\\u865f"}', '128117', '711', 'zh-tw', 1000),
(5509, 312, '20-312', 1, '宣宏', '{"number":"970233","shop":"\\u5ba3\\u5b8f","phone":"039558424","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u0037\\u865f"}', '970233', '711', 'zh-tw', 1000),
(5510, 312, '20-312', 1, '宜泰', '{"number":"977418","shop":"\\u5b9c\\u6cf0","phone":"039572315","address":"\\u516c\\u5712\\u8def\\u0031\\u0030\\u0030\\u865f"}', '977418', '711', 'zh-tw', 1000),
(5511, 312, '20-312', 1, '潤霖', '{"number":"132529","shop":"\\u6f64\\u9716","phone":"039542776","address":"\\u516c\\u6b63\\u8def\\u0031\\u0033\\u0036\\u865f\\u0031\\u6a13"}', '132529', '711', 'zh-tw', 1000),
(5512, 312, '20-312', 1, '羅東', '{"number":"164984","shop":"\\u7f85\\u6771","phone":"039574974","address":"\\u516c\\u6b63\\u8def\\u0031\\u0039\\u0037\\u865f"}', '164984', '711', 'zh-tw', 1000),
(5513, 312, '20-312', 1, '金站', '{"number":"165909","shop":"\\u91d1\\u7ad9","phone":"039531183","address":"\\u516c\\u6b63\\u8def\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '165909', '711', 'zh-tw', 1000),
(5514, 312, '20-312', 1, '羅高', '{"number":"120456","shop":"\\u7f85\\u9ad8","phone":"039518247","address":"\\u516c\\u6b63\\u8def\\u0033\\u0035\\u0037\\u865f\\u0033\\u0035\\u0039\\u865f"}', '120456', '711', 'zh-tw', 1000),
(5515, 312, '20-312', 1, '集翔', '{"number":"128106","shop":"\\u96c6\\u7fd4","phone":"039552407","address":"\\u96c6\\u7fd4\\u91cc\\u4e2d\\u6b63\\u8def\\u0031\\u0034\\u0037\\u865f"}', '128106', '711', 'zh-tw', 1000),
(5516, 312, '20-312', 1, '權中', '{"number":"962335","shop":"\\u6b0a\\u4e2d","phone":"039565552","address":"\\u6c11\\u6b0a\\u8def\\u0031\\u0037\\u0037\\u865f"}', '962335', '711', 'zh-tw', 1000),
(5517, 312, '20-312', 1, '聖博', '{"number":"993513","shop":"\\u8056\\u535a","phone":"039558229","address":"\\u5357\\u660c\\u8857\\u0035\\u0033\\u5df7\\u0036\\u002d\\u0033\\u865f"}', '993513', '711', 'zh-tw', 1000),
(5518, 312, '20-312', 1, '徠一', '{"number":"111201","shop":"\\u5fa0\\u4e00","phone":"039615630","address":"\\u57f9\\u82f1\\u8def\\u0039\\u0038\\u865f\\u0031\\u0030\\u0030\\u865f"}', '111201', '711', 'zh-tw', 1000),
(5519, 312, '20-312', 1, '新羅興', '{"number":"201036","shop":"\\u65b0\\u7f85\\u8208","phone":"039573130","address":"\\u8208\\u6771\\u8def\\u0032\\u0033\\u4e4b\\u0032\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '201036', '711', 'zh-tw', 1000),
(5520, 312, '20-312', 1, '欣銓', '{"number":"155658","shop":"\\u6b23\\u9293","phone":"039543627","address":"\\u8208\\u6771\\u8def\\u0032\\u0036\\u0033\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '155658', '711', 'zh-tw', 1000),
(5521, 312, '20-312', 1, '利陶', '{"number":"190709","shop":"\\u5229\\u9676","phone":"039572730","address":"\\u8208\\u6771\\u5357\\u8def\\u0031\\u0038\\u0038\\u865f"}', '190709', '711', 'zh-tw', 1000),
(5522, 312, '20-312', 1, '聖昌', '{"number":"183147","shop":"\\u8056\\u660c","phone":"039531480","address":"\\u7ad9\\u524d\\u5357\\u8def\\u0032\\u0036\\u0030\\u865f\\u0032\\u0036\\u0032\\u865f\\u0031\\u6a13"}', '183147', '711', 'zh-tw', 1000),
(5523, 312, '20-312', 1, '潤昌', '{"number":"993476","shop":"\\u6f64\\u660c","phone":"039617046","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0031\\u0039\\u0037\\u865f\\u0031\\u0039\\u0039\\u865f"}', '993476', '711', 'zh-tw', 1000),
(5524, 312, '20-312', 1, '新聖母', '{"number":"200756","shop":"\\u65b0\\u8056\\u6bcd","phone":"039542849","address":"\\u4e2d\\u6b63\\u5357\\u8def\\u0031\\u0036\\u0030\\u865f\\u0028\\u8056\\u6bcd\\u91ab\\u9662\\u5167\\u0029"}', '200756', '711', 'zh-tw', 1000),
(5525, 313, '20-313', 1, '金玉', '{"number":"154541","shop":"\\u91d1\\u7389","phone":"039981183","address":"\\u8607\\u82b1\\u8def\\u4e8c\\u6bb5\\u0031\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '154541', '711', 'zh-tw', 1000),
(5526, 314, '20-314', 1, '麗騰', '{"number":"922360","shop":"\\u9e97\\u9a30","phone":"039897137","address":"\\u5927\\u96b1\\u6751\\u5927\\u57d4\\u8def\\u0031\\u0031\\u0032\\u4e4b\\u0037\\u865f"}', '922360', '711', 'zh-tw', 1000),
(5527, 314, '20-314', 1, '樸隱', '{"number":"166234","shop":"\\u6a38\\u96b1","phone":"039899824","address":"\\u5927\\u96b1\\u6751\\u4e09\\u661f\\u8def\\u4e8c\\u6bb5\\u0032\\u0035\\u9130\\u0031\\u0033\\u865f"}', '166234', '711', 'zh-tw', 1000),
(5528, 314, '20-314', 1, '立昇', '{"number":"942238","shop":"\\u7acb\\u6607","phone":"039544118","address":"\\u4e0a\\u5c07\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0035\\u865f"}', '942238', '711', 'zh-tw', 1000),
(5529, 314, '20-314', 1, '三星', '{"number":"965596","shop":"\\u4e09\\u661f","phone":"039894704","address":"\\u7fa9\\u5fb7\\u6751\\u4e09\\u661f\\u8def\\u4e94\\u6bb5\\u0032\\u0032\\u0038\\u865f"}', '965596', '711', 'zh-tw', 1000),
(5530, 315, '20-315', 1, '侯成', '{"number":"196855","shop":"\\u4faf\\u6210","phone":"039904624","address":"\\u798f\\u5fb7\\u8def\\u0034\\u0036\\u0033\\u865f\\u0034\\u0036\\u0035\\u865f\\u0031\\u6a13"}', '196855', '711', 'zh-tw', 1000),
(5531, 315, '20-315', 1, '新馬', '{"number":"130316","shop":"\\u65b0\\u99ac","phone":"039907083","address":"\\u6d77\\u5c71\\u897f\\u8def\\u0034\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '130316', '711', 'zh-tw', 1000),
(5532, 315, '20-315', 1, '蜡藝館', '{"number":"183815","shop":"\\u8721\\u85dd\\u9928","phone":"039909947","address":"\\u6d77\\u5c71\\u897f\\u8def\\u0035\\u0030\\u0030\\u865f"}', '183815', '711', 'zh-tw', 1000),
(5533, 315, '20-315', 1, '南方澳', '{"number":"882655","shop":"\\u5357\\u65b9\\u6fb3","phone":"039951870","address":"\\u6c5f\\u590f\\u8def\\u0032\\u0037\\u865f"}', '882655', '711', 'zh-tw', 1000),
(5534, 315, '20-315', 1, '豆腐岬', '{"number":"164076","shop":"\\u8c46\\u8150\\u5cac","phone":"039952161","address":"\\u5357\\u5be7\\u8def\\u0034\\u0031\\u865f\\u002e\\u0034\\u0032\\u865f\\u0034\\u0032\\u002d\\u0031\\u865f\\u0031\\u6a13"}', '164076', '711', 'zh-tw', 1000),
(5535, 315, '20-315', 1, '南澳', '{"number":"199407","shop":"\\u5357\\u6fb3","phone":"039982339","address":"\\u5357\\u5f37\\u91cc\\u8607\\u82b1\\u8def\\u4e8c\\u6bb5\\u0033\\u0032\\u0038\\u865f"}', '199407', '711', 'zh-tw', 1000),
(5536, 315, '20-315', 1, '蘇澳', '{"number":"916262","shop":"\\u8607\\u6fb3","phone":"039966847","address":"\\u8607\\u5317\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0037\\u0034\\u865f"}', '916262', '711', 'zh-tw', 1000),
(5537, 315, '20-315', 1, '振盟', '{"number":"187998","shop":"\\u632f\\u76df","phone":"039907994","address":"\\u8607\\u6ff1\\u8def\\u4e8c\\u6bb5\\u0033\\u0030\\u0032\\u865f"}', '187998', '711', 'zh-tw', 1000),
(5538, 315, '20-315', 1, '蘇濱', '{"number":"141567","shop":"\\u8607\\u6ff1","phone":"039908696","address":"\\u8607\\u6ff1\\u8def\\u4e09\\u6bb5\\u0031\\u4e4b\\u0031\\u865f"}', '141567', '711', 'zh-tw', 1000),
(5539, 315, '20-315', 1, '蘇澳港', '{"number":"921183","shop":"\\u8607\\u6fb3\\u6e2f","phone":"039955466","address":"\\u8607\\u6771\\u4e2d\\u8def\\u0034\\u865f"}', '921183', '711', 'zh-tw', 1000),
(5540, 315, '20-315', 1, '馬賽', '{"number":"187932","shop":"\\u99ac\\u8cfd","phone":"039906751","address":"\\u6c38\\u69ae\\u91cc\\u99ac\\u8cfd\\u8def\\u0031\\u0035\\u0031\\u865f"}', '187932', '711', 'zh-tw', 1000),
(5541, 315, '20-315', 1, '蘇中', '{"number":"997537","shop":"\\u8607\\u4e2d","phone":"039969750","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0033\\u865f"}', '997537', '711', 'zh-tw', 1000),
(5542, 316, '20-316', 1, '新梗枋', '{"number":"123396","shop":"\\u65b0\\u6897\\u678b","phone":"039771121","address":"\\u6ff1\\u6d77\\u8def\\u4e09\\u6bb5\\u0033\\u0032\\u0033\\u865f"}', '123396', '711', 'zh-tw', 1000),
(5543, 316, '20-316', 1, '噶瑪蘭', '{"number":"123008","shop":"\\u5676\\u746a\\u862d","phone":"039782335","address":"\\u5fa9\\u8208\\u8def\\u0035\\u0038\\u865f"}', '123008', '711', 'zh-tw', 1000),
(5544, 316, '20-316', 1, '纘祥', '{"number":"154390","shop":"\\u7e98\\u7965","phone":"039774578","address":"\\u6c11\\u92d2\\u8def\\u0031\\u0038\\u865f\\u0032\\u0030\\u865f"}', '154390', '711', 'zh-tw', 1000),
(5545, 316, '20-316', 1, '家燕', '{"number":"122005","shop":"\\u5bb6\\u71d5","phone":"039776189","address":"\\u9752\\u96f2\\u8def\\u4e8c\\u6bb5\\u0032\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '122005', '711', 'zh-tw', 1000),
(5546, 316, '20-316', 1, '頭城', '{"number":"195265","shop":"\\u982d\\u57ce","phone":"039778054","address":"\\u9752\\u96f2\\u8def\\u4e09\\u6bb5\\u0039\\u0036\\u865f\\u0031\\u6a13"}', '195265', '711', 'zh-tw', 1000),
(5547, 316, '20-316', 1, '富達', '{"number":"184003","shop":"\\u5bcc\\u9054","phone":"039875509","address":"\\u9752\\u96f2\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0035\\u865f\\u0032\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '184003', '711', 'zh-tw', 1000),
(5548, 316, '20-316', 1, '詮祥', '{"number":"138365","shop":"\\u8a6e\\u7965","phone":"039778548","address":"\\u4e2d\\u5c71\\u5340\\u9752\\u96f2\\u8def\\u4e09\\u6bb5\\u0032\\u0033\\u0038\\u865f\\u0032\\u0034\\u0030\\u865f"}', '138365', '711', 'zh-tw', 1000),
(5549, 317, '20-317', 1, '孝威', '{"number":"132817","shop":"\\u5b5d\\u5a01","phone":"039604427","address":"\\u50b3\\u85dd\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0039\\u865f\\u0031\\u6a13"}', '132817', '711', 'zh-tw', 1000),
(5550, 317, '20-317', 1, '親河', '{"number":"952338","shop":"\\u89aa\\u6cb3","phone":"039502774","address":"\\u89aa\\u6cb3\\u8def\\u4e8c\\u6bb5\\u0032\\u0038\\u0039\\u865f"}', '952338', '711', 'zh-tw', 1000),
(5551, 317, '20-317', 1, '五結', '{"number":"139209","shop":"\\u4e94\\u7d50","phone":"039605471","address":"\\u4e94\\u7d50\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0033\\u865f"}', '139209', '711', 'zh-tw', 1000),
(5552, 317, '20-317', 1, '羅結', '{"number":"131320","shop":"\\u7f85\\u7d50","phone":"039603045","address":"\\u4e94\\u7d50\\u8def\\u4e09\\u6bb5\\u0034\\u0039\\u0033\\u865f"}', '131320', '711', 'zh-tw', 1000),
(5553, 317, '20-317', 1, '布蘭其', '{"number":"967167","shop":"\\u5e03\\u862d\\u5176","phone":"039501494","address":"\\u5354\\u548c\\u6751\\u89aa\\u6cb3\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0030\\u865f"}', '967167', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(5554, 317, '20-317', 1, '杰昇', '{"number":"913300","shop":"\\u6770\\u6607","phone":"039654642","address":"\\u93ae\\u5b89\\u6751\\u897f\\u6cb3\\u8def\\u0034\\u002d\\u0036\\u865f"}', '913300', '711', 'zh-tw', 1000),
(5555, 317, '20-317', 1, '佳美', '{"number":"174383","shop":"\\u4f73\\u7f8e","phone":"039655743","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0031\\u0032\\u0037\\u865f\\u0031\\u6a13"}', '174383', '711', 'zh-tw', 1000),
(5556, 317, '20-317', 1, '昱成', '{"number":"165345","shop":"\\u6631\\u6210","phone":"039549291","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0031\\u0037\\u0034\\u865f\\u0031\\u0037\\u0036\\u865f"}', '165345', '711', 'zh-tw', 1000),
(5557, 318, '20-318', 1, '圓鴻', '{"number":"923787","shop":"\\u5713\\u9d3b","phone":"039373214","address":"\\u6148\\u5b89\\u8def\\u0034\\u0030\\u865f"}', '923787', '711', 'zh-tw', 1000),
(5558, 318, '20-318', 1, '騰豪', '{"number":"122120","shop":"\\u9a30\\u8c6a","phone":"039288578","address":"\\u5927\\u5761\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0035\\u865f\\u0032\\u0031\\u0037\\u865f"}', '122120', '711', 'zh-tw', 1000),
(5559, 318, '20-318', 1, '馥華', '{"number":"152095","shop":"\\u99a5\\u83ef","phone":"039373449","address":"\\u6771\\u6e2f\\u8def\\u0033\\u0030\\u002d\\u0032\\u0032\\u865f"}', '152095', '711', 'zh-tw', 1000),
(5560, 318, '20-318', 1, '壯五', '{"number":"130730","shop":"\\u58ef\\u4e94","phone":"039373467","address":"\\u6771\\u6e2f\\u8def\\u0033\\u865f\\u0031\\u6a13"}', '130730', '711', 'zh-tw', 1000),
(5561, 318, '20-318', 1, '東道', '{"number":"195494","shop":"\\u6771\\u9053","phone":"039374614","address":"\\u6771\\u6e2f\\u8def\\u4e00\\u6bb5\\u0035\\u0037\\u0035\\u865f"}', '195494', '711', 'zh-tw', 1000),
(5562, 318, '20-318', 1, '新復興', '{"number":"154987","shop":"\\u65b0\\u5fa9\\u8208","phone":"039315865","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\u0034\\u0039\\u865f\\u0031\\u6a13"}', '154987', '711', 'zh-tw', 1000),
(5563, 318, '20-318', 1, '宜莊', '{"number":"185062","shop":"\\u5b9c\\u838a","phone":"039333660","address":"\\u5149\\u5fa9\\u8def\\u0032\\u0036\\u865f"}', '185062', '711', 'zh-tw', 1000),
(5564, 318, '20-318', 1, '佳旺', '{"number":"135159","shop":"\\u4f73\\u65fa","phone":"039312425","address":"\\u820a\\u57ce\\u6771\\u8def\\u0034\\u0037\\u865f"}', '135159', '711', 'zh-tw', 1000),
(5565, 318, '20-318', 1, '新月', '{"number":"132699","shop":"\\u65b0\\u6708","phone":"039327903","address":"\\u6c11\\u6b0a\\u8def\\u4e8c\\u6bb5\\u0033\\u0038\\u5df7\\u0036\\u865f"}', '132699', '711', 'zh-tw', 1000),
(5566, 318, '20-318', 1, '伍富', '{"number":"113399","shop":"\\u4f0d\\u5bcc","phone":"039365457","address":"\\u5973\\u4e2d\\u8def\\u4e09\\u6bb5\\u0032\\u0036\\u002d\\u0036\\u865f\\u0032\\u0036\\u002d\\u0037\\u865f\\u0032\\u0036\\u002d\\u0038\\u865f"}', '113399', '711', 'zh-tw', 1000),
(5567, 318, '20-318', 1, '健神', '{"number":"112341","shop":"\\u5065\\u795e","phone":"039310270","address":"\\u795e\\u8fb2\\u8def\\u4e8c\\u6bb5\\u0038\\u865f\\u0031\\u0030\\u865f"}', '112341', '711', 'zh-tw', 1000),
(5568, 318, '20-318', 1, '農專', '{"number":"165932","shop":"\\u8fb2\\u5c08","phone":"039355846","address":"\\u795e\\u8fb2\\u8def\\u4e00\\u6bb5\\u0039\\u0036\\u865f\\u0039\\u0038\\u865f"}', '165932', '711', 'zh-tw', 1000),
(5569, 318, '20-318', 1, '心蓮', '{"number":"199164","shop":"\\u5fc3\\u84ee","phone":"039364290","address":"\\u6cf0\\u5c71\\u8def\\u0032\\u0031\\u0032\\u865f"}', '199164', '711', 'zh-tw', 1000),
(5570, 318, '20-318', 1, '員泰', '{"number":"141523","shop":"\\u54e1\\u6cf0","phone":"039314092","address":"\\u6cf0\\u5c71\\u8def\\u0033\\u0033\\u4e4b\\u0033\\u865f\\u0033\\u0033\\u4e4b\\u0034\\u865f\\u0031\\u6a13"}', '141523', '711', 'zh-tw', 1000),
(5571, 318, '20-318', 1, '校舍', '{"number":"139243","shop":"\\u6821\\u820d","phone":"039372896","address":"\\u6821\\u820d\\u8def\\u0032\\u0035\\u865f"}', '139243', '711', 'zh-tw', 1000),
(5572, 318, '20-318', 1, '省宜', '{"number":"189628","shop":"\\u7701\\u5b9c","phone":"039311406","address":"\\u65b0\\u6c11\\u8def\\u0031\\u0035\\u0039\\u865f\\u0031\\u0036\\u0031\\u865f\\u0031\\u6a13"}', '189628', '711', 'zh-tw', 1000),
(5573, 318, '20-318', 1, '滿冠', '{"number":"132895","shop":"\\u6eff\\u51a0","phone":"039330864","address":"\\u65b0\\u8208\\u8def\\u0036\\u0038\\u865f\\u0031\\u6a13"}', '132895', '711', 'zh-tw', 1000),
(5574, 318, '20-318', 1, '蘭陽', '{"number":"934514","shop":"\\u862d\\u967d","phone":"039366772","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u0030\\u0031\\u865f"}', '934514', '711', 'zh-tw', 1000),
(5575, 318, '20-318', 1, '同慶', '{"number":"112798","shop":"\\u540c\\u6176","phone":"039320912","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0032\\u0030\\u0033\\u865f\\u0032\\u0030\\u0035\\u865f\\u0032\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '112798', '711', 'zh-tw', 1000),
(5576, 318, '20-318', 1, '承莊', '{"number":"997825","shop":"\\u627f\\u838a","phone":"039288135","address":"\\u4e2d\\u5c71\\u8def\\u4e94\\u6bb5\\u0039\\u0032\\u865f"}', '997825', '711', 'zh-tw', 1000),
(5577, 319, '20-319', 1, '深溝', '{"number":"181923","shop":"\\u6df1\\u6e9d","phone":"039232491","address":"\\u60e0\\u6c11\\u8def\\u0032\\u0030\\u0037\\u865f"}', '181923', '711', 'zh-tw', 1000),
(5578, 319, '20-319', 1, '同樂', '{"number":"923008","shop":"\\u540c\\u6a02","phone":"039232863","address":"\\u540c\\u65b0\\u8def\\u0032\\u0038\\u0036\\u865f"}', '923008', '711', 'zh-tw', 1000),
(5579, 319, '20-319', 1, '員泉', '{"number":"183686","shop":"\\u54e1\\u6cc9","phone":"039229705","address":"\\u6eab\\u6cc9\\u8def\\u0031\\u4e4b\\u0032\\u0037\\u865f\\u0031\\u4e4b\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '183686', '711', 'zh-tw', 1000),
(5580, 319, '20-319', 1, '內成', '{"number":"184117","shop":"\\u5167\\u6210","phone":"039228409","address":"\\u54e1\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0036\\u0034\\u865f\\u0031\\u6a13"}', '184117', '711', 'zh-tw', 1000),
(5581, 319, '20-319', 1, '佳怡', '{"number":"890999","shop":"\\u4f73\\u6021","phone":"039223896","address":"\\u54e1\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0038\\u0034\\u865f\\u0031\\u0038\\u0036\\u865f"}', '890999', '711', 'zh-tw', 1000),
(5582, 319, '20-319', 1, '萬鴻', '{"number":"921297","shop":"\\u842c\\u9d3b","phone":"039232867","address":"\\u54e1\\u5c71\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0033\\u865f\\u0033\\u0030\\u0035\\u865f"}', '921297', '711', 'zh-tw', 1000),
(5583, 320, '20-320', 1, '大福', '{"number":"903521","shop":"\\u5927\\u798f","phone":"039304823","address":"\\u5927\\u798f\\u6751\\u58ef\\u6ff1\\u8def\\u516d\\u6bb5\\u0032\\u0032\\u0032\\u865f"}', '903521', '711', 'zh-tw', 1000),
(5584, 320, '20-320', 1, '全美', '{"number":"180218","shop":"\\u5168\\u7f8e","phone":"039309733","address":"\\u7f8e\\u57ce\\u6751\\u5927\\u798f\\u8def\\u4e09\\u6bb5\\u0031\\u865f\\u0035\\u865f"}', '180218', '711', 'zh-tw', 1000),
(5585, 320, '20-320', 1, '壯志', '{"number":"183505","shop":"\\u58ef\\u5fd7","phone":"039386429","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0031\\u865f"}', '183505', '711', 'zh-tw', 1000),
(5586, 320, '20-320', 1, '壯圍', '{"number":"951564","shop":"\\u58ef\\u570d","phone":"039374524","address":"\\u58ef\\u4e94\\u8def\\u0031\\u0034\\u0033\\u4e4b\\u0033\\u865f"}', '951564', '711', 'zh-tw', 1000),
(5587, 321, '21-321', 1, '褒忠', '{"number":"931962","shop":"\\u8912\\u5fe0","phone":"056978101","address":"\\u4e2d\\u6b63\\u8def\\u0039\\u0039\\u865f\\u0031\\u6a13"}', '931962', '711', 'zh-tw', 1000),
(5588, 322, '21-322', 1, '宗聖', '{"number":"182993","shop":"\\u5b97\\u8056","phone":"057839703","address":"\\u5927\\u540c\\u8def\\u0035\\u0031\\u0031\\u002d\\u0031\\u865f"}', '182993', '711', 'zh-tw', 1000),
(5589, 322, '21-322', 1, '朝天宮', '{"number":"189226","shop":"\\u671d\\u5929\\u5bae","phone":"057824873","address":"\\u6771\\u83ef\\u91cc\\u4e2d\\u5c71\\u8def\\u0031\\u0035\\u0030\\u865f"}', '189226', '711', 'zh-tw', 1000),
(5590, 322, '21-322', 1, '民樂', '{"number":"873400","shop":"\\u6c11\\u6a02","phone":"057838949","address":"\\u83ef\\u52dd\\u91cc\\u0032\\u0038\\u9130\\u6c11\\u6a02\\u8def\\u0033\\u0039\\u865f"}', '873400', '711', 'zh-tw', 1000),
(5591, 322, '21-322', 1, '北英', '{"number":"968115","shop":"\\u5317\\u82f1","phone":"057826147","address":"\\u83ef\\u52dd\\u91cc\\u83ef\\u52dd\\u8def\\u0032\\u0031\\u0032\\u865f"}', '968115', '711', 'zh-tw', 1000),
(5592, 322, '21-322', 1, '北港', '{"number":"850119","shop":"\\u5317\\u6e2f","phone":"057827717","address":"\\u6c11\\u4e3b\\u8def\\u0031\\u0030\\u0036\\u865f"}', '850119', '711', 'zh-tw', 1000),
(5593, 323, '21-323', 1, '雲桐', '{"number":"167075","shop":"\\u96f2\\u6850","phone":"055850490","address":"\\u83bf\\u6850\\u6751\\u4e2d\\u5c71\\u8def\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '167075', '711', 'zh-tw', 1000),
(5594, 323, '21-323', 1, '新莿桐', '{"number":"982432","shop":"\\u65b0\\u83bf\\u6850","phone":"055841479","address":"\\u83bf\\u6850\\u6751\\u4e2d\\u6b63\\u8def\\u0036\\u0032\\u002d\\u0032\\u865f"}', '982432', '711', 'zh-tw', 1000),
(5595, 323, '21-323', 1, '大美', '{"number":"932437","shop":"\\u5927\\u7f8e","phone":"055843730","address":"\\u5927\\u7f8e\\u6751\\u5927\\u7f8e\\u0035\\u0033\\u865f\\u0031\\u6a13"}', '932437', '711', 'zh-tw', 1000),
(5596, 323, '21-323', 1, '晟安', '{"number":"114808","shop":"\\u665f\\u5b89","phone":"055712839","address":"\\u9952\\u5e73\\u6751\\u9952\\u5e73\\u8def\\u0032\\u4e4b\\u0032\\u865f"}', '114808', '711', 'zh-tw', 1000),
(5597, 324, '21-324', 1, '大埤', '{"number":"153951","shop":"\\u5927\\u57e4","phone":"055911189","address":"\\u5357\\u548c\\u6751\\u0036\\u9130\\u6c11\\u751f\\u8def\\u0033\\u0032\\u865f"}', '153951', '711', 'zh-tw', 1000),
(5598, 325, '21-325', 1, '長旺', '{"number":"870870","shop":"\\u9577\\u65fa","phone":"056993428","address":"\\u6771\\u52e2\\u6771\\u8def\\u0038\\u0034\\u865f"}', '870870', '711', 'zh-tw', 1000),
(5599, 326, '21-326', 1, '新東立', '{"number":"131917","shop":"\\u65b0\\u6771\\u7acb","phone":"055362367","address":"\\u6210\\u529f\\u8def\\u0032\\u0038\\u0036\\u865f\\u0032\\u0038\\u0038\\u865f\\u0032\\u0039\\u0030\\u865f"}', '131917', '711', 'zh-tw', 1000),
(5600, 326, '21-326', 1, '斗六', '{"number":"896045","shop":"\\u6597\\u516d","phone":"055347990","address":"\\u5927\\u540c\\u8def\\u0034\\u0031\\u865f"}', '896045', '711', 'zh-tw', 1000),
(5601, 326, '21-326', 1, '慶生', '{"number":"992071","shop":"\\u6176\\u751f","phone":"055377906","address":"\\u6f22\\u53e3\\u8def\\u0031\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '992071', '711', 'zh-tw', 1000),
(5602, 326, '21-326', 1, '福懋科', '{"number":"968229","shop":"\\u798f\\u61cb\\u79d1","phone":"055571842","address":"\\u6cb3\\u5357\\u8857\\u0033\\u0031\\u0039\\u865f"}', '968229', '711', 'zh-tw', 1000),
(5603, 326, '21-326', 1, '景雄', '{"number":"963062","shop":"\\u666f\\u96c4","phone":"055514863","address":"\\u864e\\u6eaa\\u91cc\\u897f\\u5e73\\u8def\\u0035\\u0032\\u0031\\u865f"}', '963062', '711', 'zh-tw', 1000),
(5604, 326, '21-326', 1, '好家庭', '{"number":"920489","shop":"\\u597d\\u5bb6\\u5ead","phone":"055576530","address":"\\u69b4\\u4e2d\\u91cc\\u5de5\\u696d\\u8def\\u0036\\u0039\\u865f"}', '920489', '711', 'zh-tw', 1000),
(5605, 326, '21-326', 1, '雲龍', '{"number":"170716","shop":"\\u96f2\\u9f8d","phone":"055377613","address":"\\u9f8d\\u6f6d\\u8def\\u0031\\u0034\\u002d\\u0031\\u865f"}', '170716', '711', 'zh-tw', 1000),
(5606, 326, '21-326', 1, '山好', '{"number":"920478","shop":"\\u5c71\\u597d","phone":"055223195","address":"\\u5d19\\u5cf0\\u91cc\\u4ec1\\u7fa9\\u8def\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '920478', '711', 'zh-tw', 1000),
(5607, 326, '21-326', 1, '春流', '{"number":"922027","shop":"\\u6625\\u6d41","phone":"055575671","address":"\\u6885\\u6797\\u91cc\\u6885\\u6797\\u8def\\u0034\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '922027', '711', 'zh-tw', 1000),
(5608, 326, '21-326', 1, '昕美', '{"number":"183930","shop":"\\u6615\\u7f8e","phone":"055334310","address":"\\u6c11\\u751f\\u8def\\u0031\\u0037\\u0030\\u865f"}', '183930', '711', 'zh-tw', 1000),
(5609, 326, '21-326', 1, '保庄', '{"number":"153766","shop":"\\u4fdd\\u5e84","phone":"055372683","address":"\\u660e\\u5fb7\\u5317\\u8def\\u4e09\\u6bb5\\u0032\\u0038\\u0035\\u865f"}', '153766', '711', 'zh-tw', 1000),
(5610, 326, '21-326', 1, '育北', '{"number":"950860","shop":"\\u80b2\\u5317","phone":"055331163","address":"\\u660e\\u5fb7\\u5317\\u8def\\u4e00\\u6bb5\\u0031\\u0031\\u0030\\u865f"}', '950860', '711', 'zh-tw', 1000),
(5611, 326, '21-326', 1, '坤麟', '{"number":"942146","shop":"\\u5764\\u9e9f","phone":"055339597","address":"\\u793e\\u53e3\\u91cc\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\u0035\\u0037\\u0039\\u865f"}', '942146', '711', 'zh-tw', 1000),
(5612, 326, '21-326', 1, '福懋', '{"number":"880567","shop":"\\u798f\\u61cb","phone":"055576345","address":"\\u77f3\\u69b4\\u8def\\u0031\\u0039\\u0036\\u4e4b\\u0031\\u865f"}', '880567', '711', 'zh-tw', 1000),
(5613, 326, '21-326', 1, '福懋興', '{"number":"193292","shop":"\\u798f\\u61cb\\u8208","phone":"055573400","address":"\\u77f3\\u69b4\\u8def\\u0033\\u0031\\u0037\\u865f"}', '193292', '711', 'zh-tw', 1000),
(5614, 326, '21-326', 1, '晟業', '{"number":"971096","shop":"\\u665f\\u696d","phone":"055518278","address":"\\u842c\\u5e74\\u8def\\u0035\\u0039\\u0032\\u865f"}', '971096', '711', 'zh-tw', 1000),
(5615, 326, '21-326', 1, '富盟', '{"number":"830698","shop":"\\u5bcc\\u76df","phone":"055336375","address":"\\u6587\\u5316\\u8def\\u0033\\u0030\\u0034\\u865f\\u0033\\u0030\\u0036\\u865f"}', '830698', '711', 'zh-tw', 1000),
(5616, 326, '21-326', 1, '東宇', '{"number":"113296","shop":"\\u6771\\u5b87","phone":"055343868","address":"\\u6587\\u5316\\u8def\\u0035\\u0033\\u0038\\u865f\\u0035\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '113296', '711', 'zh-tw', 1000),
(5617, 326, '21-326', 1, '朱丹灣', '{"number":"174154","shop":"\\u6731\\u4e39\\u7063","phone":"055514845","address":"\\u897f\\u5e73\\u8def\\u0033\\u0036\\u0032\\u865f"}', '174154', '711', 'zh-tw', 1000),
(5618, 326, '21-326', 1, '萬中', '{"number":"196741","shop":"\\u842c\\u4e2d","phone":"055514790","address":"\\u6eaa\\u6d32\\u91cc\\u4e2d\\u5357\\u8def\\u0032\\u0039\\u0030\\u5df7\\u0031\\u002d\\u0031\\u865f"}', '196741', '711', 'zh-tw', 1000),
(5619, 326, '21-326', 1, '雲醫', '{"number":"197571","shop":"\\u96f2\\u91ab","phone":"055337452","address":"\\u96f2\\u6797\\u8def\\u4e8c\\u6bb5\\u0036\\u0032\\u0037\\u865f"}', '197571', '711', 'zh-tw', 1000),
(5620, 326, '21-326', 1, '保長', '{"number":"190835","shop":"\\u4fdd\\u9577","phone":"055360729","address":"\\u96f2\\u6797\\u8def\\u4e8c\\u6bb5\\u0037\\u0036\\u865f\\u0031\\u6a13"}', '190835', '711', 'zh-tw', 1000),
(5621, 326, '21-326', 1, '詠順', '{"number":"911267","shop":"\\u8a60\\u9806","phone":"055327221","address":"\\u93ae\\u5317\\u8def\\u0032\\u0032\\u0039\\u865f"}', '911267', '711', 'zh-tw', 1000),
(5622, 326, '21-326', 1, '環科大', '{"number":"138804","shop":"\\u74b0\\u79d1\\u5927","phone":"055361538","address":"\\u93ae\\u5357\\u8def\\u0031\\u0032\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '138804', '711', 'zh-tw', 1000),
(5623, 326, '21-326', 1, '鑫斗商', '{"number":"990396","shop":"\\u946b\\u6597\\u5546","phone":"055343408","address":"\\u4e2d\\u83ef\\u8def\\u0032\\u0030\\u0037\\u865f\\u0032\\u0030\\u0039\\u865f\\u0031\\u6a13"}', '990396', '711', 'zh-tw', 1000),
(5624, 326, '21-326', 1, '永昌', '{"number":"130202","shop":"\\u6c38\\u660c","phone":"055321369","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0036\\u0039\\u865f"}', '130202', '711', 'zh-tw', 1000),
(5625, 326, '21-326', 1, '成苑', '{"number":"185475","shop":"\\u6210\\u82d1","phone":"055339622","address":"\\u838a\\u656c\\u8def\\u0033\\u0034\\u0035\\u865f"}', '185475', '711', 'zh-tw', 1000),
(5626, 326, '21-326', 1, '欣苑', '{"number":"185486","shop":"\\u6b23\\u82d1","phone":"055330314","address":"\\u838a\\u656c\\u8def\\u0033\\u0034\\u0035\\u865f\\u0031\\u6a13"}', '185486', '711', 'zh-tw', 1000),
(5627, 327, '21-327', 1, '欣怡', '{"number":"128254","shop":"\\u6b23\\u6021","phone":"055960866","address":"\\u5357\\u660c\\u91cc\\u4e2d\\u5c71\\u8def\\u0037\\u0039\\u865f"}', '128254', '711', 'zh-tw', 1000),
(5628, 327, '21-327', 1, '真嘉', '{"number":"128634","shop":"\\u771f\\u5609","phone":"055974106","address":"\\u5357\\u660c\\u897f\\u8def\\u0031\\u865f"}', '128634', '711', 'zh-tw', 1000),
(5629, 327, '21-327', 1, '寶宏', '{"number":"972114","shop":"\\u5bf6\\u5b8f","phone":"055975581","address":"\\u6587\\u660c\\u8def\\u0039\\u0039\\u865f"}', '972114', '711', 'zh-tw', 1000),
(5630, 327, '21-327', 1, '凱瑄', '{"number":"990466","shop":"\\u51f1\\u7444","phone":"055962353","address":"\\u897f\\u5c90\\u91cc\\u5927\\u540c\\u8def\\u0031\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '990466', '711', 'zh-tw', 1000),
(5631, 327, '21-327', 1, '斗高', '{"number":"126568","shop":"\\u6597\\u9ad8","phone":"055951305","address":"\\u5c0f\\u6771\\u91cc\\u0031\\u0037\\u9130\\u5927\\u696d\\u8def\\u0038\\u0036\\u865f"}', '126568', '711', 'zh-tw', 1000),
(5632, 327, '21-327', 1, '雲嘉', '{"number":"139014","shop":"\\u96f2\\u5609","phone":"055962274","address":"\\u65b0\\u5149\\u91cc\\u0032\\u0031\\u9130\\u5149\\u83ef\\u8def\\u0032\\u0033\\u0031\\u865f"}', '139014', '711', 'zh-tw', 1000),
(5633, 327, '21-327', 1, '于滿', '{"number":"980045","shop":"\\u4e8e\\u6eff","phone":"055971920","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\u0035\\u0038\\u0031\\u865f\\u0031\\u6a13"}', '980045', '711', 'zh-tw', 1000),
(5634, 327, '21-327', 1, '雲南', '{"number":"943367","shop":"\\u96f2\\u5357","phone":"055970835","address":"\\u4e2d\\u8208\\u8def\\u0031\\u0036\\u0030\\u865f"}', '943367', '711', 'zh-tw', 1000),
(5635, 328, '21-328', 1, '二崙', '{"number":"912112","shop":"\\u4e8c\\u5d19","phone":"055991711","address":"\\u5d19\\u6771\\u6751\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0036\\u0039\\u865f"}', '912112', '711', 'zh-tw', 1000),
(5636, 328, '21-328', 1, '油車', '{"number":"110297","shop":"\\u6cb9\\u8eca","phone":"055981135","address":"\\u6cb9\\u8eca\\u6751\\u6587\\u5316\\u8def\\u0039\\u865f\\u0031\\u6a13"}', '110297', '711', 'zh-tw', 1000),
(5637, 329, '21-329', 1, '廣濟', '{"number":"991920","shop":"\\u5ee3\\u6fdf","phone":"055264860","address":"\\u6771\\u548c\\u6751\\u5ee3\\u6fdf\\u8def\\u0037\\u0038\\u865f\\u0037\\u0038\\u4e4b\\u0031\\u865f"}', '991920', '711', 'zh-tw', 1000),
(5638, 329, '21-329', 1, '昶景', '{"number":"195944","shop":"\\u6636\\u666f","phone":"055266956","address":"\\u6771\\u548c\\u6751\\u6587\\u5316\\u8def\\u0031\\u0034\\u0035\\u865f"}', '195944', '711', 'zh-tw', 1000),
(5639, 329, '21-329', 1, '劍湖', '{"number":"954079","shop":"\\u528d\\u6e56","phone":"055821196","address":"\\u6c38\\u660c\\u6751\\u6c38\\u8208\\u8def\\u0031\\u0034\\u0035\\u865f"}', '954079', '711', 'zh-tw', 1000),
(5640, 329, '21-329', 1, '新古坑', '{"number":"954297","shop":"\\u65b0\\u53e4\\u5751","phone":"055827582","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0030\\u0031\\u865f"}', '954297', '711', 'zh-tw', 1000),
(5641, 330, '21-330', 1, '虎大', '{"number":"953445","shop":"\\u864e\\u5927","phone":"056364442","address":"\\u5de5\\u5c08\\u8def\\u0031\\u0035\\u0036\\u865f"}', '953445', '711', 'zh-tw', 1000),
(5642, 330, '21-330', 1, '虎威', '{"number":"110839","shop":"\\u864e\\u5a01","phone":"056326392","address":"\\u5149\\u5fa9\\u8def\\u0031\\u0032\\u0032\\u865f\\u0031\\u6a13\\u53ca\\u6210\\u548c\\u8857\\u0032\\u865f\\u0031\\u6a13"}', '110839', '711', 'zh-tw', 1000),
(5643, 330, '21-330', 1, '東仁', '{"number":"174073","shop":"\\u6771\\u4ec1","phone":"056327941","address":"\\u5149\\u5fa9\\u8def\\u0033\\u0039\\u0031\\u865f\\u0031\\u6a13"}', '174073', '711', 'zh-tw', 1000),
(5644, 330, '21-330', 1, '晟泰', '{"number":"121828","shop":"\\u665f\\u6cf0","phone":"056365446","address":"\\u5149\\u5fa9\\u8def\\u0035\\u0032\\u0031\\u865f"}', '121828', '711', 'zh-tw', 1000),
(5645, 330, '21-330', 1, '東億', '{"number":"170875","shop":"\\u6771\\u5104","phone":"056337003","address":"\\u5149\\u660e\\u8def\\u0033\\u865f"}', '170875', '711', 'zh-tw', 1000),
(5646, 330, '21-330', 1, '東尊', '{"number":"174246","shop":"\\u6771\\u5c0a","phone":"056226384","address":"\\u60e0\\u4f86\\u91cc\\u0031\\u0034\\u0032\\u002d\\u0033\\u865f"}', '174246', '711', 'zh-tw', 1000),
(5647, 330, '21-330', 1, '夏恩', '{"number":"112558","shop":"\\u590f\\u6069","phone":"056330135","address":"\\u7acb\\u4ec1\\u91cc\\u5fa9\\u8208\\u8def\\u0031\\u0033\\u0037\\u865f"}', '112558', '711', 'zh-tw', 1000),
(5648, 330, '21-330', 1, '冬念', '{"number":"110600","shop":"\\u51ac\\u5ff5","phone":"056227318","address":"\\u57d2\\u5167\\u91cc\\u6797\\u68ee\\u8def\\u4e00\\u6bb5\\u0039\\u9130\\u0033\\u0039\\u865f"}', '110600', '711', 'zh-tw', 1000),
(5649, 330, '21-330', 1, '新宗行', '{"number":"128265","shop":"\\u65b0\\u5b97\\u884c","phone":"056363071","address":"\\u6797\\u68ee\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0030\\u865f\\u0031\\u6a13"}', '128265', '711', 'zh-tw', 1000),
(5650, 330, '21-330', 1, '新湖', '{"number":"921068","shop":"\\u65b0\\u6e56","phone":"056321877","address":"\\u6797\\u68ee\\u8def\\u4e8c\\u6bb5\\u0034\\u0037\\u0035\\u865f"}', '921068', '711', 'zh-tw', 1000),
(5651, 330, '21-330', 1, '虎欣', '{"number":"184380","shop":"\\u864e\\u6b23","phone":"056323746","address":"\\u6797\\u68ee\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0037\\u002e\\u0032\\u0038\\u0039\\u002e\\u0032\\u0039\\u0031\\u865f"}', '184380', '711', 'zh-tw', 1000),
(5652, 330, '21-330', 1, '新安慶', '{"number":"973025","shop":"\\u65b0\\u5b89\\u6176","phone":"056313445","address":"\\u6c11\\u4e3b\\u8def\\u0035\\u0032\\u002d\\u0031\\u865f"}', '973025', '711', 'zh-tw', 1000),
(5653, 330, '21-330', 1, '宇宸', '{"number":"131858","shop":"\\u5b87\\u5bb8","phone":"056320634","address":"\\u6e05\\u96f2\\u8def\\u0037\\u0037\\u0030\\u865f"}', '131858', '711', 'zh-tw', 1000),
(5654, 330, '21-330', 1, '大屯', '{"number":"182579","shop":"\\u5927\\u5c6f","phone":"056652107","address":"\\u897f\\u5c6f\\u91cc\\u5927\\u5c6f\\u0033\\u0034\\u0039\\u865f"}', '182579', '711', 'zh-tw', 1000),
(5655, 330, '21-330', 1, '李斯特', '{"number":"132024","shop":"\\u674e\\u65af\\u7279","phone":"056320131","address":"\\u8208\\u5357\\u91cc\\u7af9\\u570d\\u0036\\u0030\\u865f"}', '132024', '711', 'zh-tw', 1000),
(5656, 330, '21-330', 1, '虎高', '{"number":"968676","shop":"\\u864e\\u9ad8","phone":"056629672","address":"\\u5ef6\\u5e73\\u91cc\\u0033\\u9130\\u4e2d\\u5357\\u0033\\u0034\\u4e4b\\u0032\\u0036\\u865f"}', '968676', '711', 'zh-tw', 1000),
(5657, 330, '21-330', 1, '工專', '{"number":"199142","shop":"\\u5de5\\u5c08","phone":"056333495","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0030\\u0037\\u865f"}', '199142', '711', 'zh-tw', 1000),
(5658, 331, '21-331', 1, '世鑫', '{"number":"931652","shop":"\\u4e16\\u946b","phone":"057993396","address":"\\u5d19\\u6771\\u6751\\u4e2d\\u5c71\\u8def\\u0039\\u0036\\u002d\\u0036\\u865f"}', '931652', '711', 'zh-tw', 1000),
(5659, 331, '21-331', 1, '宜梧', '{"number":"982650","shop":"\\u5b9c\\u68a7","phone":"057905080","address":"\\u68a7\\u5357\\u6751\\u5149\\u660e\\u8def\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '982650', '711', 'zh-tw', 1000),
(5660, 331, '21-331', 1, '口湖', '{"number":"881009","shop":"\\u53e3\\u6e56","phone":"057891871","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0032\\u0032\\u0032\\u865f"}', '881009', '711', 'zh-tw', 1000),
(5661, 332, '21-332', 1, '晟興', '{"number":"997906","shop":"\\u665f\\u8208","phone":"055893565","address":"\\u4e5d\\u828e\\u6751\\u5927\\u540c\\u8def\\u0032\\u0030\\u865f"}', '997906', '711', 'zh-tw', 1000),
(5662, 332, '21-332', 1, '新林內', '{"number":"967525","shop":"\\u65b0\\u6797\\u5167","phone":"055899113","address":"\\u4e2d\\u6b63\\u8def\\u0033\\u0037\\u0033\\u865f\\u0033\\u0037\\u0035\\u865f"}', '967525', '711', 'zh-tw', 1000),
(5663, 333, '21-333', 1, '崙多', '{"number":"952545","shop":"\\u5d19\\u591a","phone":"056963416","address":"\\u6771\\u660e\\u6751\\u6b63\\u7fa9\\u8def\\u0031\\u0039\\u0034\\u865f"}', '952545', '711', 'zh-tw', 1000),
(5664, 333, '21-333', 1, '安榮', '{"number":"968665","shop":"\\u5b89\\u69ae","phone":"056553792","address":"\\u8c50\\u69ae\\u6751\\u0031\\u9130\\u8c50\\u69ae\\u0033\\u0032\\u4e4b\\u0033\\u865f"}', '968665', '711', 'zh-tw', 1000),
(5665, 333, '21-333', 1, '崙背', '{"number":"871839","shop":"\\u5d19\\u80cc","phone":"056960475","address":"\\u5357\\u5149\\u8def\\u0033\\u865f"}', '871839', '711', 'zh-tw', 1000),
(5666, 333, '21-333', 1, '崙中', '{"number":"972505","shop":"\\u5d19\\u4e2d","phone":"056961671","address":"\\u5357\\u967d\\u6751\\u4e2d\\u5c71\\u8def\\u0034\\u0038\\u0039\\u865f"}', '972505', '711', 'zh-tw', 1000),
(5667, 334, '21-334', 1, '後安', '{"number":"971568","shop":"\\u5f8c\\u5b89","phone":"056930182","address":"\\u5f8c\\u5b89\\u6751\\u5f8c\\u5b89\\u8def\\u0032\\u0030\\u0031\\u4e4b\\u0031\\u0033\\u865f"}', '971568', '711', 'zh-tw', 1000),
(5668, 334, '21-334', 1, '麥寮', '{"number":"863551","shop":"\\u9ea5\\u5bee","phone":"056934538","address":"\\u9ea5\\u6d25\\u6751\\u4e2d\\u5c71\\u8def\\u0031\\u0039\\u0036\\u865f"}', '863551', '711', 'zh-tw', 1000),
(5669, 334, '21-334', 1, '快來', '{"number":"881386","shop":"\\u5feb\\u4f86","phone":"056917456","address":"\\u6a4b\\u982d\\u6751\\u6a4b\\u982d\\u8def\\u0032\\u0033\\u0034\\u865f"}', '881386', '711', 'zh-tw', 1000),
(5670, 334, '21-334', 1, '三勝', '{"number":"969071","shop":"\\u4e09\\u52dd","phone":"056915741","address":"\\u4e09\\u76db\\u6751\\u4ec1\\u5fb7\\u897f\\u8def\\u4e00\\u6bb5\\u0032\\u0031\\u865f\\u0031\\u6a13"}', '969071', '711', 'zh-tw', 1000),
(5671, 334, '21-334', 1, '富登', '{"number":"958635","shop":"\\u5bcc\\u767b","phone":"056914014","address":"\\u65bd\\u539d\\u6751\\u0032\\u0033\\u0039\\u865f"}', '958635', '711', 'zh-tw', 1000),
(5672, 334, '21-334', 1, '麥豐', '{"number":"969060","shop":"\\u9ea5\\u8c50","phone":"056938623","address":"\\u65b0\\u8208\\u8def\\u0032\\u0037\\u4e4b\\u0035\\u865f"}', '969060', '711', 'zh-tw', 1000),
(5673, 334, '21-334', 1, '永茂', '{"number":"952349","shop":"\\u6c38\\u8302","phone":"056910642","address":"\\u4e2d\\u8208\\u6751\\u8c50\\u5b89\\u8def\\u0039\\u0035\\u0031\\u865f\\u0031\\u6a13"}', '952349', '711', 'zh-tw', 1000),
(5674, 334, '21-334', 1, '六輕', '{"number":"890793","shop":"\\u516d\\u8f15","phone":"056915621","address":"\\u4e2d\\u8208\\u6751\\u4ec1\\u5fb7\\u897f\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u0037\\u865f\\u0031\\u6a13"}', '890793', '711', 'zh-tw', 1000),
(5675, 334, '21-334', 1, '麥鄉', '{"number":"951922","shop":"\\u9ea5\\u9109","phone":"056937775","address":"\\u4e2d\\u8208\\u8def\\u0037\\u0038\\u002d\\u0033\\u865f"}', '951922', '711', 'zh-tw', 1000),
(5676, 335, '21-335', 1, '水林', '{"number":"174958","shop":"\\u6c34\\u6797","phone":"057854085","address":"\\u6c34\\u5357\\u6751\\u6c34\\u6797\\u8def\\u0031\\u0035\\u0037\\u865f\\u0031\\u0035\\u0039\\u865f"}', '174958', '711', 'zh-tw', 1000),
(5677, 336, '21-336', 1, '四湖', '{"number":"184863","shop":"\\u56db\\u6e56","phone":"057875093","address":"\\u6751\\u4e2d\\u5c71\\u6771\\u8def\\u0031\\u0031\\u0033\\u865f"}', '184863', '711', 'zh-tw', 1000),
(5678, 336, '21-336', 1, '聖淳', '{"number":"184151","shop":"\\u8056\\u6df3","phone":"057874536","address":"\\u56db\\u6e56\\u6751\\u0031\\u0035\\u9130\\u74b0\\u6e56\\u6771\\u8def\\u0031\\u865f"}', '184151', '711', 'zh-tw', 1000),
(5679, 337, '21-337', 1, '新台西', '{"number":"115878","shop":"\\u65b0\\u53f0\\u897f","phone":"056982903","address":"\\u6d77\\u5357\\u6751\\u6c11\\u65cf\\u8def\\u0031\\u0036\\u002d\\u0037\\u865f\\u0031\\u6a13"}', '115878', '711', 'zh-tw', 1000),
(5680, 337, '21-337', 1, '五條港', '{"number":"151081","shop":"\\u4e94\\u689d\\u6e2f","phone":"056980428","address":"\\u4e94\\u6e2f\\u8def\\u0034\\u0032\\u0030\\u002d\\u0031\\u865f"}', '151081', '711', 'zh-tw', 1000),
(5681, 338, '21-338', 1, '土庫', '{"number":"840101","shop":"\\u571f\\u5eab","phone":"056624835","address":"\\u5efa\\u570b\\u8def\\u0031\\u0036\\u0034\\u865f"}', '840101', '711', 'zh-tw', 1000),
(5682, 338, '21-338', 1, '馬光', '{"number":"901684","shop":"\\u99ac\\u5149","phone":"056656300","address":"\\u5357\\u5e73\\u91cc\\u99ac\\u5149\\u8def\\u0036\\u0037\\u865f"}', '901684', '711', 'zh-tw', 1000),
(5683, 339, '21-339', 1, '豐樺', '{"number":"144153","shop":"\\u8c50\\u6a3a","phone":"055875886","address":"\\u798f\\u8208\\u91cc\\u4e2d\\u5c71\\u8def\\u0037\\u0030\\u865f\\u0031\\u6a13"}', '144153', '711', 'zh-tw', 1000),
(5684, 339, '21-339', 1, '星光', '{"number":"968816","shop":"\\u661f\\u5149","phone":"055867224","address":"\\u516c\\u6b63\\u8def\\u0031\\u0035\\u865f"}', '968816', '711', 'zh-tw', 1000),
(5685, 339, '21-339', 1, '和心', '{"number":"943747","shop":"\\u548c\\u5fc3","phone":"055866552","address":"\\u6cb3\\u5357\\u91cc\\u57d4\\u5fc3\\u8def\\u0031\\u0031\\u0033\\u002d\\u0033\\u865f"}', '943747', '711', 'zh-tw', 1000),
(5686, 339, '21-339', 1, '七崁', '{"number":"998080","shop":"\\u4e03\\u5d01","phone":"055878541","address":"\\u5efa\\u8208\\u8def\\u0031\\u0036\\u0033\\u865f\\u0031\\u6a13\\u0032\\u6a13"}', '998080', '711', 'zh-tw', 1000),
(5687, 339, '21-339', 1, '豐鎮', '{"number":"182627","shop":"\\u8c50\\u93ae","phone":"055883547","address":"\\u5e73\\u548c\\u5357\\u8def\\u0033\\u0035\\u0032\\u865f"}', '182627', '711', 'zh-tw', 1000),
(5688, 339, '21-339', 1, '富來', '{"number":"110611","shop":"\\u5bcc\\u4f86","phone":"055874084","address":"\\u65b0\\u8c50\\u91cc\\u0031\\u0033\\u9130\\u65b0\\u793e\\u0033\\u0032\\u0030\\u002d\\u0038\\u865f"}', '110611', '711', 'zh-tw', 1000),
(5689, 339, '21-339', 1, '三井', '{"number":"902322","shop":"\\u4e09\\u4e95","phone":"055878875","address":"\\u632f\\u8208\\u632f\\u8208\\u91cc\\u632f\\u8208\\u8def\\u0031\\u0031\\u0038\\u865f"}', '902322', '711', 'zh-tw', 1000),
(5690, 339, '21-339', 1, '興平', '{"number":"872522","shop":"\\u8208\\u5e73","phone":"055870936","address":"\\u4e2d\\u8208\\u91cc\\u5ef6\\u5e73\\u8def\\u0034\\u0031\\u0038\\u865f\\u0034\\u0032\\u0030\\u865f"}', '872522', '711', 'zh-tw', 1000),
(5691, 340, '21-340', 1, '元長', '{"number":"158613","shop":"\\u5143\\u9577","phone":"057887853","address":"\\u9577\\u5357\\u6751\\u0037\\u9130\\u4e2d\\u5c71\\u8def\\u0033\\u0032\\u002d\\u0032\\u865f\\u0031\\u0046"}', '158613', '711', 'zh-tw', 1000),
(5692, 340, '21-340', 1, '元東', '{"number":"998116","shop":"\\u5143\\u6771","phone":"057862645","address":"\\u4e0b\\u5bee\\u6751\\u6771\\u8208\\u8def\\u0032\\u0038\\u865f\\u0031\\u6a13"}', '998116', '711', 'zh-tw', 1000),
(5693, 341, '22-341', 1, '彰苑', '{"number":"971627","shop":"\\u5f70\\u82d1","phone":"048875268","address":"\\u6597\\u82d1\\u8def\\u4e8c\\u6bb5\\u0032\\u0039\\u0038\\u4e4b\\u0032\\u865f"}', '971627', '711', 'zh-tw', 1000),
(5694, 341, '22-341', 1, '寶斗', '{"number":"167880","shop":"\\u5bf6\\u6597","phone":"048870492","address":"\\u5fa9\\u8208\\u8def\\u0032\\u0038\\u0031\\u865f"}', '167880', '711', 'zh-tw', 1000),
(5695, 341, '22-341', 1, '光政', '{"number":"150789","shop":"\\u5149\\u653f","phone":"048780102","address":"\\u5149\\u5fa9\\u8def\\u0032\\u0030\\u0038\\u865f"}', '150789', '711', 'zh-tw', 1000),
(5696, 341, '22-341', 1, '中圳', '{"number":"941660","shop":"\\u4e2d\\u5733","phone":"048783147","address":"\\u4e2d\\u548c\\u91cc\\u6597\\u4e2d\\u8def\\u0033\\u0031\\u0039\\u865f"}', '941660', '711', 'zh-tw', 1000),
(5697, 341, '22-341', 1, '新斗中', '{"number":"982513","shop":"\\u65b0\\u6597\\u4e2d","phone":"048873848","address":"\\u4e2d\\u83ef\\u8def\\u0032\\u0030\\u0035\\u865f\\u0031\\u6a13"}', '982513', '711', 'zh-tw', 1000),
(5698, 341, '22-341', 1, '斗金', '{"number":"142722","shop":"\\u6597\\u91d1","phone":"048873974","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0037\\u865f\\u0031\\u6a13"}', '142722', '711', 'zh-tw', 1000),
(5699, 342, '22-342', 1, '明城', '{"number":"180159","shop":"\\u660e\\u57ce","phone":"048943106","address":"\\u6771\\u57ce\\u6751\\u5317\\u5e73\\u8def\\u0037\\u0036\\u865f"}', '180159', '711', 'zh-tw', 1000),
(5700, 343, '22-343', 1, '鎮安', '{"number":"997836","shop":"\\u93ae\\u5b89","phone":"048523639","address":"\\u5927\\u6eaa\\u8def\\u0037\\u002d\\u0034\\u865f\\u0031\\u6a13"}', '997836', '711', 'zh-tw', 1000),
(5701, 343, '22-343', 1, '智慶', '{"number":"182513","shop":"\\u667a\\u6176","phone":"048528312","address":"\\u5927\\u667a\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0037\\u865f"}', '182513', '711', 'zh-tw', 1000),
(5702, 343, '22-343', 1, '美皇', '{"number":"952578","shop":"\\u7f8e\\u7687","phone":"048533935","address":"\\u5c71\\u8173\\u8def\\u0037\\u0032\\u865f"}', '952578', '711', 'zh-tw', 1000),
(5703, 343, '22-343', 1, '村東', '{"number":"164928","shop":"\\u6751\\u6771","phone":"048526618","address":"\\u5c71\\u8173\\u8def\\u0039\\u0032\\u4e4b\\u0038\\u865f\\u0031\\u6a13"}', '164928', '711', 'zh-tw', 1000),
(5704, 343, '22-343', 1, '葉大', '{"number":"888549","shop":"\\u8449\\u5927","phone":"048511147","address":"\\u5b78\\u5e9c\\u8def\\u0031\\u0036\\u0038\\u865f"}', '888549', '711', 'zh-tw', 1000),
(5705, 343, '22-343', 1, '村尚', '{"number":"941903","shop":"\\u6751\\u5c1a","phone":"048538049","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0033\\u0035\\u0037\\u865f\\u0033\\u0035\\u0037\\u002d\\u0032\\u865f\\u0031\\u6a13"}', '941903', '711', 'zh-tw', 1000),
(5706, 343, '22-343', 1, '品客', '{"number":"199016","shop":"\\u54c1\\u5ba2","phone":"048384010","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0038\\u0036\\u865f"}', '199016', '711', 'zh-tw', 1000),
(5707, 343, '22-343', 1, '新大村', '{"number":"922898","shop":"\\u65b0\\u5927\\u6751","phone":"048538047","address":"\\u4e2d\\u6b63\\u897f\\u8def\\u0033\\u0033\\u0031\\u865f\\u0031\\u6a13"}', '922898', '711', 'zh-tw', 1000),
(5708, 344, '22-344', 1, '儒林', '{"number":"110367","shop":"\\u5112\\u6797","phone":"048964853","address":"\\u5317\\u5e73\\u91cc\\u4ec1\\u611b\\u8def\\u0031\\u0031\\u9130\\u0034\\u0032\\u0035\\u865f"}', '110367', '711', 'zh-tw', 1000),
(5709, 344, '22-344', 1, '欣二林', '{"number":"180171","shop":"\\u6b23\\u4e8c\\u6797","phone":"048965081","address":"\\u5927\\u6210\\u8def\\u4e00\\u6bb5\\u0032\\u0033\\u0036\\u865f"}', '180171', '711', 'zh-tw', 1000),
(5710, 344, '22-344', 1, '彰基', '{"number":"881641","shop":"\\u5f70\\u57fa","phone":"048968580","address":"\\u5927\\u6210\\u8def\\u4e00\\u6bb5\\u0035\\u0037\\u0031\\u865f"}', '881641', '711', 'zh-tw', 1000),
(5711, 344, '22-344', 1, '群茂', '{"number":"953629","shop":"\\u7fa4\\u8302","phone":"048964541","address":"\\u6597\\u82d1\\u8def\\u56db\\u6bb5\\u0031\\u0035\\u0039\\u865f"}', '953629', '711', 'zh-tw', 1000),
(5712, 344, '22-344', 1, '源益', '{"number":"119098","shop":"\\u6e90\\u76ca","phone":"048962423","address":"\\u6597\\u82d1\\u8def\\u56db\\u6bb5\\u0037\\u0032\\u0030\\u865f"}', '119098', '711', 'zh-tw', 1000),
(5713, 344, '22-344', 1, '挖子', '{"number":"131722","shop":"\\u6316\\u5b50","phone":"048681539","address":"\\u83ef\\u5d19\\u91cc\\u4e8c\\u6eaa\\u8def\\u4e03\\u6bb5\\u0031\\u0039\\u0035\\u865f\\u0031\\u0039\\u0037\\u865f\\u0031\\u6a13"}', '131722', '711', 'zh-tw', 1000),
(5714, 345, '22-345', 1, '二水', '{"number":"200985","shop":"\\u4e8c\\u6c34","phone":"048793484","address":"\\u54e1\\u96c6\\u8def\\u56db\\u6bb5\\u0038\\u865f\\u0031\\u0030\\u865f"}', '200985', '711', 'zh-tw', 1000),
(5715, 346, '22-346', 1, '芳林', '{"number":"924609","shop":"\\u82b3\\u6797","phone":"048981924","address":"\\u6597\\u82d1\\u8def\\u0031\\u0035\\u0036\\u865f\\u4e4b\\u0031"}', '924609', '711', 'zh-tw', 1000),
(5716, 346, '22-346', 1, '芳苑', '{"number":"121219","shop":"\\u82b3\\u82d1","phone":"048951413","address":"\\u5f8c\\u5bee\\u6751\\u6597\\u82d1\\u8def\\u9802\\u5f8c\\u6bb5\\u0037\\u865f"}', '121219', '711', 'zh-tw', 1000),
(5717, 346, '22-346', 1, '功湖', '{"number":"115890","shop":"\\u529f\\u6e56","phone":"048863351","address":"\\u5efa\\u5e73\\u6751\\u4e8c\\u6eaa\\u8def\\u8349\\u4e8c\\u6bb5\\u0033\\u0037\\u0032\\u865f"}', '115890', '711', 'zh-tw', 1000),
(5718, 346, '22-346', 1, '王功', '{"number":"113403","shop":"\\u738b\\u529f","phone":"048933711","address":"\\u738b\\u529f\\u6751\\u0033\\u9130\\u82b3\\u6f22\\u8def\\u738b\\u529f\\u6bb5\\u0035\\u0034\\u0034\\u865f\\u0031\\u6a13"}', '113403', '711', 'zh-tw', 1000),
(5719, 347, '22-347', 1, '芬草', '{"number":"164205","shop":"\\u82ac\\u8349","phone":"0492512395","address":"\\u8304\\u8356\\u6751\\u82ac\\u8349\\u8def\\u4e00\\u6bb5\\u0036\\u0030\\u0037\\u865f"}', '164205', '711', 'zh-tw', 1000),
(5720, 347, '22-347', 1, '芬園', '{"number":"165459","shop":"\\u82ac\\u5712","phone":"0492511565","address":"\\u5f70\\u5357\\u8def\\u56db\\u6bb5\\u0031\\u0037\\u0032\\u865f\\u53ca\\u5149\\u5fa9\\u8def\\u0036\\u865f"}', '165459', '711', 'zh-tw', 1000),
(5721, 347, '22-347', 1, '芬農', '{"number":"183136","shop":"\\u82ac\\u8fb2","phone":"0492510028","address":"\\u5f70\\u5357\\u8def\\u56db\\u6bb5\\u0033\\u0033\\u0037\\u865f\\u0031\\u6a13"}', '183136', '711', 'zh-tw', 1000),
(5722, 348, '22-348', 1, '日新', '{"number":"131733","shop":"\\u65e5\\u65b0","phone":"047773584","address":"\\u756a\\u5a46\\u6751\\u5f70\\u9e7f\\u8def\\u516d\\u6bb5\\u0035\\u0034\\u0037\\u865f\\u0031\\u6a13"}', '131733', '711', 'zh-tw', 1000),
(5723, 348, '22-348', 1, '昇沅', '{"number":"965563","shop":"\\u6607\\u6c85","phone":"047760281","address":"\\u798f\\u5357\\u6751\\u6cbf\\u6d77\\u8def\\u56db\\u6bb5\\u0037\\u0035\\u0030\\u865f"}', '965563', '711', 'zh-tw', 1000),
(5724, 348, '22-348', 1, '龍舟', '{"number":"968506","shop":"\\u9f8d\\u821f","phone":"047764411","address":"\\u798f\\u8208\\u6751\\u9f8d\\u821f\\u8def\\u0031\\u0035\\u865f"}', '968506', '711', 'zh-tw', 1000),
(5725, 348, '22-348', 1, '福環', '{"number":"122153","shop":"\\u798f\\u74b0","phone":"047778243","address":"\\u540c\\u5b89\\u6751\\u54e1\\u9e7f\\u8def\\u4e00\\u6bb5\\u0034\\u0033\\u0039\\u865f"}', '122153', '711', 'zh-tw', 1000),
(5726, 348, '22-348', 1, '管興', '{"number":"195874","shop":"\\u7ba1\\u8208","phone":"047707293","address":"\\u6cbf\\u6d77\\u8def\\u4e09\\u6bb5\\u0032\\u0038\\u0036\\u865f"}', '195874', '711', 'zh-tw', 1000),
(5727, 348, '22-348', 1, '管嶼', '{"number":"953744","shop":"\\u7ba1\\u5dbc","phone":"047705499","address":"\\u6cbf\\u6d77\\u8def\\u4e09\\u6bb5\\u0036\\u0039\\u865f"}', '953744', '711', 'zh-tw', 1000),
(5728, 348, '22-348', 1, '金福興', '{"number":"113816","shop":"\\u91d1\\u798f\\u8208","phone":"047754941","address":"\\u54e1\\u9e7f\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u0038\\u865f\\u0031\\u6a13"}', '113816', '711', 'zh-tw', 1000),
(5729, 348, '22-348', 1, '福鹿', '{"number":"180779","shop":"\\u798f\\u9e7f","phone":"047774193","address":"\\u5f70\\u9e7f\\u8def\\u4e03\\u6bb5\\u0036\\u0035\\u0032\\u002e\\u0036\\u0035\\u0034\\u865f"}', '180779', '711', 'zh-tw', 1000),
(5730, 348, '22-348', 1, '新香珍', '{"number":"883762","shop":"\\u65b0\\u9999\\u73cd","phone":"047684877","address":"\\u5f70\\u6c34\\u8def\\u0035\\u0036\\u865f\\u0035\\u0038\\u865f\\u0036\\u0030\\u865f"}', '883762', '711', 'zh-tw', 1000),
(5731, 348, '22-348', 1, '鹿東', '{"number":"154655","shop":"\\u9e7f\\u6771","phone":"047784755","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0032\\u0034\\u865f"}', '154655', '711', 'zh-tw', 1000),
(5732, 349, '22-349', 1, '和東', '{"number":"188337","shop":"\\u548c\\u6771","phone":"047557118","address":"\\u611b\\u5fb7\\u8def\\u0032\\u0037\\u865f"}', '188337', '711', 'zh-tw', 1000),
(5733, 349, '22-349', 1, '德美', '{"number":"904133","shop":"\\u5fb7\\u7f8e","phone":"047577337","address":"\\u5fb7\\u7f8e\\u8def\\u0037\\u0030\\u0030\\u865f"}', '904133', '711', 'zh-tw', 1000),
(5734, 349, '22-349', 1, '和港', '{"number":"199120","shop":"\\u548c\\u6e2f","phone":"047564782","address":"\\u548c\\u6e2f\\u8def\\u0035\\u0035\\u0032\\u865f\\u0031\\u6a13"}', '199120', '711', 'zh-tw', 1000),
(5735, 349, '22-349', 1, '和卿', '{"number":"952062","shop":"\\u548c\\u537f","phone":"047562670","address":"\\u548c\\u5357\\u91cc\\u548c\\u537f\\u8def\\u0031\\u0039\\u0033\\u865f"}', '952062', '711', 'zh-tw', 1000),
(5736, 349, '22-349', 1, '和美', '{"number":"132231","shop":"\\u548c\\u7f8e","phone":"047557704","address":"\\u548c\\u982d\\u8def\\u0031\\u0038\\u0039\\u865f\\u0031\\u6a13"}', '132231', '711', 'zh-tw', 1000),
(5737, 349, '22-349', 1, '和鎮', '{"number":"971731","shop":"\\u548c\\u93ae","phone":"047566069","address":"\\u548c\\u7dda\\u8def\\u0033\\u0032\\u0033\\u865f"}', '971731', '711', 'zh-tw', 1000),
(5738, 349, '22-349', 1, '和線', '{"number":"954552","shop":"\\u548c\\u7dda","phone":"047350549","address":"\\u5609\\u7281\\u91cc\\u7dda\\u6771\\u8def\\u4e8c\\u6bb5\\u0037\\u0032\\u0032\\u865f"}', '954552', '711', 'zh-tw', 1000),
(5739, 349, '22-349', 1, '新勝利', '{"number":"991160","shop":"\\u65b0\\u52dd\\u5229","phone":"047579421","address":"\\u9e7f\\u548c\\u8def\\u516d\\u6bb5\\u0034\\u0030\\u0032\\u4e4b\\u0032\\u865f"}', '991160', '711', 'zh-tw', 1000),
(5740, 349, '22-349', 1, '和美仁愛', '{"number":"169635","shop":"\\u548c\\u7f8e\\u4ec1\\u611b","phone":"047558495","address":"\\u9e7f\\u548c\\u8def\\u516d\\u6bb5\\u81e8\\u0032\\u0032\\u865f"}', '169635', '711', 'zh-tw', 1000),
(5741, 349, '22-349', 1, '和峰', '{"number":"122175","shop":"\\u548c\\u5cf0","phone":"047560406","address":"\\u5c71\\u7281\\u91cc\\u9053\\u5468\\u8def\\u0036\\u9130\\u0032\\u0037\\u0039\\u865f\\u0031\\u6a13"}', '122175', '711', 'zh-tw', 1000),
(5742, 349, '22-349', 1, '糖廉', '{"number":"981923","shop":"\\u7cd6\\u5ec9","phone":"047367672","address":"\\u7cd6\\u53cb\\u4e00\\u8857\\u0032\\u865f"}', '981923', '711', 'zh-tw', 1000),
(5743, 349, '22-349', 1, '嘉佃', '{"number":"167167","shop":"\\u5609\\u4f43","phone":"047358738","address":"\\u5f70\\u548c\\u8def\\u4e09\\u6bb5\\u81e8\\u0035\\u0031\\u865f"}', '167167', '711', 'zh-tw', 1000),
(5744, 349, '22-349', 1, '彰美', '{"number":"190879","shop":"\\u5f70\\u7f8e","phone":"047569352","address":"\\u5f70\\u7f8e\\u8def\\u4e09\\u6bb5\\u0033\\u0038\\u0035\\u865f\\u0033\\u0038\\u0037\\u865f"}', '190879', '711', 'zh-tw', 1000),
(5745, 349, '22-349', 1, '和新', '{"number":"166452","shop":"\\u548c\\u65b0","phone":"047559878","address":"\\u5f70\\u65b0\\u8def\\u4e94\\u6bb5\\u81e8\\u0033\\u0039\\u0036\\u865f"}', '166452', '711', 'zh-tw', 1000),
(5746, 349, '22-349', 1, '和輝', '{"number":"127413","shop":"\\u548c\\u8f1d","phone":"047627079","address":"\\u93ae\\u5e73\\u91cc\\u5f70\\u8349\\u8def\\u4e8c\\u6bb5\\u81e8\\u0034\\u0034\\u0038\\u865f"}', '127413', '711', 'zh-tw', 1000),
(5747, 349, '22-349', 1, '糖友', '{"number":"192716","shop":"\\u7cd6\\u53cb","phone":"047354150","address":"\\u4e2d\\u570d\\u91cc\\u5f70\\u65b0\\u8def\\u4e09\\u6bb5\\u81e8\\u0033\\u0036\\u0038\\u865f"}', '192716', '711', 'zh-tw', 1000),
(5748, 349, '22-349', 1, '和全', '{"number":"175102","shop":"\\u548c\\u5168","phone":"047550329","address":"\\u7af9\\u71df\\u91cc\\u7f8e\\u5bee\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0030\\u865f"}', '175102', '711', 'zh-tw', 1000),
(5749, 350, '22-350', 1, '薪世麥', '{"number":"931238","shop":"\\u85aa\\u4e16\\u9ea5","phone":"047882902","address":"\\u9577\\u6c99\\u6751\\u5f70\\u54e1\\u8def\\u4e8c\\u6bb5\\u0035\\u0035\\u0030\\u865f\\u0035\\u0035\\u0032\\u865f"}', '931238', '711', 'zh-tw', 1000),
(5750, 350, '22-350', 1, '本鈿', '{"number":"192680","shop":"\\u672c\\u923f","phone":"047861540","address":"\\u6587\\u5fb7\\u6751\\u5f70\\u54e1\\u8def\\u4e8c\\u6bb5\\u81e8\\u0031\\u0031\\u0033\\u0038\\u865f"}', '192680', '711', 'zh-tw', 1000),
(5751, 350, '22-350', 1, '三春', '{"number":"132611","shop":"\\u4e09\\u6625","phone":"047875146","address":"\\u5f70\\u54e1\\u8def\\u4e00\\u6bb5\\u81e8\\u0035\\u0035\\u0031\\u865f"}', '132611', '711', 'zh-tw', 1000),
(5752, 350, '22-350', 1, '花壇', '{"number":"862097","shop":"\\u82b1\\u58c7","phone":"047870374","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0031\\u865f\\u0033\\u865f\\u0031\\u6a13"}', '862097', '711', 'zh-tw', 1000),
(5753, 350, '22-350', 1, '口庄', '{"number":"116767","shop":"\\u53e3\\u5e84","phone":"047882970","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0036\\u0034\\u0039\\u865f\\u0036\\u0035\\u0031\\u865f"}', '116767', '711', 'zh-tw', 1000),
(5754, 350, '22-350', 1, '長沙', '{"number":"132301","shop":"\\u9577\\u6c99","phone":"047861109","address":"\\u4e2d\\u6b63\\u8def\\u0031\\u0033\\u0030\\u865f\\u0031\\u6a13"}', '132301', '711', 'zh-tw', 1000),
(5755, 351, '22-351', 1, '頂番', '{"number":"112949","shop":"\\u9802\\u756a","phone":"047715387","address":"\\u9802\\u8349\\u8def\\u4e00\\u6bb5\\u0036\\u0031\\u865f"}', '112949', '711', 'zh-tw', 1000),
(5756, 351, '22-351', 1, '東崎', '{"number":"950583","shop":"\\u6771\\u5d0e","phone":"047840668","address":"\\u6771\\u5d0e\\u91cc\\u5f70\\u9e7f\\u8def\\u4e94\\u6bb5\\u0037\\u865f"}', '950583', '711', 'zh-tw', 1000),
(5757, 351, '22-351', 1, '鹿鑫', '{"number":"142238","shop":"\\u9e7f\\u946b","phone":"047773419","address":"\\u5fa9\\u8208\\u8def\\u0032\\u0038\\u0039\\u865f\\u0032\\u0039\\u0031\\u865f\\u0032\\u0039\\u0033\\u865f"}', '142238', '711', 'zh-tw', 1000),
(5758, 351, '22-351', 1, '鹿棋', '{"number":"953881","shop":"\\u9e7f\\u68cb","phone":"047716246","address":"\\u6e9d\\u5898\\u91cc\\u9e7f\\u548c\\u8def\\u4e09\\u6bb5\\u0034\\u0033\\u0038\\u865f"}', '953881', '711', 'zh-tw', 1000),
(5759, 351, '22-351', 1, '桂花', '{"number":"166555","shop":"\\u6842\\u82b1","phone":"047775251","address":"\\u9e7f\\u6771\\u8def\\u0031\\u0035\\u0030\\u865f\\u0031\\u002b\\u0032\\u6a13"}', '166555', '711', 'zh-tw', 1000),
(5760, 351, '22-351', 1, '鹿秀', '{"number":"952350","shop":"\\u9e7f\\u79c0","phone":"047812400","address":"\\u9e7f\\u5de5\\u8def\\u0036\\u865f"}', '952350', '711', 'zh-tw', 1000),
(5761, 351, '22-351', 1, '鹿工', '{"number":"196028","shop":"\\u9e7f\\u5de5","phone":"047810890","address":"\\u9e7f\\u5de5\\u5357\\u4e00\\u8def\\u0035\\u865f"}', '196028', '711', 'zh-tw', 1000),
(5762, 351, '22-351', 1, '鹿和', '{"number":"165356","shop":"\\u9e7f\\u548c","phone":"047746247","address":"\\u9e7f\\u548c\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0033\\u865f\\u0032\\u0037\\u0035\\u865f"}', '165356', '711', 'zh-tw', 1000),
(5763, 351, '22-351', 1, '鹿慶', '{"number":"972170","shop":"\\u9e7f\\u6176","phone":"047715045","address":"\\u6176\\u5b89\\u8857\\u0031\\u0031\\u0036\\u865f"}', '972170', '711', 'zh-tw', 1000),
(5764, 351, '22-351', 1, '創新', '{"number":"922245","shop":"\\u5275\\u65b0","phone":"047756389","address":"\\u9806\\u8208\\u91cc\\u5fa9\\u8208\\u8def\\u0035\\u0039\\u0035\\u865f\\u0031\\u6a13"}', '922245', '711', 'zh-tw', 1000),
(5765, 351, '22-351', 1, '頂王', '{"number":"194273","shop":"\\u9802\\u738b","phone":"047711021","address":"\\u982d\\u5d19\\u91cc\\u0037\\u9130\\u9802\\u8349\\u8def\\u4e8c\\u6bb5\\u0031\\u0033\\u0035\\u865f"}', '194273', '711', 'zh-tw', 1000),
(5766, 351, '22-351', 1, '鹿濱', '{"number":"112640","shop":"\\u9e7f\\u6ff1","phone":"047774269","address":"\\u5f70\\u6ff1\\u4e94\\u8def\\u4e8c\\u6bb5\\u0033\\u0039\\u0032\\u865f"}', '112640', '711', 'zh-tw', 1000),
(5767, 351, '22-351', 1, '鹿寶', '{"number":"967400","shop":"\\u9e7f\\u5bf6","phone":"047710051","address":"\\u5f70\\u9802\\u8def\\u0031\\u0037\\u865f"}', '967400', '711', 'zh-tw', 1000),
(5768, 351, '22-351', 1, '鹿港', '{"number":"165367","shop":"\\u9e7f\\u6e2f","phone":"047760627","address":"\\u4e2d\\u5c71\\u8def\\u0032\\u0035\\u0037\\u865f"}', '165367', '711', 'zh-tw', 1000),
(5769, 351, '22-351', 1, '鹿正', '{"number":"971155","shop":"\\u9e7f\\u6b63","phone":"047769640","address":"\\u4e2d\\u6b63\\u8def\\u0035\\u0035\\u0036\\u865f"}', '971155', '711', 'zh-tw', 1000),
(5770, 352, '22-352', 1, '斗苑', '{"number":"144588","shop":"\\u6597\\u82d1","phone":"048925951","address":"\\u6597\\u82d1\\u6771\\u8def\\u0035\\u0038\\u0038\\u865f"}', '144588', '711', 'zh-tw', 1000),
(5771, 352, '22-352', 1, '合興', '{"number":"181657","shop":"\\u5408\\u8208","phone":"048928013","address":"\\u6597\\u82d1\\u897f\\u8def\\u0034\\u0030\\u0036\\u865f"}', '181657', '711', 'zh-tw', 1000),
(5772, 352, '22-352', 1, '埤頭', '{"number":"110356","shop":"\\u57e4\\u982d","phone":"048928985","address":"\\u5408\\u8208\\u6751\\u5f70\\u6c34\\u8def\\u4e09\\u6bb5\\u0035\\u9130\\u0035\\u0033\\u0037\\u865f"}', '110356', '711', 'zh-tw', 1000),
(5773, 352, '22-352', 1, '金順利', '{"number":"931618","shop":"\\u91d1\\u9806\\u5229","phone":"048783227","address":"\\u548c\\u8c50\\u6751\\u6597\\u82d1\\u6771\\u8def\\u0038\\u0037\\u865f\\u0038\\u0039\\u865f"}', '931618', '711', 'zh-tw', 1000),
(5774, 352, '22-352', 1, '彰興', '{"number":"966935","shop":"\\u5f70\\u8208","phone":"048920771","address":"\\u8208\\u8fb2\\u6751\\u5f70\\u6c34\\u8def\\u56db\\u6bb5\\u0031\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '966935', '711', 'zh-tw', 1000),
(5775, 352, '22-352', 1, '路口厝', '{"number":"968997","shop":"\\u8def\\u53e3\\u539d","phone":"048899377","address":"\\u4e2d\\u548c\\u6751\\u5f70\\u6c34\\u8def\\u4e00\\u6bb5\\u81e8\\u0033\\u0032\\u0035\\u865f"}', '968997', '711', 'zh-tw', 1000),
(5776, 353, '22-353', 1, '彰醫', '{"number":"913274","shop":"\\u5f70\\u91ab","phone":"048280380","address":"\\u820a\\u9928\\u6751\\u4e2d\\u8208\\u8def\\u0031\\u865f"}', '913274', '711', 'zh-tw', 1000),
(5777, 353, '22-353', 1, '員全', '{"number":"184519","shop":"\\u54e1\\u5168","phone":"048283150","address":"\\u54e1\\u6797\\u5927\\u9053\\u4e03\\u6bb5\\u0032\\u0032\\u865f"}', '184519', '711', 'zh-tw', 1000),
(5778, 353, '22-353', 1, '員埔', '{"number":"126535","shop":"\\u54e1\\u57d4","phone":"048294556","address":"\\u54e1\\u9e7f\\u8def\\u4e8c\\u6bb5\\u0032\\u0034\\u0038\\u865f"}', '126535', '711', 'zh-tw', 1000),
(5779, 353, '22-353', 1, '埔新', '{"number":"155474","shop":"\\u57d4\\u65b0","phone":"048284109","address":"\\u54e1\\u9e7f\\u8def\\u4e00\\u6bb5\\u0031\\u0034\\u0035\\u865f"}', '155474', '711', 'zh-tw', 1000),
(5780, 353, '22-353', 1, '順心', '{"number":"968610","shop":"\\u9806\\u5fc3","phone":"048399902","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0034\\u0035\\u865f\\u0031\\u0034\\u0037\\u865f\\u0031\\u0034\\u0039\\u865f"}', '968610', '711', 'zh-tw', 1000),
(5781, 353, '22-353', 1, '埔成', '{"number":"198943","shop":"\\u57d4\\u6210","phone":"048281820","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0031\\u0033\\u0037\\u865f\\u0031\\u0033\\u0039\\u865f\\u0031\\u6a13"}', '198943', '711', 'zh-tw', 1000),
(5782, 354, '22-354', 1, '樂有', '{"number":"192691","shop":"\\u6a02\\u6709","phone":"048659785","address":"\\u5927\\u6709\\u6751\\u54e1\\u9e7f\\u8def\\u4e09\\u6bb5\\u81e8\\u0031\\u0033\\u0039\\u865f\\u4e4b\\u0039"}', '192691', '711', 'zh-tw', 1000),
(5783, 354, '22-354', 1, '好修', '{"number":"982373","shop":"\\u597d\\u4fee","phone":"048656861","address":"\\u54e1\\u9e7f\\u8def\\u4e8c\\u6bb5\\u0039\\u0035\\u865f"}', '982373', '711', 'zh-tw', 1000),
(5784, 354, '22-354', 1, '埔鹽', '{"number":"892560","shop":"\\u57d4\\u9e7d","phone":"048658570","address":"\\u5f70\\u6c34\\u8def\\u4e8c\\u6bb5\\u0033\\u0036\\u865f"}', '892560', '711', 'zh-tw', 1000),
(5785, 355, '22-355', 1, '社腳', '{"number":"179942","shop":"\\u793e\\u8173","phone":"048711130","address":"\\u6e73\\u96c5\\u6751\\u5c71\\u8173\\u8def\\u4e09\\u6bb5\\u0035\\u0032\\u0035\\u865f"}', '179942', '711', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(5786, 355, '22-355', 1, '新社頭', '{"number":"187404","shop":"\\u65b0\\u793e\\u982d","phone":"048713851","address":"\\u54e1\\u96c6\\u8def\\u4e8c\\u6bb5\\u0032\\u0037\\u0039\\u865f"}', '187404', '711', 'zh-tw', 1000),
(5787, 355, '22-355', 1, '社員', '{"number":"940232","shop":"\\u793e\\u54e1","phone":"048725605","address":"\\u54e1\\u96c6\\u8def\\u4e09\\u6bb5\\u0031\\u0036\\u865f"}', '940232', '711', 'zh-tw', 1000),
(5788, 355, '22-355', 1, '泓寶', '{"number":"195793","shop":"\\u6cd3\\u5bf6","phone":"048713728","address":"\\u54e1\\u96c6\\u8def\\u56db\\u6bb5\\u0036\\u0039\\u0037\\u865f"}', '195793', '711', 'zh-tw', 1000),
(5789, 355, '22-355', 1, '社集', '{"number":"122278","shop":"\\u793e\\u96c6","phone":"048736715","address":"\\u54e1\\u96c6\\u8def\\u4e00\\u6bb5\\u81e8\\u0033\\u0035\\u0031\\u865f"}', '122278', '711', 'zh-tw', 1000),
(5790, 355, '22-355', 1, '金佳旺', '{"number":"970691","shop":"\\u91d1\\u4f73\\u65fa","phone":"048713886","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0031\\u0036\\u865f"}', '970691', '711', 'zh-tw', 1000),
(5791, 356, '22-356', 1, '伸冠', '{"number":"963121","shop":"\\u4f38\\u51a0","phone":"047987795","address":"\\u5927\\u540c\\u6751\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\u0033\\u0031\\u0036\\u865f"}', '963121', '711', 'zh-tw', 1000),
(5792, 356, '22-356', 1, '伸東', '{"number":"138996","shop":"\\u4f38\\u6771","phone":"047981020","address":"\\u4e03\\u5609\\u6751\\u4e2d\\u83ef\\u8def\\u0035\\u0031\\u0039\\u865f"}', '138996', '711', 'zh-tw', 1000),
(5793, 356, '22-356', 1, '巨航', '{"number":"138686","shop":"\\u5de8\\u822a","phone":"047987089","address":"\\u65b0\\u6e2f\\u6751\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u0035\\u865f"}', '138686', '711', 'zh-tw', 1000),
(5794, 356, '22-356', 1, '伸濱', '{"number":"120319","shop":"\\u4f38\\u6ff1","phone":"047982870","address":"\\u65b0\\u6e2f\\u8def\\u0034\\u0032\\u0035\\u865f"}', '120319', '711', 'zh-tw', 1000),
(5795, 356, '22-356', 1, '伸港', '{"number":"920711","shop":"\\u4f38\\u6e2f","phone":"047987458","address":"\\u4e2d\\u5c71\\u8def\\u0031\\u0039\\u0030\\u865f\\u0031\\u0039\\u0032\\u865f"}', '920711', '711', 'zh-tw', 1000),
(5796, 357, '22-357', 1, '田尾', '{"number":"175098","shop":"\\u7530\\u5c3e","phone":"048833791","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\u0037\\u0035\\u0032\\u865f"}', '175098', '711', 'zh-tw', 1000),
(5797, 357, '22-357', 1, '田正', '{"number":"953467","shop":"\\u7530\\u6b63","phone":"048837740","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0031\\u0039\\u0031\\u865f"}', '953467', '711', 'zh-tw', 1000),
(5798, 358, '22-358', 1, '內安', '{"number":"164652","shop":"\\u5167\\u5b89","phone":"048746504","address":"\\u78a7\\u5cf0\\u91cc\\u4e2d\\u5357\\u8def\\u4e8c\\u6bb5\\u0035\\u0036\\u0032\\u865f"}', '164652', '711', 'zh-tw', 1000),
(5799, 358, '22-358', 1, '田中', '{"number":"977371","shop":"\\u7530\\u4e2d","phone":"048748608","address":"\\u798f\\u5b89\\u8def\\u0031\\u0034\\u0034\\u865f\\u0031\\u0034\\u0036\\u865f"}', '977371', '711', 'zh-tw', 1000),
(5800, 358, '22-358', 1, '加吉利', '{"number":"970026","shop":"\\u52a0\\u5409\\u5229","phone":"048745147","address":"\\u4e2d\\u6b63\\u8def\\u0032\\u0037\\u0036\\u865f"}', '970026', '711', 'zh-tw', 1000),
(5801, 358, '22-358', 1, '梅州里', '{"number":"953032","shop":"\\u6885\\u5dde\\u91cc","phone":"048749058","address":"\\u4e2d\\u5dde\\u8def\\u4e8c\\u6bb5\\u0033\\u0037\\u0032\\u865f"}', '953032', '711', 'zh-tw', 1000),
(5802, 359, '22-359', 1, '向福', '{"number":"166289","shop":"\\u5411\\u798f","phone":"048858331","address":"\\u5927\\u6eaa\\u8def\\u4e8c\\u6bb5\\u0031\\u0034\\u0030\\u865f"}', '166289', '711', 'zh-tw', 1000),
(5803, 359, '22-359', 1, '美溪', '{"number":"922511","shop":"\\u7f8e\\u6eaa","phone":"048859275","address":"\\u5927\\u6eaa\\u8def\\u4e8c\\u6bb5\\u0034\\u0035\\u0031\\u865f"}', '922511', '711', 'zh-tw', 1000),
(5804, 359, '22-359', 1, '二溪', '{"number":"160029","shop":"\\u4e8c\\u6eaa","phone":"048813960","address":"\\u4e8c\\u6eaa\\u8def\\u4e00\\u6bb5\\u0033\\u0036\\u0039\\u865f"}', '160029', '711', 'zh-tw', 1000),
(5805, 359, '22-359', 1, '新安可', '{"number":"118822","shop":"\\u65b0\\u5b89\\u53ef","phone":"048817110","address":"\\u897f\\u74b0\\u8def\\u0033\\u0037\\u0033\\u865f"}', '118822', '711', 'zh-tw', 1000),
(5806, 359, '22-359', 1, '湖貴', '{"number":"131227","shop":"\\u6e56\\u8cb4","phone":"048850251","address":"\\u897f\\u5bee\\u91cc\\u54e1\\u9e7f\\u8def\\u56db\\u6bb5\\u0037\\u865f\\u0031\\u6a13"}', '131227', '711', 'zh-tw', 1000),
(5807, 359, '22-359', 1, '員鹿', '{"number":"967363","shop":"\\u54e1\\u9e7f","phone":"048823092","address":"\\u54e1\\u9e7f\\u8def\\u4e8c\\u6bb5\\u81e8\\u0031\\u0033\\u0030\\u865f"}', '967363', '711', 'zh-tw', 1000),
(5808, 359, '22-359', 1, '新員高', '{"number":"966577","shop":"\\u65b0\\u54e1\\u9ad8","phone":"048852770","address":"\\u54e1\\u9e7f\\u8def\\u4e00\\u6bb5\\u0031\\u0030\\u0031\\u865f"}', '966577', '711', 'zh-tw', 1000),
(5809, 359, '22-359', 1, '溪東', '{"number":"181886","shop":"\\u6eaa\\u6771","phone":"048856701","address":"\\u54e1\\u9e7f\\u8def\\u4e00\\u6bb5\\u0034\\u0030\\u0033\\u865f"}', '181886', '711', 'zh-tw', 1000),
(5810, 359, '22-359', 1, '彰溪', '{"number":"184265","shop":"\\u5f70\\u6eaa","phone":"048855513","address":"\\u5f70\\u6c34\\u8def\\u4e8c\\u6bb5\\u81e8\\u0035\\u0035\\u0035\\u865f"}', '184265', '711', 'zh-tw', 1000),
(5811, 359, '22-359', 1, '溪湖', '{"number":"845472","shop":"\\u6eaa\\u6e56","phone":"048821557","address":"\\u5f70\\u6c34\\u8def\\u4e09\\u6bb5\\u0031\\u0030\\u0035\\u865f\\u0031\\u0030\\u0037\\u865f\\u0031\\u0030\\u0039\\u865f"}', '845472', '711', 'zh-tw', 1000),
(5812, 359, '22-359', 1, '湖北', '{"number":"882839","shop":"\\u6e56\\u5317","phone":"048822411","address":"\\u5f70\\u6c34\\u8def\\u56db\\u6bb5\\u0037\\u0039\\u865f"}', '882839', '711', 'zh-tw', 1000),
(5813, 360, '22-360', 1, '新溪州', '{"number":"993683","shop":"\\u65b0\\u6eaa\\u5dde","phone":"048891103","address":"\\u5c3e\\u539d\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0034\\u0037\\u0034\\u865f"}', '993683', '711', 'zh-tw', 1000),
(5814, 360, '22-360', 1, '明道站', '{"number":"164548","shop":"\\u660e\\u9053\\u7ad9","phone":"048872668","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\u0036\\u0032\\u0037\\u865f"}', '164548', '711', 'zh-tw', 1000),
(5815, 361, '22-361', 1, '線西', '{"number":"993465","shop":"\\u7dda\\u897f","phone":"047589134","address":"\\u5bd3\\u57d4\\u6751\\u6cbf\\u6d77\\u8def\\u4e00\\u6bb5\\u0038\\u0039\\u0032\\u865f"}', '993465', '711', 'zh-tw', 1000),
(5816, 362, '22-362', 1, '秀中', '{"number":"932194","shop":"\\u79c0\\u4e2d","phone":"047699755","address":"\\u5b89\\u6771\\u6751\\u4e2d\\u5c71\\u8def\\u0032\\u0035\\u0031\\u865f"}', '932194', '711', 'zh-tw', 1000),
(5817, 362, '22-362', 1, '秀安', '{"number":"197537","shop":"\\u79c0\\u5b89","phone":"047627910","address":"\\u5b89\\u6eaa\\u6751\\u5f70\\u9e7f\\u8def\\u0031\\u0039\\u865f"}', '197537', '711', 'zh-tw', 1000),
(5818, 362, '22-362', 1, '秀鑫', '{"number":"180931","shop":"\\u79c0\\u946b","phone":"047684034","address":"\\u756a\\u82b1\\u8def\\u0031\\u0030\\u0031\\u865f"}', '180931', '711', 'zh-tw', 1000),
(5819, 362, '22-362', 1, '秀發', '{"number":"142803","shop":"\\u79c0\\u767c","phone":"047684821","address":"\\u756a\\u82b1\\u8def\\u81e8\\u0035\\u0035\\u0038\\u4e4b\\u0037\\u865f"}', '142803', '711', 'zh-tw', 1000),
(5820, 362, '22-362', 1, '鶴鳴', '{"number":"922809","shop":"\\u9db4\\u9cf4","phone":"047687642","address":"\\u9db4\\u9cf4\\u6751\\u5f70\\u9e7f\\u8def\\u0033\\u0036\\u0032\\u865f"}', '922809', '711', 'zh-tw', 1000),
(5821, 362, '22-362', 1, '秀鴻', '{"number":"163648","shop":"\\u79c0\\u9d3b","phone":"047688579","address":"\\u57d4\\u5d19\\u6751\\u6c11\\u751f\\u8857\\u0039\\u0036\\u0030\\u865f"}', '163648', '711', 'zh-tw', 1000),
(5822, 362, '22-362', 1, '秀水', '{"number":"125510","shop":"\\u79c0\\u6c34","phone":"047698322","address":"\\u6587\\u5316\\u8857\\u0033\\u0031\\u865f"}', '125510', '711', 'zh-tw', 1000),
(5823, 362, '22-362', 1, '秀工', '{"number":"961941","shop":"\\u79c0\\u5de5","phone":"047689373","address":"\\u5f70\\u6c34\\u8def\\u4e8c\\u6bb5\\u0037\\u0039\\u0035\\u002d\\u0031\\u865f"}', '961941', '711', 'zh-tw', 1000),
(5824, 363, '22-363', 1, '湳港', '{"number":"122304","shop":"\\u6e73\\u6e2f","phone":"048230457","address":"\\u6e2f\\u897f\\u6751\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0038\\u0034\\u0032\\u865f"}', '122304', '711', 'zh-tw', 1000),
(5825, 363, '22-363', 1, '永冠', '{"number":"181761","shop":"\\u6c38\\u51a0","phone":"048233132","address":"\\u6c38\\u5317\\u6751\\u897f\\u9580\\u8def\\u0031\\u0034\\u0032\\u865f\\u0031\\u6a13"}', '181761', '711', 'zh-tw', 1000),
(5826, 363, '22-363', 1, '永靖', '{"number":"150941","shop":"\\u6c38\\u9756","phone":"048242613","address":"\\u6c38\\u5761\\u8def\\u0032\\u865f"}', '150941', '711', 'zh-tw', 1000),
(5827, 363, '22-363', 1, '祿靖', '{"number":"971535","shop":"\\u797f\\u9756","phone":"048247543","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0034\\u0033\\u0035\\u865f\\u0034\\u0033\\u0037\\u865f"}', '971535', '711', 'zh-tw', 1000),
(5828, 364, '22-364', 1, '家和', '{"number":"991838","shop":"\\u5bb6\\u548c","phone":"048337781","address":"\\u5927\\u9952\\u91cc\\u54e1\\u96c6\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0036\\u865f"}', '991838', '711', 'zh-tw', 1000),
(5829, 364, '22-364', 1, '真愛', '{"number":"187150","shop":"\\u771f\\u611b","phone":"048331363","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\u0032\\u865f"}', '187150', '711', 'zh-tw', 1000),
(5830, 364, '22-364', 1, '惠明', '{"number":"959317","shop":"\\u60e0\\u660e","phone":"048348418","address":"\\u60e0\\u660e\\u8857\\u0035\\u0031\\u865f"}', '959317', '711', 'zh-tw', 1000),
(5831, 364, '22-364', 1, '新靜修', '{"number":"990835","shop":"\\u65b0\\u975c\\u4fee","phone":"048394776","address":"\\u975c\\u4fee\\u8def\\u0037\\u0037\\u865f\\u4e4b\\u0034"}', '990835', '711', 'zh-tw', 1000),
(5832, 364, '22-364', 1, '新百川', '{"number":"954459","shop":"\\u65b0\\u767e\\u5ddd","phone":"048391980","address":"\\u8392\\u5149\\u8def\\u0033\\u0037\\u0039\\u865f"}', '954459', '711', 'zh-tw', 1000),
(5833, 364, '22-364', 1, '員昌', '{"number":"110459","shop":"\\u54e1\\u660c","phone":"048361812","address":"\\u9ece\\u660e\\u91cc\\u0031\\u0032\\u9130\\u5357\\u660c\\u8def\\u0037\\u0030\\u865f\\u0037\\u0032\\u865f\\u0031\\u6a13"}', '110459', '711', 'zh-tw', 1000),
(5834, 364, '22-364', 1, '金東山', '{"number":"190824","shop":"\\u91d1\\u6771\\u5c71","phone":"048365820","address":"\\u5357\\u6771\\u91cc\\u5c71\\u8173\\u8def\\u56db\\u6bb5\\u0031\\u865f\\u0033\\u865f"}', '190824', '711', 'zh-tw', 1000),
(5835, 364, '22-364', 1, '員東', '{"number":"126731","shop":"\\u54e1\\u6771","phone":"048395201","address":"\\u4e09\\u548c\\u91cc\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\u0038\\u9130\\u0032\\u0033\\u0038\\u865f"}', '126731', '711', 'zh-tw', 1000),
(5836, 364, '22-364', 1, '新員民', '{"number":"189569","shop":"\\u65b0\\u54e1\\u6c11","phone":"048379887","address":"\\u4e09\\u6c11\\u8857\\u0032\\u0030\\u865f"}', '189569', '711', 'zh-tw', 1000),
(5837, 364, '22-364', 1, '員慶', '{"number":"130877","shop":"\\u54e1\\u6176","phone":"048362486","address":"\\u5c71\\u8173\\u8def\\u4e00\\u6bb5\\u0033\\u0038\\u0036\\u865f"}', '130877', '711', 'zh-tw', 1000),
(5838, 364, '22-364', 1, '員農', '{"number":"120478","shop":"\\u54e1\\u8fb2","phone":"048368446","address":"\\u842c\\u5e74\\u91cc\\u54e1\\u6c34\\u8def\\u4e8c\\u6bb5\\u0031\\u0039\\u9130\\u0034\\u0033\\u0033\\u865f"}', '120478', '711', 'zh-tw', 1000),
(5839, 364, '22-364', 1, '品冠', '{"number":"137878","shop":"\\u54c1\\u51a0","phone":"048368549","address":"\\u65b0\\u751f\\u8def\\u0032\\u0037\\u0038\\u865f"}', '137878', '711', 'zh-tw', 1000),
(5840, 364, '22-364', 1, '豐昌', '{"number":"143138","shop":"\\u8c50\\u660c","phone":"048337162","address":"\\u6c38\\u660c\\u8857\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '143138', '711', 'zh-tw', 1000),
(5841, 364, '22-364', 1, '員勝', '{"number":"160063","shop":"\\u54e1\\u52dd","phone":"048333464","address":"\\u80b2\\u82f1\\u8def\\u0031\\u0033\\u0031\\u865f"}', '160063', '711', 'zh-tw', 1000),
(5842, 364, '22-364', 1, '員大', '{"number":"183240","shop":"\\u54e1\\u5927","phone":"048397793","address":"\\u54e1\\u5927\\u8def\\u4e00\\u6bb5\\u0033\\u0037\\u0034\\u865f"}', '183240', '711', 'zh-tw', 1000),
(5843, 364, '22-364', 1, '員成', '{"number":"161907","shop":"\\u54e1\\u6210","phone":"048338460","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\u0032\\u0031\\u0036\\u865f"}', '161907', '711', 'zh-tw', 1000),
(5844, 364, '22-364', 1, '大員山', '{"number":"967019","shop":"\\u5927\\u54e1\\u5c71","phone":"048398846","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0033\\u0030\\u0030\\u865f"}', '967019', '711', 'zh-tw', 1000),
(5845, 364, '22-364', 1, '員家', '{"number":"909552","shop":"\\u54e1\\u5bb6","phone":"048393359","address":"\\u4e2d\\u6b63\\u8def\\u0037\\u0035\\u865f"}', '909552', '711', 'zh-tw', 1000),
(5846, 364, '22-364', 1, '員林', '{"number":"112215","shop":"\\u54e1\\u6797","phone":"048361931","address":"\\u5fe0\\u5b5d\\u91cc\\u0034\\u9130\\u54e1\\u6771\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u0037\\u865f"}', '112215', '711', 'zh-tw', 1000),
(5847, 365, '22-365', 1, '彰泰', '{"number":"120320","shop":"\\u5f70\\u6cf0","phone":"047281709","address":"\\u5b89\\u5e73\\u8857\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '120320', '711', 'zh-tw', 1000),
(5848, 365, '22-365', 1, '彰化', '{"number":"158299","shop":"\\u5f70\\u5316","phone":"047201346","address":"\\u9577\\u6a02\\u91cc\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0034\\u0031\\u865f\\u0031\\u6a13"}', '158299', '711', 'zh-tw', 1000),
(5849, 365, '22-365', 1, '火車頭', '{"number":"111223","shop":"\\u706b\\u8eca\\u982d","phone":"047221901","address":"\\u9577\\u6a02\\u91cc\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0035\\u0033\\u0036\\u865f\\u0035\\u0033\\u0038\\u865f"}', '111223', '711', 'zh-tw', 1000),
(5850, 365, '22-365', 1, '大竹', '{"number":"138848","shop":"\\u5927\\u7af9","phone":"047388101","address":"\\u5927\\u7af9\\u91cc\\u5f70\\u5357\\u8def\\u4e8c\\u6bb5\\u0031\\u0038\\u0031\\u865f"}', '138848', '711', 'zh-tw', 1000),
(5851, 365, '22-365', 1, '東芳', '{"number":"921161","shop":"\\u6771\\u82b3","phone":"047513705","address":"\\u6771\\u82b3\\u91cc\\u6c38\\u82b3\\u8def\\u0031\\u0039\\u0039\\u865f"}', '921161', '711', 'zh-tw', 1000),
(5852, 365, '22-365', 1, '彰工', '{"number":"121471","shop":"\\u5f70\\u5de5","phone":"047284580","address":"\\u5fa9\\u8208\\u91cc\\u9032\\u5fb7\\u8def\\u0031\\u0031\\u865f\\u0031\\u0033\\u865f\\u0031\\u6a13"}', '121471', '711', 'zh-tw', 1000),
(5853, 365, '22-365', 1, '台化', '{"number":"966072","shop":"\\u53f0\\u5316","phone":"047281512","address":"\\u5fa9\\u8208\\u91cc\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\u0033\\u0030\\u0036\\u865f"}', '966072', '711', 'zh-tw', 1000),
(5854, 365, '22-365', 1, '附工', '{"number":"978525","shop":"\\u9644\\u5de5","phone":"047290120","address":"\\u5de5\\u6821\\u8857\\u0032\\u0031\\u865f"}', '978525', '711', 'zh-tw', 1000),
(5855, 365, '22-365', 1, '新桃源', '{"number":"126742","shop":"\\u65b0\\u6843\\u6e90","phone":"047287306","address":"\\u5366\\u5c71\\u91cc\\u516c\\u5712\\u8def\\u4e00\\u6bb5\\u0033\\u0033\\u0035\\u865f"}', '126742', '711', 'zh-tw', 1000),
(5856, 365, '22-365', 1, '博愛', '{"number":"992783","shop":"\\u535a\\u611b","phone":"047288993","address":"\\u5149\\u5357\\u91cc\\u5357\\u6821\\u8857\\u0031\\u0033\\u0032\\u53ca\\u0031\\u0033\\u0030\\u4e4b\\u0031\\u865f\\u0031\\u6a13"}', '992783', '711', 'zh-tw', 1000),
(5857, 365, '22-365', 1, '新龍邸', '{"number":"187459","shop":"\\u65b0\\u9f8d\\u90b8","phone":"047127345","address":"\\u5149\\u5357\\u91cc\\u4e2d\\u8208\\u8def\\u0031\\u0030\\u0039\\u865f"}', '187459', '711', 'zh-tw', 1000),
(5858, 365, '22-365', 1, '民生', '{"number":"887177","shop":"\\u6c11\\u751f","phone":"047278025","address":"\\u83ef\\u5c71\\u8def\\u0032\\u0037\\u865f"}', '887177', '711', 'zh-tw', 1000),
(5859, 365, '22-365', 1, '彰北', '{"number":"194066","shop":"\\u5f70\\u5317","phone":"047289205","address":"\\u5efa\\u570b\\u6771\\u8def\\u0032\\u0035\\u0038\\u865f"}', '194066', '711', 'zh-tw', 1000),
(5860, 365, '22-365', 1, '彰寶', '{"number":"142674","shop":"\\u5f70\\u5bf6","phone":"047110865","address":"\\u4ecb\\u58fd\\u5317\\u8def\\u0038\\u0032\\u865f"}', '142674', '711', 'zh-tw', 1000),
(5861, 365, '22-365', 1, '締寶', '{"number":"132367","shop":"\\u7de0\\u5bf6","phone":"047286690","address":"\\u91d1\\u99ac\\u8def\\u4e00\\u6bb5\\u0033\\u0035\\u0038\\u865f\\u0031\\u6a13"}', '132367', '711', 'zh-tw', 1000),
(5862, 365, '22-365', 1, '勝全', '{"number":"941970","shop":"\\u52dd\\u5168","phone":"047636581","address":"\\u6797\\u68ee\\u8def\\u0032\\u0030\\u0035\\u865f"}', '941970', '711', 'zh-tw', 1000),
(5863, 365, '22-365', 1, '宇勝', '{"number":"993823","shop":"\\u5b87\\u52dd","phone":"047518778","address":"\\u5d19\\u5e73\\u91cc\\u5d19\\u5e73\\u5317\\u8def\\u0032\\u0032\\u865f"}', '993823', '711', 'zh-tw', 1000),
(5864, 365, '22-365', 1, '彰和', '{"number":"875369","shop":"\\u5f70\\u548c","phone":"047269723","address":"\\u6c11\\u65cf\\u8def\\u0031\\u0036\\u0033\\u865f"}', '875369', '711', 'zh-tw', 1000),
(5865, 365, '22-365', 1, '曉陽', '{"number":"155278","shop":"\\u66c9\\u967d","phone":"047286185","address":"\\u6c11\\u65cf\\u8def\\u0033\\u0034\\u0031\\u865f\\u0033\\u0034\\u0033\\u865f\\u0031\\u6a13"}', '155278', '711', 'zh-tw', 1000),
(5866, 365, '22-365', 1, '安豐', '{"number":"165286","shop":"\\u5b89\\u8c50","phone":"047624340","address":"\\u5357\\u5b89\\u91cc\\u5f70\\u9e7f\\u8def\\u0031\\u0036\\u0036\\u865f\\u0031\\u6a13"}', '165286', '711', 'zh-tw', 1000),
(5867, 365, '22-365', 1, '彰督', '{"number":"170118","shop":"\\u5f70\\u7763","phone":"047228749","address":"\\u5357\\u6821\\u8857\\u0031\\u0033\\u0035\\u865f\\u0031\\u6a13"}', '170118', '711', 'zh-tw', 1000),
(5868, 365, '22-365', 1, '家樂福', '{"number":"130224","shop":"\\u5bb6\\u6a02\\u798f","phone":"047357208","address":"\\u8304\\u82f3\\u8def\\u4e00\\u6bb5\\u0032\\u0037\\u0036\\u865f"}', '130224', '711', 'zh-tw', 1000),
(5869, 365, '22-365', 1, '萬安', '{"number":"193133","shop":"\\u842c\\u5b89","phone":"047223446","address":"\\u4e09\\u6c11\\u8def\\u0033\\u0034\\u0031\\u865f"}', '193133', '711', 'zh-tw', 1000),
(5870, 365, '22-365', 1, '兆詠', '{"number":"932002","shop":"\\u5146\\u8a60","phone":"047374661","address":"\\u53f0\\u9cf3\\u91cc\\u4e00\\u5fb7\\u5357\\u8def\\u0032\\u0035\\u0032\\u865f"}', '932002', '711', 'zh-tw', 1000),
(5871, 365, '22-365', 1, '新彰成', '{"number":"182395","shop":"\\u65b0\\u5f70\\u6210","phone":"047286980","address":"\\u592a\\u5e73\\u8857\\u0038\\u0039\\u865f"}', '182395', '711', 'zh-tw', 1000),
(5872, 365, '22-365', 1, '太子哈佛', '{"number":"931179","shop":"\\u592a\\u5b50\\u54c8\\u4f5b","phone":"047287276","address":"\\u6cf0\\u548c\\u4e2d\\u8857\\u0037\\u0032\\u865f"}', '931179', '711', 'zh-tw', 1000),
(5873, 365, '22-365', 1, '巨峰', '{"number":"993812","shop":"\\u5de8\\u5cf0","phone":"047612461","address":"\\u5929\\u7965\\u8def\\u0033\\u0035\\u0039\\u865f"}', '993812', '711', 'zh-tw', 1000),
(5874, 365, '22-365', 1, '智富', '{"number":"931700","shop":"\\u667a\\u5bcc","phone":"047200758","address":"\\u842c\\u5b89\\u91cc\\u9577\\u9806\\u8857\\u0031\\u0037\\u0030\\u865f"}', '931700', '711', 'zh-tw', 1000),
(5875, 365, '22-365', 1, '彰強', '{"number":"138468","shop":"\\u5f70\\u5f37","phone":"047201342","address":"\\u4e94\\u6b0a\\u91cc\\u81ea\\u5f37\\u5357\\u8def\\u0038\\u0030\\u002d\\u0031\\u0031\\u865f\\u0031\\u6a13"}', '138468', '711', 'zh-tw', 1000),
(5876, 365, '22-365', 1, '彰德', '{"number":"951128","shop":"\\u5f70\\u5fb7","phone":"047384178","address":"\\u9999\\u5c71\\u91cc\\u5f70\\u5357\\u8def\\u4e8c\\u6bb5\\u0035\\u0031\\u0030\\u865f"}', '951128', '711', 'zh-tw', 1000),
(5877, 365, '22-365', 1, '欣兆陽', '{"number":"966016","shop":"\\u6b23\\u5146\\u967d","phone":"047514876","address":"\\u5411\\u967d\\u91cc\\u5411\\u967d\\u8857\\u0032\\u0030\\u0035\\u53ca\\u0032\\u0030\\u0037\\u865f\\u0031\\u6a13"}', '966016', '711', 'zh-tw', 1000),
(5878, 365, '22-365', 1, '大陽', '{"number":"112385","shop":"\\u5927\\u967d","phone":"047114077","address":"\\u5ef6\\u5e73\\u91cc\\u5927\\u57d4\\u8def\\u0034\\u0030\\u0035\\u865f"}', '112385', '711', 'zh-tw', 1000),
(5879, 365, '22-365', 1, '新大埔', '{"number":"199315","shop":"\\u65b0\\u5927\\u57d4","phone":"047118047","address":"\\u5ef6\\u5e73\\u91cc\\u5927\\u57d4\\u8def\\u0035\\u0034\\u0030\\u865f\\u0035\\u0034\\u0032\\u865f"}', '199315', '711', 'zh-tw', 1000),
(5880, 365, '22-365', 1, '兆福', '{"number":"196235","shop":"\\u5146\\u798f","phone":"047386439","address":"\\u4e00\\u5fb7\\u5357\\u8def\\u0032\\u865f\\u3001\\u5f70\\u5357\\u8def\\u4e09\\u6bb5\\u0034\\u0030\\u0030\\u865f"}', '196235', '711', 'zh-tw', 1000),
(5881, 365, '22-365', 1, '彰泳', '{"number":"131375","shop":"\\u5f70\\u6cf3","phone":"047364752","address":"\\u6c38\\u5b89\\u8857\\u0033\\u0038\\u0038\\u865f\\u0031\\u6a13"}', '131375', '711', 'zh-tw', 1000),
(5882, 365, '22-365', 1, '彰馬', '{"number":"120490","shop":"\\u5f70\\u99ac","phone":"047610492","address":"\\u5f70\\u99ac\\u8def\\u0032\\u0034\\u0036\\u865f\\u4e4b\\u0035"}', '120490', '711', 'zh-tw', 1000),
(5883, 365, '22-365', 1, '沓澤', '{"number":"967916","shop":"\\u6c93\\u6fa4","phone":"047203441","address":"\\u5f70\\u7f8e\\u8def\\u4e00\\u6bb5\\u0032\\u0030\\u0036\\u865f\\u0032\\u0030\\u0038\\u865f"}', '967916', '711', 'zh-tw', 1000),
(5884, 365, '22-365', 1, '福山', '{"number":"164283","shop":"\\u798f\\u5c71","phone":"047370905","address":"\\u5f70\\u5357\\u8def\\u4e00\\u6bb5\\u0034\\u0036\\u0036\\u865f"}', '164283', '711', 'zh-tw', 1000),
(5885, 365, '22-365', 1, '成發', '{"number":"144050","shop":"\\u6210\\u767c","phone":"047617040","address":"\\u5f70\\u6c34\\u8def\\u0031\\u0037\\u0037\\u865f"}', '144050', '711', 'zh-tw', 1000),
(5886, 365, '22-365', 1, '彰欣', '{"number":"193948","shop":"\\u5f70\\u6b23","phone":"047389028","address":"\\u5f70\\u8208\\u8def\\u4e00\\u6bb5\\u81e8\\u0035\\u0032\\u0038\\u865f"}', '193948', '711', 'zh-tw', 1000),
(5887, 365, '22-365', 1, '得利', '{"number":"140069","shop":"\\u5f97\\u5229","phone":"047618096","address":"\\u4e2d\\u83ef\\u897f\\u8def\\u0032\\u0031\\u0032\\u865f"}', '140069', '711', 'zh-tw', 1000),
(5888, 365, '22-365', 1, '巨林', '{"number":"126753","shop":"\\u5de8\\u6797","phone":"047111846","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0032\\u0038\\u0036\\u865f\\u0031\\u6a13"}', '126753', '711', 'zh-tw', 1000),
(5889, 365, '22-365', 1, '秀傳', '{"number":"144016","shop":"\\u79c0\\u50b3","phone":"047229255","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\u0035\\u0034\\u0036\\u865f\\u0031\\u6a13"}', '144016', '711', 'zh-tw', 1000),
(5890, 365, '22-365', 1, '崙北', '{"number":"177050","shop":"\\u5d19\\u5317","phone":"047518161","address":"\\u4e2d\\u592e\\u8def\\u0032\\u0033\\u0032\\u865f\\u0032\\u0033\\u0034\\u865f"}', '177050', '711', 'zh-tw', 1000),
(5891, 365, '22-365', 1, '鑫彰安', '{"number":"136853","shop":"\\u946b\\u5f70\\u5b89","phone":"047220483","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\u0036\\u0031\\u0031\\u865f"}', '136853', '711', 'zh-tw', 1000),
(5892, 365, '22-365', 1, '彰陽', '{"number":"160030","shop":"\\u5f70\\u967d","phone":"047284353","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u0037\\u0035\\u865f\\u0031\\u6a13\\u5730\\u4e0b\\u5ba4\\u0031\\u6a13"}', '160030', '711', 'zh-tw', 1000),
(5893, 365, '22-365', 1, '彰辭', '{"number":"137889","shop":"\\u5f70\\u8fad","phone":"047288420","address":"\\u5fe0\\u5b5d\\u91cc\\u8fad\\u4fee\\u8def\\u0032\\u0039\\u0032\\u865f"}', '137889', '711', 'zh-tw', 1000),
(5894, 366, '22-366', 1, '新竹塘', '{"number":"971199","shop":"\\u65b0\\u7af9\\u5858","phone":"048972918","address":"\\u7af9\\u4e94\\u8def\\u81e8\\u0032\\u865f"}', '971199', '711', 'zh-tw', 1000),
(5895, 0, '0', 1, '高雄市', '', '0', 'quanjia', 'zh-tw', 1000),
(5896, 0, '0', 1, '花蓮縣', '', '1', 'quanjia', 'zh-tw', 1000),
(5897, 0, '0', 1, '基隆市', '', '2', 'quanjia', 'zh-tw', 1000),
(5898, 0, '0', 1, '嘉義市', '', '3', 'quanjia', 'zh-tw', 1000),
(5899, 0, '0', 1, '嘉義縣', '', '4', 'quanjia', 'zh-tw', 1000),
(5900, 0, '0', 1, '金門縣', '', '5', 'quanjia', 'zh-tw', 1000),
(5901, 0, '0', 1, '苗栗縣', '', '6', 'quanjia', 'zh-tw', 1000),
(5902, 0, '0', 1, '南投縣', '', '7', 'quanjia', 'zh-tw', 1000),
(5903, 0, '0', 1, '澎湖縣', '', '8', 'quanjia', 'zh-tw', 1000),
(5904, 0, '0', 1, '屏東縣', '', '9', 'quanjia', 'zh-tw', 1000),
(5905, 0, '0', 1, '台北市', '', '10', 'quanjia', 'zh-tw', 1000),
(5906, 0, '0', 1, '台東縣', '', '11', 'quanjia', 'zh-tw', 1000),
(5907, 0, '0', 1, '台南市', '', '12', 'quanjia', 'zh-tw', 1000),
(5908, 0, '0', 1, '台中市', '', '13', 'quanjia', 'zh-tw', 1000),
(5909, 0, '0', 1, '桃園市', '', '14', 'quanjia', 'zh-tw', 1000),
(5910, 0, '0', 1, '桃園縣', '', '15', 'quanjia', 'zh-tw', 1000),
(5911, 0, '0', 1, '新北市', '', '16', 'quanjia', 'zh-tw', 1000),
(5912, 0, '0', 1, '新竹市', '', '17', 'quanjia', 'zh-tw', 1000),
(5913, 0, '0', 1, '新竹縣', '', '18', 'quanjia', 'zh-tw', 1000),
(5914, 0, '0', 1, '宜蘭縣', '', '19', 'quanjia', 'zh-tw', 1000),
(5915, 0, '0', 1, '雲林縣', '', '20', 'quanjia', 'zh-tw', 1000),
(5916, 0, '0', 1, '彰化縣', '', '21', 'quanjia', 'zh-tw', 1000),
(5917, 5895, '5895', 1, '阿蓮區', '', '0', 'quanjia', 'zh-tw', 1000),
(5918, 5895, '5895', 1, '大寮區', '', '1', 'quanjia', 'zh-tw', 1000),
(5919, 5895, '5895', 1, '大社區', '', '2', 'quanjia', 'zh-tw', 1000),
(5920, 5895, '5895', 1, '大樹區', '', '3', 'quanjia', 'zh-tw', 1000),
(5921, 5895, '5895', 1, '鳳山區', '', '4', 'quanjia', 'zh-tw', 1000),
(5922, 5895, '5895', 1, '岡山區', '', '5', 'quanjia', 'zh-tw', 1000),
(5923, 5895, '5895', 1, '鼓山區', '', '6', 'quanjia', 'zh-tw', 1000),
(5924, 5895, '5895', 1, '湖內區', '', '7', 'quanjia', 'zh-tw', 1000),
(5925, 5895, '5895', 1, '林園區', '', '8', 'quanjia', 'zh-tw', 1000),
(5926, 5895, '5895', 1, '苓雅區', '', '9', 'quanjia', 'zh-tw', 1000),
(5927, 5895, '5895', 1, '六龜區', '', '10', 'quanjia', 'zh-tw', 1000),
(5928, 5895, '5895', 1, '路竹區', '', '11', 'quanjia', 'zh-tw', 1000),
(5929, 5895, '5895', 1, '美濃區', '', '12', 'quanjia', 'zh-tw', 1000),
(5930, 5895, '5895', 1, '彌陀區', '', '13', 'quanjia', 'zh-tw', 1000),
(5931, 5895, '5895', 1, '楠梓加工出口區', '', '14', 'quanjia', 'zh-tw', 1000),
(5932, 5895, '5895', 1, '楠梓加工區', '', '15', 'quanjia', 'zh-tw', 1000),
(5933, 5895, '5895', 1, '楠梓區', '', '16', 'quanjia', 'zh-tw', 1000),
(5934, 5895, '5895', 1, '內門區', '', '17', 'quanjia', 'zh-tw', 1000),
(5935, 5895, '5895', 1, '鳥松區', '', '18', 'quanjia', 'zh-tw', 1000),
(5936, 5895, '5895', 1, '旗津區', '', '19', 'quanjia', 'zh-tw', 1000),
(5937, 5895, '5895', 1, '旗山區', '', '20', 'quanjia', 'zh-tw', 1000),
(5938, 5895, '5895', 1, '前金區', '', '21', 'quanjia', 'zh-tw', 1000),
(5939, 5895, '5895', 1, '前鎮區', '', '22', 'quanjia', 'zh-tw', 1000),
(5940, 5895, '5895', 1, '橋頭區', '', '23', 'quanjia', 'zh-tw', 1000),
(5941, 5895, '5895', 1, '茄萣區', '', '24', 'quanjia', 'zh-tw', 1000),
(5942, 5895, '5895', 1, '仁武區', '', '25', 'quanjia', 'zh-tw', 1000),
(5943, 5895, '5895', 1, '三民區', '', '26', 'quanjia', 'zh-tw', 1000),
(5944, 5895, '5895', 1, '杉林區', '', '27', 'quanjia', 'zh-tw', 1000),
(5945, 5895, '5895', 1, '小港區', '', '28', 'quanjia', 'zh-tw', 1000),
(5946, 5895, '5895', 1, '新興區', '', '29', 'quanjia', 'zh-tw', 1000),
(5947, 5895, '5895', 1, '鹽埕區', '', '30', 'quanjia', 'zh-tw', 1000),
(5948, 5895, '5895', 1, '燕巢區', '', '31', 'quanjia', 'zh-tw', 1000),
(5949, 5895, '5895', 1, '永安區', '', '32', 'quanjia', 'zh-tw', 1000),
(5950, 5895, '5895', 1, '梓官區', '', '33', 'quanjia', 'zh-tw', 1000),
(5951, 5895, '5895', 1, '左營區', '', '34', 'quanjia', 'zh-tw', 1000),
(5952, 5896, '5896', 1, '光復鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(5953, 5896, '5896', 1, '花蓮市', '', '1', 'quanjia', 'zh-tw', 1000),
(5954, 5896, '5896', 1, '吉安鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(5955, 5896, '5896', 1, '瑞穗鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(5956, 5896, '5896', 1, '壽豐鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(5957, 5896, '5896', 1, '新城鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(5958, 5896, '5896', 1, '秀林鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(5959, 5896, '5896', 1, '玉里鎮', '', '7', 'quanjia', 'zh-tw', 1000),
(5960, 5897, '5897', 1, '安樂區', '', '0', 'quanjia', 'zh-tw', 1000),
(5961, 5897, '5897', 1, '暖暖區', '', '1', 'quanjia', 'zh-tw', 1000),
(5962, 5897, '5897', 1, '七堵區', '', '2', 'quanjia', 'zh-tw', 1000),
(5963, 5897, '5897', 1, '仁愛區', '', '3', 'quanjia', 'zh-tw', 1000),
(5964, 5897, '5897', 1, '信義區', '', '4', 'quanjia', 'zh-tw', 1000),
(5965, 5897, '5897', 1, '中山區', '', '5', 'quanjia', 'zh-tw', 1000),
(5966, 5897, '5897', 1, '中正區', '', '6', 'quanjia', 'zh-tw', 1000),
(5967, 5898, '5898', 1, '東區', '', '0', 'quanjia', 'zh-tw', 1000),
(5968, 5898, '5898', 1, '西區', '', '1', 'quanjia', 'zh-tw', 1000),
(5969, 5899, '5899', 1, '布袋鎮', '', '0', 'quanjia', 'zh-tw', 1000),
(5970, 5899, '5899', 1, '大林鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(5971, 5899, '5899', 1, '東石鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(5972, 5899, '5899', 1, '番路鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(5973, 5899, '5899', 1, '六腳鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(5974, 5899, '5899', 1, '鹿草鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(5975, 5899, '5899', 1, '梅山鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(5976, 5899, '5899', 1, '民雄鄉', '', '7', 'quanjia', 'zh-tw', 1000),
(5977, 5899, '5899', 1, '朴子市', '', '8', 'quanjia', 'zh-tw', 1000),
(5978, 5899, '5899', 1, '水上鄉', '', '9', 'quanjia', 'zh-tw', 1000),
(5979, 5899, '5899', 1, '太保市', '', '10', 'quanjia', 'zh-tw', 1000),
(5980, 5899, '5899', 1, '新港鄉', '', '11', 'quanjia', 'zh-tw', 1000),
(5981, 5899, '5899', 1, '中埔鄉', '', '12', 'quanjia', 'zh-tw', 1000),
(5982, 5899, '5899', 1, '竹崎鄉', '', '13', 'quanjia', 'zh-tw', 1000),
(5983, 5900, '5900', 1, '金城鎮', '', '0', 'quanjia', 'zh-tw', 1000),
(5984, 5900, '5900', 1, '金湖鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(5985, 5900, '5900', 1, '金寧鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(5986, 5901, '5901', 1, '大湖鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(5987, 5901, '5901', 1, '公館鄉', '', '1', 'quanjia', 'zh-tw', 1000),
(5988, 5901, '5901', 1, '後龍鎮', '', '2', 'quanjia', 'zh-tw', 1000),
(5989, 5901, '5901', 1, '苗栗市', '', '3', 'quanjia', 'zh-tw', 1000),
(5990, 5901, '5901', 1, '南庄鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(5991, 5901, '5901', 1, '三義鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(5992, 5901, '5901', 1, '獅潭鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(5993, 5901, '5901', 1, '通霄鎮', '', '7', 'quanjia', 'zh-tw', 1000),
(5994, 5901, '5901', 1, '銅鑼鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(5995, 5901, '5901', 1, '頭份市', '', '9', 'quanjia', 'zh-tw', 1000),
(5996, 5901, '5901', 1, '頭屋鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(5997, 5901, '5901', 1, '苑裡鎮', '', '11', 'quanjia', 'zh-tw', 1000),
(5998, 5901, '5901', 1, '造橋鄉', '', '12', 'quanjia', 'zh-tw', 1000),
(5999, 5901, '5901', 1, '竹南鎮', '', '13', 'quanjia', 'zh-tw', 1000),
(6000, 5901, '5901', 1, '卓蘭鎮', '', '14', 'quanjia', 'zh-tw', 1000),
(6001, 5902, '5902', 1, '草屯鎮', '', '0', 'quanjia', 'zh-tw', 1000),
(6002, 5902, '5902', 1, '國姓鄉', '', '1', 'quanjia', 'zh-tw', 1000),
(6003, 5902, '5902', 1, '集集鎮', '', '2', 'quanjia', 'zh-tw', 1000),
(6004, 5902, '5902', 1, '鹿谷鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(6005, 5902, '5902', 1, '名間鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6006, 5902, '5902', 1, '南投市', '', '5', 'quanjia', 'zh-tw', 1000),
(6007, 5902, '5902', 1, '埔里鎮', '', '6', 'quanjia', 'zh-tw', 1000),
(6008, 5902, '5902', 1, '仁愛鄉', '', '7', 'quanjia', 'zh-tw', 1000),
(6009, 5902, '5902', 1, '魚池鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(6010, 5902, '5902', 1, '中寮鄉', '', '9', 'quanjia', 'zh-tw', 1000),
(6011, 5902, '5902', 1, '竹山鎮', '', '10', 'quanjia', 'zh-tw', 1000),
(6012, 5903, '5903', 1, '湖西鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6013, 5903, '5903', 1, '馬公市', '', '1', 'quanjia', 'zh-tw', 1000),
(6014, 5903, '5903', 1, '西嶼鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6015, 5904, '5904', 1, '長治鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6016, 5904, '5904', 1, '潮州鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(6017, 5904, '5904', 1, '車城鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6018, 5904, '5904', 1, '東港鎮', '', '3', 'quanjia', 'zh-tw', 1000),
(6019, 5904, '5904', 1, '枋寮鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6020, 5904, '5904', 1, '枋山鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(6021, 5904, '5904', 1, '高樹鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(6022, 5904, '5904', 1, '恆春鎮', '', '7', 'quanjia', 'zh-tw', 1000),
(6023, 5904, '5904', 1, '佳冬鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(6024, 5904, '5904', 1, '九如鄉', '', '9', 'quanjia', 'zh-tw', 1000),
(6025, 5904, '5904', 1, '崁頂鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(6026, 5904, '5904', 1, '里港鄉', '', '11', 'quanjia', 'zh-tw', 1000),
(6027, 5904, '5904', 1, '林邊鄉', '', '12', 'quanjia', 'zh-tw', 1000),
(6028, 5904, '5904', 1, '麟洛鄉', '', '13', 'quanjia', 'zh-tw', 1000),
(6029, 5904, '5904', 1, '南州鄉', '', '14', 'quanjia', 'zh-tw', 1000),
(6030, 5904, '5904', 1, '內埔鄉', '', '15', 'quanjia', 'zh-tw', 1000),
(6031, 5904, '5904', 1, '屏東市', '', '16', 'quanjia', 'zh-tw', 1000),
(6032, 5904, '5904', 1, '獅子鄉', '', '17', 'quanjia', 'zh-tw', 1000),
(6033, 5904, '5904', 1, '萬丹鄉', '', '18', 'quanjia', 'zh-tw', 1000),
(6034, 5904, '5904', 1, '萬巒鄉', '', '19', 'quanjia', 'zh-tw', 1000),
(6035, 5904, '5904', 1, '新埤鄉', '', '20', 'quanjia', 'zh-tw', 1000),
(6036, 5904, '5904', 1, '新園鄉', '', '21', 'quanjia', 'zh-tw', 1000),
(6037, 5904, '5904', 1, '鹽埔鄉', '', '22', 'quanjia', 'zh-tw', 1000),
(6038, 5904, '5904', 1, '竹田鄉', '', '23', 'quanjia', 'zh-tw', 1000),
(6039, 5905, '5905', 1, '北投區', '', '0', 'quanjia', 'zh-tw', 1000),
(6040, 5905, '5905', 1, '大安區', '', '1', 'quanjia', 'zh-tw', 1000),
(6041, 5905, '5905', 1, '大同區', '', '2', 'quanjia', 'zh-tw', 1000),
(6042, 5905, '5905', 1, '南港區', '', '3', 'quanjia', 'zh-tw', 1000),
(6043, 5905, '5905', 1, '內湖區', '', '4', 'quanjia', 'zh-tw', 1000),
(6044, 5905, '5905', 1, '士林區', '', '5', 'quanjia', 'zh-tw', 1000),
(6045, 5905, '5905', 1, '松山區', '', '6', 'quanjia', 'zh-tw', 1000),
(6046, 5905, '5905', 1, '萬華區', '', '7', 'quanjia', 'zh-tw', 1000),
(6047, 5905, '5905', 1, '文山區', '', '8', 'quanjia', 'zh-tw', 1000),
(6048, 5905, '5905', 1, '信義區', '', '9', 'quanjia', 'zh-tw', 1000),
(6049, 5905, '5905', 1, '中山區', '', '10', 'quanjia', 'zh-tw', 1000),
(6050, 5905, '5905', 1, '中正區', '', '11', 'quanjia', 'zh-tw', 1000),
(6051, 5906, '5906', 1, '卑南鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6052, 5906, '5906', 1, '成功鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(6053, 5906, '5906', 1, '池上鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6054, 5906, '5906', 1, '達仁鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(6055, 5906, '5906', 1, '大武鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6056, 5906, '5906', 1, '東河鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(6057, 5906, '5906', 1, '關山鎮', '', '6', 'quanjia', 'zh-tw', 1000),
(6058, 5906, '5906', 1, '鹿野鄉', '', '7', 'quanjia', 'zh-tw', 1000),
(6059, 5906, '5906', 1, '綠島鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(6060, 5906, '5906', 1, '台東市', '', '9', 'quanjia', 'zh-tw', 1000),
(6061, 5906, '5906', 1, '太麻里鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(6062, 5907, '5907', 1, '安定區', '', '0', 'quanjia', 'zh-tw', 1000),
(6063, 5907, '5907', 1, '安南區', '', '1', 'quanjia', 'zh-tw', 1000),
(6064, 5907, '5907', 1, '安平區', '', '2', 'quanjia', 'zh-tw', 1000),
(6065, 5907, '5907', 1, '白河區', '', '3', 'quanjia', 'zh-tw', 1000),
(6066, 5907, '5907', 1, '北區', '', '4', 'quanjia', 'zh-tw', 1000),
(6067, 5907, '5907', 1, '東區', '', '5', 'quanjia', 'zh-tw', 1000),
(6068, 5907, '5907', 1, '官田區', '', '6', 'quanjia', 'zh-tw', 1000),
(6069, 5907, '5907', 1, '關廟區', '', '7', 'quanjia', 'zh-tw', 1000),
(6070, 5907, '5907', 1, '歸仁區', '', '8', 'quanjia', 'zh-tw', 1000),
(6071, 5907, '5907', 1, '後壁區', '', '9', 'quanjia', 'zh-tw', 1000),
(6072, 5907, '5907', 1, '佳里區', '', '10', 'quanjia', 'zh-tw', 1000),
(6073, 5907, '5907', 1, '將軍區', '', '11', 'quanjia', 'zh-tw', 1000),
(6074, 5907, '5907', 1, '柳營區', '', '12', 'quanjia', 'zh-tw', 1000),
(6075, 5907, '5907', 1, '六甲區', '', '13', 'quanjia', 'zh-tw', 1000),
(6076, 5907, '5907', 1, '麻豆區', '', '14', 'quanjia', 'zh-tw', 1000),
(6077, 5907, '5907', 1, '南區', '', '15', 'quanjia', 'zh-tw', 1000),
(6078, 5907, '5907', 1, '仁德區', '', '16', 'quanjia', 'zh-tw', 1000),
(6079, 5907, '5907', 1, '善化區', '', '17', 'quanjia', 'zh-tw', 1000),
(6080, 5907, '5907', 1, '西港區', '', '18', 'quanjia', 'zh-tw', 1000),
(6081, 5907, '5907', 1, '下營區', '', '19', 'quanjia', 'zh-tw', 1000),
(6082, 5907, '5907', 1, '新化區', '', '20', 'quanjia', 'zh-tw', 1000),
(6083, 5907, '5907', 1, '新市區', '', '21', 'quanjia', 'zh-tw', 1000),
(6084, 5907, '5907', 1, '新營區', '', '22', 'quanjia', 'zh-tw', 1000),
(6085, 5907, '5907', 1, '學甲區', '', '23', 'quanjia', 'zh-tw', 1000),
(6086, 5907, '5907', 1, '鹽水區', '', '24', 'quanjia', 'zh-tw', 1000),
(6087, 5907, '5907', 1, '永康區', '', '25', 'quanjia', 'zh-tw', 1000),
(6088, 5907, '5907', 1, '玉井區', '', '26', 'quanjia', 'zh-tw', 1000),
(6089, 5907, '5907', 1, '中西區', '', '27', 'quanjia', 'zh-tw', 1000),
(6090, 5908, '5908', 1, '北區', '', '0', 'quanjia', 'zh-tw', 1000),
(6091, 5908, '5908', 1, '北屯區', '', '1', 'quanjia', 'zh-tw', 1000),
(6092, 5908, '5908', 1, '大安區', '', '2', 'quanjia', 'zh-tw', 1000),
(6093, 5908, '5908', 1, '大肚區', '', '3', 'quanjia', 'zh-tw', 1000),
(6094, 5908, '5908', 1, '大甲區', '', '4', 'quanjia', 'zh-tw', 1000),
(6095, 5908, '5908', 1, '大里區', '', '5', 'quanjia', 'zh-tw', 1000),
(6096, 5908, '5908', 1, '大雅區', '', '6', 'quanjia', 'zh-tw', 1000),
(6097, 5908, '5908', 1, '東區', '', '7', 'quanjia', 'zh-tw', 1000),
(6098, 5908, '5908', 1, '東勢區', '', '8', 'quanjia', 'zh-tw', 1000),
(6099, 5908, '5908', 1, '豐原區', '', '9', 'quanjia', 'zh-tw', 1000),
(6100, 5908, '5908', 1, '和平區', '', '10', 'quanjia', 'zh-tw', 1000),
(6101, 5908, '5908', 1, '后里區', '', '11', 'quanjia', 'zh-tw', 1000),
(6102, 5908, '5908', 1, '龍井區', '', '12', 'quanjia', 'zh-tw', 1000),
(6103, 5908, '5908', 1, '南區', '', '13', 'quanjia', 'zh-tw', 1000),
(6104, 5908, '5908', 1, '南屯區', '', '14', 'quanjia', 'zh-tw', 1000),
(6105, 5908, '5908', 1, '清水區', '', '15', 'quanjia', 'zh-tw', 1000),
(6106, 5908, '5908', 1, '沙鹿區', '', '16', 'quanjia', 'zh-tw', 1000),
(6107, 5908, '5908', 1, '神岡區', '', '17', 'quanjia', 'zh-tw', 1000),
(6108, 5908, '5908', 1, '石岡區', '', '18', 'quanjia', 'zh-tw', 1000),
(6109, 5908, '5908', 1, '太平區', '', '19', 'quanjia', 'zh-tw', 1000),
(6110, 5908, '5908', 1, '潭子區', '', '20', 'quanjia', 'zh-tw', 1000),
(6111, 5908, '5908', 1, '外埔區', '', '21', 'quanjia', 'zh-tw', 1000),
(6112, 5908, '5908', 1, '烏日區', '', '22', 'quanjia', 'zh-tw', 1000),
(6113, 5908, '5908', 1, '梧棲區', '', '23', 'quanjia', 'zh-tw', 1000),
(6114, 5908, '5908', 1, '霧峰區', '', '24', 'quanjia', 'zh-tw', 1000),
(6115, 5908, '5908', 1, '西區', '', '25', 'quanjia', 'zh-tw', 1000),
(6116, 5908, '5908', 1, '西屯區', '', '26', 'quanjia', 'zh-tw', 1000),
(6117, 5908, '5908', 1, '新社區', '', '27', 'quanjia', 'zh-tw', 1000),
(6118, 5908, '5908', 1, '中區', '', '28', 'quanjia', 'zh-tw', 1000),
(6119, 5909, '5909', 1, '八德區', '', '0', 'quanjia', 'zh-tw', 1000),
(6120, 5909, '5909', 1, '大溪區', '', '1', 'quanjia', 'zh-tw', 1000),
(6121, 5909, '5909', 1, '大園區', '', '2', 'quanjia', 'zh-tw', 1000),
(6122, 5909, '5909', 1, '觀音區', '', '3', 'quanjia', 'zh-tw', 1000),
(6123, 5909, '5909', 1, '龜山區', '', '4', 'quanjia', 'zh-tw', 1000),
(6124, 5909, '5909', 1, '龍潭區', '', '5', 'quanjia', 'zh-tw', 1000),
(6125, 5909, '5909', 1, '蘆竹區', '', '6', 'quanjia', 'zh-tw', 1000),
(6126, 5909, '5909', 1, '平鎮區', '', '7', 'quanjia', 'zh-tw', 1000),
(6127, 5909, '5909', 1, '桃園區', '', '8', 'quanjia', 'zh-tw', 1000),
(6128, 5909, '5909', 1, '新屋區', '', '9', 'quanjia', 'zh-tw', 1000),
(6129, 5909, '5909', 1, '楊梅區', '', '10', 'quanjia', 'zh-tw', 1000),
(6130, 5909, '5909', 1, '中壢區', '', '11', 'quanjia', 'zh-tw', 1000),
(6131, 5910, '5910', 1, '中壢市', '', '0', 'quanjia', 'zh-tw', 1000),
(6132, 5911, '5911', 1, '八里區', '', '0', 'quanjia', 'zh-tw', 1000),
(6133, 5911, '5911', 1, '板橋區', '', '1', 'quanjia', 'zh-tw', 1000),
(6134, 5911, '5911', 1, '淡水區', '', '2', 'quanjia', 'zh-tw', 1000),
(6135, 5911, '5911', 1, '貢寮區', '', '3', 'quanjia', 'zh-tw', 1000),
(6136, 5911, '5911', 1, '金山區', '', '4', 'quanjia', 'zh-tw', 1000),
(6137, 5911, '5911', 1, '林口區', '', '5', 'quanjia', 'zh-tw', 1000),
(6138, 5911, '5911', 1, '蘆洲區', '', '6', 'quanjia', 'zh-tw', 1000),
(6139, 5911, '5911', 1, '平溪區', '', '7', 'quanjia', 'zh-tw', 1000),
(6140, 5911, '5911', 1, '坪林區', '', '8', 'quanjia', 'zh-tw', 1000),
(6141, 5911, '5911', 1, '瑞芳區', '', '9', 'quanjia', 'zh-tw', 1000),
(6142, 5911, '5911', 1, '三峽區', '', '10', 'quanjia', 'zh-tw', 1000),
(6143, 5911, '5911', 1, '三芝區', '', '11', 'quanjia', 'zh-tw', 1000),
(6144, 5911, '5911', 1, '三重區', '', '12', 'quanjia', 'zh-tw', 1000),
(6145, 5911, '5911', 1, '深坑區', '', '13', 'quanjia', 'zh-tw', 1000),
(6146, 5911, '5911', 1, '石碇區', '', '14', 'quanjia', 'zh-tw', 1000),
(6147, 5911, '5911', 1, '石門區', '', '15', 'quanjia', 'zh-tw', 1000),
(6148, 5911, '5911', 1, '樹林區', '', '16', 'quanjia', 'zh-tw', 1000),
(6149, 5911, '5911', 1, '泰山區', '', '17', 'quanjia', 'zh-tw', 1000),
(6150, 5911, '5911', 1, '土城區', '', '18', 'quanjia', 'zh-tw', 1000),
(6151, 5911, '5911', 1, '萬里區', '', '19', 'quanjia', 'zh-tw', 1000),
(6152, 5911, '5911', 1, '烏來區', '', '20', 'quanjia', 'zh-tw', 1000),
(6153, 5911, '5911', 1, '五股區', '', '21', 'quanjia', 'zh-tw', 1000),
(6154, 5911, '5911', 1, '汐止區', '', '22', 'quanjia', 'zh-tw', 1000),
(6155, 5911, '5911', 1, '新店區', '', '23', 'quanjia', 'zh-tw', 1000),
(6156, 5911, '5911', 1, '新莊區', '', '24', 'quanjia', 'zh-tw', 1000),
(6157, 5911, '5911', 1, '鶯歌區', '', '25', 'quanjia', 'zh-tw', 1000),
(6158, 5911, '5911', 1, '永和區', '', '26', 'quanjia', 'zh-tw', 1000),
(6159, 5911, '5911', 1, '中和區', '', '27', 'quanjia', 'zh-tw', 1000),
(6160, 5912, '5912', 1, '北區', '', '0', 'quanjia', 'zh-tw', 1000),
(6161, 5912, '5912', 1, '東區', '', '1', 'quanjia', 'zh-tw', 1000),
(6162, 5912, '5912', 1, '香山區', '', '2', 'quanjia', 'zh-tw', 1000),
(6163, 5913, '5913', 1, '峨眉鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6164, 5913, '5913', 1, '關西鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(6165, 5913, '5913', 1, '橫山鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6166, 5913, '5913', 1, '湖口鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(6167, 5913, '5913', 1, '新豐鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6168, 5913, '5913', 1, '新埔鎮', '', '5', 'quanjia', 'zh-tw', 1000),
(6169, 5913, '5913', 1, '芎林鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(6170, 5913, '5913', 1, '竹北市', '', '7', 'quanjia', 'zh-tw', 1000),
(6171, 5913, '5913', 1, '竹東鎮', '', '8', 'quanjia', 'zh-tw', 1000),
(6172, 5914, '5914', 1, '大同鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6173, 5914, '5914', 1, '冬山鄉', '', '1', 'quanjia', 'zh-tw', 1000),
(6174, 5914, '5914', 1, '礁溪鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6175, 5914, '5914', 1, '羅東鎮', '', '3', 'quanjia', 'zh-tw', 1000),
(6176, 5914, '5914', 1, '南澳鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6177, 5914, '5914', 1, '三星鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(6178, 5914, '5914', 1, '蘇澳鎮', '', '6', 'quanjia', 'zh-tw', 1000),
(6179, 5914, '5914', 1, '頭城鎮', '', '7', 'quanjia', 'zh-tw', 1000),
(6180, 5914, '5914', 1, '五結鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(6181, 5914, '5914', 1, '宜蘭市', '', '9', 'quanjia', 'zh-tw', 1000),
(6182, 5914, '5914', 1, '員山鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(6183, 5914, '5914', 1, '壯圍鄉', '', '11', 'quanjia', 'zh-tw', 1000),
(6184, 5915, '5915', 1, '褒忠鄉', '', '0', 'quanjia', 'zh-tw', 1000),
(6185, 5915, '5915', 1, '北港鎮', '', '1', 'quanjia', 'zh-tw', 1000),
(6186, 5915, '5915', 1, '莿桐鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6187, 5915, '5915', 1, '東勢鄉', '', '3', 'quanjia', 'zh-tw', 1000),
(6188, 5915, '5915', 1, '斗六市', '', '4', 'quanjia', 'zh-tw', 1000),
(6189, 5915, '5915', 1, '斗南鎮', '', '5', 'quanjia', 'zh-tw', 1000),
(6190, 5915, '5915', 1, '二崙鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(6191, 5915, '5915', 1, '古坑鄉', '', '7', 'quanjia', 'zh-tw', 1000),
(6192, 5915, '5915', 1, '虎尾鎮', '', '8', 'quanjia', 'zh-tw', 1000),
(6193, 5915, '5915', 1, '口湖鄉', '', '9', 'quanjia', 'zh-tw', 1000),
(6194, 5915, '5915', 1, '林內鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(6195, 5915, '5915', 1, '崙背鄉', '', '11', 'quanjia', 'zh-tw', 1000),
(6196, 5915, '5915', 1, '麥寮鄉', '', '12', 'quanjia', 'zh-tw', 1000),
(6197, 5915, '5915', 1, '水林鄉', '', '13', 'quanjia', 'zh-tw', 1000),
(6198, 5915, '5915', 1, '台西鄉', '', '14', 'quanjia', 'zh-tw', 1000),
(6199, 5915, '5915', 1, '土庫鎮', '', '15', 'quanjia', 'zh-tw', 1000),
(6200, 5915, '5915', 1, '西螺鎮', '', '16', 'quanjia', 'zh-tw', 1000),
(6201, 5915, '5915', 1, '元長鄉', '', '17', 'quanjia', 'zh-tw', 1000),
(6202, 5916, '5916', 1, '北斗鎮', '', '0', 'quanjia', 'zh-tw', 1000),
(6203, 5916, '5916', 1, '大城鄉', '', '1', 'quanjia', 'zh-tw', 1000),
(6204, 5916, '5916', 1, '大村鄉', '', '2', 'quanjia', 'zh-tw', 1000),
(6205, 5916, '5916', 1, '二林鎮', '', '3', 'quanjia', 'zh-tw', 1000),
(6206, 5916, '5916', 1, '芳苑鄉', '', '4', 'quanjia', 'zh-tw', 1000),
(6207, 5916, '5916', 1, '芬園鄉', '', '5', 'quanjia', 'zh-tw', 1000),
(6208, 5916, '5916', 1, '福興鄉', '', '6', 'quanjia', 'zh-tw', 1000),
(6209, 5916, '5916', 1, '和美鎮', '', '7', 'quanjia', 'zh-tw', 1000),
(6210, 5916, '5916', 1, '花壇鄉', '', '8', 'quanjia', 'zh-tw', 1000),
(6211, 5916, '5916', 1, '鹿港鎮', '', '9', 'quanjia', 'zh-tw', 1000),
(6212, 5916, '5916', 1, '埤頭鄉', '', '10', 'quanjia', 'zh-tw', 1000),
(6213, 5916, '5916', 1, '埔心鄉', '', '11', 'quanjia', 'zh-tw', 1000),
(6214, 5916, '5916', 1, '埔鹽鄉', '', '12', 'quanjia', 'zh-tw', 1000),
(6215, 5916, '5916', 1, '社頭鄉', '', '13', 'quanjia', 'zh-tw', 1000),
(6216, 5916, '5916', 1, '伸港鄉', '', '14', 'quanjia', 'zh-tw', 1000),
(6217, 5916, '5916', 1, '田尾鄉', '', '15', 'quanjia', 'zh-tw', 1000),
(6218, 5916, '5916', 1, '田中鎮', '', '16', 'quanjia', 'zh-tw', 1000),
(6219, 5916, '5916', 1, '溪湖鎮', '', '17', 'quanjia', 'zh-tw', 1000),
(6220, 5916, '5916', 1, '溪州鄉', '', '18', 'quanjia', 'zh-tw', 1000),
(6221, 5916, '5916', 1, '線西鄉', '', '19', 'quanjia', 'zh-tw', 1000),
(6222, 5916, '5916', 1, '秀水鄉', '', '20', 'quanjia', 'zh-tw', 1000),
(6223, 5916, '5916', 1, '永靖鄉', '', '21', 'quanjia', 'zh-tw', 1000),
(6224, 5916, '5916', 1, '員林市', '', '22', 'quanjia', 'zh-tw', 1000),
(6225, 5916, '5916', 1, '彰化市', '', '23', 'quanjia', 'zh-tw', 1000),
(6226, 5917, '5895-5917', 1, '阿蓮忠孝店', '{"number":"015677","shop":"\\u963f\\u84ee\\u5fe0\\u5b5d\\u5e97","phone":"076311535","address":"\\u5fe0\\u5b5d\\u8def\\uff12\\uff13\\uff12\\u865f\\u3002\\uff12\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '015677', 'quanjia', 'zh-tw', 1000),
(6227, 5918, '5895-5918', 1, '大發中庄店', '{"number":"015306","shop":"\\u5927\\u767c\\u4e2d\\u5e84\\u5e97","phone":"077031937","address":"\\u516b\\u5fb7\\u8def\\uff13\\uff12\\u865f"}', '015306', 'quanjia', 'zh-tw', 1000),
(6228, 5918, '5895-5918', 1, '大發開封店', '{"number":"017118","shop":"\\u5927\\u767c\\u958b\\u5c01\\u5e97","phone":"077888382","address":"\\u5927\\u5bee\\u91cc\\u5927\\u5bee\\u8def\\uff16\\uff13\\uff10\\u865f\\uff16\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '017118', 'quanjia', 'zh-tw', 1000),
(6229, 5918, '5895-5918', 1, '大發新發店', '{"number":"017492","shop":"\\u5927\\u767c\\u65b0\\u767c\\u5e97","phone":"077835368","address":"\\u9cf3\\u6797\\u4e09\\u8def\\uff14\\uff10\\uff15\\u865f"}', '017492', 'quanjia', 'zh-tw', 1000),
(6230, 5918, '5895-5918', 1, '大發江山店', '{"number":"017861","shop":"\\u5927\\u767c\\u6c5f\\u5c71\\u5e97","phone":"077019527","address":"\\u9cf3\\u5c4f\\u4e8c\\u8def\\uff14\\uff16\\u865f"}', '017861', 'quanjia', 'zh-tw', 1000),
(6231, 5918, '5895-5918', 1, '大發輔大二店', '{"number":"014370","shop":"\\u5927\\u767c\\u8f14\\u5927\\u4e8c\\u5e97","phone":"077826753","address":"\\u9032\\u5b78\\u8def\\uff11\\uff15\\uff11\\u865f"}', '014370', 'quanjia', 'zh-tw', 1000),
(6232, 5918, '5895-5918', 1, '大發仁愛店', '{"number":"014480","shop":"\\u5927\\u767c\\u4ec1\\u611b\\u5e97","phone":"077012590","address":"\\u4ec1\\u611b\\u8def\\uff12\\uff12\\u865f"}', '014480', 'quanjia', 'zh-tw', 1000),
(6233, 5918, '5895-5918', 1, '大發輔大店', '{"number":"014761","shop":"\\u5927\\u767c\\u8f14\\u5927\\u5e97","phone":"077833608","address":"\\u6c38\\u82b3\\u91cc\\u9032\\u5b78\\u8def\\uff11\\uff15\\uff11\\u865f"}', '014761', 'quanjia', 'zh-tw', 1000),
(6234, 5918, '5895-5918', 1, '大發萬翁店', '{"number":"017298","shop":"\\u5927\\u767c\\u842c\\u7fc1\\u5e97","phone":"077832602","address":"\\u6c38\\u82b3\\u91cc\\u842c\\u4e39\\u8def\\uff15\\uff14\\uff15\\u865f"}', '017298', 'quanjia', 'zh-tw', 1000),
(6235, 5919, '5895-5919', 1, '大社萬津店', '{"number":"018257","shop":"\\u5927\\u793e\\u842c\\u6d25\\u5e97","phone":"073536737","address":"\\u842c\\u91d1\\u8def\\u516b\\u865f\\u4e00\\u6a13"}', '018257', 'quanjia', 'zh-tw', 1000),
(6236, 5919, '5895-5919', 1, '大社翠屏店', '{"number":"016110","shop":"\\u5927\\u793e\\u7fe0\\u5c4f\\u5e97","phone":"073551977","address":"\\u4e2d\\u5c71\\u8def\\uff13\\uff15\\uff10\\u865f"}', '016110', 'quanjia', 'zh-tw', 1000),
(6237, 5920, '5895-5920', 1, '大樹義邦店', '{"number":"013802","shop":"\\u5927\\u6a39\\u7fa9\\u90a6\\u5e97","phone":"076568082","address":"\\u4e09\\u548c\\u91cc\\u5b78\\u57ce\\u8def\\uff11\\u6bb5\\uff11\\uff12\\u865f\\uff23\\uff13\\uff26\\uff10\\uff18"}', '013802', 'quanjia', 'zh-tw', 1000),
(6238, 5920, '5895-5920', 1, '大樹鳳荔店', '{"number":"017806","shop":"\\u5927\\u6a39\\u9cf3\\u8354\\u5e97","phone":"076520498","address":"\\u5be6\\u8e10\\u8def\\uff16\\uff11\\u865f\\uff08\\u4e00\\u4e8c\\u4e09\\u56db\\u9593\\uff09"}', '017806', 'quanjia', 'zh-tw', 1000),
(6239, 5920, '5895-5920', 1, '大樹水興店', '{"number":"016017","shop":"\\u5927\\u6a39\\u6c34\\u8208\\u5e97","phone":"076526780","address":"\\u6c34\\u5bee\\u91cc\\u4e2d\\u5c71\\u8def\\uff11\\uff17\\uff14\\u865f"}', '016017', 'quanjia', 'zh-tw', 1000),
(6240, 5920, '5895-5920', 1, '大樹義城店', '{"number":"013801","shop":"\\u5927\\u6a39\\u7fa9\\u57ce\\u5e97","phone":"076568076","address":"\\u5b78\\u57ce\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\u865f\\uff08\\u5546\\u5e97\\u8857\\uff11\\uff12\\uff0c\\uff11\\uff13\\u865f\\uff09"}', '013801', 'quanjia', 'zh-tw', 1000),
(6241, 5920, '5895-5920', 1, '大樹義大一店', '{"number":"016487","shop":"\\u5927\\u6a39\\u7fa9\\u5927\\u4e00\\u5e97","phone":"076578913","address":"\\u5b78\\u57ce\\u8def\\u4e00\\u6bb5\\uff11\\u865f\\uff08\\u5b78\\u751f\\u6d3b\\u52d5\\u4e2d\\u5fc3\\uff09"}', '016487', 'quanjia', 'zh-tw', 1000),
(6242, 5920, '5895-5920', 1, '大樹義大二店', '{"number":"016489","shop":"\\u5927\\u6a39\\u7fa9\\u5927\\u4e8c\\u5e97","phone":"076577938","address":"\\u5b78\\u57ce\\u8def\\u4e00\\u6bb5\\uff18\\u5df7\\uff12\\u865f\\u5730\\u4e0b\\uff11\\u6a13"}', '016489', 'quanjia', 'zh-tw', 1000),
(6243, 5921, '5895-5921', 1, '鳳山濱山店', '{"number":"018866","shop":"\\u9cf3\\u5c71\\u6ff1\\u5c71\\u5e97","phone":"077779419","address":"\\u6ff1\\u5c71\\u8857\\uff11\\uff15\\u5df7\\uff12\\u865f"}', '018866', 'quanjia', 'zh-tw', 1000),
(6244, 5921, '5895-5921', 1, '鳳山誠義店', '{"number":"011945","shop":"\\u9cf3\\u5c71\\u8aa0\\u7fa9\\u5e97","phone":"077406564","address":"\\u8aa0\\u7fa9\\u8def\\uff11\\uff11\\uff19\\u865f"}', '011945', 'quanjia', 'zh-tw', 1000),
(6245, 5921, '5895-5921', 1, '鳳山鎮北店', '{"number":"018471","shop":"\\u9cf3\\u5c71\\u93ae\\u5317\\u5e97","phone":"077337069","address":"\\u9cf3\\u5317\\u8def\\uff16\\uff13\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '018471', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(6246, 5921, '5895-5921', 1, '鳳山鳳庄店', '{"number":"018826","shop":"\\u9cf3\\u5c71\\u9cf3\\u5e84\\u5e97","phone":"077918768","address":"\\u9cf3\\u9802\\u8def\\uff11\\uff18\\uff11\\u865f"}', '018826', 'quanjia', 'zh-tw', 1000),
(6247, 5921, '5895-5921', 1, '鳳山鳳彥店', '{"number":"018201","shop":"\\u9cf3\\u5c71\\u9cf3\\u5f65\\u5e97","phone":"077926356","address":"\\u9cf3\\u7532\\u8def\\uff14\\uff11\\uff18\\u865f"}', '018201', 'quanjia', 'zh-tw', 1000),
(6248, 5921, '5895-5921', 1, '鳳山老爺店', '{"number":"016486","shop":"\\u9cf3\\u5c71\\u8001\\u723a\\u5e97","phone":"077170515","address":"\\u9cf3\\u5357\\u8def\\uff11\\uff19\\u865f"}', '016486', 'quanjia', 'zh-tw', 1000),
(6249, 5921, '5895-5921', 1, '鳳山聖王店', '{"number":"015982","shop":"\\u9cf3\\u5c71\\u8056\\u738b\\u5e97","phone":"077191152","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\uff15\\uff12\\u865f\\u4e00\\u6a13"}', '015982', 'quanjia', 'zh-tw', 1000),
(6250, 5921, '5895-5921', 1, '鳳山興仁店', '{"number":"016211","shop":"\\u9cf3\\u5c71\\u8208\\u4ec1\\u5e97","phone":"077194539","address":"\\u5149\\u83ef\\u8def\\uff16\\uff17\\u865f"}', '016211', 'quanjia', 'zh-tw', 1000),
(6251, 5921, '5895-5921', 1, '鳳山興昌店', '{"number":"018722","shop":"\\u9cf3\\u5c71\\u8208\\u660c\\u5e97","phone":"077455277","address":"\\u570b\\u5149\\u8def\\uff15\\uff10\\u865f"}', '018722', 'quanjia', 'zh-tw', 1000),
(6252, 5921, '5895-5921', 1, '鳳山頂庄店', '{"number":"013743","shop":"\\u9cf3\\u5c71\\u9802\\u5e84\\u5e97","phone":"077925213","address":"\\u904e\\u52c7\\u8def\\uff11\\uff11\\uff11\\u865f"}', '013743', 'quanjia', 'zh-tw', 1000),
(6253, 5921, '5895-5921', 1, '鳳山海洋店', '{"number":"018157","shop":"\\u9cf3\\u5c71\\u6d77\\u6d0b\\u5e97","phone":"077666342","address":"\\u6d77\\u6d0b\\u4e00\\u8def\\uff11\\uff12\\uff17\\u865f\\uff0c\\uff11\\uff12\\uff19\\u865f"}', '018157', 'quanjia', 'zh-tw', 1000),
(6254, 5921, '5895-5921', 1, '鳳山東德店', '{"number":"017823","shop":"\\u9cf3\\u5c71\\u6771\\u5fb7\\u5e97","phone":"077196797","address":"\\u548c\\u5fb7\\u91cc\\u5927\\u6771\\u4e8c\\u8def\\uff14\\uff13\\u4e4b\\uff11\\u865f"}', '017823', 'quanjia', 'zh-tw', 1000),
(6255, 5921, '5895-5921', 1, '鳳山五甲店', '{"number":"018612","shop":"\\u9cf3\\u5c71\\u4e94\\u7532\\u5e97","phone":"078313940","address":"\\u9326\\u7530\\u8def\\uff11\\uff19\\uff13\\u865f"}', '018612', 'quanjia', 'zh-tw', 1000),
(6256, 5921, '5895-5921', 1, '鳳山力行店', '{"number":"018631","shop":"\\u9cf3\\u5c71\\u529b\\u884c\\u5e97","phone":"077100523","address":"\\u7d93\\u6b66\\u8def\\uff13\\uff11\\uff16\\u865f"}', '018631', 'quanjia', 'zh-tw', 1000),
(6257, 5921, '5895-5921', 1, '鳳山凱旋店', '{"number":"014465","shop":"\\u9cf3\\u5c71\\u51f1\\u65cb\\u5e97","phone":"077636049","address":"\\u51f1\\u65cb\\u8def\\uff12\\uff16\\uff15\\u865f"}', '014465', 'quanjia', 'zh-tw', 1000),
(6258, 5921, '5895-5921', 1, '鳳山武營店', '{"number":"016239","shop":"\\u9cf3\\u5c71\\u6b66\\u71df\\u5e97","phone":"077671475","address":"\\u51f1\\u65cb\\u8def\\uff14\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '016239', 'quanjia', 'zh-tw', 1000),
(6259, 5921, '5895-5921', 1, '鳳山華興店', '{"number":"016557","shop":"\\u9cf3\\u5c71\\u83ef\\u8208\\u5e97","phone":"077260571","address":"\\u5357\\u83ef\\u8def\\uff11\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '016557', 'quanjia', 'zh-tw', 1000),
(6260, 5921, '5895-5921', 1, '鳳山南華店', '{"number":"017805","shop":"\\u9cf3\\u5c71\\u5357\\u83ef\\u5e97","phone":"077277379","address":"\\u5357\\u83ef\\u8def\\uff18\\uff13\\u865f"}', '017805', 'quanjia', 'zh-tw', 1000),
(6261, 5921, '5895-5921', 1, '鳳山平等店', '{"number":"016048","shop":"\\u9cf3\\u5c71\\u5e73\\u7b49\\u5e97","phone":"077408446","address":"\\u5e73\\u7b49\\u8def\\uff14\\uff11\\uff0d\\uff11\\u865f"}', '016048', 'quanjia', 'zh-tw', 1000),
(6262, 5921, '5895-5921', 1, '鳳山文華店', '{"number":"015719","shop":"\\u9cf3\\u5c71\\u6587\\u83ef\\u5e97","phone":"077805255","address":"\\u9752\\u5e74\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff11\\u865f"}', '015719', 'quanjia', 'zh-tw', 1000),
(6263, 5921, '5895-5921', 1, '鳳山文山店', '{"number":"014551","shop":"\\u9cf3\\u5c71\\u6587\\u5c71\\u5e97","phone":"077778107","address":"\\u9752\\u5e74\\u8def\\u4e8c\\u6bb5\\uff14\\uff16\\uff10\\u865f\\u4e00\\u6a13"}', '014551', 'quanjia', 'zh-tw', 1000),
(6264, 5921, '5895-5921', 1, '鳳山瑞興店', '{"number":"017052","shop":"\\u9cf3\\u5c71\\u745e\\u8208\\u5e97","phone":"077191407","address":"\\u745e\\u8208\\u8def\\uff11\\uff12\\uff10\\u865f"}', '017052', 'quanjia', 'zh-tw', 1000),
(6265, 5921, '5895-5921', 1, '鳳山三誠店', '{"number":"018385","shop":"\\u9cf3\\u5c71\\u4e09\\u8aa0\\u5e97","phone":"078154389","address":"\\u4e09\\u8aa0\\u8def\\uff19\\uff19\\u865f"}', '018385', 'quanjia', 'zh-tw', 1000),
(6266, 5921, '5895-5921', 1, '鳳山善美店', '{"number":"017469","shop":"\\u9cf3\\u5c71\\u5584\\u7f8e\\u5e97","phone":"077160451","address":"\\u5584\\u7f8e\\u91cc\\u5357\\u69ae\\u8def\\uff18\\uff13\\u865f\\u4e00\\u6a13"}', '017469', 'quanjia', 'zh-tw', 1000),
(6267, 5921, '5895-5921', 1, '鳳山天興店', '{"number":"017117","shop":"\\u9cf3\\u5c71\\u5929\\u8208\\u5e97","phone":"078230826","address":"\\u5929\\u8208\\u8857\\uff15\\uff13\\u865f"}', '017117', 'quanjia', 'zh-tw', 1000),
(6268, 5921, '5895-5921', 1, '鳳山新福店', '{"number":"018019","shop":"\\u9cf3\\u5c71\\u65b0\\u798f\\u5e97","phone":"077689717","address":"\\u4e94\\u798f\\u4e8c\\u8def\\uff11\\uff11\\uff15\\u865f"}', '018019', 'quanjia', 'zh-tw', 1000),
(6269, 5921, '5895-5921', 1, '鳳山甲二店', '{"number":"017502","shop":"\\u9cf3\\u5c71\\u7532\\u4e8c\\u5e97","phone":"077685159","address":"\\u4e94\\u7532\\u4e8c\\u8def\\uff19\\uff19\\u865f"}', '017502', 'quanjia', 'zh-tw', 1000),
(6270, 5921, '5895-5921', 1, '鳳山光華店', '{"number":"016488","shop":"\\u9cf3\\u5c71\\u5149\\u83ef\\u5e97","phone":"077901684","address":"\\u4e94\\u7532\\u4e00\\u8def\\uff11\\uff14\\uff19\\u865f"}', '016488', 'quanjia', 'zh-tw', 1000),
(6271, 5921, '5895-5921', 1, '鳳山新強店', '{"number":"015303","shop":"\\u9cf3\\u5c71\\u65b0\\u5f37\\u5e97","phone":"077675827","address":"\\u65b0\\u5bcc\\u8def\\uff12\\uff11\\uff10\\u865f"}', '015303', 'quanjia', 'zh-tw', 1000),
(6272, 5921, '5895-5921', 1, '鳳山新富店', '{"number":"016338","shop":"\\u9cf3\\u5c71\\u65b0\\u5bcc\\u5e97","phone":"077668853","address":"\\u65b0\\u5bcc\\u8def\\uff13\\uff19\\uff18\\u865f\\uff11\\u6a13"}', '016338', 'quanjia', 'zh-tw', 1000),
(6273, 5921, '5895-5921', 1, '鳳山鳳凌店', '{"number":"015076","shop":"\\u9cf3\\u5c71\\u9cf3\\u51cc\\u5e97","phone":"077425341","address":"\\u8208\\u4ec1\\u91cc\\u7acb\\u5fd7\\u8857\\uff11\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '015076', 'quanjia', 'zh-tw', 1000),
(6274, 5921, '5895-5921', 1, '鳳山中崙店', '{"number":"012596","shop":"\\u9cf3\\u5c71\\u4e2d\\u5d19\\u5e97","phone":"077535784","address":"\\u4e2d\\u5d19\\u56db\\u8def\\uff11\\u865f"}', '012596', 'quanjia', 'zh-tw', 1000),
(6275, 5921, '5895-5921', 1, '鳳山鳳翔店', '{"number":"012690","shop":"\\u9cf3\\u5c71\\u9cf3\\u7fd4\\u5e97","phone":"077022294","address":"\\u4e2d\\u5c71\\u6771\\u8def\\uff12\\uff13\\uff14\\u5df7\\uff15\\uff13\\u865f"}', '012690', 'quanjia', 'zh-tw', 1000),
(6276, 5921, '5895-5921', 1, '鳳山鳳埤店', '{"number":"016690","shop":"\\u9cf3\\u5c71\\u9cf3\\u57e4\\u5e97","phone":"077031187","address":"\\u4e2d\\u5c71\\u6771\\u8def\\uff12\\uff19\\uff12\\u865f"}', '016690', 'quanjia', 'zh-tw', 1000),
(6277, 5921, '5895-5921', 1, '鳳山埤頂店', '{"number":"013127","shop":"\\u9cf3\\u5c71\\u57e4\\u9802\\u5e97","phone":"077021821","address":"\\u4e2d\\u5c71\\u6771\\u8def\\uff15\\uff14\\uff15\\u865f\\u4e00\\u6a13"}', '013127', 'quanjia', 'zh-tw', 1000),
(6278, 5921, '5895-5921', 1, '鳳山繁華店', '{"number":"017049","shop":"\\u9cf3\\u5c71\\u7e41\\u83ef\\u5e97","phone":"077406974","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff15\\uff11\\u865f\\u58f9\\u6a13"}', '017049', 'quanjia', 'zh-tw', 1000),
(6279, 5921, '5895-5921', 1, '鳳山忠義店', '{"number":"014901","shop":"\\u9cf3\\u5c71\\u5fe0\\u7fa9\\u5e97","phone":"077471958","address":"\\u4e2d\\u5c71\\u897f\\u8def\\uff13\\uff16\\uff16\\uff0c\\uff13\\uff16\\uff18\\u865f"}', '014901', 'quanjia', 'zh-tw', 1000),
(6280, 5921, '5895-5921', 1, '鳳山自強店', '{"number":"017636","shop":"\\u9cf3\\u5c71\\u81ea\\u5f37\\u5e97","phone":"078314209","address":"\\u81ea\\u5f37\\u4e8c\\u8def\\uff11\\uff14\\uff17\\u865f\\uff0c\\uff11\\uff14\\uff19\\u865f"}', '017636', 'quanjia', 'zh-tw', 1000),
(6281, 5922, '5895-5922', 1, '岡山忠誠店', '{"number":"014758","shop":"\\u5ca1\\u5c71\\u5fe0\\u8aa0\\u5e97","phone":"076217220","address":"\\u6210\\u529f\\u8def\\uff19\\uff17\\u865f\\u4e00\\u6a13"}', '014758', 'quanjia', 'zh-tw', 1000),
(6282, 5922, '5895-5922', 1, '岡山平和店', '{"number":"014759","shop":"\\u5ca1\\u5c71\\u5e73\\u548c\\u5e97","phone":"076214732","address":"\\u5ca1\\u5c71\\u8def\\uff12\\uff17\\uff17\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '014759', 'quanjia', 'zh-tw', 1000),
(6283, 5922, '5895-5922', 1, '岡山岡燕店', '{"number":"014135","shop":"\\u5ca1\\u5c71\\u5ca1\\u71d5\\u5e97","phone":"076228970","address":"\\u5ca1\\u71d5\\u8def\\uff12\\uff18\\uff19\\u865f\\u4e00\\u81f3\\u4e8c\\u6a13"}', '014135', 'quanjia', 'zh-tw', 1000),
(6284, 5922, '5895-5922', 1, '岡山嘉興店', '{"number":"017616","shop":"\\u5ca1\\u5c71\\u5609\\u8208\\u5e97","phone":"076211081","address":"\\u5609\\u8208\\u8def\\uff13\\uff17\\uff14\\u4e4b\\uff11\\uff10\\u865f\\uff11\\u865f"}', '017616', 'quanjia', 'zh-tw', 1000),
(6285, 5922, '5895-5922', 1, '岡山飛行店', '{"number":"016612","shop":"\\u5ca1\\u5c71\\u98db\\u884c\\u5e97","phone":"076254866","address":"\\u4e45\\u548c\\u8def\\uff11\\u4e4b\\uff11\\u865f"}', '016612', 'quanjia', 'zh-tw', 1000),
(6286, 5922, '5895-5922', 1, '岡山柳橋店', '{"number":"016908","shop":"\\u5ca1\\u5c71\\u67f3\\u6a4b\\u5e97","phone":"076259480","address":"\\u67f3\\u6a4b\\u897f\\u8def\\u4e00\\u6bb5\\uff12\\uff17\\u865f"}', '016908', 'quanjia', 'zh-tw', 1000),
(6287, 5922, '5895-5922', 1, '岡山壽峰店', '{"number":"018708","shop":"\\u5ca1\\u5c71\\u58fd\\u5cf0\\u5e97","phone":"076258232","address":"\\u524d\\u5cf0\\u8def\\uff11\\uff13\\uff10\\uff0d\\uff14\\u865f"}', '018708', 'quanjia', 'zh-tw', 1000),
(6288, 5922, '5895-5922', 1, '岡山竹東店', '{"number":"016339","shop":"\\u5ca1\\u5c71\\u7af9\\u6771\\u5e97","phone":"076214752","address":"\\u4e0b\\u7af9\\u570d\\u6771\\u8857\\uff11\\uff16\\uff17\\u865f"}', '016339', 'quanjia', 'zh-tw', 1000),
(6289, 5922, '5895-5922', 1, '岡山竹圍店', '{"number":"018611","shop":"\\u5ca1\\u5c71\\u7af9\\u570d\\u5e97","phone":"076227977","address":"\\u4e2d\\u5c71\\u5317\\u8def\\uff11\\uff15\\uff18\\u865f\\uff11\\u6a13\\uff06\\uff12\\u6a13"}', '018611', 'quanjia', 'zh-tw', 1000),
(6290, 5923, '5895-5923', 1, '高雄臨一店', '{"number":"017957","shop":"\\u9ad8\\u96c4\\u81e8\\u4e00\\u5e97","phone":"075313828","address":"\\u5cf0\\u5357\\u91cc\\u81e8\\u6d77\\u4e00\\u8def\\uff12\\uff11\\u4e4b\\uff13\\u865f\\u9644\\uff15"}', '017957', 'quanjia', 'zh-tw', 1000),
(6291, 5923, '5895-5923', 1, '高雄如逢店', '{"number":"016949","shop":"\\u9ad8\\u96c4\\u5982\\u9022\\u5e97","phone":"075887028","address":"\\u9022\\u7532\\u8def\\uff19\\uff18\\u865f"}', '016949', 'quanjia', 'zh-tw', 1000),
(6292, 5923, '5895-5923', 1, '高雄鼓山店', '{"number":"018598","shop":"\\u9ad8\\u96c4\\u9f13\\u5c71\\u5e97","phone":"075217383","address":"\\u9f13\\u5c71\\u4e8c\\u8def\\uff14\\uff13\\u865f\\u58f9\\u6a13"}', '018598', 'quanjia', 'zh-tw', 1000),
(6293, 5923, '5895-5923', 1, '高雄華漾店', '{"number":"013268","shop":"\\u9ad8\\u96c4\\u83ef\\u6f3e\\u5e97","phone":"075524308","address":"\\u83ef\\u6cf0\\u8def\\uff11\\uff15\\uff12\\u865f"}', '013268', 'quanjia', 'zh-tw', 1000),
(6294, 5923, '5895-5923', 1, '高雄內惟店', '{"number":"014133","shop":"\\u9ad8\\u96c4\\u5167\\u60df\\u5e97","phone":"075825460","address":"\\u4e5d\\u5982\\u56db\\u8def\\uff11\\uff14\\uff16\\uff16\\u865f"}', '014133', 'quanjia', 'zh-tw', 1000),
(6295, 5923, '5895-5923', 1, '高雄國泰店', '{"number":"015216","shop":"\\u9ad8\\u96c4\\u570b\\u6cf0\\u5e97","phone":"075315985","address":"\\u4e5d\\u5982\\u56db\\u8def\\uff16\\uff18\\uff17\\uff0c\\uff16\\uff18\\uff19\\u865f"}', '015216', 'quanjia', 'zh-tw', 1000),
(6296, 5923, '5895-5923', 1, '高雄西灣店', '{"number":"018749","shop":"\\u9ad8\\u96c4\\u897f\\u7063\\u5e97","phone":"075250036","address":"\\u84ee\\u6d77\\u8def\\uff17\\uff10\\u865f\\uff08\\u570b\\u7acb\\u4e2d\\u5c71\\u5927\\u5b78\\uff09"}', '018749', 'quanjia', 'zh-tw', 1000),
(6297, 5923, '5895-5923', 1, '高雄哈瑪星店', '{"number":"018333","shop":"\\u9ad8\\u96c4\\u54c8\\u746a\\u661f\\u5e97","phone":"075319795","address":"\\u81e8\\u6d77\\u4e8c\\u8def\\uff15\\uff12\\u865f"}', '018333', 'quanjia', 'zh-tw', 1000),
(6298, 5923, '5895-5923', 1, '高雄龍勝店', '{"number":"015716","shop":"\\u9ad8\\u96c4\\u9f8d\\u52dd\\u5e97","phone":"075542963","address":"\\u9f8d\\u5b50\\u91cc\\u9f8d\\u52dd\\u8def\\uff11\\uff12\\uff10\\u865f"}', '015716', 'quanjia', 'zh-tw', 1000),
(6299, 5923, '5895-5923', 1, '高雄美明店', '{"number":"017615","shop":"\\u9ad8\\u96c4\\u7f8e\\u660e\\u5e97","phone":"075537553","address":"\\u7f8e\\u660e\\u8def\\uff11\\uff10\\uff12\\u865f"}', '017615', 'quanjia', 'zh-tw', 1000),
(6300, 5923, '5895-5923', 1, '高雄美舞店', '{"number":"012135","shop":"\\u9ad8\\u96c4\\u7f8e\\u821e\\u5e97","phone":"075224293","address":"\\u7f8e\\u8853\\u6771\\u4e94\\u8def\\uff11\\uff11\\uff18\\u865f"}', '012135', 'quanjia', 'zh-tw', 1000),
(6301, 5923, '5895-5923', 1, '高雄美藝店', '{"number":"016453","shop":"\\u9ad8\\u96c4\\u7f8e\\u85dd\\u5e97","phone":"075225401","address":"\\u7f8e\\u8853\\u9928\\u8def\\uff18\\uff17\\u865f"}', '016453', 'quanjia', 'zh-tw', 1000),
(6302, 5923, '5895-5923', 1, '高雄美新店', '{"number":"014672","shop":"\\u9ad8\\u96c4\\u7f8e\\u65b0\\u5e97","phone":"075549521","address":"\\u7f8e\\u8853\\u5357\\u4e09\\u8def\\uff12\\uff10\\uff11\\u865f\\u4e00\\u6a13"}', '014672', 'quanjia', 'zh-tw', 1000),
(6303, 5923, '5895-5923', 1, '高雄裕民店', '{"number":"018435","shop":"\\u9ad8\\u96c4\\u88d5\\u6c11\\u5e97","phone":"075526518","address":"\\u660e\\u8aa0\\u91cc\\u88d5\\u8aa0\\u8def\\uff11\\uff15\\uff10\\uff19\\uff0d\\uff17\\u865f"}', '018435', 'quanjia', 'zh-tw', 1000),
(6304, 5923, '5895-5923', 1, '高雄華屏店', '{"number":"017539","shop":"\\u9ad8\\u96c4\\u83ef\\u5c4f\\u5e97","phone":"075526838","address":"\\u660e\\u83ef\\u8def\\uff12\\uff18\\uff10\\u865f"}', '017539', 'quanjia', 'zh-tw', 1000),
(6305, 5923, '5895-5923', 1, '高雄明倫店', '{"number":"016611","shop":"\\u9ad8\\u96c4\\u660e\\u502b\\u5e97","phone":"075547219","address":"\\u660e\\u502b\\u8def\\uff11\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '016611', 'quanjia', 'zh-tw', 1000),
(6306, 5923, '5895-5923', 1, '高雄南屏店', '{"number":"014657","shop":"\\u9ad8\\u96c4\\u5357\\u5c4f\\u5e97","phone":"075536031","address":"\\u5357\\u5c4f\\u8def\\uff15\\uff13\\uff16\\u865f"}', '014657', 'quanjia', 'zh-tw', 1000),
(6307, 5923, '5895-5923', 1, '高雄青海店', '{"number":"018553","shop":"\\u9ad8\\u96c4\\u9752\\u6d77\\u5e97","phone":"075227027","address":"\\u9752\\u6d77\\u8def\\uff12\\uff17\\uff17\\uff0d\\uff11\\u865f"}', '018553', 'quanjia', 'zh-tw', 1000),
(6308, 5923, '5895-5923', 1, '高雄文信店', '{"number":"018493","shop":"\\u9ad8\\u96c4\\u6587\\u4fe1\\u5e97","phone":"075533953","address":"\\u6587\\u4fe1\\u8def\\uff11\\uff19\\uff13\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '018493', 'quanjia', 'zh-tw', 1000),
(6309, 5923, '5895-5923', 1, '高雄天誠店', '{"number":"018002","shop":"\\u9ad8\\u96c4\\u5929\\u8aa0\\u5e97","phone":"075529593","address":"\\u88d5\\u8aa0\\u8def\\uff11\\uff19\\uff10\\uff10\\u865f"}', '018002', 'quanjia', 'zh-tw', 1000),
(6310, 5923, '5895-5923', 1, '高雄美美店', '{"number":"015383","shop":"\\u9ad8\\u96c4\\u7f8e\\u7f8e\\u5e97","phone":"075528463","address":"\\u4e2d\\u83ef\\u4e00\\u8def\\uff19\\uff17\\uff16\\u865f\\u4e00\\u6a13"}', '015383', 'quanjia', 'zh-tw', 1000),
(6311, 5924, '5895-5924', 1, '湖內大湖店', '{"number":"014728","shop":"\\u6e56\\u5167\\u5927\\u6e56\\u5e97","phone":"076930921","address":"\\u5927\\u6e56\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff14\\uff19\\uff13\\u865f"}', '014728', 'quanjia', 'zh-tw', 1000),
(6312, 5924, '5895-5924', 1, '湖內正億店', '{"number":"011729","shop":"\\u6e56\\u5167\\u6b63\\u5104\\u5e97","phone":"076936985","address":"\\u6b63\\u7fa9\\u4e00\\u8def\\uff12\\uff11\\uff10\\u865f"}', '011729', 'quanjia', 'zh-tw', 1000),
(6313, 5924, '5895-5924', 1, '湖內中華店', '{"number":"016001","shop":"\\u6e56\\u5167\\u4e2d\\u83ef\\u5e97","phone":"076994234","address":"\\u4e2d\\u83ef\\u8857\\uff12\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '016001', 'quanjia', 'zh-tw', 1000),
(6314, 5925, '5895-5925', 1, '林園文林店', '{"number":"011846","shop":"\\u6797\\u5712\\u6587\\u6797\\u5e97","phone":"076417056","address":"\\u6771\\u6797\\u897f\\u8def\\uff11\\uff13\\uff17\\u865f"}', '011846', 'quanjia', 'zh-tw', 1000),
(6315, 5925, '5895-5925', 1, '林園鳳林店', '{"number":"017418","shop":"\\u6797\\u5712\\u9cf3\\u6797\\u5e97","phone":"076436091","address":"\\u9cf3\\u6797\\u8def\\u4e00\\u6bb5\\uff19\\uff12\\u865f"}', '017418', 'quanjia', 'zh-tw', 1000),
(6316, 5925, '5895-5925', 1, '林園鑫園店', '{"number":"014835","shop":"\\u6797\\u5712\\u946b\\u5712\\u5e97","phone":"076417592","address":"\\u6797\\u5712\\u5317\\u8def\\uff14\\uff13\\uff19\\u865f\\u4e00\\u6a13"}', '014835', 'quanjia', 'zh-tw', 1000),
(6317, 5925, '5895-5925', 1, '林園海洋店', '{"number":"018925","shop":"\\u6797\\u5712\\u6d77\\u6d0b\\u5e97","phone":"076410558","address":"\\u6f01\\u6e2f\\u8def\\uff18\\uff17\\u865f"}', '018925', 'quanjia', 'zh-tw', 1000),
(6318, 5926, '5895-5926', 1, '高雄福山店', '{"number":"015307","shop":"\\u9ad8\\u96c4\\u798f\\u5c71\\u5e97","phone":"077225460","address":"\\u798f\\u5fb7\\u4e09\\u8def\\uff12\\uff12\\uff16\\u865f"}', '015307', 'quanjia', 'zh-tw', 1000),
(6319, 5926, '5895-5926', 1, '高雄廣泉店', '{"number":"017568","shop":"\\u9ad8\\u96c4\\u5ee3\\u6cc9\\u5e97","phone":"077220774","address":"\\u5ee3\\u5dde\\u4e00\\u8857\\uff11\\uff12\\uff17\\u865f\\u4e00\\u6a13"}', '017568', 'quanjia', 'zh-tw', 1000),
(6320, 5926, '5895-5926', 1, '高雄華堂店', '{"number":"014952","shop":"\\u9ad8\\u96c4\\u83ef\\u5802\\u5e97","phone":"073348138","address":"\\u6797\\u68ee\\u4e8c\\u8def\\uff17\\uff0d\\uff16\\u865f\\uff0e\\uff17\\uff0d\\uff17\\u865f"}', '014952', 'quanjia', 'zh-tw', 1000),
(6321, 5926, '5895-5926', 1, '高雄豐強店', '{"number":"018255","shop":"\\u9ad8\\u96c4\\u8c50\\u5f37\\u5e97","phone":"073384961","address":"\\u82d3\\u96c5\\u4e8c\\u8def\\uff11\\uff10\\uff18\\u865f\\u4e00\\u3001\\u4e8c\\u3001\\u4e09\\u6a13"}', '018255', 'quanjia', 'zh-tw', 1000),
(6322, 5926, '5895-5926', 1, '高雄市府店', '{"number":"012102","shop":"\\u9ad8\\u96c4\\u5e02\\u5e9c\\u5e97","phone":"075367610","address":"\\u82d3\\u96c5\\u4e00\\u8def\\uff11\\uff19\\uff15\\u865f"}', '012102', 'quanjia', 'zh-tw', 1000),
(6323, 5926, '5895-5926', 1, '高雄忠孝店', '{"number":"015983","shop":"\\u9ad8\\u96c4\\u5fe0\\u5b5d\\u5e97","phone":"073317931","address":"\\u4e09\\u591a\\u4e09\\u8def\\uff11\\uff16\\uff18\\u865f\\u58f9\\u6a13"}', '015983', 'quanjia', 'zh-tw', 1000),
(6324, 5926, '5895-5926', 1, '高雄大遠百店', '{"number":"016768","shop":"\\u9ad8\\u96c4\\u5927\\u9060\\u767e\\u5e97","phone":"073387169","address":"\\u4e09\\u591a\\u56db\\u8def\\uff12\\uff11\\u865f\\uff08\\uff11\\uff12\\u6a13\\u6ac3\\u4f4d\\uff09"}', '016768', 'quanjia', 'zh-tw', 1000),
(6325, 5926, '5895-5926', 1, '高雄亞太店', '{"number":"016525","shop":"\\u9ad8\\u96c4\\u4e9e\\u592a\\u5e97","phone":"072691476","address":"\\u4e09\\u591a\\u56db\\u8def\\uff16\\uff15\\u865f\\u58f9\\u6a13"}', '016525', 'quanjia', 'zh-tw', 1000),
(6326, 5926, '5895-5926', 1, '高雄四維店', '{"number":"012905","shop":"\\u9ad8\\u96c4\\u56db\\u7dad\\u5e97","phone":"075350492","address":"\\u56db\\u7dad\\u56db\\u8def\\uff15\\u865f"}', '012905', 'quanjia', 'zh-tw', 1000),
(6327, 5926, '5895-5926', 1, '高雄實踐店', '{"number":"014157","shop":"\\u9ad8\\u96c4\\u5be6\\u8e10\\u5e97","phone":"072265917","address":"\\u540c\\u6176\\u91cc\\u548c\\u5e73\\u4e00\\u8def\\uff11\\uff13\\uff10\\u865f\\u4e00\\u6a13"}', '014157', 'quanjia', 'zh-tw', 1000),
(6328, 5926, '5895-5926', 1, '高雄五福店', '{"number":"017336","shop":"\\u9ad8\\u96c4\\u4e94\\u798f\\u5e97","phone":"072290512","address":"\\u4e94\\u798f\\u4e00\\u8def\\uff11\\uff15\\uff13\\u865f"}', '017336', 'quanjia', 'zh-tw', 1000),
(6329, 5926, '5895-5926', 1, '高雄武聖店', '{"number":"017613","shop":"\\u9ad8\\u96c4\\u6b66\\u8056\\u5e97","phone":"077228004","address":"\\u6b66\\u5edf\\u8def\\uff11\\uff13\\uff13\\u865f"}', '017613', 'quanjia', 'zh-tw', 1000),
(6330, 5926, '5895-5926', 1, '高雄心誠店', '{"number":"015717","shop":"\\u9ad8\\u96c4\\u5fc3\\u8aa0\\u5e97","phone":"077174801","address":"\\u6b66\\u5edf\\u8def\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '015717', 'quanjia', 'zh-tw', 1000),
(6331, 5926, '5895-5926', 1, '高雄武仁店', '{"number":"017782","shop":"\\u9ad8\\u96c4\\u6b66\\u4ec1\\u5e97","phone":"077238451","address":"\\u6b66\\u4ec1\\u8857\\uff19\\uff15\\u865f\\u4e00\\u6a13"}', '017782', 'quanjia', 'zh-tw', 1000),
(6332, 5926, '5895-5926', 1, '高雄星光店', '{"number":"015620","shop":"\\u9ad8\\u96c4\\u661f\\u5149\\u5e97","phone":"073330514","address":"\\u65b0\\u5149\\u8def\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '015620', 'quanjia', 'zh-tw', 1000),
(6333, 5926, '5895-5926', 1, '高雄真愛店', '{"number":"018606","shop":"\\u9ad8\\u96c4\\u771f\\u611b\\u5e97","phone":"072691916","address":"\\u65b0\\u5149\\u8def\\uff14\\uff10\\u865f"}', '018606', 'quanjia', 'zh-tw', 1000),
(6334, 5926, '5895-5926', 1, '高雄中福店', '{"number":"017956","shop":"\\u9ad8\\u96c4\\u4e2d\\u798f\\u5e97","phone":"073381378","address":"\\u8208\\u4e2d\\u4e00\\u8def\\uff11\\uff18\\u865f\\u58f9\\u6a13"}', '017956', 'quanjia', 'zh-tw', 1000),
(6335, 5926, '5895-5926', 1, '高雄碼頭店', '{"number":"018433","shop":"\\u9ad8\\u96c4\\u78bc\\u982d\\u5e97","phone":"072695101","address":"\\u610f\\u8aa0\\u91cc\\u6210\\u529f\\u4e8c\\u8def\\uff11\\uff14\\uff14\\u865f\\u4e00\\u6a13\\u4e09\\u591a\\u56db\\u8def\\uff11\\uff13"}', '018433', 'quanjia', 'zh-tw', 1000),
(6336, 5926, '5895-5926', 1, '高雄輔仁店', '{"number":"018196","shop":"\\u9ad8\\u96c4\\u8f14\\u4ec1\\u5e97","phone":"077522089","address":"\\u6b63\\u5927\\u8def\\uff17\\uff19\\u865f\\uff1b\\u8f14\\u4ec1\\u8def\\uff12\\uff12\\uff19\\u865f"}', '018196', 'quanjia', 'zh-tw', 1000),
(6337, 5926, '5895-5926', 1, '高雄新義店', '{"number":"016880","shop":"\\u9ad8\\u96c4\\u65b0\\u7fa9\\u5e97","phone":"077491018","address":"\\u6b63\\u7fa9\\u8def\\uff11\\uff17\\uff16\\u865f\\u58f9\\u6a13"}', '016880', 'quanjia', 'zh-tw', 1000),
(6338, 5926, '5895-5926', 1, '高雄東榮店', '{"number":"017077","shop":"\\u9ad8\\u96c4\\u6771\\u69ae\\u5e97","phone":"072693970","address":"\\u81ea\\u5f37\\u4e09\\u8def\\uff11\\uff16\\u865f"}', '017077', 'quanjia', 'zh-tw', 1000),
(6339, 5927, '5895-5927', 1, '六龜農會店', '{"number":"015157","shop":"\\u516d\\u9f9c\\u8fb2\\u6703\\u5e97","phone":"076891095","address":"\\u5149\\u5fa9\\u8def\\uff11\\uff10\\uff19\\u865f"}', '015157', 'quanjia', 'zh-tw', 1000),
(6340, 5928, '5895-5928', 1, '路竹一甲店', '{"number":"016526","shop":"\\u8def\\u7af9\\u4e00\\u7532\\u5e97","phone":"076970649","address":"\\u5927\\u4ec1\\u8def\\uff13\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '016526', 'quanjia', 'zh-tw', 1000),
(6341, 5928, '5895-5928', 1, '路竹樹人店', '{"number":"015259","shop":"\\u8def\\u7af9\\u6a39\\u4eba\\u5e97","phone":"076074623","address":"\\u7532\\u5357\\u91cc\\uff12\\uff11\\u9130\\u74b0\\u7403\\u8def\\uff14\\uff15\\uff12\\u865f"}', '015259', 'quanjia', 'zh-tw', 1000),
(6342, 5928, '5895-5928', 1, '路竹竹東店', '{"number":"014927","shop":"\\u8def\\u7af9\\u7af9\\u6771\\u5e97","phone":"076964823","address":"\\u4e2d\\u5c71\\u8def\\uff17\\uff11\\uff11\\u865f"}', '014927', 'quanjia', 'zh-tw', 1000),
(6343, 5928, '5895-5928', 1, '路竹中興店', '{"number":"015447","shop":"\\u8def\\u7af9\\u4e2d\\u8208\\u5e97","phone":"076962607","address":"\\u4e2d\\u8208\\u8def\\uff11\\uff15\\uff10\\uff0d\\uff14\\u865f\\uff11\\u6a13"}', '015447', 'quanjia', 'zh-tw', 1000),
(6344, 5929, '5895-5929', 1, '美濃中興店', '{"number":"016063","shop":"\\u7f8e\\u6fc3\\u4e2d\\u8208\\u5e97","phone":"076816160","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff18\\uff11\\uff19\\u865f"}', '016063', 'quanjia', 'zh-tw', 1000),
(6345, 5929, '5895-5929', 1, '美濃泰安店', '{"number":"015113","shop":"\\u7f8e\\u6fc3\\u6cf0\\u5b89\\u5e97","phone":"076812061","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\uff15\\uff13\\u865f"}', '015113', 'quanjia', 'zh-tw', 1000),
(6346, 5930, '5895-5930', 1, '彌陀虱目魚店', '{"number":"015776","shop":"\\u5f4c\\u9640\\u8671\\u76ee\\u9b5a\\u5e97","phone":"076101475","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '015776', 'quanjia', 'zh-tw', 1000),
(6347, 5931, '5895-5931', 1, '日月光三店', '{"number":"010637","shop":"\\u65e5\\u6708\\u5149\\u4e09\\u5e97","phone":"073654946","address":"\\u958b\\u767c\\u8def\\uff14\\uff17\\u865f"}', '010637', 'quanjia', 'zh-tw', 1000),
(6348, 5931, '5895-5931', 1, '日月光七店', '{"number":"015905","shop":"\\u65e5\\u6708\\u5149\\u4e03\\u5e97","phone":"073640010","address":"\\u5167\\u74b0\\u5317\\u8def\\uff11\\uff10\\uff19\\u865f\\uff12\\u6a13"}', '015905', 'quanjia', 'zh-tw', 1000),
(6349, 5931, '5895-5931', 1, '日月光十二店', '{"number":"012328","shop":"\\u65e5\\u6708\\u5149\\u5341\\u4e8c\\u5e97","phone":"073649535","address":"\\u5167\\u74b0\\u5317\\u8def\\uff11\\uff11\\uff15\\u865f"}', '012328', 'quanjia', 'zh-tw', 1000),
(6350, 5932, '5895-5932', 1, '日月光五店', '{"number":"010562","shop":"\\u65e5\\u6708\\u5149\\u4e94\\u5e97","phone":"073624493","address":"\\u7d93\\u516d\\u8def\\uff16\\uff16\\u865f"}', '010562', 'quanjia', 'zh-tw', 1000),
(6351, 5932, '5895-5932', 1, '日月光一店', '{"number":"010561","shop":"\\u65e5\\u6708\\u5149\\u4e00\\u5e97","phone":"073655126","address":"\\u5de5\\u5340\\u7d93\\u4e09\\u8def\\uff12\\uff16\\u865f\\u5730\\u4e0b\\u4e00\\u5c64"}', '010561', 'quanjia', 'zh-tw', 1000),
(6352, 5932, '5895-5932', 1, '日月光九店', '{"number":"010663","shop":"\\u65e5\\u6708\\u5149\\u4e5d\\u5e97","phone":"073641704","address":"\\u5de5\\u5340\\u958b\\u767c\\u8def\\uff17\\uff13\\u865f"}', '010663', 'quanjia', 'zh-tw', 1000),
(6353, 5932, '5895-5932', 1, '日月光十一店', '{"number":"016085","shop":"\\u65e5\\u6708\\u5149\\u5341\\u4e00\\u5e97","phone":"073640091","address":"\\u5de5\\u5340\\u4e2d\\u592e\\u8def\\uff12\\uff12\\u865f\\u5341\\u4e00\\u6a13"}', '016085', 'quanjia', 'zh-tw', 1000),
(6354, 5933, '5895-5933', 1, '高雄常德店', '{"number":"013369","shop":"\\u9ad8\\u96c4\\u5e38\\u5fb7\\u5e97","phone":"073521889","address":"\\u5e38\\u5fb7\\u8def\\uff13\\uff12\\uff10\\u865f\\u4e00\\u6a13\\u8207\\u4e8c\\u6a13\\u56db\\u576a\\u7a7a\\u9593"}', '013369', 'quanjia', 'zh-tw', 1000),
(6355, 5933, '5895-5933', 1, '高雄新創店', '{"number":"016725","shop":"\\u9ad8\\u96c4\\u65b0\\u5275\\u5e97","phone":"073539693","address":"\\u5275\\u65b0\\u8def\\uff18\\uff16\\u865f"}', '016725', 'quanjia', 'zh-tw', 1000),
(6356, 5933, '5895-5933', 1, '高雄創金店', '{"number":"018371","shop":"\\u9ad8\\u96c4\\u5275\\u91d1\\u5e97","phone":"073533658","address":"\\u5275\\u65b0\\u8def\\uff18\\uff19\\uff10\\u4e4b\\uff11\\u865f"}', '018371', 'quanjia', 'zh-tw', 1000),
(6357, 5933, '5895-5933', 1, '高雄屏信店', '{"number":"018499","shop":"\\u9ad8\\u96c4\\u5c4f\\u4fe1\\u5e97","phone":"073643093","address":"\\u7fe0\\u5c4f\\u8def\\uff18\\uff18\\u865f\\uff11\\u53ca\\uff12\\u6a13\\uff08\\u90e8\\u4efd\\uff09\\u5982\\u5716"}', '018499', 'quanjia', 'zh-tw', 1000),
(6358, 5933, '5895-5933', 1, '高雄高大店', '{"number":"015817","shop":"\\u9ad8\\u96c4\\u9ad8\\u5927\\u5e97","phone":"073644465","address":"\\u5927\\u5b78\\u8def\\uff17\\uff10\\uff10\\u865f"}', '015817', 'quanjia', 'zh-tw', 1000),
(6359, 5933, '5895-5933', 1, '高雄大西店', '{"number":"018125","shop":"\\u9ad8\\u96c4\\u5927\\u897f\\u5e97","phone":"073650776","address":"\\u5927\\u5b78\\u5357\\u8def\\uff11\\uff11\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '018125', 'quanjia', 'zh-tw', 1000),
(6360, 5933, '5895-5933', 1, '高雄民昌店', '{"number":"017231","shop":"\\u9ad8\\u96c4\\u6c11\\u660c\\u5e97","phone":"073635456","address":"\\u5fb7\\u6c11\\u8def\\uff19\\uff18\\uff19\\u4e4b\\uff12\\u865f\\u4e00\\u6a13"}', '017231', 'quanjia', 'zh-tw', 1000),
(6361, 5933, '5895-5933', 1, '高雄東賢店', '{"number":"018492","shop":"\\u9ad8\\u96c4\\u6771\\u8ce2\\u5e97","phone":"073606800","address":"\\u5fb7\\u8ce2\\u8def\\uff13\\uff18\\uff12\\u3001\\uff13\\uff18\\uff14\\u865f"}', '018492', 'quanjia', 'zh-tw', 1000),
(6362, 5933, '5895-5933', 1, '高雄德中店', '{"number":"018195","shop":"\\u9ad8\\u96c4\\u5fb7\\u4e2d\\u5e97","phone":"075911758","address":"\\u5fb7\\u4e2d\\u8def\\uff11\\uff11\\uff10\\u865f"}', '018195', 'quanjia', 'zh-tw', 1000),
(6363, 5933, '5895-5933', 1, '高雄德祥店', '{"number":"017281","shop":"\\u9ad8\\u96c4\\u5fb7\\u7965\\u5e97","phone":"073650715","address":"\\u6d77\\u5c08\\u8def\\uff14\\uff10\\uff11\\u865f"}', '017281', 'quanjia', 'zh-tw', 1000),
(6364, 5933, '5895-5933', 1, '高雄後勁店', '{"number":"016567","shop":"\\u9ad8\\u96c4\\u5f8c\\u52c1\\u5e97","phone":"073657187","address":"\\u5f8c\\u660c\\u8def\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '016567', 'quanjia', 'zh-tw', 1000),
(6365, 5933, '5895-5933', 1, '高雄後新店', '{"number":"017658","shop":"\\u9ad8\\u96c4\\u5f8c\\u65b0\\u5e97","phone":"073645759","address":"\\u5f8c\\u660c\\u65b0\\u8def\\uff11\\uff0d\\uff11\\u865f"}', '017658', 'quanjia', 'zh-tw', 1000),
(6366, 5933, '5895-5933', 1, '高雄惠豐店', '{"number":"016083","shop":"\\u9ad8\\u96c4\\u60e0\\u8c50\\u5e97","phone":"073657425","address":"\\u60e0\\u8c50\\u91cc\\u60e0\\u8c50\\u8857\\uff11\\uff16\\uff16\\u865f\\uff11\\uff16\\uff18\\u865f\\u4e00\\u6a13"}', '016083', 'quanjia', 'zh-tw', 1000),
(6367, 5933, '5895-5933', 1, '高雄德昌店', '{"number":"017712","shop":"\\u9ad8\\u96c4\\u5fb7\\u660c\\u5e97","phone":"073606402","address":"\\u60e0\\u6c11\\u8def\\uff12\\uff12\\uff10\\u865f"}', '017712', 'quanjia', 'zh-tw', 1000),
(6368, 5933, '5895-5933', 1, '高雄加宏店', '{"number":"018580","shop":"\\u9ad8\\u96c4\\u52a0\\u5b8f\\u5e97","phone":"073656976","address":"\\u52a0\\u5b8f\\u8def\\uff11\\uff12\\uff10\\uff06\\uff11\\uff12\\uff12\\u865f"}', '018580', 'quanjia', 'zh-tw', 1000),
(6369, 5933, '5895-5933', 1, '高雄藍天店', '{"number":"012620","shop":"\\u9ad8\\u96c4\\u85cd\\u5929\\u5e97","phone":"073659782","address":"\\u85cd\\u660c\\u8def\\uff13\\uff15\\uff18\\u865f"}', '012620', 'quanjia', 'zh-tw', 1000),
(6370, 5933, '5895-5933', 1, '高雄土庫店', '{"number":"016258","shop":"\\u9ad8\\u96c4\\u571f\\u5eab\\u5e97","phone":"073537481","address":"\\u571f\\u5eab\\u4e8c\\u8def\\uff11\\uff15\\uff12\\u865f\\u4e00\\u6a13\\u3001\\u4e8c\\u6a13"}', '016258', 'quanjia', 'zh-tw', 1000),
(6371, 5933, '5895-5933', 1, '高雄清豐店', '{"number":"017570","shop":"\\u9ad8\\u96c4\\u6e05\\u8c50\\u5e97","phone":"073530309","address":"\\u571f\\u5eab\\u8def\\uff16\\uff11\\u865f\\u4e00\\u6a13"}', '017570', 'quanjia', 'zh-tw', 1000),
(6372, 5933, '5895-5933', 1, '日月光八店', '{"number":"010662","shop":"\\u65e5\\u6708\\u5149\\u516b\\u5e97","phone":"073646310","address":"\\u897f\\u4e94\\u8857\\uff11\\uff10\\u865f\\uff22\\uff11"}', '010662', 'quanjia', 'zh-tw', 1000),
(6373, 5933, '5895-5933', 1, '高雄鑫昌店', '{"number":"016666","shop":"\\u9ad8\\u96c4\\u946b\\u660c\\u5e97","phone":"073636041","address":"\\u65b0\\u660c\\u8857\\uff13\\uff19\\uff0d\\uff11\\u865f"}', '016666', 'quanjia', 'zh-tw', 1000),
(6374, 5933, '5895-5933', 1, '高雄興德店', '{"number":"015740","shop":"\\u9ad8\\u96c4\\u8208\\u5fb7\\u5e97","phone":"073535902","address":"\\u8208\\u6960\\u8def\\uff11\\uff14\\uff19\\u2014\\uff11\\u865f\\uff11\\u6a13"}', '015740', 'quanjia', 'zh-tw', 1000),
(6375, 5933, '5895-5933', 1, '高雄興楠店', '{"number":"013072","shop":"\\u9ad8\\u96c4\\u8208\\u6960\\u5e97","phone":"073541426","address":"\\u8208\\u6960\\u8def\\uff13\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '013072', 'quanjia', 'zh-tw', 1000),
(6376, 5933, '5895-5933', 1, '高雄右昌店', '{"number":"015107","shop":"\\u9ad8\\u96c4\\u53f3\\u660c\\u5e97","phone":"073609679","address":"\\u53f3\\u660c\\u8857\\uff12\\uff12\\uff11\\u865f"}', '015107', 'quanjia', 'zh-tw', 1000),
(6377, 5934, '5895-5934', 1, '內門羅漢門店', '{"number":"018575","shop":"\\u5167\\u9580\\u7f85\\u6f22\\u9580\\u5e97","phone":"076672369","address":"\\u5357\\u5c4f\\u8def\\uff12\\uff13\\uff15\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018575', 'quanjia', 'zh-tw', 1000),
(6378, 5935, '5895-5935', 1, '鳥松星光店', '{"number":"017649","shop":"\\u9ce5\\u677e\\u661f\\u5149\\u5e97","phone":"077354577","address":"\\u5927\\u57e4\\u8def\\uff11\\uff12\\uff13\\u865f\\u4e00\\u6a13"}', '017649', 'quanjia', 'zh-tw', 1000),
(6379, 5935, '5895-5935', 1, '鳥松大仁店', '{"number":"018760","shop":"\\u9ce5\\u677e\\u5927\\u4ec1\\u5e97","phone":"077353830","address":"\\u9ce5\\u677e\\u91cc\\u5927\\u4ec1\\u5357\\u8def\\uff11\\u865f\\u4e00\\u6a13"}', '018760', 'quanjia', 'zh-tw', 1000),
(6380, 5935, '5895-5935', 1, '鳥松高庚店', '{"number":"017080","shop":"\\u9ce5\\u677e\\u9ad8\\u5e9a\\u5e97","phone":"077355028","address":"\\u9ce5\\u677e\\u5340\\u5927\\u83ef\\u91cc\\u5927\\u57e4\\u8def\\uff11\\uff12\\uff13\\u865f\\uff22\\uff11"}', '017080', 'quanjia', 'zh-tw', 1000),
(6381, 5935, '5895-5935', 1, '鳥松大華店', '{"number":"014550","shop":"\\u9ce5\\u677e\\u5927\\u83ef\\u5e97","phone":"073709772","address":"\\u7403\\u5834\\u8def\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '014550', 'quanjia', 'zh-tw', 1000),
(6382, 5935, '5895-5935', 1, '鳥松觀湖店', '{"number":"018452","shop":"\\u9ce5\\u677e\\u89c0\\u6e56\\u5e97","phone":"077354728","address":"\\u677e\\u57d4\\u5317\\u5df7\\uff14\\uff0d\\uff12\\uff10\\uff15\\u865f"}', '018452', 'quanjia', 'zh-tw', 1000),
(6383, 5935, '5895-5935', 1, '鳥松濱湖店', '{"number":"012015","shop":"\\u9ce5\\u677e\\u6ff1\\u6e56\\u5e97","phone":"077352906","address":"\\u6587\\u524d\\u8def\\uff13\\u5df7\\uff12\\uff11\\uff0d\\uff11\\u865f"}', '012015', 'quanjia', 'zh-tw', 1000),
(6384, 5935, '5895-5935', 1, '鳥松仁美店', '{"number":"013586","shop":"\\u9ce5\\u677e\\u4ec1\\u7f8e\\u5e97","phone":"077333641","address":"\\u5b78\\u5802\\u8def\\uff19\\uff11\\uff0d\\uff11\\u865f"}', '013586', 'quanjia', 'zh-tw', 1000),
(6385, 5936, '5895-5936', 1, '旗津天后店', '{"number":"017860","shop":"\\u65d7\\u6d25\\u5929\\u540e\\u5e97","phone":"075718997","address":"\\u5edf\\u524d\\u8def\\uff12\\uff18\\u865f\\u4e00\\u6a13"}', '017860', 'quanjia', 'zh-tw', 1000),
(6386, 5937, '5895-5937', 1, '旗山車站店', '{"number":"014290","shop":"\\u65d7\\u5c71\\u8eca\\u7ad9\\u5e97","phone":"076626300","address":"\\u5927\\u540c\\u8857\\uff12\\uff13\\u865f"}', '014290', 'quanjia', 'zh-tw', 1000),
(6387, 5938, '5895-5938', 1, '高雄錢櫃店', '{"number":"018750","shop":"\\u9ad8\\u96c4\\u9322\\u6ac3\\u5e97","phone":"072418122","address":"\\u516d\\u5408\\u4e8c\\u8def\\uff11\\uff15\\uff17\\u865f"}', '018750', 'quanjia', 'zh-tw', 1000),
(6388, 5938, '5895-5938', 1, '高雄瑞華店', '{"number":"017218","shop":"\\u9ad8\\u96c4\\u745e\\u83ef\\u5e97","phone":"072855228","address":"\\u4e03\\u8ce2\\u4e8c\\u8def\\uff11\\uff15\\uff16\\u865f"}', '017218', 'quanjia', 'zh-tw', 1000),
(6389, 5938, '5895-5938', 1, '高雄寶成店', '{"number":"015336","shop":"\\u9ad8\\u96c4\\u5bf6\\u6210\\u5e97","phone":"072411037","address":"\\u4e03\\u8ce2\\u4e8c\\u8def\\uff13\\uff12\\uff12\\u865f"}', '015336', 'quanjia', 'zh-tw', 1000),
(6390, 5938, '5895-5938', 1, '高雄中華店', '{"number":"017171","shop":"\\u9ad8\\u96c4\\u4e2d\\u83ef\\u5e97","phone":"072829754","address":"\\u4e2d\\u83ef\\u4e09\\u8def\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '017171', 'quanjia', 'zh-tw', 1000),
(6391, 5938, '5895-5938', 1, '高雄三鳳店', '{"number":"015576","shop":"\\u9ad8\\u96c4\\u4e09\\u9cf3\\u5e97","phone":"072419155","address":"\\u4e2d\\u83ef\\u4e09\\u8def\\uff12\\uff15\\uff11\\u865f"}', '015576', 'quanjia', 'zh-tw', 1000),
(6392, 5938, '5895-5938', 1, '高雄榮安店', '{"number":"012406","shop":"\\u9ad8\\u96c4\\u69ae\\u5b89\\u5e97","phone":"072827415","address":"\\u81ea\\u5f37\\u4e00\\u8def\\uff16\\uff10\\uff0c\\uff16\\uff12\\uff0c\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '012406', 'quanjia', 'zh-tw', 1000),
(6393, 5939, '5895-5939', 1, '高雄南衙店', '{"number":"017958","shop":"\\u9ad8\\u96c4\\u5357\\u8859\\u5e97","phone":"078411258","address":"\\u8349\\u8859\\u4e8c\\u8def\\uff13\\uff13\\uff17\\u865f"}', '017958', 'quanjia', 'zh-tw', 1000),
(6394, 5939, '5895-5939', 1, '高雄華江店', '{"number":"015676","shop":"\\u9ad8\\u96c4\\u83ef\\u6c5f\\u5e97","phone":"073359512","address":"\\u9577\\u6c5f\\u8857\\uff17\\uff10\\u865f\\u4e00\\u6a13"}', '015676', 'quanjia', 'zh-tw', 1000),
(6395, 5939, '5895-5939', 1, '高雄翠北店', '{"number":"017047","shop":"\\u9ad8\\u96c4\\u7fe0\\u5317\\u5e97","phone":"078416158","address":"\\u7fe0\\u4ea8\\u5317\\u8def\\uff15\\uff16\\uff12\\u865f"}', '017047', 'quanjia', 'zh-tw', 1000),
(6396, 5939, '5895-5939', 1, '高雄德安店', '{"number":"016373","shop":"\\u9ad8\\u96c4\\u5fb7\\u5b89\\u5e97","phone":"078318715","address":"\\u5fb7\\u660c\\u8def\\uff11\\uff14\\uff11\\u865f"}', '016373', 'quanjia', 'zh-tw', 1000),
(6397, 5939, '5895-5939', 1, '高雄廣三店', '{"number":"018837","shop":"\\u9ad8\\u96c4\\u5ee3\\u4e09\\u5e97","phone":"077219569","address":"\\u4e8c\\u8056\\u3127\\u8def\\uff12\\uff11\\uff18\\u865f"}', '018837', 'quanjia', 'zh-tw', 1000),
(6398, 5939, '5895-5939', 1, '高雄二聖店', '{"number":"011731","shop":"\\u9ad8\\u96c4\\u4e8c\\u8056\\u5e97","phone":"077249692","address":"\\u4e8c\\u8056\\u4e00\\u8def\\uff16\\uff17\\u865f\\uff0c\\uff16\\uff19\\u865f"}', '011731', 'quanjia', 'zh-tw', 1000),
(6399, 5939, '5895-5939', 1, '高雄聖心店', '{"number":"016191","shop":"\\u9ad8\\u96c4\\u8056\\u5fc3\\u5e97","phone":"073387057","address":"\\u5fa9\\u8208\\u4e09\\u8def\\uff11\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '016191', 'quanjia', 'zh-tw', 1000),
(6400, 5939, '5895-5939', 1, '高雄瑞東店', '{"number":"015187","shop":"\\u9ad8\\u96c4\\u745e\\u6771\\u5e97","phone":"077260326","address":"\\u5d17\\u5c71\\u4e2d\\u8857\\uff11\\uff15\\uff19\\u865f\\uff0e\\uff11\\uff16\\uff11\\u865f"}', '015187', 'quanjia', 'zh-tw', 1000),
(6401, 5939, '5895-5939', 1, '高雄西華店', '{"number":"016907","shop":"\\u9ad8\\u96c4\\u897f\\u83ef\\u5e97","phone":"077264629","address":"\\u5149\\u83ef\\u4e8c\\u8def\\uff17\\uff16\\u865f"}', '016907', 'quanjia', 'zh-tw', 1000),
(6402, 5939, '5895-5939', 1, '高雄皇家店', '{"number":"014405","shop":"\\u9ad8\\u96c4\\u7687\\u5bb6\\u5e97","phone":"073318198","address":"\\u6c11\\u6b0a\\u4e8c\\u8def\\uff17\\uff16\\u3001\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '014405', 'quanjia', 'zh-tw', 1000),
(6403, 5939, '5895-5939', 1, '高雄明鳳店', '{"number":"012496","shop":"\\u9ad8\\u96c4\\u660e\\u9cf3\\u5e97","phone":"077935480","address":"\\u660e\\u9cf3\\u4e09\\u8def\\uff16\\uff15\\u865f"}', '012496', 'quanjia', 'zh-tw', 1000),
(6404, 5939, '5895-5939', 1, '高雄錢證店', '{"number":"017638","shop":"\\u9ad8\\u96c4\\u9322\\u8b49\\u5e97","phone":"078215676","address":"\\u524d\\u93ae\\u8857\\uff11\\uff19\\uff16\\u865f\\u4e00\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017638', 'quanjia', 'zh-tw', 1000),
(6405, 5939, '5895-5939', 1, '高雄瑞北店', '{"number":"017240","shop":"\\u9ad8\\u96c4\\u745e\\u5317\\u5e97","phone":"077165125","address":"\\u745e\\u5317\\u8def\\uff12\\uff11\\uff13\\u865f"}', '017240', 'quanjia', 'zh-tw', 1000),
(6406, 5939, '5895-5939', 1, '高雄瑞和店', '{"number":"014760","shop":"\\u9ad8\\u96c4\\u745e\\u548c\\u5e97","phone":"077252435","address":"\\u745e\\u548c\\u8857\\uff11\\uff17\\uff13\\u865f"}', '014760', 'quanjia', 'zh-tw', 1000),
(6407, 5939, '5895-5939', 1, '高雄摩天店', '{"number":"018529","shop":"\\u9ad8\\u96c4\\u6469\\u5929\\u5e97","phone":"075370771","address":"\\u65b0\\u5149\\u8def\\uff12\\uff11\\u865f"}', '018529', 'quanjia', 'zh-tw', 1000),
(6408, 5939, '5895-5939', 1, '高雄心衙店', '{"number":"018249","shop":"\\u9ad8\\u96c4\\u5fc3\\u8859\\u5e97","phone":"078213369","address":"\\u65b0\\u8859\\u8def\\uff13\\uff15\\uff11\\u865f"}', '018249', 'quanjia', 'zh-tw', 1000),
(6409, 5939, '5895-5939', 1, '高雄盛豐店', '{"number":"016013","shop":"\\u9ad8\\u96c4\\u76db\\u8c50\\u5e97","phone":"073369275","address":"\\u4e00\\u5fc3\\u4e8c\\u8def\\uff11\\uff15\\uff14\\u865f\\uff0c\\uff11\\uff15\\uff16\\u865f\\uff11\\uff26"}', '016013', 'quanjia', 'zh-tw', 1000),
(6410, 5939, '5895-5939', 1, '高雄高中店', '{"number":"011951","shop":"\\u9ad8\\u96c4\\u9ad8\\u4e2d\\u5e97","phone":"078218783","address":"\\u93ae\\u4e2d\\u8def\\uff11\\uff14\\uff15\\u865f\\uff11\\u6a13"}', '011951', 'quanjia', 'zh-tw', 1000),
(6411, 5939, '5895-5939', 1, '高雄鄭和店', '{"number":"017001","shop":"\\u9ad8\\u96c4\\u912d\\u548c\\u5e97","phone":"075369556","address":"\\u912d\\u548c\\u5357\\u8def\\uff14\\uff12\\uff10\\u4e4b\\uff11\\u865f"}', '017001', 'quanjia', 'zh-tw', 1000),
(6412, 5939, '5895-5939', 1, '高雄大魯閣店', '{"number":"015149","shop":"\\u9ad8\\u96c4\\u5927\\u9b6f\\u95a3\\u5e97","phone":"077915278","address":"\\u4e2d\\u5c71\\u56db\\u8def\\uff11\\uff10\\uff10\\u865f\\uff08\\uff12\\uff26\\uff0d\\uff11\\uff13\\uff09"}', '015149', 'quanjia', 'zh-tw', 1000),
(6413, 5939, '5895-5939', 1, '高雄梧州店', '{"number":"018825","shop":"\\u9ad8\\u96c4\\u68a7\\u5dde\\u5e97","phone":"073386636","address":"\\u5fe0\\u5b5d\\u91cc\\u5ee3\\u897f\\u8def\\uff12\\uff11\\uff11\\u865f\\uff11\\u6a13\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018825', 'quanjia', 'zh-tw', 1000),
(6414, 5940, '5895-5940', 1, '橋頭建樹店', '{"number":"017538","shop":"\\u6a4b\\u982d\\u5efa\\u6a39\\u5e97","phone":"076128915","address":"\\u6210\\u529f\\u5317\\u8def\\uff16\\uff15\\u3001\\uff16\\uff17\\u3001\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '017538', 'quanjia', 'zh-tw', 1000),
(6415, 5940, '5895-5940', 1, '橋頭萬歲店', '{"number":"018410","shop":"\\u6a4b\\u982d\\u842c\\u6b72\\u5e97","phone":"076115796","address":"\\u7d93\\u6b66\\u8def\\uff15\\uff18\\u865f"}', '018410', 'quanjia', 'zh-tw', 1000),
(6416, 5940, '5895-5940', 1, '橋頭合興店', '{"number":"016950","shop":"\\u6a4b\\u982d\\u5408\\u8208\\u5e97","phone":"076119030","address":"\\u6a39\\u5fb7\\u8def\\uff17\\uff15\\uff0d\\uff18\\u865f"}', '016950', 'quanjia', 'zh-tw', 1000),
(6417, 5940, '5895-5940', 1, '橋頭糖廠店', '{"number":"017232","shop":"\\u6a4b\\u982d\\u7cd6\\u5ee0\\u5e97","phone":"076118547","address":"\\u7cd6\\u5ee0\\u8def\\uff12\\uff0d\\uff11\\u865f\\u4e00\\u6a13"}', '017232', 'quanjia', 'zh-tw', 1000),
(6418, 5941, '5895-5941', 1, '茄萣白砂崙店', '{"number":"014501","shop":"\\u8304\\u8423\\u767d\\u7802\\u5d19\\u5e97","phone":"076903182","address":"\\u767d\\u7802\\u8def\\uff12\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '014501', 'quanjia', 'zh-tw', 1000),
(6419, 5941, '5895-5941', 1, '茄萣民治店', '{"number":"016863","shop":"\\u8304\\u8423\\u6c11\\u6cbb\\u5e97","phone":"076988573","address":"\\u6c11\\u6cbb\\u8def\\uff11\\uff10\\uff11\\u865f\\uff11\\uff06\\uff12\\uff06\\uff13\\u6a13"}', '016863', 'quanjia', 'zh-tw', 1000),
(6420, 5942, '5895-5942', 1, '仁武八德店', '{"number":"012418","shop":"\\u4ec1\\u6b66\\u516b\\u5fb7\\u5e97","phone":"073758737","address":"\\u516b\\u5366\\u91cc\\u516b\\u5fb7\\u4e00\\u8def\\uff14\\uff12\\uff12\\u865f\\u4e00\\u6a13"}', '012418', 'quanjia', 'zh-tw', 1000),
(6421, 5942, '5895-5942', 1, '仁武澄觀店', '{"number":"013837","shop":"\\u4ec1\\u6b66\\u6f84\\u89c0\\u5e97","phone":"073724926","address":"\\u6f84\\u89c0\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff11\\uff11\\u865f"}', '013837', 'quanjia', 'zh-tw', 1000),
(6422, 5942, '5895-5942', 1, '仁武大灣店', '{"number":"011952","shop":"\\u4ec1\\u6b66\\u5927\\u7063\\u5e97","phone":"073735879","address":"\\u8d64\\u5c71\\u91cc\\u4ec1\\u96c4\\u8def\\uff19\\uff12\\u4e4b\\uff13\\u865f\\u4e00\\u6a13"}', '011952', 'quanjia', 'zh-tw', 1000),
(6423, 5942, '5895-5942', 1, '仁武鳳仁店', '{"number":"015136","shop":"\\u4ec1\\u6b66\\u9cf3\\u4ec1\\u5e97","phone":"073741130","address":"\\u9cf3\\u4ec1\\u8def\\uff14\\uff15\\u865f"}', '015136', 'quanjia', 'zh-tw', 1000),
(6424, 5942, '5895-5942', 1, '仁武仁德店', '{"number":"018292","shop":"\\u4ec1\\u6b66\\u4ec1\\u5fb7\\u5e97","phone":"073732142","address":"\\u4ec1\\u5fb7\\u5df7\\uff16\\uff18\\u865f"}', '018292', 'quanjia', 'zh-tw', 1000),
(6425, 5942, '5895-5942', 1, '仁武澄合店', '{"number":"018597","shop":"\\u4ec1\\u6b66\\u6f84\\u5408\\u5e97","phone":"073740898","address":"\\u4ec1\\u548c\\u91cc\\u4ec1\\u96c4\\u8def\\uff13\\uff15\\u865f\\u4e00\\u6a13"}', '018597', 'quanjia', 'zh-tw', 1000),
(6426, 5942, '5895-5942', 1, '仁武仁龍店', '{"number":"004300","shop":"\\u4ec1\\u6b66\\u4ec1\\u9f8d\\u5e97","phone":"073720423","address":"\\u70cf\\u6797\\u91cc\\u4ec1\\u6797\\u8def\\uff11\\uff19\\uff10\\u865f\\u58f9\\u6a13"}', '004300', 'quanjia', 'zh-tw', 1000),
(6427, 5942, '5895-5942', 1, '仁武仁塑店', '{"number":"016015","shop":"\\u4ec1\\u6b66\\u4ec1\\u5851\\u5e97","phone":"073747416","address":"\\u7af9\\u5f8c\\u91cc\\u6c34\\u7ba1\\u8def\\uff11\\uff18\\uff11\\u865f"}', '016015', 'quanjia', 'zh-tw', 1000),
(6428, 5943, '5895-5943', 1, '高雄安康店', '{"number":"015258","shop":"\\u9ad8\\u96c4\\u5b89\\u5eb7\\u5e97","phone":"073806874","address":"\\u5b89\\u5eb7\\u91cc\\u4e5d\\u5982\\u4e00\\u8def\\uff18\\uff18\\uff19\\u2014\\uff14\\u865f"}', '015258', 'quanjia', 'zh-tw', 1000),
(6429, 5943, '5895-5943', 1, '高雄義明店', '{"number":"018491","shop":"\\u9ad8\\u96c4\\u7fa9\\u660e\\u5e97","phone":"073854002","address":"\\u5bf6\\u570b\\u91cc\\u7fa9\\u660e\\u8857\\uff11\\u865f\\uff13\\u865f\\uff11\\u6a13"}', '018491', 'quanjia', 'zh-tw', 1000),
(6430, 5943, '5895-5943', 1, '高雄安和店', '{"number":"016278","shop":"\\u9ad8\\u96c4\\u5b89\\u548c\\u5e97","phone":"073226098","address":"\\u5317\\u5e73\\u4e00\\u8857\\uff11\\uff15\\uff13\\u865f\\uff0c\\uff11\\uff15\\uff15\\u865f\\uff0c\\uff11\\uff15\\uff17\\u865f"}', '016278', 'quanjia', 'zh-tw', 1000),
(6431, 5943, '5895-5943', 1, '高雄安東店', '{"number":"018675","shop":"\\u9ad8\\u96c4\\u5b89\\u6771\\u5e97","phone":"073226298","address":"\\u5bdf\\u54c8\\u723e\\u4e00\\u8857\\uff15\\uff10\\u865f"}', '018675', 'quanjia', 'zh-tw', 1000),
(6432, 5943, '5895-5943', 1, '高雄清華店', '{"number":"015949","shop":"\\u9ad8\\u96c4\\u6e05\\u83ef\\u5e97","phone":"073986587","address":"\\u6f84\\u548c\\u8def\\uff16\\uff15\\u865f\\uff11\\uff06\\uff12\\u6a13"}', '015949', 'quanjia', 'zh-tw', 1000),
(6433, 5943, '5895-5943', 1, '高雄褒忠店', '{"number":"015418","shop":"\\u9ad8\\u96c4\\u8912\\u5fe0\\u5e97","phone":"073954767","address":"\\u5927\\u660c\\u4e8c\\u8def\\uff11\\uff11\\uff19\\u4e4b\\uff12\\u865f\\uff11\\u6a13"}', '015418', 'quanjia', 'zh-tw', 1000),
(6434, 5943, '5895-5943', 1, '高雄得陽店', '{"number":"012495","shop":"\\u9ad8\\u96c4\\u5f97\\u967d\\u5e97","phone":"073819572","address":"\\u5927\\u660c\\u4e8c\\u8def\\uff13\\uff10\\uff19\\uff0d\\uff11\\u865f"}', '012495', 'quanjia', 'zh-tw', 1000),
(6435, 5943, '5895-5943', 1, '高雄春豐店', '{"number":"016676","shop":"\\u9ad8\\u96c4\\u6625\\u8c50\\u5e97","phone":"073908499","address":"\\u5927\\u8c50\\u4e8c\\u8def\\uff14\\uff15\\uff17\\u865f"}', '016676', 'quanjia', 'zh-tw', 1000),
(6436, 5943, '5895-5943', 1, '高雄新裕店', '{"number":"016471","shop":"\\u9ad8\\u96c4\\u65b0\\u88d5\\u5e97","phone":"073926084","address":"\\u5927\\u88d5\\u8def\\uff12\\uff15\\uff19\\u865f"}', '016471', 'quanjia', 'zh-tw', 1000),
(6437, 5943, '5895-5943', 1, '高雄大興店', '{"number":"012442","shop":"\\u9ad8\\u96c4\\u5927\\u8208\\u5e97","phone":"073955446","address":"\\u5927\\u88d5\\u8def\\uff13\\uff18\\u865f"}', '012442', 'quanjia', 'zh-tw', 1000),
(6438, 5943, '5895-5943', 1, '高雄延慶店', '{"number":"016410","shop":"\\u9ad8\\u96c4\\u5ef6\\u6176\\u5e97","phone":"073890250","address":"\\u7b2c\\u4e8c\\u5b89\\u767c\\u91cc\\u5ef6\\u6176\\u8857\\uff11\\uff11\\uff13\\u865f\\u4e00\\u6a13"}', '016410', 'quanjia', 'zh-tw', 1000),
(6439, 5943, '5895-5943', 1, '高雄鼎勇店', '{"number":"015937","shop":"\\u9ad8\\u96c4\\u9f0e\\u52c7\\u5e97","phone":"073943089","address":"\\u9f0e\\u5c71\\u8857\\uff13\\uff10\\uff10\\u865f\\uff0e\\uff13\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '015937', 'quanjia', 'zh-tw', 1000),
(6440, 5943, '5895-5943', 1, '高雄鼎貴店', '{"number":"018470","shop":"\\u9ad8\\u96c4\\u9f0e\\u8cb4\\u5e97","phone":"073475162","address":"\\u9f0e\\u76db\\u91cc\\u9f0e\\u8cb4\\u8def\\uff12\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '018470', 'quanjia', 'zh-tw', 1000),
(6441, 5943, '5895-5943', 1, '高雄鼎祥店', '{"number":"015902","shop":"\\u9ad8\\u96c4\\u9f0e\\u7965\\u5e97","phone":"073463667","address":"\\u9f0e\\u7965\\u8857\\uff17\\uff13\\u865f"}', '015902', 'quanjia', 'zh-tw', 1000),
(6442, 5943, '5895-5943', 1, '高雄鼎中店', '{"number":"018293","shop":"\\u9ad8\\u96c4\\u9f0e\\u4e2d\\u5e97","phone":"073493468","address":"\\u9f0e\\u4e2d\\u91cc\\u91d1\\u9f0e\\u8def\\uff13\\uff15\\uff18\\u865f"}', '018293', 'quanjia', 'zh-tw', 1000),
(6443, 5943, '5895-5943', 1, '高雄興融店', '{"number":"014009","shop":"\\u9ad8\\u96c4\\u8208\\u878d\\u5e97","phone":"073811409","address":"\\u9ec3\\u8208\\u8def\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '014009', 'quanjia', 'zh-tw', 1000),
(6444, 5943, '5895-5943', 1, '高雄吉林店', '{"number":"016677","shop":"\\u9ad8\\u96c4\\u5409\\u6797\\u5e97","phone":"073234557","address":"\\u5409\\u6797\\u8857\\uff11\\uff15\\uff15\\u865f\\uff0e\\uff11\\uff15\\uff17\\u865f"}', '016677', 'quanjia', 'zh-tw', 1000),
(6445, 5943, '5895-5943', 1, '高雄鑫讚店', '{"number":"013417","shop":"\\u9ad8\\u96c4\\u946b\\u8b9a\\u5e97","phone":"072364102","address":"\\u5efa\\u570b\\u4e8c\\u8def\\uff12\\uff16\\uff15\\u4e4b\\uff11\\u865f"}', '013417', 'quanjia', 'zh-tw', 1000),
(6446, 5943, '5895-5943', 1, '高雄長明店', '{"number":"018105","shop":"\\u9ad8\\u96c4\\u9577\\u660e\\u5e97","phone":"072366674","address":"\\u5efa\\u570b\\u4e8c\\u8def\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '018105', 'quanjia', 'zh-tw', 1000),
(6447, 5943, '5895-5943', 1, '高雄建德店', '{"number":"016452","shop":"\\u9ad8\\u96c4\\u5efa\\u5fb7\\u5e97","phone":"073854179","address":"\\u5efa\\u8208\\u8def\\uff11\\uff15\\uff11\\u865f"}', '016452', 'quanjia', 'zh-tw', 1000),
(6448, 5943, '5895-5943', 1, '高雄建興店', '{"number":"015137","shop":"\\u9ad8\\u96c4\\u5efa\\u8208\\u5e97","phone":"073875891","address":"\\u5efa\\u8208\\u8def\\uff12\\uff17\\uff14\\u865f"}', '015137', 'quanjia', 'zh-tw', 1000),
(6449, 5943, '5895-5943', 1, '高雄建武店', '{"number":"018219","shop":"\\u9ad8\\u96c4\\u5efa\\u6b66\\u5e97","phone":"073906846","address":"\\u5efa\\u8208\\u8def\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '018219', 'quanjia', 'zh-tw', 1000),
(6450, 5943, '5895-5943', 1, '高雄建工店', '{"number":"014479","shop":"\\u9ad8\\u96c4\\u5efa\\u5de5\\u5e97","phone":"073924464","address":"\\u5efa\\u5143\\u8def\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '014479', 'quanjia', 'zh-tw', 1000),
(6451, 5943, '5895-5943', 1, '高雄龍江店', '{"number":"012802","shop":"\\u9ad8\\u96c4\\u9f8d\\u6c5f\\u5e97","phone":"073219600","address":"\\u4e5d\\u5982\\u4e8c\\u8def\\uff11\\uff13\\uff18\\u865f"}', '012802', 'quanjia', 'zh-tw', 1000),
(6452, 5943, '5895-5943', 1, '高雄如順店', '{"number":"016675","shop":"\\u9ad8\\u96c4\\u5982\\u9806\\u5e97","phone":"073807586","address":"\\u4e5d\\u5982\\u4e00\\u8def\\uff15\\uff13\\uff10\\u865f"}', '016675', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(6453, 5943, '5895-5943', 1, '高雄覺禮店', '{"number":"013071","shop":"\\u9ad8\\u96c4\\u89ba\\u79ae\\u5e97","phone":"073947337","address":"\\u89ba\\u6c11\\u8def\\uff13\\uff18\\u865f"}', '013071', 'quanjia', 'zh-tw', 1000),
(6454, 5943, '5895-5943', 1, '高雄凱歌店', '{"number":"015839","shop":"\\u9ad8\\u96c4\\u51f1\\u6b4c\\u5e97","phone":"072255938","address":"\\u51f1\\u6b4c\\u8def\\uff18\\uff17\\u865f"}', '015839', 'quanjia', 'zh-tw', 1000),
(6455, 5943, '5895-5943', 1, '高雄力行店', '{"number":"017048","shop":"\\u9ad8\\u96c4\\u529b\\u884c\\u5e97","phone":"073161730","address":"\\u529b\\u884c\\u8def\\uff11\\uff15\\uff14\\u865f"}', '017048', 'quanjia', 'zh-tw', 1000),
(6456, 5943, '5895-5943', 1, '高雄民如店', '{"number":"017382","shop":"\\u9ad8\\u96c4\\u6c11\\u5982\\u5e97","phone":"073221178","address":"\\u6c11\\u65cf\\u4e00\\u8def\\uff11\\uff13\\u865f"}', '017382', 'quanjia', 'zh-tw', 1000),
(6457, 5943, '5895-5943', 1, '高雄明哲店', '{"number":"015117","shop":"\\u9ad8\\u96c4\\u660e\\u54f2\\u5e97","phone":"073506241","address":"\\u660e\\u8ce2\\u8def\\uff13\\uff18\\u865f\\u4e00\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '015117', 'quanjia', 'zh-tw', 1000),
(6458, 5943, '5895-5943', 1, '高雄醫大店', '{"number":"018552","shop":"\\u9ad8\\u96c4\\u91ab\\u5927\\u5e97","phone":"073223316","address":"\\u5341\\u5168\\u4e00\\u8def\\uff11\\uff10\\uff10\\u865f"}', '018552', 'quanjia', 'zh-tw', 1000),
(6459, 5943, '5895-5943', 1, '高雄壽昌店', '{"number":"015841","shop":"\\u9ad8\\u96c4\\u58fd\\u660c\\u5e97","phone":"073854009","address":"\\u58fd\\u660c\\u8def\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '015841', 'quanjia', 'zh-tw', 1000),
(6460, 5943, '5895-5943', 1, '高雄鼎新店', '{"number":"014727","shop":"\\u9ad8\\u96c4\\u9f0e\\u65b0\\u5e97","phone":"073421085","address":"\\u5929\\u7965\\u4e00\\u8def\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '014727', 'quanjia', 'zh-tw', 1000),
(6461, 5943, '5895-5943', 1, '高雄鼎華店', '{"number":"017845","shop":"\\u9ad8\\u96c4\\u9f0e\\u83ef\\u5e97","phone":"073945405","address":"\\u7063\\u5fa9\\u91cc\\u9f0e\\u5c71\\u8857\\uff15\\uff19\\uff12\\u865f\\u4e00\\u6a13"}', '017845', 'quanjia', 'zh-tw', 1000),
(6462, 5943, '5895-5943', 1, '高雄陽明店', '{"number":"017419","shop":"\\u9ad8\\u96c4\\u967d\\u660e\\u5e97","phone":"073875240","address":"\\u967d\\u660e\\u8def\\uff11\\uff19\\uff16\\u865f"}', '017419', 'quanjia', 'zh-tw', 1000),
(6463, 5943, '5895-5943', 1, '高雄黃興店', '{"number":"017337","shop":"\\u9ad8\\u96c4\\u9ec3\\u8208\\u5e97","phone":"073905476","address":"\\u967d\\u660e\\u8def\\uff14\\uff11\\uff18\\u865f\\uff0c\\uff14\\uff12\\uff10\\u865f"}', '017337', 'quanjia', 'zh-tw', 1000),
(6464, 5943, '5895-5943', 1, '高雄九華店', '{"number":"018401","shop":"\\u9ad8\\u96c4\\u4e5d\\u83ef\\u5e97","phone":"073231347","address":"\\u4e2d\\u83ef\\u4e8c\\u8def\\uff11\\uff14\\uff12\\u865f"}', '018401', 'quanjia', 'zh-tw', 1000),
(6465, 5943, '5895-5943', 1, '高雄重慶店', '{"number":"013545","shop":"\\u9ad8\\u96c4\\u91cd\\u6176\\u5e97","phone":"073229637","address":"\\u91cd\\u6176\\u8857\\uff12\\uff16\\uff19\\u865f"}', '013545', 'quanjia', 'zh-tw', 1000),
(6466, 5943, '5895-5943', 1, '高雄運河店', '{"number":"017233","shop":"\\u9ad8\\u96c4\\u904b\\u6cb3\\u5e97","phone":"072858179","address":"\\u81ea\\u7acb\\u4e00\\u8def\\uff17\\uff11\\u865f"}', '017233', 'quanjia', 'zh-tw', 1000),
(6467, 5943, '5895-5943', 1, '高雄醫學二店', '{"number":"016546","shop":"\\u9ad8\\u96c4\\u91ab\\u5b78\\u4e8c\\u5e97","phone":"073223916","address":"\\u81ea\\u7531\\u4e00\\u8def\\uff11\\uff10\\uff10\\u865f\\u5730\\u4e0b\\u5ba4"}', '016546', 'quanjia', 'zh-tw', 1000),
(6468, 5944, '5895-5944', 1, '杉林農會店', '{"number":"015948","shop":"\\u6749\\u6797\\u8fb2\\u6703\\u5e97","phone":"076774509","address":"\\u6e05\\u6c34\\u8def\\uff14\\uff15\\u865f"}', '015948', 'quanjia', 'zh-tw', 1000),
(6469, 5945, '5895-5945', 1, '高雄民益店', '{"number":"017550","shop":"\\u9ad8\\u96c4\\u6c11\\u76ca\\u5e97","phone":"078016432","address":"\\u4e8c\\u82d3\\u8def\\uff12\\uff14\\uff16\\u865f"}', '017550', 'quanjia', 'zh-tw', 1000),
(6470, 5945, '5895-5945', 1, '高雄大林蒲店', '{"number":"016558","shop":"\\u9ad8\\u96c4\\u5927\\u6797\\u84b2\\u5e97","phone":"078715898","address":"\\u9cf3\\u6797\\u8def\\uff19\\uff19\\u865f\\u4e00\\u6a13"}', '016558', 'quanjia', 'zh-tw', 1000),
(6471, 5945, '5895-5945', 1, '高雄金鋼店', '{"number":"014289","shop":"\\u9ad8\\u96c4\\u91d1\\u92fc\\u5e97","phone":"078222473","address":"\\u92fc\\u5e73\\u8857\\uff11\\uff15\\uff10\\u865f"}', '014289', 'quanjia', 'zh-tw', 1000),
(6472, 5945, '5895-5945', 1, '高雄崇明店', '{"number":"017537","shop":"\\u9ad8\\u96c4\\u5d07\\u660e\\u5e97","phone":"078314833","address":"\\u6e2f\\u660e\\u91cc\\u5d07\\u660e\\u8857\\uff11\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '017537', 'quanjia', 'zh-tw', 1000),
(6473, 5945, '5895-5945', 1, '高雄大坪頂店', '{"number":"017589","shop":"\\u9ad8\\u96c4\\u5927\\u576a\\u9802\\u5e97","phone":"078912787","address":"\\u9ad8\\u576a\\u4e8c\\u5341\\u4e8c\\u8def\\uff14\\uff17\\uff11\\u865f\\u4e00\\u6a13"}', '017589', 'quanjia', 'zh-tw', 1000),
(6474, 5945, '5895-5945', 1, '高雄桂陽店', '{"number":"016129","shop":"\\u9ad8\\u96c4\\u6842\\u967d\\u5e97","phone":"077934389","address":"\\u6842\\u967d\\u8def\\uff12\\uff11\\uff10\\u865f"}', '016129', 'quanjia', 'zh-tw', 1000),
(6475, 5945, '5895-5945', 1, '高雄漢苓店', '{"number":"013418","shop":"\\u9ad8\\u96c4\\u6f22\\u82d3\\u5e97","phone":"078023983","address":"\\u6f22\\u6c11\\u8def\\uff11\\uff16\\uff19\\u865f"}', '013418', 'quanjia', 'zh-tw', 1000),
(6476, 5945, '5895-5945', 1, '高雄漢中店', '{"number":"013990","shop":"\\u9ad8\\u96c4\\u6f22\\u4e2d\\u5e97","phone":"078068192","address":"\\u6f22\\u6c11\\u8def\\uff13\\uff12\\uff16\\u3001\\uff13\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '013990', 'quanjia', 'zh-tw', 1000),
(6477, 5945, '5895-5945', 1, '高雄漢民店', '{"number":"016812","shop":"\\u9ad8\\u96c4\\u6f22\\u6c11\\u5e97","phone":"078032604","address":"\\u6f22\\u6c11\\u8def\\uff15\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '016812', 'quanjia', 'zh-tw', 1000),
(6478, 5945, '5895-5945', 1, '高雄宏光店', '{"number":"015417","shop":"\\u9ad8\\u96c4\\u5b8f\\u5149\\u5e97","phone":"078067310","address":"\\u6f22\\u6c11\\u8def\\uff17\\uff18\\uff16\\u865f"}', '015417', 'quanjia', 'zh-tw', 1000),
(6479, 5945, '5895-5945', 1, '高雄康莊店', '{"number":"018366","shop":"\\u9ad8\\u96c4\\u5eb7\\u838a\\u5e97","phone":"078070804","address":"\\u5eb7\\u838a\\u8def\\uff11\\uff18\\uff13\\u865f"}', '018366', 'quanjia', 'zh-tw', 1000),
(6480, 5945, '5895-5945', 1, '高雄中安店', '{"number":"016867","shop":"\\u9ad8\\u96c4\\u4e2d\\u5b89\\u5e97","phone":"077932921","address":"\\u5ec8\\u838a\\u4e00\\u8857\\uff11\\uff16\\uff18\\u865f"}', '016867', 'quanjia', 'zh-tw', 1000),
(6481, 5945, '5895-5945', 1, '高雄山明店', '{"number":"017590","shop":"\\u9ad8\\u96c4\\u5c71\\u660e\\u5e97","phone":"078062353","address":"\\u677e\\u548c\\u8def\\uff12\\u865f"}', '017590', 'quanjia', 'zh-tw', 1000),
(6482, 5945, '5895-5945', 1, '高雄沿海店', '{"number":"014223","shop":"\\u9ad8\\u96c4\\u6cbf\\u6d77\\u5e97","phone":"078070902","address":"\\u6cbf\\u6d77\\u4e00\\u8def\\uff13\\uff19\\uff17\\u4e4b\\uff15\\u865f"}', '014223', 'quanjia', 'zh-tw', 1000),
(6483, 5945, '5895-5945', 1, '高雄旭日店', '{"number":"014649","shop":"\\u9ad8\\u96c4\\u65ed\\u65e5\\u5e97","phone":"077930446","address":"\\u4e2d\\u5b89\\u8def\\uff19\\uff12\\uff16\\u865f"}', '014649', 'quanjia', 'zh-tw', 1000),
(6484, 5945, '5895-5945', 1, '高雄機場店', '{"number":"015522","shop":"\\u9ad8\\u96c4\\u6a5f\\u5834\\u5e97","phone":"078068559","address":"\\u4e2d\\u5c71\\u56db\\u8def\\uff12\\u865f\\u4e00\\u6a13\\u90e8\\u5206"}', '015522', 'quanjia', 'zh-tw', 1000),
(6485, 5946, '5895-5946', 1, '高雄福心店', '{"number":"018179","shop":"\\u9ad8\\u96c4\\u798f\\u5fc3\\u5e97","phone":"072610787","address":"\\u5fa9\\u8208\\u4e00\\u8def\\uff14\\uff19\\u865f\\u58f9\\u6a13"}', '018179', 'quanjia', 'zh-tw', 1000),
(6486, 5946, '5895-5946', 1, '高雄林庭店', '{"number":"017657","shop":"\\u9ad8\\u96c4\\u6797\\u5ead\\u5e97","phone":"072416656","address":"\\u6797\\u68ee\\u4e00\\u8def\\uff11\\uff16\\uff13\\uff0d\\uff11\\u865f"}', '017657', 'quanjia', 'zh-tw', 1000),
(6487, 5946, '5895-5946', 1, '高雄民族店', '{"number":"018386","shop":"\\u9ad8\\u96c4\\u6c11\\u65cf\\u5e97","phone":"072231201","address":"\\u6c11\\u65cf\\u4e8c\\u8def\\uff11\\uff10\\uff10\\u865f"}', '018386', 'quanjia', 'zh-tw', 1000),
(6488, 5946, '5895-5946', 1, '高雄福華店', '{"number":"015219","shop":"\\u9ad8\\u96c4\\u798f\\u83ef\\u5e97","phone":"072360858","address":"\\u4e03\\u8ce2\\u4e00\\u8def\\uff13\\uff10\\uff11\\u865f\\u58f9\\u6a13\\u89d2\\u7a97\\u90e8\\u4efd"}', '015219', 'quanjia', 'zh-tw', 1000),
(6489, 5946, '5895-5946', 1, '高雄文橫店', '{"number":"018610","shop":"\\u9ad8\\u96c4\\u6587\\u6a6b\\u5e97","phone":"072820506","address":"\\u6587\\u6a6b\\u4e8c\\u8def\\uff11\\uff16\\uff16\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '018610', 'quanjia', 'zh-tw', 1000),
(6490, 5946, '5895-5946', 1, '高雄仁愛店', '{"number":"018436","shop":"\\u9ad8\\u96c4\\u4ec1\\u611b\\u5e97","phone":"072816993","address":"\\u4e94\\u798f\\u4e8c\\u8def\\uff11\\uff11\\uff16\\u865f\\u58f9\\u6a13"}', '018436', 'quanjia', 'zh-tw', 1000),
(6491, 5946, '5895-5946', 1, '高雄尚義店', '{"number":"014782","shop":"\\u9ad8\\u96c4\\u5c1a\\u7fa9\\u5e97","phone":"072231461","address":"\\u4e2d\\u6b63\\u4e8c\\u8def\\uff12\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '014782', 'quanjia', 'zh-tw', 1000),
(6492, 5947, '5895-5947', 1, '高雄大仁店', '{"number":"017617","shop":"\\u9ad8\\u96c4\\u5927\\u4ec1\\u5e97","phone":"075316187","address":"\\u5927\\u4ec1\\u8def\\uff15\\uff19\\u865f"}', '017617', 'quanjia', 'zh-tw', 1000),
(6493, 5947, '5895-5947', 1, '高雄福王店', '{"number":"014463","shop":"\\u9ad8\\u96c4\\u798f\\u738b\\u5e97","phone":"075316702","address":"\\u4e94\\u798f\\u56db\\u8def\\uff17\\uff12\\u865f"}', '014463', 'quanjia', 'zh-tw', 1000),
(6494, 5947, '5895-5947', 1, '高雄新樂店', '{"number":"010836","shop":"\\u9ad8\\u96c4\\u65b0\\u6a02\\u5e97","phone":"075319796","address":"\\u65b0\\u6a02\\u8857\\uff12\\uff13\\uff18\\u865f"}', '010836', 'quanjia', 'zh-tw', 1000),
(6495, 5948, '5895-5948', 1, '燕巢安招店', '{"number":"018159","shop":"\\u71d5\\u5de2\\u5b89\\u62db\\u5e97","phone":"076142800","address":"\\u5b89\\u62db\\u91cc\\u5b89\\u62db\\u8def\\uff15\\uff19\\uff13\\u4e4b\\uff11\\u865f"}', '018159', 'quanjia', 'zh-tw', 1000),
(6496, 5948, '5895-5948', 1, '高雄科大店', '{"number":"013172","shop":"\\u9ad8\\u96c4\\u79d1\\u5927\\u5e97","phone":"076011838","address":"\\u5927\\u5b78\\u8def\\uff11\\u865f\\u5b78\\u751f\\u6d3b\\u52d5\\u4e2d\\u5fc3\\u4e00\\u6a13"}', '013172', 'quanjia', 'zh-tw', 1000),
(6497, 5948, '5895-5948', 1, '燕巢興師大店', '{"number":"018659","shop":"\\u71d5\\u5de2\\u8208\\u5e2b\\u5927\\u5e97","phone":"076153818","address":"\\u6df1\\u4e2d\\u8def\\uff16\\uff12\\u865f"}', '018659', 'quanjia', 'zh-tw', 1000),
(6498, 5948, '5895-5948', 1, '燕巢義醫店', '{"number":"012770","shop":"\\u71d5\\u5de2\\u7fa9\\u91ab\\u5e97","phone":"076156587","address":"\\u7fa9\\u5927\\u8def\\uff11\\u865f\\u5730\\u4e0b\\u4e00\\u6a13"}', '012770', 'quanjia', 'zh-tw', 1000),
(6499, 5948, '5895-5948', 1, '燕巢義大店', '{"number":"015838","shop":"\\u71d5\\u5de2\\u7fa9\\u5927\\u5e97","phone":"076152029","address":"\\u7fa9\\u5927\\u8def\\uff18\\u865f"}', '015838', 'quanjia', 'zh-tw', 1000),
(6500, 5948, '5895-5948', 1, '燕巢新民店', '{"number":"017297","shop":"\\u71d5\\u5de2\\u65b0\\u6c11\\u5e97","phone":"076142940","address":"\\u4e2d\\u6c11\\u8def\\uff15\\uff13\\uff15\\u865f\\u4e00\\u6a13"}', '017297', 'quanjia', 'zh-tw', 1000),
(6501, 5949, '5895-5949', 1, '永安保安店', '{"number":"016821","shop":"\\u6c38\\u5b89\\u4fdd\\u5b89\\u5e97","phone":"076914009","address":"\\u4fdd\\u5b89\\u8def\\uff11\\uff13\\uff10\\uff0d\\uff12\\u865f"}', '016821', 'quanjia', 'zh-tw', 1000),
(6502, 5950, '5895-5950', 1, '梓官梓興店', '{"number":"014035","shop":"\\u6893\\u5b98\\u6893\\u8208\\u5e97","phone":"076103981","address":"\\u9032\\u5b78\\u8def\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '014035', 'quanjia', 'zh-tw', 1000),
(6503, 5950, '5895-5950', 1, '梓官光明店', '{"number":"012779","shop":"\\u6893\\u5b98\\u5149\\u660e\\u5e97","phone":"076109286","address":"\\u79ae\\u86b5\\u91cc\\u5149\\u660e\\u8def\\uff11\\uff12\\uff15\\u865f\\uff11\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '012779', 'quanjia', 'zh-tw', 1000),
(6504, 5950, '5895-5950', 1, '梓官蚵仔寮店', '{"number":"017746","shop":"\\u6893\\u5b98\\u86b5\\u4ed4\\u5bee\\u5e97","phone":"076107313","address":"\\u6f01\\u6e2f\\u4e8c\\u8def\\uff11\\uff13\\u865f"}', '017746', 'quanjia', 'zh-tw', 1000),
(6505, 5951, '5895-5951', 1, '高雄孟立店', '{"number":"013130","shop":"\\u9ad8\\u96c4\\u5b5f\\u7acb\\u5e97","phone":"073500492","address":"\\u83dc\\u516c\\u91cc\\u5b5f\\u5b50\\u8def\\uff11\\uff10\\uff19\\u865f\\u4e00\\u6a13"}', '013130', 'quanjia', 'zh-tw', 1000),
(6506, 5951, '5895-5951', 1, '高雄文川店', '{"number":"018270","shop":"\\u9ad8\\u96c4\\u6587\\u5ddd\\u5e97","phone":"073502659","address":"\\u66fe\\u5b50\\u8def\\uff13\\uff10\\uff10\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018270', 'quanjia', 'zh-tw', 1000),
(6507, 5951, '5895-5951', 1, '高雄曾德店', '{"number":"016167","shop":"\\u9ad8\\u96c4\\u66fe\\u5fb7\\u5e97","phone":"073503824","address":"\\u66fe\\u5b50\\u8def\\uff15\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '016167', 'quanjia', 'zh-tw', 1000),
(6508, 5951, '5895-5951', 1, '高雄市集店', '{"number":"018762","shop":"\\u9ad8\\u96c4\\u5e02\\u96c6\\u5e97","phone":"073506156","address":"\\u9ad8\\u9435\\u8def\\uff11\\uff11\\uff15\\u865f"}', '018762', 'quanjia', 'zh-tw', 1000),
(6509, 5951, '5895-5951', 1, '高雄左站店', '{"number":"018896","shop":"\\u9ad8\\u96c4\\u5de6\\u7ad9\\u5e97","phone":"075885369","address":"\\u9ad8\\u96c4\\u5e02\\u5de6\\u71df\\u5340\\u7ad9\\u524d\\u5317\\u8def\\uff11\\u865f"}', '018896', 'quanjia', 'zh-tw', 1000),
(6510, 5951, '5895-5951', 1, '高雄光興店', '{"number":"017185","shop":"\\u9ad8\\u96c4\\u5149\\u8208\\u5e97","phone":"075565991","address":"\\u5149\\u8208\\u8857\\uff16\\uff10\\u865f"}', '017185', 'quanjia', 'zh-tw', 1000),
(6511, 5951, '5895-5951', 1, '高雄果豐店', '{"number":"016251","shop":"\\u9ad8\\u96c4\\u679c\\u8c50\\u5e97","phone":"075888743","address":"\\u679c\\u5cf0\\u8857\\uff11\\uff12\\u5df7\\uff14\\uff12\\u865f"}', '016251', 'quanjia', 'zh-tw', 1000),
(6512, 5951, '5895-5951', 1, '高雄新海店', '{"number":"017217","shop":"\\u9ad8\\u96c4\\u65b0\\u6d77\\u5e97","phone":"075882056","address":"\\u6d77\\u529f\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '017217', 'quanjia', 'zh-tw', 1000),
(6513, 5951, '5895-5951', 1, '高雄華夏店', '{"number":"018158","shop":"\\u9ad8\\u96c4\\u83ef\\u590f\\u5e97","phone":"073454328","address":"\\u83ef\\u590f\\u8def\\uff11\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '018158', 'quanjia', 'zh-tw', 1000),
(6514, 5951, '5895-5951', 1, '高雄華山店', '{"number":"015077","shop":"\\u9ad8\\u96c4\\u83ef\\u5c71\\u5e97","phone":"073418769","address":"\\u83ef\\u590f\\u8def\\uff11\\uff17\\uff16\\uff11\\u865f\\u58f9\\u6a13"}', '015077', 'quanjia', 'zh-tw', 1000),
(6515, 5951, '5895-5951', 1, '高雄蓮潭店', '{"number":"015707","shop":"\\u9ad8\\u96c4\\u84ee\\u6f6d\\u5e97","phone":"075852747","address":"\\u5b54\\u71df\\u8def\\uff12\\uff15\\u865f"}', '015707', 'quanjia', 'zh-tw', 1000),
(6516, 5951, '5895-5951', 1, '高雄立信店', '{"number":"016982","shop":"\\u9ad8\\u96c4\\u7acb\\u4fe1\\u5e97","phone":"075565617","address":"\\u7acb\\u4fe1\\u8def\\uff12\\uff10\\uff19\\u865f"}', '016982', 'quanjia', 'zh-tw', 1000),
(6517, 5951, '5895-5951', 1, '高雄孟文店', '{"number":"015356","shop":"\\u9ad8\\u96c4\\u5b5f\\u6587\\u5e97","phone":"073453208","address":"\\u5b5f\\u5b50\\u8def\\uff13\\uff16\\uff15\\u865f\\u4e00\\u6a13"}', '015356', 'quanjia', 'zh-tw', 1000),
(6518, 5951, '5895-5951', 1, '高雄富華店', '{"number":"014500","shop":"\\u9ad8\\u96c4\\u5bcc\\u83ef\\u5e97","phone":"075567836","address":"\\u660e\\u83ef\\u4e00\\u8def\\uff11\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '014500', 'quanjia', 'zh-tw', 1000),
(6519, 5951, '5895-5951', 1, '高雄新勝店', '{"number":"015997","shop":"\\u9ad8\\u96c4\\u65b0\\u52dd\\u5e97","phone":"075226814","address":"\\u5357\\u5c4f\\u8def\\uff13\\uff11\\uff13\\u865f"}', '015997', 'quanjia', 'zh-tw', 1000),
(6520, 5951, '5895-5951', 1, '高雄佑德店', '{"number":"014850","shop":"\\u9ad8\\u96c4\\u4f51\\u5fb7\\u5e97","phone":"073420711","address":"\\u69ae\\u4f51\\u8def\\uff16\\uff17\\u865f\\uff0c\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '014850', 'quanjia', 'zh-tw', 1000),
(6521, 5951, '5895-5951', 1, '高雄福榮店', '{"number":"016813","shop":"\\u9ad8\\u96c4\\u798f\\u69ae\\u5e97","phone":"073508483","address":"\\u69ae\\u7e3d\\u8def\\uff12\\uff12\\uff15\\u865f"}', '016813', 'quanjia', 'zh-tw', 1000),
(6522, 5951, '5895-5951', 1, '高雄文萊店', '{"number":"017973","shop":"\\u9ad8\\u96c4\\u6587\\u840a\\u5e97","phone":"073503463","address":"\\u6587\\u840a\\u8def\\uff13\\uff12\\uff15\\u865f"}', '017973', 'quanjia', 'zh-tw', 1000),
(6523, 5951, '5895-5951', 1, '高雄先鋒店', '{"number":"018857","shop":"\\u9ad8\\u96c4\\u5148\\u92d2\\u5e97","phone":"075889767","address":"\\u5148\\u92d2\\u8def\\uff14\\uff12\\uff15\\u865f\\u4e00\\u6a13\\u3001\\u593e\\u5c64"}', '018857', 'quanjia', 'zh-tw', 1000),
(6524, 5951, '5895-5951', 1, '高雄孟子店', '{"number":"016613","shop":"\\u9ad8\\u96c4\\u5b5f\\u5b50\\u5e97","phone":"073105707","address":"\\u65b0\\u5149\\u91cc\\u5b5f\\u5b50\\u8def\\uff15\\uff11\\uff15\\u865f\\u4e00\\u6a13"}', '016613', 'quanjia', 'zh-tw', 1000),
(6525, 5951, '5895-5951', 1, '高雄富國店', '{"number":"018751","shop":"\\u9ad8\\u96c4\\u5bcc\\u570b\\u5e97","phone":"075590732","address":"\\u65b0\\u4e0a\\u91cc\\u5bcc\\u570b\\u8def\\uff14\\uff18\\u865f\\u4e00\\u6a13"}', '018751', 'quanjia', 'zh-tw', 1000),
(6526, 5951, '5895-5951', 1, '高雄新庄店', '{"number":"013953","shop":"\\u9ad8\\u96c4\\u65b0\\u5e84\\u5e97","phone":"075565745","address":"\\u65b0\\u5e84\\u4ed4\\u8def\\uff17\\uff10\\uff10\\u865f"}', '013953', 'quanjia', 'zh-tw', 1000),
(6527, 5951, '5895-5951', 1, '高雄華珍店', '{"number":"015355","shop":"\\u9ad8\\u96c4\\u83ef\\u73cd\\u5e97","phone":"073412687","address":"\\u65b0\\u838a\\u4e00\\u8def\\uff11\\uff14\\uff13\\u865f"}', '015355', 'quanjia', 'zh-tw', 1000),
(6528, 5951, '5895-5951', 1, '高雄重愛店', '{"number":"015152","shop":"\\u9ad8\\u96c4\\u91cd\\u611b\\u5e97","phone":"073462436","address":"\\u91cd\\u611b\\u8def\\uff12\\uff10\\uff18\\u865f"}', '015152', 'quanjia', 'zh-tw', 1000),
(6529, 5951, '5895-5951', 1, '高雄重和店', '{"number":"018702","shop":"\\u9ad8\\u96c4\\u91cd\\u548c\\u5e97","phone":"073502958","address":"\\u91cd\\u548c\\u8def\\uff11\\uff19\\uff11\\u865f"}', '018702', 'quanjia', 'zh-tw', 1000),
(6530, 5951, '5895-5951', 1, '高雄左大店', '{"number":"017938","shop":"\\u9ad8\\u96c4\\u5de6\\u5927\\u5e97","phone":"075882327","address":"\\u5de6\\u71df\\u5927\\u8def\\uff12\\uff14\\uff18\\u865f\\uff0e\\uff12\\uff15\\uff10\\u865f"}', '017938', 'quanjia', 'zh-tw', 1000),
(6531, 5952, '5896-5952', 1, '光復車站店', '{"number":"016091","shop":"\\u5149\\u5fa9\\u8eca\\u7ad9\\u5e97","phone":"038701110","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\uff12\\uff13\\u865f"}', '016091', 'quanjia', 'zh-tw', 1000),
(6532, 5953, '5896-5953', 1, '花蓮德順店', '{"number":"015922","shop":"\\u82b1\\u84ee\\u5fb7\\u9806\\u5e97","phone":"038337071","address":"\\u5fb7\\u5b89\\u4e00\\u8857\\uff12\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '015922', 'quanjia', 'zh-tw', 1000),
(6533, 5953, '5896-5953', 1, '花蓮國盛店', '{"number":"017992","shop":"\\u82b1\\u84ee\\u570b\\u76db\\u5e97","phone":"038328037","address":"\\u570b\\u806f\\u4e94\\u8def\\uff11\\uff12\\uff16\\u3001\\uff11\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '017992', 'quanjia', 'zh-tw', 1000),
(6534, 5953, '5896-5953', 1, '花蓮國興店', '{"number":"012863","shop":"\\u82b1\\u84ee\\u570b\\u8208\\u5e97","phone":"038322092","address":"\\u570b\\u806f\\u4e94\\u8def\\uff15\\uff19\\u865f"}', '012863', 'quanjia', 'zh-tw', 1000),
(6535, 5953, '5896-5953', 1, '花蓮鑫和店', '{"number":"011221","shop":"\\u82b1\\u84ee\\u946b\\u548c\\u5e97","phone":"038310547","address":"\\u548c\\u5e73\\u8def\\uff15\\uff19\\uff17\\u865f\\u58f9\\u6a13"}', '011221', 'quanjia', 'zh-tw', 1000),
(6536, 5953, '5896-5953', 1, '花蓮慈安店', '{"number":"016203","shop":"\\u82b1\\u84ee\\u6148\\u5b89\\u5e97","phone":"038463933","address":"\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\uff18\\uff17\\uff16\\u865f"}', '016203', 'quanjia', 'zh-tw', 1000),
(6537, 5953, '5896-5953', 1, '花蓮博愛店', '{"number":"018734","shop":"\\u82b1\\u84ee\\u535a\\u611b\\u5e97","phone":"038352319","address":"\\u6797\\u68ee\\u8def\\uff12\\uff15\\uff10\\u865f"}', '018734', 'quanjia', 'zh-tw', 1000),
(6538, 5953, '5896-5953', 1, '花蓮光復店', '{"number":"017157","shop":"\\u82b1\\u84ee\\u5149\\u5fa9\\u5e97","phone":"038316381","address":"\\u6c11\\u570b\\u8def\\uff11\\uff12\\uff11\\u865f"}', '017157', 'quanjia', 'zh-tw', 1000),
(6539, 5953, '5896-5953', 1, '花蓮國安店', '{"number":"016927","shop":"\\u82b1\\u84ee\\u570b\\u5b89\\u5e97","phone":"038311590","address":"\\u4e2d\\u5c71\\u8def\\uff14\\uff10\\uff16\\uff0d\\uff12\\u865f"}', '016927', 'quanjia', 'zh-tw', 1000),
(6540, 5953, '5896-5953', 1, '花蓮建中店', '{"number":"015553","shop":"\\u82b1\\u84ee\\u5efa\\u4e2d\\u5e97","phone":"038315576","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff14\\uff17\\uff0d\\uff12\\u865f"}', '015553', 'quanjia', 'zh-tw', 1000),
(6541, 5953, '5896-5953', 1, '花蓮富強店', '{"number":"014382","shop":"\\u82b1\\u84ee\\u5bcc\\u5f37\\u5e97","phone":"038465247","address":"\\u4e2d\\u5c71\\u8def\\uff17\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '014382', 'quanjia', 'zh-tw', 1000),
(6542, 5953, '5896-5953', 1, '花蓮新美店', '{"number":"017812","shop":"\\u82b1\\u84ee\\u65b0\\u7f8e\\u5e97","phone":"038236890","address":"\\u4e2d\\u8208\\u8def\\uff11\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '017812', 'quanjia', 'zh-tw', 1000),
(6543, 5953, '5896-5953', 1, '花蓮大愛店', '{"number":"012048","shop":"\\u82b1\\u84ee\\u5927\\u611b\\u5e97","phone":"038466456","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff17\\uff10\\uff17\\u865f\\uff08\\u5927\\u611b\\u6a13\\u5730\\u4e0b\\u5ba4\\u8d85\\u5546\\uff09"}', '012048', 'quanjia', 'zh-tw', 1000),
(6544, 5953, '5896-5953', 1, '花蓮慈濟店', '{"number":"014869","shop":"\\u82b1\\u84ee\\u6148\\u6fdf\\u5e97","phone":"038571610","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff17\\uff10\\uff17\\u865f\\uff13\\u6a13"}', '014869', 'quanjia', 'zh-tw', 1000),
(6545, 5953, '5896-5953', 1, '花蓮榮正店', '{"number":"013551","shop":"\\u82b1\\u84ee\\u69ae\\u6b63\\u5e97","phone":"038336312","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff10\\uff17\\u865f\\uff0e\\uff12\\uff10\\uff19\\u865f"}', '013551', 'quanjia', 'zh-tw', 1000),
(6546, 5953, '5896-5953', 1, '花蓮中福店', '{"number":"012231","shop":"\\u82b1\\u84ee\\u4e2d\\u798f\\u5e97","phone":"038320342","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '012231', 'quanjia', 'zh-tw', 1000),
(6547, 5953, '5896-5953', 1, '花蓮正義店', '{"number":"015690","shop":"\\u82b1\\u84ee\\u6b63\\u7fa9\\u5e97","phone":"038326265","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '015690', 'quanjia', 'zh-tw', 1000),
(6548, 5953, '5896-5953', 1, '花蓮正國店', '{"number":"017489","shop":"\\u82b1\\u84ee\\u6b63\\u570b\\u5e97","phone":"038358084","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff16\\uff19\\u865f"}', '017489', 'quanjia', 'zh-tw', 1000),
(6549, 5953, '5896-5953', 1, '花蓮正明店', '{"number":"015793","shop":"\\u82b1\\u84ee\\u6b63\\u660e\\u5e97","phone":"038335750","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff13\\uff13\\u865f"}', '015793', 'quanjia', 'zh-tw', 1000),
(6550, 5954, '5896-5954', 1, '吉安福興店', '{"number":"015162","shop":"\\u5409\\u5b89\\u798f\\u8208\\u5e97","phone":"038541041","address":"\\u798f\\u8208\\u8def\\uff12\\uff13\\uff12\\uff0d\\uff11\\u865f"}', '015162', 'quanjia', 'zh-tw', 1000),
(6551, 5954, '5896-5954', 1, '吉安建國店', '{"number":"017332","shop":"\\u5409\\u5b89\\u5efa\\u570b\\u5e97","phone":"038465801","address":"\\u5efa\\u570b\\u8def\\u4e00\\u6bb5\\uff14\\uff12\\u865f"}', '017332', 'quanjia', 'zh-tw', 1000),
(6552, 5954, '5896-5954', 1, '吉安慶豐店', '{"number":"016999","shop":"\\u5409\\u5b89\\u6176\\u8c50\\u5e97","phone":"038521566","address":"\\u6176\\u8c50\\u6751\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff14\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '016999', 'quanjia', 'zh-tw', 1000),
(6553, 5954, '5896-5954', 1, '吉安仁里店', '{"number":"017165","shop":"\\u5409\\u5b89\\u4ec1\\u91cc\\u5e97","phone":"038546913","address":"\\u4ec1\\u91cc\\u6751\\u4e2d\\u6b63\\u8def\\uff11\\u6bb5\\uff11\\uff15\\uff13\\u865f\\uff0c\\uff11\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '017165', 'quanjia', 'zh-tw', 1000),
(6554, 5954, '5896-5954', 1, '吉安仁安店', '{"number":"016826","shop":"\\u5409\\u5b89\\u4ec1\\u5b89\\u5e97","phone":"038546601","address":"\\u4ec1\\u91cc\\u4e94\\u8857\\uff14\\uff18\\uff0d\\uff11\\u865f"}', '016826', 'quanjia', 'zh-tw', 1000),
(6555, 5954, '5896-5954', 1, '吉安自強店', '{"number":"018885","shop":"\\u5409\\u5b89\\u81ea\\u5f37\\u5e97","phone":"038514770","address":"\\u52dd\\u5b89\\u6751\\u81ea\\u5f37\\u8def\\uff11\\uff12\\uff19\\u865f\\u4e00\\u6a13\\uff11\\uff13\\uff11\\u865f"}', '018885', 'quanjia', 'zh-tw', 1000),
(6556, 5954, '5896-5954', 1, '吉安宜昌店', '{"number":"018415","shop":"\\u5409\\u5b89\\u5b9c\\u660c\\u5e97","phone":"038536892","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff11\\u865f\\uff11\\u6a13"}', '018415', 'quanjia', 'zh-tw', 1000),
(6557, 5954, '5896-5954', 1, '吉安和平店', '{"number":"017755","shop":"\\u5409\\u5b89\\u548c\\u5e73\\u5e97","phone":"038564431","address":"\\u81ea\\u5f37\\u8def\\uff13\\uff19\\uff15\\u865f\\u4e4b\\uff11"}', '017755', 'quanjia', 'zh-tw', 1000),
(6558, 5954, '5896-5954', 1, '吉安鑫莊敬店', '{"number":"015318","shop":"\\u5409\\u5b89\\u946b\\u838a\\u656c\\u5e97","phone":"038561115","address":"\\u81ea\\u5f37\\u8def\\uff16\\uff10\\uff13\\u865f"}', '015318', 'quanjia', 'zh-tw', 1000),
(6559, 5955, '5896-5955', 1, '瑞穗車站店', '{"number":"018416","shop":"\\u745e\\u7a57\\u8eca\\u7ad9\\u5e97","phone":"038875375","address":"\\u745e\\u7a57\\u6751\\u4e2d\\u6b63\\u5317\\u8def\\uff11\\u865f\\u4e00\\u6a13"}', '018416', 'quanjia', 'zh-tw', 1000),
(6560, 5955, '5896-5955', 1, '瑞穗瑞雄店', '{"number":"014073","shop":"\\u745e\\u7a57\\u745e\\u96c4\\u5e97","phone":"038873982","address":"\\u6eab\\u6cc9\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff19\\uff0e\\uff11\\uff18\\uff11\\u865f"}', '014073', 'quanjia', 'zh-tw', 1000),
(6561, 5956, '5896-5956', 1, '壽豐東華店', '{"number":"017867","shop":"\\u58fd\\u8c50\\u6771\\u83ef\\u5e97","phone":"038630021","address":"\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\uff11\\u865f\\uff08\\u6771\\u83ef\\u5927\\u5b78\\u516d\\u671f\\u5b78\\u751f\\u5bbf\\u820d\\uff09"}', '017867', 'quanjia', 'zh-tw', 1000),
(6562, 5956, '5896-5956', 1, '壽豐東華二店', '{"number":"015629","shop":"\\u58fd\\u8c50\\u6771\\u83ef\\u4e8c\\u5e97","phone":"038630329","address":"\\u5927\\u5b78\\u8def\\u4e8c\\u6bb5\\uff11\\u865f\\uff08\\u591a\\u5bb9\\u9928\\uff09"}', '015629', 'quanjia', 'zh-tw', 1000),
(6563, 5956, '5896-5956', 1, '壽豐豐田店', '{"number":"015141","shop":"\\u58fd\\u8c50\\u8c50\\u7530\\u5e97","phone":"038652750","address":"\\u8c50\\u5c71\\u6751\\u4e2d\\u5c71\\u8def\\uff11\\uff19\\uff15\\u865f"}', '015141', 'quanjia', 'zh-tw', 1000),
(6564, 5956, '5896-5956', 1, '壽豐志學店', '{"number":"017787","shop":"\\u58fd\\u8c50\\u5fd7\\u5b78\\u5e97","phone":"038664996","address":"\\u5fd7\\u5b78\\u6751\\u4e2d\\u6b63\\u8def\\uff11\\uff17\\u865f"}', '017787', 'quanjia', 'zh-tw', 1000),
(6565, 5957, '5896-5957', 1, '新城北埔店', '{"number":"014488","shop":"\\u65b0\\u57ce\\u5317\\u57d4\\u5e97","phone":"038269462","address":"\\u5317\\u57d4\\u8def\\uff11\\uff15\\uff19\\u865f\\u4e00\\u6a13"}', '014488', 'quanjia', 'zh-tw', 1000),
(6566, 5957, '5896-5957', 1, '新城佳山店', '{"number":"008350","shop":"\\u65b0\\u57ce\\u4f73\\u5c71\\u5e97","phone":"038268488","address":"\\u4f73\\u6797\\u6751\\u4f73\\u6797\\uff11\\uff10\\uff15\\u865f"}', '008350', 'quanjia', 'zh-tw', 1000),
(6567, 5957, '5896-5957', 1, '新城嘉新店', '{"number":"012565","shop":"\\u65b0\\u57ce\\u5609\\u65b0\\u5e97","phone":"038226046","address":"\\u5609\\u65b0\\u6751\\u82b1\\u5e2b\\u8857\\uff13\\uff17\\u865f\\u4e00\\u6a13"}', '012565', 'quanjia', 'zh-tw', 1000),
(6568, 5957, '5896-5957', 1, '新城民益店', '{"number":"014596","shop":"\\u65b0\\u57ce\\u6c11\\u76ca\\u5e97","phone":"038225610","address":"\\u5609\\u65b0\\u6751\\u5609\\u65b0\\u8def\\uff14\\uff15\\u865f"}', '014596', 'quanjia', 'zh-tw', 1000),
(6569, 5957, '5896-5957', 1, '新城康樂店', '{"number":"017111","shop":"\\u65b0\\u57ce\\u5eb7\\u6a02\\u5e97","phone":"038262100","address":"\\u5eb7\\u6a02\\u6751\\u5eb7\\u6a02\\u8def\\uff12\\uff17\\uff19\\u865f"}', '017111', 'quanjia', 'zh-tw', 1000),
(6570, 5957, '5896-5957', 1, '新城望海店', '{"number":"015087","shop":"\\u65b0\\u57ce\\u671b\\u6d77\\u5e97","phone":"038233371","address":"\\u4e03\\u661f\\u8857\\uff11\\uff11\\uff10\\u865f"}', '015087', 'quanjia', 'zh-tw', 1000),
(6571, 5957, '5896-5957', 1, '新城太魯閣店', '{"number":"016143","shop":"\\u65b0\\u57ce\\u592a\\u9b6f\\u95a3\\u5e97","phone":"038610632","address":"\\u65b0\\u57ce\\u6751\\u65b0\\u8208\\u8def\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '016143', 'quanjia', 'zh-tw', 1000),
(6572, 5958, '5896-5958', 1, '秀林和平店', '{"number":"015795","shop":"\\u79c0\\u6797\\u548c\\u5e73\\u5e97","phone":"038682172","address":"\\u548c\\u5e73\\u6751\\u548c\\u5e73\\u8def\\uff11\\uff18\\uff17\\u865f\\u4e00\\u6a13"}', '015795', 'quanjia', 'zh-tw', 1000),
(6573, 5959, '5896-5959', 1, '玉里玉溪店', '{"number":"013096","shop":"\\u7389\\u91cc\\u7389\\u6eaa\\u5e97","phone":"038980425","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff17\\uff17\\u865f"}', '013096', 'quanjia', 'zh-tw', 1000),
(6574, 5960, '5897-5960', 1, '基隆新安和店', '{"number":"016733","shop":"\\u57fa\\u9686\\u65b0\\u5b89\\u548c\\u5e97","phone":"0224341775","address":"\\u5b89\\u548c\\u4e00\\u8857\\uff11\\uff12\\uff14\\u865f"}', '016733', 'quanjia', 'zh-tw', 1000),
(6575, 5960, '5897-5960', 1, '基隆長庚店', '{"number":"015586","shop":"\\u57fa\\u9686\\u9577\\u5e9a\\u5e97","phone":"0224326001","address":"\\u5b89\\u6a02\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff17\\u865f"}', '015586', 'quanjia', 'zh-tw', 1000),
(6576, 5960, '5897-5960', 1, '基隆新樂強店', '{"number":"017009","shop":"\\u57fa\\u9686\\u65b0\\u6a02\\u5f37\\u5e97","phone":"0224254734","address":"\\u5b89\\u6a02\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '017009', 'quanjia', 'zh-tw', 1000),
(6577, 5960, '5897-5960', 1, '基隆基金店', '{"number":"016993","shop":"\\u57fa\\u9686\\u57fa\\u91d1\\u5e97","phone":"0224329658","address":"\\u57fa\\u91d1\\u4e09\\u8def\\uff11\\uff14\\uff15\\u865f"}', '016993', 'quanjia', 'zh-tw', 1000),
(6578, 5960, '5897-5960', 1, '基隆新國揚店', '{"number":"016317","shop":"\\u57fa\\u9686\\u65b0\\u570b\\u63da\\u5e97","phone":"0234012842","address":"\\u57fa\\u91d1\\u4e00\\u8def\\uff11\\uff12\\uff11\\u5df7\\uff11\\uff14\\u865f"}', '016317', 'quanjia', 'zh-tw', 1000),
(6579, 5960, '5897-5960', 1, '基隆萬金店', '{"number":"017089","shop":"\\u57fa\\u9686\\u842c\\u91d1\\u5e97","phone":"0224333875","address":"\\u57fa\\u91d1\\u4e00\\u8def\\uff11\\uff14\\uff16\\u865f\\u4e4b\\u5730\\u4e0b\\u5ba4"}', '017089', 'quanjia', 'zh-tw', 1000),
(6580, 5960, '5897-5960', 1, '基隆情人湖店', '{"number":"014998","shop":"\\u57fa\\u9686\\u60c5\\u4eba\\u6e56\\u5e97","phone":"0224326530","address":"\\u57fa\\u91d1\\u4e00\\u8def\\uff12\\uff10\\uff18\\u5df7\\uff12\\uff10\\uff10\\u865f\\uff22\\uff11"}', '014998', 'quanjia', 'zh-tw', 1000),
(6581, 5960, '5897-5960', 1, '基隆長樂店', '{"number":"017208","shop":"\\u57fa\\u9686\\u9577\\u6a02\\u5e97","phone":"0224331198","address":"\\u9ea5\\u91d1\\u8def\\uff12\\uff12\\uff12\\u865f\\u5730\\u4e0b\\u4e00\\u6a13\\uff08\\u57fa\\u9686\\u9577\\u5e9a\\u91ab\\u9662\\uff09"}', '017208', 'quanjia', 'zh-tw', 1000),
(6582, 5960, '5897-5960', 1, '基隆金城店', '{"number":"016582","shop":"\\u57fa\\u9686\\u91d1\\u57ce\\u5e97","phone":"0234012667","address":"\\u9ea5\\u91d1\\u8def\\uff12\\uff13\\uff11\\uff0d\\uff11\\u865f"}', '016582', 'quanjia', 'zh-tw', 1000),
(6583, 5960, '5897-5960', 1, '基隆武嶺店', '{"number":"016926","shop":"\\u57fa\\u9686\\u6b66\\u5dba\\u5e97","phone":"0224335573","address":"\\u6b66\\u5dba\\u8857\\uff11\\uff18\\uff11\\uff0d\\uff16\\u865f\\uff11\\u6a13"}', '016926', 'quanjia', 'zh-tw', 1000),
(6584, 5960, '5897-5960', 1, '基隆武勝店', '{"number":"017246","shop":"\\u57fa\\u9686\\u6b66\\u52dd\\u5e97","phone":"0224328788","address":"\\u6b66\\u8a13\\u8857\\uff17\\uff12\\u865f\\u58f9\\u6a13\\u3000\\u3000"}', '017246', 'quanjia', 'zh-tw', 1000),
(6585, 5960, '5897-5960', 1, '基隆新樂群店', '{"number":"018585","shop":"\\u57fa\\u9686\\u65b0\\u6a02\\u7fa4\\u5e97","phone":"0224337917","address":"\\u6a02\\u5229\\u4e09\\u8857\\uff11\\uff12\\uff18\\u865f"}', '018585', 'quanjia', 'zh-tw', 1000),
(6586, 5960, '5897-5960', 1, '基隆樂利店', '{"number":"016603","shop":"\\u57fa\\u9686\\u6a02\\u5229\\u5e97","phone":"0224322426","address":"\\u6a02\\u5229\\u4e09\\u8857\\uff13\\uff12\\u5df7\\uff11\\uff12\\u865f"}', '016603', 'quanjia', 'zh-tw', 1000),
(6587, 5960, '5897-5960', 1, '基隆龍騰店', '{"number":"016218","shop":"\\u57fa\\u9686\\u9f8d\\u9a30\\u5e97","phone":"0224334303","address":"\\u6a02\\u5229\\u4e09\\u8857\\uff18\\u5df7\\uff11\\uff16\\u865f\\u5e95\\u56db\\u5c64"}', '016218', 'quanjia', 'zh-tw', 1000),
(6588, 5960, '5897-5960', 1, '基隆樂富店', '{"number":"016459","shop":"\\u57fa\\u9686\\u6a02\\u5bcc\\u5e97","phone":"0224349184","address":"\\u58ef\\u89c0\\u91cc\\u6a02\\u5229\\u4e8c\\u8857\\uff16\\uff12\\u5df7\\uff12\\uff11\\uff12\\u865f\\u4e00\\u6a13"}', '016459', 'quanjia', 'zh-tw', 1000),
(6589, 5961, '5897-5961', 1, '基隆吉市店', '{"number":"016579","shop":"\\u57fa\\u9686\\u5409\\u5e02\\u5e97","phone":"0224587239","address":"\\u7887\\u5167\\u8857\\uff11\\uff18\\uff18\\uff0d\\uff19\\u865f\\u58f9\\u6a13\\u53ca\\u593e\\u5c64"}', '016579', 'quanjia', 'zh-tw', 1000),
(6590, 5961, '5897-5961', 1, '基隆暖港店', '{"number":"016259","shop":"\\u57fa\\u9686\\u6696\\u6e2f\\u5e97","phone":"0224574786","address":"\\u904e\\u6e2f\\u8def\\uff12\\uff15\\uff14\\u865f"}', '016259', 'quanjia', 'zh-tw', 1000),
(6591, 5961, '5897-5961', 1, '基隆暖東店', '{"number":"013813","shop":"\\u57fa\\u9686\\u6696\\u6771\\u5e97","phone":"0224582882","address":"\\u6696\\u6696\\u8857\\uff11\\uff16\\uff13\\u865f"}', '013813', 'quanjia', 'zh-tw', 1000),
(6592, 5961, '5897-5961', 1, '基隆暖鑫店', '{"number":"016917","shop":"\\u57fa\\u9686\\u6696\\u946b\\u5e97","phone":"0224586460","address":"\\u6696\\u6696\\u8857\\uff14\\uff16\\uff11\\u865f\\u58f9\\u6a13"}', '016917', 'quanjia', 'zh-tw', 1000),
(6593, 5961, '5897-5961', 1, '基隆暖錠店', '{"number":"016023","shop":"\\u57fa\\u9686\\u6696\\u9320\\u5e97","phone":"0224594800","address":"\\u6e90\\u9060\\u8def\\uff11\\uff18\\uff19\\u865f"}', '016023', 'quanjia', 'zh-tw', 1000),
(6594, 5962, '5897-5962', 1, '基隆百福店', '{"number":"017151","shop":"\\u57fa\\u9686\\u767e\\u798f\\u5e97","phone":"0224529098","address":"\\u767e\\u798f\\u91cc\\u798f\\u4e8c\\u8857\\uff12\\uff10\\uff14\\u865f\\uff11\\u6a13"}', '017151', 'quanjia', 'zh-tw', 1000),
(6595, 5962, '5897-5962', 1, '七堵長安店', '{"number":"014635","shop":"\\u4e03\\u5835\\u9577\\u5b89\\u5e97","phone":"0224519266","address":"\\u9577\\u5b89\\u8857\\uff12\\uff11\\uff12\\u5df7\\uff12\\uff0d\\uff14\\u865f\\u4e00\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '014635', 'quanjia', 'zh-tw', 1000),
(6596, 5962, '5897-5962', 1, '七堵工明店', '{"number":"017681","shop":"\\u4e03\\u5835\\u5de5\\u660e\\u5e97","phone":"0224519520","address":"\\u5de5\\u5efa\\u8def\\uff11\\uff0d\\uff11\\uff15\\u865f\\u58f9\\u6a13"}', '017681', 'quanjia', 'zh-tw', 1000),
(6597, 5962, '5897-5962', 1, '七堵新明德店', '{"number":"017207","shop":"\\u4e03\\u5835\\u65b0\\u660e\\u5fb7\\u5e97","phone":"0224517467","address":"\\u660e\\u5fb7\\u4e8c\\u8def\\uff11\\uff15\\uff0d\\uff15\\uff13\\u865f"}', '017207', 'quanjia', 'zh-tw', 1000),
(6598, 5962, '5897-5962', 1, '七堵大興店', '{"number":"015563","shop":"\\u4e03\\u5835\\u5927\\u8208\\u5e97","phone":"0224560059","address":"\\u5357\\u8208\\u8def\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '015563', 'quanjia', 'zh-tw', 1000),
(6599, 5962, '5897-5962', 1, '七堵永富店', '{"number":"013997","shop":"\\u4e03\\u5835\\u6c38\\u5bcc\\u5e97","phone":"0224558170","address":"\\u6c38\\u5e73\\u91cc\\u6c38\\u5bcc\\u8def\\uff11\\uff12\\uff10\\u865f\\u3001\\u5d07\\u667a\\u8857\\uff14\\uff18\\u865f\\u4e00\\u6a13"}', '013997', 'quanjia', 'zh-tw', 1000),
(6600, 5962, '5897-5962', 1, '七堵自治店', '{"number":"016497","shop":"\\u4e03\\u5835\\u81ea\\u6cbb\\u5e97","phone":"0224554377","address":"\\u81ea\\u6cbb\\u8857\\uff16\\u865f"}', '016497', 'quanjia', 'zh-tw', 1000),
(6601, 5963, '5897-5963', 1, '基隆仁愛店', '{"number":"018601","shop":"\\u57fa\\u9686\\u4ec1\\u611b\\u5e97","phone":"0224259270","address":"\\u611b\\u56db\\u8def\\uff15\\uff16\\u865f\\uff11\\u6a13\\u53ca\\u593e\\u5c64"}', '018601', 'quanjia', 'zh-tw', 1000),
(6602, 5963, '5897-5963', 1, '基隆港口店', '{"number":"017448","shop":"\\u57fa\\u9686\\u6e2f\\u53e3\\u5e97","phone":"0224256032","address":"\\u6e2f\\u897f\\u8857\\uff16\\uff0d\\uff12\\u865f\\u58f9\\u6a13"}', '017448', 'quanjia', 'zh-tw', 1000),
(6603, 5963, '5897-5963', 1, '基隆精一店', '{"number":"018477","shop":"\\u57fa\\u9686\\u7cbe\\u4e00\\u5e97","phone":"0224249183","address":"\\u7cbe\\u4e00\\u8def\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '018477', 'quanjia', 'zh-tw', 1000),
(6604, 5963, '5897-5963', 1, '基隆廟口店', '{"number":"011629","shop":"\\u57fa\\u9686\\u5edf\\u53e3\\u5e97","phone":"0224289166","address":"\\u4ec1\\u5fb7\\u91cc\\u4ec1\\u4e09\\u8def\\uff13\\uff13\\u865f\\u4e00\\u6a13"}', '011629', 'quanjia', 'zh-tw', 1000),
(6605, 5963, '5897-5963', 1, '基隆仁三店', '{"number":"017147","shop":"\\u57fa\\u9686\\u4ec1\\u4e09\\u5e97","phone":"0224286905","address":"\\u4ec1\\u4e09\\u8def\\uff15\\uff19\\u865f\\u58f9\\u6a13"}', '017147', 'quanjia', 'zh-tw', 1000),
(6606, 5963, '5897-5963', 1, '基隆仁四店', '{"number":"013825","shop":"\\u57fa\\u9686\\u4ec1\\u56db\\u5e97","phone":"0224265932","address":"\\u4ec1\\u56db\\u8def\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '013825', 'quanjia', 'zh-tw', 1000),
(6607, 5963, '5897-5963', 1, '基隆鑫忠孝店', '{"number":"018791","shop":"\\u57fa\\u9686\\u946b\\u5fe0\\u5b5d\\u5e97","phone":"0224287939","address":"\\u5b5d\\u4e09\\u8def\\uff15\\uff14\\u865f\\u58f9\\u6a13"}', '018791', 'quanjia', 'zh-tw', 1000),
(6608, 5963, '5897-5963', 1, '基隆新站前店', '{"number":"017931","shop":"\\u57fa\\u9686\\u65b0\\u7ad9\\u524d\\u5e97","phone":"0224273646","address":"\\u5fe0\\u4e00\\u8def\\uff11\\uff19\\u865f"}', '017931', 'quanjia', 'zh-tw', 1000),
(6609, 5964, '5897-5964', 1, '基隆東信店', '{"number":"014689","shop":"\\u57fa\\u9686\\u6771\\u4fe1\\u5e97","phone":"0224669537","address":"\\u6771\\u4fe1\\u8def\\uff15\\u865f"}', '014689', 'quanjia', 'zh-tw', 1000),
(6610, 5964, '5897-5964', 1, '基隆新澳坑店', '{"number":"016283","shop":"\\u57fa\\u9686\\u65b0\\u6fb3\\u5751\\u5e97","phone":"0224683722","address":"\\u6df1\\u6fb3\\u5751\\u8def\\uff11\\uff10\\uff17\\u865f"}', '016283', 'quanjia', 'zh-tw', 1000),
(6611, 5964, '5897-5964', 1, '基隆新深溪店', '{"number":"017150","shop":"\\u57fa\\u9686\\u65b0\\u6df1\\u6eaa\\u5e97","phone":"0224664970","address":"\\u6df1\\u6eaa\\u8def\\uff15\\uff19\\u865f"}', '017150', 'quanjia', 'zh-tw', 1000),
(6612, 5964, '5897-5964', 1, '基隆信義店', '{"number":"016213","shop":"\\u57fa\\u9686\\u4fe1\\u7fa9\\u5e97","phone":"0224255383","address":"\\u4fe1\\u4e8c\\u8def\\uff12\\uff13\\uff16\\uff0d\\uff12\\u865f"}', '016213', 'quanjia', 'zh-tw', 1000),
(6613, 5964, '5897-5964', 1, '基隆信一店', '{"number":"017514","shop":"\\u57fa\\u9686\\u4fe1\\u4e00\\u5e97","phone":"0224241255","address":"\\u4fe1\\u4e00\\u8def\\uff11\\uff14\\uff18\\u865f"}', '017514', 'quanjia', 'zh-tw', 1000),
(6614, 5964, '5897-5964', 1, '基隆新正信店', '{"number":"015670","shop":"\\u57fa\\u9686\\u65b0\\u6b63\\u4fe1\\u5e97","phone":"0224665413","address":"\\u6b63\\u4fe1\\u8def\\uff11\\uff18\\uff11\\u865f"}', '015670', 'quanjia', 'zh-tw', 1000),
(6615, 5965, '5897-5965', 1, '基隆新復興店', '{"number":"016319","shop":"\\u57fa\\u9686\\u65b0\\u5fa9\\u8208\\u5e97","phone":"0224366769","address":"\\u5fa9\\u8208\\u8def\\uff12\\uff10\\uff14\\uff0d\\uff11\\u865f"}', '016319', 'quanjia', 'zh-tw', 1000),
(6616, 5965, '5897-5965', 1, '基隆經國店', '{"number":"010822","shop":"\\u57fa\\u9686\\u7d93\\u570b\\u5e97","phone":"0224374320","address":"\\u5fa9\\u8208\\u8def\\uff13\\uff13\\uff16\\uff0d\\uff11\\u865f"}', '010822', 'quanjia', 'zh-tw', 1000),
(6617, 5965, '5897-5965', 1, '基隆華復店', '{"number":"017863","shop":"\\u57fa\\u9686\\u83ef\\u5fa9\\u5e97","phone":"0224282937","address":"\\u901a\\u5316\\u91cc\\u4e2d\\u83ef\\u8def\\uff12\\u865f\\u5fa9\\u65e6\\u8def\\uff11\\u865f\\uff13\\u865f\\u4e00\\u6a13"}', '017863', 'quanjia', 'zh-tw', 1000),
(6618, 5965, '5897-5965', 1, '基隆樂華店', '{"number":"015669","shop":"\\u57fa\\u9686\\u6a02\\u83ef\\u5e97","phone":"0224285782","address":"\\u897f\\u5eb7\\u91cc\\u897f\\u5b9a\\u8def\\uff14\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '015669', 'quanjia', 'zh-tw', 1000),
(6619, 5965, '5897-5965', 1, '基隆鑫大慶店', '{"number":"016318","shop":"\\u57fa\\u9686\\u946b\\u5927\\u6176\\u5e97","phone":"0224371195","address":"\\u4e2d\\u548c\\u8def\\uff11\\uff16\\uff18\\u5df7\\uff12\\u5f04\\uff11\\uff17\\u865f"}', '016318', 'quanjia', 'zh-tw', 1000),
(6620, 5965, '5897-5965', 1, '基隆囍旺店', '{"number":"018771","shop":"\\u57fa\\u9686\\u56cd\\u65fa\\u5e97","phone":"0224370189","address":"\\u4e2d\\u548c\\u8def\\uff18\\uff15\\u5df7\\uff11\\uff12\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018771', 'quanjia', 'zh-tw', 1000),
(6621, 5965, '5897-5965', 1, '基隆中山店', '{"number":"017306","shop":"\\u57fa\\u9686\\u4e2d\\u5c71\\u5e97","phone":"0224285091","address":"\\u4e2d\\u5c71\\u4e8c\\u8def\\uff15\\uff13\\u865f\\uff0e\\uff15\\uff13\\uff0d\\uff11\\u865f"}', '017306', 'quanjia', 'zh-tw', 1000),
(6622, 5966, '5897-5966', 1, '基隆富港店', '{"number":"018224","shop":"\\u57fa\\u9686\\u5bcc\\u6e2f\\u5e97","phone":"0224699625","address":"\\u5317\\u5be7\\u8def\\uff12\\uff15\\uff10\\uff0d\\uff18\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '018224', 'quanjia', 'zh-tw', 1000),
(6623, 5966, '5897-5966', 1, '基隆海洋店', '{"number":"014185","shop":"\\u57fa\\u9686\\u6d77\\u6d0b\\u5e97","phone":"0224636575","address":"\\u5317\\u5be7\\u8def\\uff12\\u865f"}', '014185', 'quanjia', 'zh-tw', 1000),
(6624, 5966, '5897-5966', 1, '基隆海大店', '{"number":"014688","shop":"\\u57fa\\u9686\\u6d77\\u5927\\u5e97","phone":"0224636566","address":"\\u5317\\u5be7\\u8def\\uff12\\u865f"}', '014688', 'quanjia', 'zh-tw', 1000),
(6625, 5966, '5897-5966', 1, '基隆觀山店', '{"number":"015396","shop":"\\u57fa\\u9686\\u89c0\\u5c71\\u5e97","phone":"0224607005","address":"\\u89c0\\u6d77\\u8857\\uff16\\uff11\\u865f"}', '015396', 'quanjia', 'zh-tw', 1000),
(6626, 5966, '5897-5966', 1, '基隆新和一店', '{"number":"016075","shop":"\\u57fa\\u9686\\u65b0\\u548c\\u4e00\\u5e97","phone":"0224635157","address":"\\u548c\\u4e00\\u8def\\uff11\\uff11\\uff10\\u865f"}', '016075', 'quanjia', 'zh-tw', 1000),
(6627, 5966, '5897-5966', 1, '基隆觀海店', '{"number":"014867","shop":"\\u57fa\\u9686\\u89c0\\u6d77\\u5e97","phone":"0224606545","address":"\\u7802\\u5b50\\u91cc\\u89c0\\u6d77\\u8857\\uff11\\uff13\\uff16\\u865f\\uff11\\uff13\\uff18\\u865f\\u4e00\\u6a13"}', '014867', 'quanjia', 'zh-tw', 1000),
(6628, 5966, '5897-5966', 1, '基隆巴塞店', '{"number":"017986","shop":"\\u57fa\\u9686\\u5df4\\u585e\\u5e97","phone":"0224699472","address":"\\u65b0\\u8c50\\u8857\\uff13\\uff18\\uff15\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '017986', 'quanjia', 'zh-tw', 1000),
(6629, 5966, '5897-5966', 1, '基隆新義二店', '{"number":"014086","shop":"\\u57fa\\u9686\\u65b0\\u7fa9\\u4e8c\\u5e97","phone":"0224267442","address":"\\u7fa9\\u4e8c\\u8def\\uff13\\uff14\\u865f"}', '014086', 'quanjia', 'zh-tw', 1000),
(6630, 5966, '5897-5966', 1, '基隆新中船店', '{"number":"015941","shop":"\\u57fa\\u9686\\u65b0\\u4e2d\\u8239\\u5e97","phone":"0224245729","address":"\\u4e2d\\u8239\\u8def\\uff18\\uff12\\u865f"}', '015941', 'quanjia', 'zh-tw', 1000),
(6631, 5966, '5897-5966', 1, '基隆鑫港店', '{"number":"018850","shop":"\\u57fa\\u9686\\u946b\\u6e2f\\u5e97","phone":"0224275382","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff18\\u865f\\u58f9\\u6a13"}', '018850', 'quanjia', 'zh-tw', 1000),
(6632, 5966, '5897-5966', 1, '基隆新祥豐店', '{"number":"014328","shop":"\\u57fa\\u9686\\u65b0\\u7965\\u8c50\\u5e97","phone":"0224627260","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff12\\uff13\\u865f\\u58f9\\u6a13"}', '014328', 'quanjia', 'zh-tw', 1000),
(6633, 5966, '5897-5966', 1, '基隆正港店', '{"number":"018271","shop":"\\u57fa\\u9686\\u6b63\\u6e2f\\u5e97","phone":"0224636316","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff14\\uff14\\u865f"}', '018271', 'quanjia', 'zh-tw', 1000),
(6634, 5967, '5898-5967', 1, '嘉義保健店', '{"number":"018400","shop":"\\u5609\\u7fa9\\u4fdd\\u5065\\u5e97","phone":"052778270","address":"\\u4fdd\\u5065\\u8857\\uff11\\uff14\\uff19\\u865f"}', '018400', 'quanjia', 'zh-tw', 1000),
(6635, 5967, '5898-5967', 1, '嘉義博東店', '{"number":"017972","shop":"\\u5609\\u7fa9\\u535a\\u6771\\u5e97","phone":"052788717","address":"\\u535a\\u6771\\u8def\\uff11\\uff18\\uff13\\u865f"}', '017972', 'quanjia', 'zh-tw', 1000),
(6636, 5967, '5898-5967', 1, '嘉義朝陽店', '{"number":"015800","shop":"\\u5609\\u7fa9\\u671d\\u967d\\u5e97","phone":"052764353","address":"\\u5782\\u694a\\u8def\\uff11\\uff13\\uff12\\u865f\\u58f9\\u6a13"}', '015800', 'quanjia', 'zh-tw', 1000),
(6637, 5967, '5898-5967', 1, '嘉義藍潭店', '{"number":"017900","shop":"\\u5609\\u7fa9\\u85cd\\u6f6d\\u5e97","phone":"052764625","address":"\\u5927\\u96c5\\u8def\\u4e8c\\u6bb5\\uff15\\uff15\\uff17\\u865f"}', '017900', 'quanjia', 'zh-tw', 1000),
(6638, 5967, '5898-5967', 1, '嘉義聖馬店', '{"number":"016160","shop":"\\u5609\\u7fa9\\u8056\\u99ac\\u5e97","phone":"052777467","address":"\\u5927\\u96c5\\u8def\\u4e8c\\u6bb5\\uff15\\uff16\\uff15\\u865f\\u4e8c\\u6a13\\u5546\\u5e97\\u8857"}', '016160', 'quanjia', 'zh-tw', 1000),
(6639, 5967, '5898-5967', 1, '嘉義台林店', '{"number":"015798","shop":"\\u5609\\u7fa9\\u53f0\\u6797\\u5e97","phone":"052756775","address":"\\u9802\\u5e84\\u91cc\\u53f0\\u6797\\u8857\\uff12\\uff16\\uff10\\u865f"}', '015798', 'quanjia', 'zh-tw', 1000),
(6640, 5967, '5898-5967', 1, '嘉義芳草店', '{"number":"016430","shop":"\\u5609\\u7fa9\\u82b3\\u8349\\u5e97","phone":"052235698","address":"\\u82b3\\u8349\\u91cc\\uff11\\uff15\\u9130\\u7acb\\u4ec1\\u8def\\uff18\\u865f\\u4e00\\u6a13"}', '016430', 'quanjia', 'zh-tw', 1000),
(6641, 5967, '5898-5967', 1, '嘉義新東義店', '{"number":"016431","shop":"\\u5609\\u7fa9\\u65b0\\u6771\\u7fa9\\u5e97","phone":"052789206","address":"\\u6797\\u68ee\\u6771\\u8def\\uff13\\uff11\\uff19\\u5df7\\uff16\\uff11\\u865f"}', '016431', 'quanjia', 'zh-tw', 1000),
(6642, 5967, '5898-5967', 1, '嘉義日新店', '{"number":"017380","shop":"\\u5609\\u7fa9\\u65e5\\u65b0\\u5e97","phone":"052788326","address":"\\u5f4c\\u9640\\u8def\\uff12\\uff13\\uff18\\u5df7\\uff16\\uff19\\u865f"}', '017380', 'quanjia', 'zh-tw', 1000),
(6643, 5967, '5898-5967', 1, '嘉義仁義店', '{"number":"017292","shop":"\\u5609\\u7fa9\\u4ec1\\u7fa9\\u5e97","phone":"052766504","address":"\\u53f0\\u6797\\u8857\\uff19\\uff19\\u865f"}', '017292', 'quanjia', 'zh-tw', 1000),
(6644, 5967, '5898-5967', 1, '嘉義東雅店', '{"number":"015500","shop":"\\u5609\\u7fa9\\u6771\\u96c5\\u5e97","phone":"052763383","address":"\\u6587\\u96c5\\u8857\\uff14\\uff11\\u865f"}', '015500', 'quanjia', 'zh-tw', 1000),
(6645, 5967, '5898-5967', 1, '嘉義祥鳳店', '{"number":"018545","shop":"\\u5609\\u7fa9\\u7965\\u9cf3\\u5e97","phone":"052229819","address":"\\u5433\\u9cf3\\u5317\\u8def\\uff11\\uff11\\uff12\\u865f\\uff11\\uff26"}', '018545', 'quanjia', 'zh-tw', 1000),
(6646, 5967, '5898-5967', 1, '嘉義興安店', '{"number":"018672","shop":"\\u5609\\u7fa9\\u8208\\u5b89\\u5e97","phone":"052226570","address":"\\u8208\\u5b89\\u8857\\uff11\\uff19\\uff19\\u865f"}', '018672', 'quanjia', 'zh-tw', 1000),
(6647, 5967, '5898-5967', 1, '嘉義宣信店', '{"number":"017161","shop":"\\u5609\\u7fa9\\u5ba3\\u4fe1\\u5e97","phone":"052292039","address":"\\u5ba3\\u4fe1\\u8857\\uff12\\uff14\\uff18\\u865f"}', '017161', 'quanjia', 'zh-tw', 1000),
(6648, 5967, '5898-5967', 1, '嘉義五圓店', '{"number":"018408","shop":"\\u5609\\u7fa9\\u4e94\\u5713\\u5e97","phone":"052760913","address":"\\u5733\\u982d\\u91cc\\u5713\\u798f\\u8857\\uff11\\uff11\\uff18\\u5df7\\uff12\\u5f04\\uff11\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '018408', 'quanjia', 'zh-tw', 1000),
(6649, 5968, '5898-5968', 1, '嘉義八德店', '{"number":"018994","shop":"\\u5609\\u7fa9\\u516b\\u5fb7\\u5e97","phone":"052911792","address":"\\u516b\\u5fb7\\u8def\\uff12\\uff14\\uff10\\u865f"}', '018994', 'quanjia', 'zh-tw', 1000),
(6650, 5968, '5898-5968', 1, '嘉義保安店', '{"number":"016461","shop":"\\u5609\\u7fa9\\u4fdd\\u5b89\\u5e97","phone":"052911249","address":"\\u4fdd\\u5b89\\u4e8c\\u8def\\uff11\\uff15\\uff19\\u865f"}', '016461', 'quanjia', 'zh-tw', 1000),
(6651, 5968, '5898-5968', 1, '嘉義北園店', '{"number":"018731","shop":"\\u5609\\u7fa9\\u5317\\u5712\\u5e97","phone":"052382806","address":"\\u4fdd\\u5b89\\u91cc\\u5317\\u793e\\u5c3e\\u8def\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '018731', 'quanjia', 'zh-tw', 1000),
(6652, 5968, '5898-5968', 1, '嘉義興達店', '{"number":"015180","shop":"\\u5609\\u7fa9\\u8208\\u9054\\u5e97","phone":"052319795","address":"\\u4fdd\\u5b89\\u91cc\\u8208\\u9054\\u8def\\uff13\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '015180', 'quanjia', 'zh-tw', 1000),
(6653, 5968, '5898-5968', 1, '嘉義北港店', '{"number":"017656","shop":"\\u5609\\u7fa9\\u5317\\u6e2f\\u5e97","phone":"052387313","address":"\\u5317\\u6e2f\\u8def\\uff11\\uff14\\uff16\\uff15\\u865f"}', '017656', 'quanjia', 'zh-tw', 1000),
(6654, 5968, '5898-5968', 1, '嘉義南京店', '{"number":"018615","shop":"\\u5609\\u7fa9\\u5357\\u4eac\\u5e97","phone":"052838475","address":"\\u8eca\\u5e97\\u91cc\\u5357\\u4eac\\u8def\\uff14\\uff12\\uff13\\u865f\\uff14\\uff12\\uff17\\u865f"}', '018615', 'quanjia', 'zh-tw', 1000),
(6655, 5968, '5898-5968', 1, '嘉義國楊店', '{"number":"016757","shop":"\\u5609\\u7fa9\\u570b\\u694a\\u5e97","phone":"052165585","address":"\\u5782\\u694a\\u8def\\uff14\\uff13\\uff14\\u865f"}', '016757', 'quanjia', 'zh-tw', 1000),
(6656, 5968, '5898-5968', 1, '嘉義湖瑞店', '{"number":"016127","shop":"\\u5609\\u7fa9\\u6e56\\u745e\\u5e97","phone":"052841584","address":"\\u5149\\u8def\\u91cc\\u6c11\\u751f\\u5357\\u8def\\uff15\\uff18\\uff19\\u865f"}', '016127', 'quanjia', 'zh-tw', 1000),
(6657, 5968, '5898-5968', 1, '嘉義向榮店', '{"number":"013500","shop":"\\u5609\\u7fa9\\u5411\\u69ae\\u5e97","phone":"052319535","address":"\\u570b\\u83ef\\u8857\\uff15\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '013500', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(6658, 5968, '5898-5968', 1, '嘉義中榮店', '{"number":"016620","shop":"\\u5609\\u7fa9\\u4e2d\\u69ae\\u5e97","phone":"052844853","address":"\\u5609\\u7fa9\\u5e02\\u897f\\u5340\\u4e16\\u8ce2\\u8def\\u4e8c\\u6bb5\\uff16\\uff10\\uff10\\u865f"}', '016620', 'quanjia', 'zh-tw', 1000),
(6659, 5968, '5898-5968', 1, '嘉義大山店', '{"number":"018766","shop":"\\u5609\\u7fa9\\u5927\\u5c71\\u5e97","phone":"052842826","address":"\\u5289\\u539d\\u91cc\\uff13\\uff13\\u9130\\u7389\\u5c71\\u8def\\uff14\\uff19\\uff11\\u865f"}', '018766', 'quanjia', 'zh-tw', 1000),
(6660, 5968, '5898-5968', 1, '嘉義憶富店', '{"number":"012699","shop":"\\u5609\\u7fa9\\u61b6\\u5bcc\\u5e97","phone":"052229931","address":"\\u6c11\\u6b0a\\u8def\\uff13\\uff19\\uff16\\u865f\\uff11\\u6a13"}', '012699', 'quanjia', 'zh-tw', 1000),
(6661, 5968, '5898-5968', 1, '嘉義光路店', '{"number":"012459","shop":"\\u5609\\u7fa9\\u5149\\u8def\\u5e97","phone":"052843075","address":"\\u6c11\\u751f\\u5357\\u8def\\uff15\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '012459', 'quanjia', 'zh-tw', 1000),
(6662, 5968, '5898-5968', 1, '嘉義漢口店', '{"number":"017891","shop":"\\u5609\\u7fa9\\u6f22\\u53e3\\u5e97","phone":"052844070","address":"\\u5357\\u4eac\\u8def\\uff13\\uff19\\uff12\\u865f"}', '017891', 'quanjia', 'zh-tw', 1000),
(6663, 5968, '5898-5968', 1, '嘉義仁安店', '{"number":"017596","shop":"\\u5609\\u7fa9\\u4ec1\\u5b89\\u5e97","phone":"052843206","address":"\\u4ec1\\u611b\\u8def\\uff11\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '017596', 'quanjia', 'zh-tw', 1000),
(6664, 5968, '5898-5968', 1, '嘉義鑫愛店', '{"number":"016398","shop":"\\u5609\\u7fa9\\u946b\\u611b\\u5e97","phone":"052277893","address":"\\u4ec1\\u611b\\u8def\\uff15\\uff10\\uff18\\u865f"}', '016398', 'quanjia', 'zh-tw', 1000),
(6665, 5968, '5898-5968', 1, '嘉義上新店', '{"number":"015634","shop":"\\u5609\\u7fa9\\u4e0a\\u65b0\\u5e97","phone":"052840713","address":"\\u4e0a\\u6d77\\u8def\\uff13\\uff12\\uff12\\u865f\\u5168\\u90e8"}', '015634', 'quanjia', 'zh-tw', 1000),
(6666, 5968, '5898-5968', 1, '嘉義玉山店', '{"number":"014498","shop":"\\u5609\\u7fa9\\u7389\\u5c71\\u5e97","phone":"052842603","address":"\\u4e16\\u8ce2\\u8def\\u4e8c\\u6bb5\\uff14\\uff16\\uff18\\u865f"}', '014498', 'quanjia', 'zh-tw', 1000),
(6667, 5968, '5898-5968', 1, '嘉義新榮店', '{"number":"016758","shop":"\\u5609\\u7fa9\\u65b0\\u69ae\\u5e97","phone":"052278676","address":"\\u65b0\\u69ae\\u8def\\uff13\\uff13\\uff17\\u865f\\u4e4b\\uff12\\u3000\\uff11\\u6a13"}', '016758', 'quanjia', 'zh-tw', 1000),
(6668, 5968, '5898-5968', 1, '嘉義龍興店', '{"number":"018137","shop":"\\u5609\\u7fa9\\u9f8d\\u8208\\u5e97","phone":"052911081","address":"\\u8208\\u9054\\u8def\\uff11\\uff16\\uff16\\u865f\\u9644\\uff11"}', '018137', 'quanjia', 'zh-tw', 1000),
(6669, 5968, '5898-5968', 1, '嘉義興雅店', '{"number":"017415","shop":"\\u5609\\u7fa9\\u8208\\u96c5\\u5e97","phone":"052910040","address":"\\u8208\\u96c5\\u8def\\uff17\\uff12\\u865f"}', '017415', 'quanjia', 'zh-tw', 1000),
(6670, 5968, '5898-5968', 1, '嘉義德慶店', '{"number":"016450","shop":"\\u5609\\u7fa9\\u5fb7\\u6176\\u5e97","phone":"052319477","address":"\\u4e2d\\u8208\\u8def\\uff13\\uff11\\uff19\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '016450', 'quanjia', 'zh-tw', 1000),
(6671, 5968, '5898-5968', 1, '嘉義自強店', '{"number":"018383","shop":"\\u5609\\u7fa9\\u81ea\\u5f37\\u5e97","phone":"052863047","address":"\\u81ea\\u5f37\\u8857\\uff18\\uff16\\u865f\\u3001\\uff18\\uff18\\u865f\\u3001\\uff19\\uff10\\u865f\\u3001\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '018383', 'quanjia', 'zh-tw', 1000),
(6672, 5969, '5899-5969', 1, '布袋上海店', '{"number":"017763","shop":"\\u5e03\\u888b\\u4e0a\\u6d77\\u5e97","phone":"053478805","address":"\\u4e0a\\u6d77\\u8def\\uff12\\uff11\\uff11\\u865f"}', '017763', 'quanjia', 'zh-tw', 1000),
(6673, 5969, '5899-5969', 1, '布袋金滿店', '{"number":"016395","shop":"\\u5e03\\u888b\\u91d1\\u6eff\\u5e97","phone":"053477739","address":"\\u6c38\\u5b89\\u91cc\\uff12\\uff10\\uff17\\u865f\\uff11\\u6a13"}', '016395', 'quanjia', 'zh-tw', 1000),
(6674, 5970, '5899-5970', 1, '大林大埔美店', '{"number":"018810","shop":"\\u5927\\u6797\\u5927\\u57d4\\u7f8e\\u5e97","phone":"052955892","address":"\\u5927\\u7f8e\\u91cc\\u4e92\\u52a9\\u793e\\u5340\\uff11\\uff15\\u865f"}', '018810', 'quanjia', 'zh-tw', 1000),
(6675, 5970, '5899-5970', 1, '大林佳能店', '{"number":"017222","shop":"\\u5927\\u6797\\u4f73\\u80fd\\u5e97","phone":"052955238","address":"\\u5927\\u57d4\\u7f8e\\u5712\\u5340\\u4e00\\u8def\\uff14\\uff16\\u865f\\u4e8c\\u6a13"}', '017222', 'quanjia', 'zh-tw', 1000),
(6676, 5970, '5899-5970', 1, '大林明華店', '{"number":"017771","shop":"\\u5927\\u6797\\u660e\\u83ef\\u5e97","phone":"052642683","address":"\\u6c11\\u751f\\u5317\\u8def\\uff16\\uff11\\u865f"}', '017771', 'quanjia', 'zh-tw', 1000),
(6677, 5970, '5899-5970', 1, '大林慈院店', '{"number":"013263","shop":"\\u5927\\u6797\\u6148\\u9662\\u5e97","phone":"052641294","address":"\\u6c11\\u751f\\u8def\\uff12\\u865f\\uff22\\uff11\\u6a13"}', '013263', 'quanjia', 'zh-tw', 1000),
(6678, 5970, '5899-5970', 1, '大林內林店', '{"number":"018767","shop":"\\u5927\\u6797\\u5167\\u6797\\u5e97","phone":"052956586","address":"\\u5167\\u6797\\u91cc\\uff12\\uff12\\uff19\\uff0d\\uff11\\u865f"}', '018767', 'quanjia', 'zh-tw', 1000),
(6679, 5970, '5899-5970', 1, '大林大發店', '{"number":"018576","shop":"\\u5927\\u6797\\u5927\\u767c\\u5e97","phone":"052641039","address":"\\u897f\\u6797\\u91cc\\u4e2d\\u6b63\\u8def\\uff14\\uff18\\uff15\\u865f"}', '018576', 'quanjia', 'zh-tw', 1000),
(6680, 5970, '5899-5970', 1, '大林站前店', '{"number":"015458","shop":"\\u5927\\u6797\\u7ad9\\u524d\\u5e97","phone":"052649515","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '015458', 'quanjia', 'zh-tw', 1000),
(6681, 5970, '5899-5970', 1, '大林民生店', '{"number":"017742","shop":"\\u5927\\u6797\\u6c11\\u751f\\u5e97","phone":"052641797","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\uff18\\uff12\\u865f\\u53ca\\u7a7a\\u5730\\u7d04\\uff11\\uff19\\uff10\\u576a"}', '017742', 'quanjia', 'zh-tw', 1000),
(6682, 5971, '5899-5971', 1, '東石蚵庄店', '{"number":"018288","shop":"\\u6771\\u77f3\\u86b5\\u5e84\\u5e97","phone":"053734531","address":"\\u6771\\u77f3\\u6751\\u6771\\u77f3\\uff15\\u865f\\u9644\\uff16"}', '018288', 'quanjia', 'zh-tw', 1000),
(6683, 5972, '5899-5972', 1, '番路觸口店', '{"number":"017810","shop":"\\u756a\\u8def\\u89f8\\u53e3\\u5e97","phone":"052592923","address":"\\u89f8\\u53e3\\u6751\\uff11\\uff0d\\uff11\\uff10\\u865f"}', '017810', 'quanjia', 'zh-tw', 1000),
(6684, 5973, '5899-5973', 1, '六腳蒜頭店', '{"number":"018067","shop":"\\u516d\\u8173\\u849c\\u982d\\u5e97","phone":"053805752","address":"\\u849c\\u982d\\u6751\\uff11\\uff12\\uff15\\u865f"}', '018067', 'quanjia', 'zh-tw', 1000),
(6685, 5974, '5899-5974', 1, '鹿草福祿店', '{"number":"017714","shop":"\\u9e7f\\u8349\\u798f\\u797f\\u5e97","phone":"053753947","address":"\\u897f\\u4e95\\u6751\\u9e7f\\u8349\\u8def\\uff12\\uff19\\uff10\\u865f\\u3001\\uff12\\uff19\\uff10\\u865f\\u9644\\uff11"}', '017714', 'quanjia', 'zh-tw', 1000),
(6686, 5975, '5899-5975', 1, '梅山公園店', '{"number":"017971","shop":"\\u6885\\u5c71\\u516c\\u5712\\u5e97","phone":"052621278","address":"\\u516c\\u5712\\u8def\\uff13\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '017971', 'quanjia', 'zh-tw', 1000),
(6687, 5976, '5899-5976', 1, '民雄十四甲店', '{"number":"018629","shop":"\\u6c11\\u96c4\\u5341\\u56db\\u7532\\u5e97","phone":"052207908","address":"\\u5927\\u5d0e\\u6751\\uff17\\u9130\\u5341\\u56db\\u7532\\u8def\\uff11\\uff16\\u4e4b\\uff14\\u865f"}', '018629', 'quanjia', 'zh-tw', 1000),
(6688, 5976, '5899-5976', 1, '中正新創店', '{"number":"013856","shop":"\\u4e2d\\u6b63\\u65b0\\u5275\\u5e97","phone":"052722824","address":"\\u5927\\u5b78\\u8def\\uff11\\uff16\\uff18\\u865f\\uff08\\u5171\\u540c\\u79d1\\u6559\\u5ba4\\uff09"}', '013856', 'quanjia', 'zh-tw', 1000),
(6689, 5976, '5899-5976', 1, '民雄埤角店', '{"number":"016810","shop":"\\u6c11\\u96c4\\u57e4\\u89d2\\u5e97","phone":"052206503","address":"\\u798f\\u6a02\\u6751\\u57e4\\u89d2\\uff11\\uff10\\uff16\\u865f"}', '016810', 'quanjia', 'zh-tw', 1000),
(6690, 5976, '5899-5976', 1, '民雄新金興店', '{"number":"017132","shop":"\\u6c11\\u96c4\\u65b0\\u91d1\\u8208\\u5e97","phone":"052203668","address":"\\u91d1\\u8208\\u6751\\uff12\\uff11\\u9130\\u5fe0\\u7fa9\\u8857\\uff18\\uff13\\u865f\\u5168\\u68df"}', '017132', 'quanjia', 'zh-tw', 1000),
(6691, 5976, '5899-5976', 1, '民雄福樂店', '{"number":"017131","shop":"\\u6c11\\u96c4\\u798f\\u6a02\\u5e97","phone":"052219351","address":"\\u57e4\\u89d2\\u8def\\uff12\\u4e4b\\uff19\\uff11\\u865f\\u4e00\\u6a13"}', '017131', 'quanjia', 'zh-tw', 1000),
(6692, 5976, '5899-5976', 1, '中正大學店', '{"number":"013855","shop":"\\u4e2d\\u6b63\\u5927\\u5b78\\u5e97","phone":"052723991","address":"\\u4e09\\u8208\\u6751\\uff11\\uff16\\uff10\\u865f"}', '013855', 'quanjia', 'zh-tw', 1000),
(6693, 5976, '5899-5976', 1, '中正大學附店', '{"number":"017473","shop":"\\u4e2d\\u6b63\\u5927\\u5b78\\u9644\\u5e97","phone":"052722372","address":"\\u4e09\\u8208\\u6751\\uff11\\uff16\\uff18\\u865f\\uff08\\u5b78\\u4eba\\u5bbf\\u820d\\uff09"}', '017473', 'quanjia', 'zh-tw', 1000),
(6694, 5976, '5899-5976', 1, '民雄神農店', '{"number":"016781","shop":"\\u6c11\\u96c4\\u795e\\u8fb2\\u5e97","phone":"052723206","address":"\\u4e09\\u8208\\u6751\\u516c\\u5712\\u8def\\uff13\\uff17\\uff10\\u865f\\u58f9\\u6a13"}', '016781', 'quanjia', 'zh-tw', 1000),
(6695, 5976, '5899-5976', 1, '民雄興平店', '{"number":"014549","shop":"\\u6c11\\u96c4\\u8208\\u5e73\\u5e97","phone":"052265398","address":"\\u6607\\u5e73\\u8def\\uff14\\uff12\\u865f"}', '014549', 'quanjia', 'zh-tw', 1000),
(6696, 5976, '5899-5976', 1, '民雄雙福店', '{"number":"017130","shop":"\\u6c11\\u96c4\\u96d9\\u798f\\u5e97","phone":"052205479","address":"\\u96d9\\u798f\\u6751\\u5efa\\u570b\\u8def\\u4e8c\\u6bb5\\uff18\\uff10\\u865f\\u3001\\uff18\\uff12\\u865f\\u4e00\\u6a13"}', '017130', 'quanjia', 'zh-tw', 1000),
(6697, 5976, '5899-5976', 1, '民雄江厝店', '{"number":"018856","shop":"\\u6c11\\u96c4\\u6c5f\\u539d\\u5e97","phone":"052212962","address":"\\u8208\\u4e2d\\u6751\\u6c5f\\u539d\\u5e97\\uff15\\uff14\\uff0d\\uff11\\u865f"}', '018856', 'quanjia', 'zh-tw', 1000),
(6698, 5976, '5899-5976', 1, '民雄正大店', '{"number":"013883","shop":"\\u6c11\\u96c4\\u6b63\\u5927\\u5e97","phone":"052208968","address":"\\u6b63\\u5927\\u8def\\u4e00\\u6bb5\\uff19\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '013883', 'quanjia', 'zh-tw', 1000),
(6699, 5977, '5899-5977', 1, '朴子嘉庚店', '{"number":"017051","shop":"\\u6734\\u5b50\\u5609\\u5e9a\\u5e97","phone":"053625445","address":"\\u5609\\u6734\\u8def\\u897f\\u6bb5\\uff16\\u865f"}', '017051', 'quanjia', 'zh-tw', 1000),
(6700, 5977, '5899-5977', 1, '朴子南通店', '{"number":"014063","shop":"\\u6734\\u5b50\\u5357\\u901a\\u5e97","phone":"053707834","address":"\\u5357\\u901a\\u8def\\u4e09\\u6bb5\\uff17\\uff16\\uff17\\u865f\\u3001\\uff17\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '014063', 'quanjia', 'zh-tw', 1000),
(6701, 5977, '5899-5977', 1, '朴子鴨母寮店', '{"number":"016126","shop":"\\u6734\\u5b50\\u9d28\\u6bcd\\u5bee\\u5e97","phone":"053692982","address":"\\u9d28\\u6bcd\\u5bee\\uff11\\u4e4b\\uff11\\uff18\\u865f"}', '016126', 'quanjia', 'zh-tw', 1000),
(6702, 5977, '5899-5977', 1, '朴子四海店', '{"number":"017452","shop":"\\u6734\\u5b50\\u56db\\u6d77\\u5e97","phone":"053707141","address":"\\u6c38\\u548c\\u91cc\\u61c9\\u83dc\\u57d4\\uff12\\uff19\\uff0d\\uff16\\u865f"}', '017452', 'quanjia', 'zh-tw', 1000),
(6703, 5978, '5899-5978', 1, '水上鎮安店', '{"number":"016161","shop":"\\u6c34\\u4e0a\\u93ae\\u5b89\\u5e97","phone":"052352125","address":"\\u5bec\\u58eb\\u6751\\u5d0e\\u4ed4\\u982d\\uff13\\uff11\\u4e4b\\uff12\\u865f"}', '016161', 'quanjia', 'zh-tw', 1000),
(6704, 5978, '5899-5978', 1, '水上柳子林店', '{"number":"016275","shop":"\\u6c34\\u4e0a\\u67f3\\u5b50\\u6797\\u5e97","phone":"052688937","address":"\\u67f3\\u6797\\u6751\\uff11\\uff15\\uff10\\uff10\\u865f"}', '016275', 'quanjia', 'zh-tw', 1000),
(6705, 5978, '5899-5978', 1, '水上中興店', '{"number":"018295","shop":"\\u6c34\\u4e0a\\u4e2d\\u8208\\u5e97","phone":"052684426","address":"\\u4e2d\\u8208\\u8def\\uff12\\uff17\\uff19\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018295', 'quanjia', 'zh-tw', 1000),
(6706, 5978, '5899-5978', 1, '水上福德店', '{"number":"016081","shop":"\\u6c34\\u4e0a\\u798f\\u5fb7\\u5e97","phone":"052681562","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff16\\uff11\\u865f\\u3001\\uff11\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '016081', 'quanjia', 'zh-tw', 1000),
(6707, 5979, '5899-5979', 1, '太保麻魚店', '{"number":"017195","shop":"\\u592a\\u4fdd\\u9ebb\\u9b5a\\u5e97","phone":"052385049","address":"\\u9ebb\\u5bee\\u91cc\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff15\\u865f"}', '017195', 'quanjia', 'zh-tw', 1000),
(6708, 5979, '5899-5979', 1, '太保縣府店', '{"number":"016128","shop":"\\u592a\\u4fdd\\u7e23\\u5e9c\\u5e97","phone":"053627137","address":"\\u7965\\u548c\\u4e09\\u8def\\u6771\\u6bb5\\uff12\\uff11\\uff12\\u865f\\u4e00\\u6a13"}', '016128', 'quanjia', 'zh-tw', 1000),
(6709, 5979, '5899-5979', 1, '太保嘉新店', '{"number":"017710","shop":"\\u592a\\u4fdd\\u5609\\u65b0\\u5e97","phone":"052386407","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff18\\uff10\\uff16\\u865f\\uff11\\u6a13\\u3001\\uff12\\u6a13"}', '017710', 'quanjia', 'zh-tw', 1000),
(6710, 5980, '5899-5980', 1, '新港中洋店', '{"number":"012845","shop":"\\u65b0\\u6e2f\\u4e2d\\u6d0b\\u5e97","phone":"053774310","address":"\\u4e09\\u9593\\u539d\\uff11\\uff17\\uff19\\u865f"}', '012845', 'quanjia', 'zh-tw', 1000),
(6711, 5980, '5899-5980', 1, '新港天后店', '{"number":"016860","shop":"\\u65b0\\u6e2f\\u5929\\u540e\\u5e97","phone":"053742300","address":"\\u4e2d\\u5c71\\u8def\\uff13\\uff15\\u865f"}', '016860', 'quanjia', 'zh-tw', 1000),
(6712, 5981, '5899-5981', 1, '中埔興化店', '{"number":"018069","shop":"\\u4e2d\\u57d4\\u8208\\u5316\\u5e97","phone":"052399132","address":"\\u5bcc\\u88d5\\u8def\\uff14\\uff11\\uff13\\u865f"}', '018069', 'quanjia', 'zh-tw', 1000),
(6713, 5981, '5899-5981', 1, '中埔中華店', '{"number":"011680","shop":"\\u4e2d\\u57d4\\u4e2d\\u83ef\\u5e97","phone":"052390438","address":"\\u548c\\u7766\\u6751\\u4e2d\\u83ef\\u8def\\uff16\\uff17\\uff18\\u865f"}', '011680', 'quanjia', 'zh-tw', 1000),
(6714, 5981, '5899-5981', 1, '中埔和興店', '{"number":"012595","shop":"\\u4e2d\\u57d4\\u548c\\u8208\\u5e97","phone":"052394800","address":"\\u548c\\u8208\\u6751\\u4e2d\\u5c71\\u8def\\u4e94\\u6bb5\\uff19\\uff14\\uff13\\u865f"}', '012595', 'quanjia', 'zh-tw', 1000),
(6715, 5981, '5899-5981', 1, '中埔頂山門店', '{"number":"017927","shop":"\\u4e2d\\u57d4\\u9802\\u5c71\\u9580\\u5e97","phone":"052399662","address":"\\u91d1\\u862d\\u6751\\u9802\\u5c71\\u9580\\uff16\\u4e4b\\uff12\\uff18\\u865f"}', '017927', 'quanjia', 'zh-tw', 1000),
(6716, 5981, '5899-5981', 1, '中埔明珠店', '{"number":"011787","shop":"\\u4e2d\\u57d4\\u660e\\u73e0\\u5e97","phone":"052538162","address":"\\u793e\\u53e3\\u6751\\uff11\\uff19\\u9130\\u6aa8\\u4ed4\\u6797\\uff12\\uff13\\uff0d\\uff17\\u865f"}', '011787', 'quanjia', 'zh-tw', 1000),
(6717, 5982, '5899-5982', 1, '竹崎灣橋店', '{"number":"018287","shop":"\\u7af9\\u5d0e\\u7063\\u6a4b\\u5e97","phone":"052793585","address":"\\u7063\\u6a4b\\u6751\\u4e94\\u9593\\u539d\\uff13\\u4e4b\\uff16\\u865f"}', '018287', 'quanjia', 'zh-tw', 1000),
(6718, 5982, '5899-5982', 1, '竹崎中山店', '{"number":"016396","shop":"\\u7af9\\u5d0e\\u4e2d\\u5c71\\u5e97","phone":"052616307","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff18\\uff12\\u865f"}', '016396', 'quanjia', 'zh-tw', 1000),
(6719, 5983, '5900-5983', 1, '金門城隍店', '{"number":"018647","shop":"\\u91d1\\u9580\\u57ce\\u968d\\u5e97","phone":"082322401","address":"\\u5149\\u524d\\u8def\\uff13\\uff19\\uff0d\\uff15\\u865f"}', '018647', 'quanjia', 'zh-tw', 1000),
(6720, 5984, '5900-5984', 1, '金門金發店', '{"number":"018228","shop":"\\u91d1\\u9580\\u91d1\\u767c\\u5e97","phone":"082335913","address":"\\u74b0\\u5cf6\\u5357\\u8def\\uff14\\u6bb5\\uff14\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '018228', 'quanjia', 'zh-tw', 1000),
(6721, 5984, '5900-5984', 1, '金門金湖店', '{"number":"018200","shop":"\\u91d1\\u9580\\u91d1\\u6e56\\u5e97","phone":"082333202","address":"\\u5c71\\u5916\\u91cc\\u592a\\u6e56\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018200', 'quanjia', 'zh-tw', 1000),
(6722, 5985, '5900-5985', 1, '金門伯玉店', '{"number":"018437","shop":"\\u91d1\\u9580\\u4f2f\\u7389\\u5e97","phone":"082326891","address":"\\u4f2f\\u7389\\u8def\\uff12\\u6bb5\\uff13\\uff15\\uff11\\u865f"}', '018437', 'quanjia', 'zh-tw', 1000),
(6723, 5985, '5900-5985', 1, '金門大學店', '{"number":"017858","shop":"\\u91d1\\u9580\\u5927\\u5b78\\u5e97","phone":"082324519","address":"\\u74b0\\u5cf6\\u5317\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff18\\u4e4b\\uff11\\u865f"}', '017858', 'quanjia', 'zh-tw', 1000),
(6724, 5985, '5900-5985', 1, '金門金寧店', '{"number":"018162","shop":"\\u91d1\\u9580\\u91d1\\u5be7\\u5e97","phone":"082311068","address":"\\u6797\\u6e56\\u8def\\uff12\\uff19\\uff15\\uff0d\\uff15\\u865f\\uff11\\u6a13"}', '018162', 'quanjia', 'zh-tw', 1000),
(6725, 5986, '5901-5986', 1, '大湖新南昌店', '{"number":"012478","shop":"\\u5927\\u6e56\\u65b0\\u5357\\u660c\\u5e97","phone":"037995457","address":"\\u5357\\u660c\\u8def\\uff12\\uff10\\u865f"}', '012478', 'quanjia', 'zh-tw', 1000),
(6726, 5987, '5901-5987', 1, '公館福星店', '{"number":"018711","shop":"\\u516c\\u9928\\u798f\\u661f\\u5e97","phone":"037233702","address":"\\u798f\\u661f\\u6751\\u798f\\u661f\\uff12\\uff10\\uff10\\u865f"}', '018711', 'quanjia', 'zh-tw', 1000),
(6727, 5987, '5901-5987', 1, '公館新鶴岡店', '{"number":"018283","shop":"\\u516c\\u9928\\u65b0\\u9db4\\u5ca1\\u5e97","phone":"037237605","address":"\\u9db4\\u5c71\\u6751\\uff17\\u9130\\u9db4\\u5c71\\uff12\\uff13\\uff15\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '018283', 'quanjia', 'zh-tw', 1000),
(6728, 5987, '5901-5987', 1, '公館金交流店', '{"number":"017128","shop":"\\u516c\\u9928\\u91d1\\u4ea4\\u6d41\\u5e97","phone":"037233561","address":"\\u7389\\u8c37\\u6751\\uff11\\uff14\\u9130\\u5411\\u967d\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '017128', 'quanjia', 'zh-tw', 1000),
(6729, 5987, '5901-5987', 1, '公館農會店', '{"number":"015291","shop":"\\u516c\\u9928\\u8fb2\\u6703\\u5e97","phone":"037237517","address":"\\u5fe0\\u5b5d\\u8def\\uff12\\uff12\\uff17\\u865f"}', '015291', 'quanjia', 'zh-tw', 1000),
(6730, 5988, '5901-5988', 1, '後龍新東店', '{"number":"014722","shop":"\\u5f8c\\u9f8d\\u65b0\\u6771\\u5e97","phone":"037731679","address":"\\u8c50\\u5bcc\\u91cc\\u9020\\u8c50\\u8def\\uff11\\uff12\\uff16\\u865f"}', '014722', 'quanjia', 'zh-tw', 1000),
(6731, 5988, '5901-5988', 1, '苗栗高鐵店', '{"number":"016390","shop":"\\u82d7\\u6817\\u9ad8\\u9435\\u5e97","phone":"037248133","address":"\\u9ad8\\u9435\\u4e09\\u8def\\uff12\\uff16\\uff18\\u865f"}', '016390', 'quanjia', 'zh-tw', 1000),
(6732, 5988, '5901-5988', 1, '後龍好望角店', '{"number":"018500","shop":"\\u5f8c\\u9f8d\\u597d\\u671b\\u89d2\\u5e97","phone":"037727508","address":"\\u5341\\u73ed\\u5751\\uff11\\uff15\\uff15\\uff0d\\uff11\\uff11\\u865f"}', '018500', 'quanjia', 'zh-tw', 1000),
(6733, 5988, '5901-5988', 1, '後龍大龍店', '{"number":"016901","shop":"\\u5f8c\\u9f8d\\u5927\\u9f8d\\u5e97","phone":"037729069","address":"\\u4e2d\\u5317\\u8857\\uff16\\uff17\\uff0d\\uff13\\u865f\\uff16\\uff17\\uff0d\\uff14\\u865f\\uff16\\uff17\\uff0d\\uff15\\u865f"}', '016901', 'quanjia', 'zh-tw', 1000),
(6734, 5989, '5901-5989', 1, '苗栗新大發店', '{"number":"016587","shop":"\\u82d7\\u6817\\u65b0\\u5927\\u767c\\u5e97","phone":"037261796","address":"\\u798f\\u5b89\\u91cc\\uff12\\uff12\\u9130\\u4e2d\\u83ef\\u8def\\uff16\\uff17\\uff13\\u865f"}', '016587', 'quanjia', 'zh-tw', 1000),
(6735, 5989, '5901-5989', 1, '苗栗中山店', '{"number":"015252","shop":"\\u82d7\\u6817\\u4e2d\\u5c71\\u5e97","phone":"037336919","address":"\\u9ad8\\u82d7\\u91cc\\u4e2d\\u5c71\\u8def\\uff19\\uff18\\uff16\\u4e4b\\uff14\\u865f\\u4e00\\u6a13"}', '015252', 'quanjia', 'zh-tw', 1000),
(6736, 5989, '5901-5989', 1, '聯合大學店', '{"number":"017541","shop":"\\u806f\\u5408\\u5927\\u5b78\\u5e97","phone":"037350968","address":"\\u606d\\u656c\\u91cc\\u806f\\u5927\\uff11\\u865f"}', '017541', 'quanjia', 'zh-tw', 1000),
(6737, 5989, '5901-5989', 1, '苗栗嘉新店', '{"number":"013955","shop":"\\u82d7\\u6817\\u5609\\u65b0\\u5e97","phone":"037267843","address":"\\u570b\\u83ef\\u8def\\uff11\\uff12\\uff16\\u865f"}', '013955', 'quanjia', 'zh-tw', 1000),
(6738, 5989, '5901-5989', 1, '苗栗福麗店', '{"number":"016988","shop":"\\u82d7\\u6817\\u798f\\u9e97\\u5e97","phone":"037378597","address":"\\u6c11\\u65cf\\u8def\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '016988', 'quanjia', 'zh-tw', 1000),
(6739, 5989, '5901-5989', 1, '苗栗聯大店', '{"number":"013321","shop":"\\u82d7\\u6817\\u806f\\u5927\\u5e97","phone":"037381430","address":"\\u5357\\u52e2\\u91cc\\u806f\\u5927\\u4e8c\\u865f"}', '013321', 'quanjia', 'zh-tw', 1000),
(6740, 5989, '5901-5989', 1, '苗栗台鐵店', '{"number":"017006","shop":"\\u82d7\\u6817\\u53f0\\u9435\\u5e97","phone":"037275374","address":"\\u70ba\\u516c\\u8def\\uff11\\uff0d\\uff11\\u865f\\uff13\\u6a13"}', '017006', 'quanjia', 'zh-tw', 1000),
(6741, 5989, '5901-5989', 1, '苗栗真興店', '{"number":"016061","shop":"\\u82d7\\u6817\\u771f\\u8208\\u5e97","phone":"037265972","address":"\\u70ba\\u516c\\u8def\\uff15\\uff14\\uff10\\u865f"}', '016061', 'quanjia', 'zh-tw', 1000),
(6742, 5989, '5901-5989', 1, '苗栗大勝店', '{"number":"018398","shop":"\\u82d7\\u6817\\u5927\\u52dd\\u5e97","phone":"037325993","address":"\\u65b0\\u6771\\u8857\\uff11\\uff14\\uff12\\u865f"}', '018398', 'quanjia', 'zh-tw', 1000),
(6743, 5989, '5901-5989', 1, '苗栗英才店', '{"number":"018134","shop":"\\u82d7\\u6817\\u82f1\\u624d\\u5e97","phone":"037372848","address":"\\u82f1\\u624d\\u8def\\uff11\\uff12\\uff17\\u865f"}', '018134', 'quanjia', 'zh-tw', 1000),
(6744, 5989, '5901-5989', 1, '苗栗玉清店', '{"number":"017708","shop":"\\u82d7\\u6817\\u7389\\u6e05\\u5e97","phone":"037373733","address":"\\u7389\\u6e05\\u91cc\\u7389\\u6e05\\u8def\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '017708', 'quanjia', 'zh-tw', 1000),
(6745, 5989, '5901-5989', 1, '苗栗新農會店', '{"number":"017969","shop":"\\u82d7\\u6817\\u65b0\\u8fb2\\u6703\\u5e97","phone":"037359757","address":"\\u4e2d\\u82d7\\u91cc\\uff11\\uff14\\u9130\\u4e2d\\u5c71\\u8def\\uff15\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '017969', 'quanjia', 'zh-tw', 1000),
(6746, 5989, '5901-5989', 1, '苗栗大利店', '{"number":"016210","shop":"\\u82d7\\u6817\\u5927\\u5229\\u5e97","phone":"037369349","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff11\\uff13\\uff12\\u865f"}', '016210', 'quanjia', 'zh-tw', 1000),
(6747, 5989, '5901-5989', 1, '苗栗富樂店', '{"number":"017377","shop":"\\u82d7\\u6817\\u5bcc\\u6a02\\u5e97","phone":"037358638","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff19\\uff19\\u865f\\u4e00\\u6a13"}', '017377', 'quanjia', 'zh-tw', 1000),
(6748, 5989, '5901-5989', 1, '苗栗自治店', '{"number":"017608","shop":"\\u82d7\\u6817\\u81ea\\u6cbb\\u5e97","phone":"037368221","address":"\\u81ea\\u6cbb\\u8def\\uff11\\uff16\\uff12\\u865f"}', '017608', 'quanjia', 'zh-tw', 1000),
(6749, 5990, '5901-5990', 1, '南庄桂花園店', '{"number":"012430","shop":"\\u5357\\u5e84\\u6842\\u82b1\\u5712\\u5e97","phone":"037823692","address":"\\u5357\\u6c5f\\u6751\\uff15\\u9130\\u6771\\u6c5f\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '012430', 'quanjia', 'zh-tw', 1000),
(6750, 5991, '5901-5991', 1, '三義休息站店', '{"number":"018346","shop":"\\u4e09\\u7fa9\\u4f11\\u606f\\u7ad9\\u5e97","phone":"037870372","address":"\\u897f\\u6e56\\u6751\\u4e0b\\u6e56\\uff15\\uff0d\\uff11\\uff10\\u865f"}', '018346', 'quanjia', 'zh-tw', 1000),
(6751, 5992, '5901-5992', 1, '苗栗獅潭店', '{"number":"015873","shop":"\\u82d7\\u6817\\u7345\\u6f6d\\u5e97","phone":"037932482","address":"\\u65b0\\u5e97\\u6751\\u65b0\\u5e97\\uff11\\uff15\\uff10\\u4e4b\\uff16\\u865f\\u4e00\\u6a13"}', '015873', 'quanjia', 'zh-tw', 1000),
(6752, 5993, '5901-5993', 1, '通霄中正店', '{"number":"013275","shop":"\\u901a\\u9704\\u4e2d\\u6b63\\u5e97","phone":"037759228","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff10\\u865f"}', '013275', 'quanjia', 'zh-tw', 1000),
(6753, 5993, '5901-5993', 1, '通霄河堤店', '{"number":"015978","shop":"\\u901a\\u9704\\u6cb3\\u5824\\u5e97","phone":"037757074","address":"\\u5fe0\\u5b5d\\u8def\\uff18\\uff0d\\uff11\\u865f"}', '015978', 'quanjia', 'zh-tw', 1000),
(6754, 5994, '5901-5994', 1, '銅鑼新福興店', '{"number":"012424","shop":"\\u9285\\u947c\\u65b0\\u798f\\u8208\\u5e97","phone":"037981203","address":"\\u798f\\u8208\\u6751\\uff11\\uff13\\u9130\\u5e73\\u967d\\u8def\\uff14\\uff10\\uff0d\\uff16\\u865f\\uff11\\u6a13"}', '012424', 'quanjia', 'zh-tw', 1000),
(6755, 5994, '5901-5994', 1, '銅鑼工業店', '{"number":"016238","shop":"\\u9285\\u947c\\u5de5\\u696d\\u5e97","phone":"037232502","address":"\\u4e2d\\u5e73\\u6751\\u4e2d\\u8208\\u8def\\uff13\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016238', 'quanjia', 'zh-tw', 1000),
(6756, 5994, '5901-5994', 1, '銅鑼金銅鑼店', '{"number":"018440","shop":"\\u9285\\u947c\\u91d1\\u9285\\u947c\\u5e97","phone":"037982922","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff13\\uff13\\u865f"}', '018440', 'quanjia', 'zh-tw', 1000),
(6757, 5995, '5901-5995', 1, '頭份斗煥店', '{"number":"014196","shop":"\\u982d\\u4efd\\u6597\\u7165\\u5e97","phone":"037691198","address":"\\u5927\\u71df\\u8def\\uff11\\u865f"}', '014196', 'quanjia', 'zh-tw', 1000),
(6758, 5995, '5901-5995', 1, '頭份尚順店', '{"number":"013792","shop":"\\u982d\\u4efd\\u5c1a\\u9806\\u5e97","phone":"037596441","address":"\\u6771\\u6c11\\u4e09\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '013792', 'quanjia', 'zh-tw', 1000),
(6759, 5995, '5901-5995', 1, '頭份公園店', '{"number":"014130","shop":"\\u982d\\u4efd\\u516c\\u5712\\u5e97","phone":"037637836","address":"\\u6771\\u5e84\\u91cc\\u516c\\u5712\\u8def\\uff12\\u865f"}', '014130', 'quanjia', 'zh-tw', 1000),
(6760, 5995, '5901-5995', 1, '頭份和平店', '{"number":"013878","shop":"\\u982d\\u4efd\\u548c\\u5e73\\u5e97","phone":"037595069","address":"\\u548c\\u5e73\\u8def\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '013878', 'quanjia', 'zh-tw', 1000),
(6761, 5995, '5901-5995', 1, '頭份文化店', '{"number":"016931","shop":"\\u982d\\u4efd\\u6587\\u5316\\u5e97","phone":"037687195","address":"\\u5f8c\\u5e84\\u91cc\\u6587\\u5316\\u8857\\uff12\\uff10\\uff19\\u865f\\u4e00\\u6a13"}', '016931', 'quanjia', 'zh-tw', 1000),
(6762, 5995, '5901-5995', 1, '頭份大同店', '{"number":"017066","shop":"\\u982d\\u4efd\\u5927\\u540c\\u5e97","phone":"037598262","address":"\\u5efa\\u570b\\u91cc\\u5927\\u540c\\u8def\\uff11\\u865f\\u4e00\\u6a13"}', '017066', 'quanjia', 'zh-tw', 1000),
(6763, 5995, '5901-5995', 1, '頭份雙民店', '{"number":"011989","shop":"\\u982d\\u4efd\\u96d9\\u6c11\\u5e97","phone":"037594283","address":"\\u6c11\\u65cf\\u91cc\\u6c11\\u65cf\\u8def\\uff11\\uff19\\uff16\\u865f\\uff11\\u6a13"}', '011989', 'quanjia', 'zh-tw', 1000),
(6764, 5995, '5901-5995', 1, '頭份尚順二店', '{"number":"018117","shop":"\\u982d\\u4efd\\u5c1a\\u9806\\u4e8c\\u5e97","phone":"037696023","address":"\\u5c1a\\u9806\\u8def\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '018117', 'quanjia', 'zh-tw', 1000),
(6765, 5995, '5901-5995', 1, '頭份田寮店', '{"number":"012633","shop":"\\u982d\\u4efd\\u7530\\u5bee\\u5e97","phone":"037637825","address":"\\u7530\\u5bee\\u91cc\\uff11\\uff10\\u9130\\u81ea\\u5f37\\u8def\\uff12\\u6bb5\\uff16\\uff12\\uff18\\u865f"}', '012633', 'quanjia', 'zh-tw', 1000),
(6766, 5995, '5901-5995', 1, '頭份為恭店', '{"number":"011425","shop":"\\u982d\\u4efd\\u70ba\\u606d\\u5e97","phone":"037597731","address":"\\u4fe1\\u7fa9\\u8def\\uff11\\uff12\\uff18\\u865f\\uff11\\u6a13\\uff08\\u5982\\u9644\\u5716\\u6240\\u793a\\uff09"}', '011425', 'quanjia', 'zh-tw', 1000),
(6767, 5995, '5901-5995', 1, '頭份八寶店', '{"number":"017835","shop":"\\u982d\\u4efd\\u516b\\u5bf6\\u5e97","phone":"037625806","address":"\\u4fe1\\u7fa9\\u8def\\uff15\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '017835', 'quanjia', 'zh-tw', 1000),
(6768, 5995, '5901-5995', 1, '頭份信東店', '{"number":"018057","shop":"\\u982d\\u4efd\\u4fe1\\u6771\\u5e97","phone":"037662980","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff11\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '018057', 'quanjia', 'zh-tw', 1000),
(6769, 5995, '5901-5995', 1, '頭份武昌店', '{"number":"017011","shop":"\\u982d\\u4efd\\u6b66\\u660c\\u5e97","phone":"037662470","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff13\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '017011', 'quanjia', 'zh-tw', 1000),
(6770, 5995, '5901-5995', 1, '頭份立華店', '{"number":"016955","shop":"\\u982d\\u4efd\\u7acb\\u83ef\\u5e97","phone":"037695982","address":"\\u4e2d\\u83ef\\u8def\\uff16\\uff10\\uff10\\u4e4b\\uff18\\u865f\\uff11\\u6a13"}', '016955', 'quanjia', 'zh-tw', 1000),
(6771, 5995, '5901-5995', 1, '頭份尖山店', '{"number":"018406","shop":"\\u982d\\u4efd\\u5c16\\u5c71\\u5e97","phone":"037634989","address":"\\u4e2d\\u83ef\\u8def\\uff18\\u865f"}', '018406', 'quanjia', 'zh-tw', 1000),
(6772, 5995, '5901-5995', 1, '頭份信義店', '{"number":"017813","shop":"\\u982d\\u4efd\\u4fe1\\u7fa9\\u5e97","phone":"037691745","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff13\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017813', 'quanjia', 'zh-tw', 1000),
(6773, 5995, '5901-5995', 1, '頭份新市鎮店', '{"number":"017423","shop":"\\u982d\\u4efd\\u65b0\\u5e02\\u93ae\\u5e97","phone":"037630276","address":"\\u4e2d\\u592e\\u8def\\uff17\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '017423', 'quanjia', 'zh-tw', 1000),
(6774, 5995, '5901-5995', 1, '頭份中央店', '{"number":"015692","shop":"\\u982d\\u4efd\\u4e2d\\u592e\\u5e97","phone":"037676449","address":"\\u4e2d\\u592e\\u8def\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '015692', 'quanjia', 'zh-tw', 1000),
(6775, 5995, '5901-5995', 1, '頭份上公園店', '{"number":"016598","shop":"\\u982d\\u4efd\\u4e0a\\u516c\\u5712\\u5e97","phone":"037592732","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff15\\uff16\\u865f"}', '016598', 'quanjia', 'zh-tw', 1000),
(6776, 5996, '5901-5996', 1, '頭屋雙龍店', '{"number":"016186","shop":"\\u982d\\u5c4b\\u96d9\\u9f8d\\u5e97","phone":"037252310","address":"\\u5c16\\u8c50\\u8def\\uff11\\uff13\\uff15\\uff0d\\uff12\\u865f"}', '016186', 'quanjia', 'zh-tw', 1000),
(6777, 5997, '5901-5997', 1, '苑裡新興店', '{"number":"015523","shop":"\\u82d1\\u88e1\\u65b0\\u8208\\u5e97","phone":"037860826","address":"\\u5927\\u540c\\u8def\\uff13\\u865f"}', '015523', 'quanjia', 'zh-tw', 1000),
(6778, 5997, '5901-5997', 1, '苑裡甜心店', '{"number":"017737","shop":"\\u82d1\\u88e1\\u751c\\u5fc3\\u5e97","phone":"037741579","address":"\\u5c71\\u67d1\\u91cc\\uff19\\u9130\\u5c71\\u67d1\\uff19\\uff13\\u865f"}', '017737', 'quanjia', 'zh-tw', 1000),
(6779, 5997, '5901-5997', 1, '苑裡社苓店', '{"number":"015237","shop":"\\u82d1\\u88e1\\u793e\\u82d3\\u5e97","phone":"037745382","address":"\\u793e\\u82d3\\u91cc\\uff11\\uff11\\uff10\\uff0d\\uff15\\u865f"}', '015237', 'quanjia', 'zh-tw', 1000),
(6780, 5997, '5901-5997', 1, '苑裡金世界店', '{"number":"016626","shop":"\\u82d1\\u88e1\\u91d1\\u4e16\\u754c\\u5e97","phone":"037857210","address":"\\u4e16\\u754c\\u8def\\uff12\\u6bb5\\uff12\\uff16\\uff18\\u865f"}', '016626', 'quanjia', 'zh-tw', 1000),
(6781, 5997, '5901-5997', 1, '苑裡新信義店', '{"number":"014969","shop":"\\u82d1\\u88e1\\u65b0\\u4fe1\\u7fa9\\u5e97","phone":"037856811","address":"\\u82d1\\u6771\\u91cc\\u5efa\\u570b\\u8def\\uff15\\uff16\\uff0d\\uff12\\u865f"}', '014969', 'quanjia', 'zh-tw', 1000),
(6782, 5998, '5901-5998', 1, '造橋朝陽店', '{"number":"013183","shop":"\\u9020\\u6a4b\\u671d\\u967d\\u5e97","phone":"037562446","address":"\\u671d\\u967d\\u6751\\u671d\\u967d\\u8def\\uff11\\uff12\\uff17\\u865f"}', '013183', 'quanjia', 'zh-tw', 1000),
(6783, 5999, '5901-5999', 1, '竹南博愛店', '{"number":"018211","shop":"\\u7af9\\u5357\\u535a\\u611b\\u5e97","phone":"037480834","address":"\\u535a\\u611b\\u8857\\uff15\\uff13\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018211', 'quanjia', 'zh-tw', 1000),
(6784, 5999, '5901-5999', 1, '竹南新七囍店', '{"number":"015352","shop":"\\u7af9\\u5357\\u65b0\\u4e03\\u56cd\\u5e97","phone":"037550642","address":"\\u535a\\u611b\\u8857\\uff17\\uff19\\uff19\\u865f"}', '015352', 'quanjia', 'zh-tw', 1000),
(6785, 5999, '5901-5999', 1, '竹南中義店', '{"number":"018101","shop":"\\u7af9\\u5357\\u4e2d\\u7fa9\\u5e97","phone":"037586083","address":"\\u516c\\u7fa9\\u8def\\uff11\\uff13\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '018101', 'quanjia', 'zh-tw', 1000),
(6786, 5999, '5901-5999', 1, '竹南新豐店', '{"number":"012388","shop":"\\u7af9\\u5357\\u65b0\\u8c50\\u5e97","phone":"037635603","address":"\\u516c\\u7fa9\\u8def\\uff11\\uff13\\uff16\\u865f\\uff16\\u6a13"}', '012388', 'quanjia', 'zh-tw', 1000),
(6787, 5999, '5901-5999', 1, '竹南廣源店', '{"number":"018652","shop":"\\u7af9\\u5357\\u5ee3\\u6e90\\u5e97","phone":"037586466","address":"\\u516c\\u7fa9\\u8def\\uff11\\uff16\\uff13\\uff16\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018652', 'quanjia', 'zh-tw', 1000),
(6788, 5999, '5901-5999', 1, '竹南光華店', '{"number":"014750","shop":"\\u7af9\\u5357\\u5149\\u83ef\\u5e97","phone":"037484619","address":"\\u5149\\u5fa9\\u8def\\uff12\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '014750', 'quanjia', 'zh-tw', 1000),
(6789, 5999, '5901-5999', 1, '竹南環市店', '{"number":"016805","shop":"\\u7af9\\u5357\\u74b0\\u5e02\\u5e97","phone":"037478611","address":"\\u74b0\\u5e02\\u8def\\u4e8c\\u6bb5\\uff17\\uff15\\u865f\\uff11\\u6a13\\uff12\\u6a13"}', '016805', 'quanjia', 'zh-tw', 1000),
(6790, 5999, '5901-5999', 1, '竹南環營店', '{"number":"017667","shop":"\\u7af9\\u5357\\u74b0\\u71df\\u5e97","phone":"037480422","address":"\\u74b0\\u5e02\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff12\\u865f"}', '017667', 'quanjia', 'zh-tw', 1000),
(6791, 5999, '5901-5999', 1, '竹南龍佳店', '{"number":"015378","shop":"\\u7af9\\u5357\\u9f8d\\u4f73\\u5e97","phone":"037615681","address":"\\u4f73\\u5317\\u4e8c\\u8857\\uff11\\u865f"}', '015378', 'quanjia', 'zh-tw', 1000),
(6792, 5999, '5901-5999', 1, '竹南家扶店', '{"number":"014751","shop":"\\u7af9\\u5357\\u5bb6\\u6276\\u5e97","phone":"037584849","address":"\\u79d1\\u5b78\\u8def\\uff11\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '014751', 'quanjia', 'zh-tw', 1000),
(6793, 5999, '5901-5999', 1, '竹南金大埔店', '{"number":"017948","shop":"\\u7af9\\u5357\\u91d1\\u5927\\u57d4\\u5e97","phone":"037583680","address":"\\u79d1\\u5c08\\u4e03\\u8def\\uff12\\uff12\\uff11\\u865f"}', '017948', 'quanjia', 'zh-tw', 1000),
(6794, 5999, '5901-5999', 1, '竹南正大埔店', '{"number":"018040","shop":"\\u7af9\\u5357\\u6b63\\u5927\\u57d4\\u5e97","phone":"037583620","address":"\\u79d1\\u5c08\\u4e94\\u8def\\uff12\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '018040', 'quanjia', 'zh-tw', 1000),
(6795, 5999, '5901-5999', 1, '竹南龍鳳店', '{"number":"017350","shop":"\\u7af9\\u5357\\u9f8d\\u9cf3\\u5e97","phone":"037479480","address":"\\u9f8d\\u9cf3\\u91cc\\uff12\\uff10\\u9130\\u9f8d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff17\\u865f"}', '017350', 'quanjia', 'zh-tw', 1000),
(6796, 5999, '5901-5999', 1, '竹南龍好店', '{"number":"015535","shop":"\\u7af9\\u5357\\u9f8d\\u597d\\u5e97","phone":"037462495","address":"\\u9f8d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\u865f\\u4e00\\u6a13"}', '015535', 'quanjia', 'zh-tw', 1000),
(6797, 5999, '5901-5999', 1, '竹南群聯店', '{"number":"017422","shop":"\\u7af9\\u5357\\u7fa4\\u806f\\u5e97","phone":"037583247","address":"\\u7fa4\\u7fa9\\u8def\\uff11\\u865f\\uff17\\u6a13"}', '017422', 'quanjia', 'zh-tw', 1000),
(6798, 5999, '5901-5999', 1, '竹南龍天店', '{"number":"016687","shop":"\\u7af9\\u5357\\u9f8d\\u5929\\u5e97","phone":"037474675","address":"\\u8056\\u798f\\u91cc\\u9f8d\\u5929\\u8def\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '016687', 'quanjia', 'zh-tw', 1000),
(6799, 5999, '5901-5999', 1, '竹南天文店', '{"number":"017643","shop":"\\u7af9\\u5357\\u5929\\u6587\\u5e97","phone":"037611158","address":"\\u5929\\u6587\\u8def\\uff15\\uff11\\u865f"}', '017643', 'quanjia', 'zh-tw', 1000),
(6800, 5999, '5901-5999', 1, '竹南崁頂店', '{"number":"018828","shop":"\\u7af9\\u5357\\u5d01\\u9802\\u5e97","phone":"037614709","address":"\\u6c38\\u8c9e\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff19\\u865f"}', '018828', 'quanjia', 'zh-tw', 1000),
(6801, 5999, '5901-5999', 1, '竹南京華店', '{"number":"013607","shop":"\\u7af9\\u5357\\u4eac\\u83ef\\u5e97","phone":"037668774","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '013607', 'quanjia', 'zh-tw', 1000),
(6802, 5999, '5901-5999', 1, '竹南中華店', '{"number":"015100","shop":"\\u7af9\\u5357\\u4e2d\\u83ef\\u5e97","phone":"037595730","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff18\\uff19\\u865f\\uff11\\u6a13\\u3001\\uff12\\u6a13"}', '015100', 'quanjia', 'zh-tw', 1000),
(6803, 5999, '5901-5999', 1, '竹南火車頭店', '{"number":"015855","shop":"\\u7af9\\u5357\\u706b\\u8eca\\u982d\\u5e97","phone":"037462484","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff16\\uff16\\u865f\\uff12\\u6a13"}', '015855', 'quanjia', 'zh-tw', 1000),
(6804, 5999, '5901-5999', 1, '竹南大營店', '{"number":"018341","shop":"\\u7af9\\u5357\\u5927\\u71df\\u5e97","phone":"037462542","address":"\\u81ea\\u7531\\u8857\\uff11\\uff19\\uff18\\u865f"}', '018341', 'quanjia', 'zh-tw', 1000),
(6805, 6000, '5901-6000', 1, '卓蘭上新店', '{"number":"017996","shop":"\\u5353\\u862d\\u4e0a\\u65b0\\u5e97","phone":"0425898473","address":"\\u4e0a\\u65b0\\u91cc\\uff11\\uff19\\u9130\\u4e0a\\u65b0\\uff11\\uff12\\u865f"}', '017996', 'quanjia', 'zh-tw', 1000),
(6806, 6000, '5901-6000', 1, '卓蘭水梨店', '{"number":"016313","shop":"\\u5353\\u862d\\u6c34\\u68a8\\u5e97","phone":"0425897758","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff18\\u865f"}', '016313', 'quanjia', 'zh-tw', 1000),
(6807, 6001, '5902-6001', 1, '草屯草狀元店', '{"number":"016856","shop":"\\u8349\\u5c6f\\u8349\\u72c0\\u5143\\u5e97","phone":"0492312947","address":"\\u8349\\u6eaa\\u8def\\uff16\\uff10\\uff15\\u865f\\uff11\\u6a13"}', '016856', 'quanjia', 'zh-tw', 1000),
(6808, 6001, '5902-6001', 1, '草屯金昌店', '{"number":"013999","shop":"\\u8349\\u5c6f\\u91d1\\u660c\\u5e97","phone":"0492560184","address":"\\u5bcc\\u6797\\u8def\\u4e00\\u6bb5\\uff13\\uff12\\uff10\\u865f"}', '013999', 'quanjia', 'zh-tw', 1000),
(6809, 6001, '5902-6001', 1, '草屯東寶店', '{"number":"018427","shop":"\\u8349\\u5c6f\\u6771\\u5bf6\\u5e97","phone":"0492322734","address":"\\u864e\\u5c71\\u8def\\uff17\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '018427', 'quanjia', 'zh-tw', 1000),
(6810, 6001, '5902-6001', 1, '草屯敦和店', '{"number":"018532","shop":"\\u8349\\u5c6f\\u6566\\u548c\\u5e97","phone":"0492313291","address":"\\u4ec1\\u611b\\u8857\\uff18\\uff19\\u865f"}', '018532', 'quanjia', 'zh-tw', 1000),
(6811, 6001, '5902-6001', 1, '草屯太平店', '{"number":"013013","shop":"\\u8349\\u5c6f\\u592a\\u5e73\\u5e97","phone":"0492393238","address":"\\u592a\\u5e73\\u8def\\u4e00\\u6bb5\\uff14\\uff19\\uff18\\u865f"}', '013013', 'quanjia', 'zh-tw', 1000),
(6812, 6001, '5902-6001', 1, '草屯金安店', '{"number":"015321","shop":"\\u8349\\u5c6f\\u91d1\\u5b89\\u5e97","phone":"0492569945","address":"\\u5fa1\\u5bcc\\u8def\\uff12\\uff11\\uff18\\u865f"}', '015321', 'quanjia', 'zh-tw', 1000),
(6813, 6001, '5902-6001', 1, '草屯佑民店', '{"number":"012823","shop":"\\u8349\\u5c6f\\u4f51\\u6c11\\u5e97","phone":"0492392916","address":"\\u6b63\\u8208\\u8857\\uff17\\uff18\\u865f"}', '012823', 'quanjia', 'zh-tw', 1000),
(6814, 6001, '5902-6001', 1, '草屯金安全店', '{"number":"017851","shop":"\\u8349\\u5c6f\\u91d1\\u5b89\\u5168\\u5e97","phone":"0492565781","address":"\\u4e2d\\u548c\\u8def\\uff11\\uff10\\uff10\\u865f"}', '017851', 'quanjia', 'zh-tw', 1000),
(6815, 6001, '5902-6001', 1, '草屯同安店', '{"number":"014132","shop":"\\u8349\\u5c6f\\u540c\\u5b89\\u5e97","phone":"0492354555","address":"\\u4e2d\\u5c71\\u8857\\uff12\\uff14\\uff17\\u865f"}', '014132', 'quanjia', 'zh-tw', 1000),
(6816, 6001, '5902-6001', 1, '草屯稻豐店', '{"number":"017389","shop":"\\u8349\\u5c6f\\u7a3b\\u8c50\\u5e97","phone":"0492307992","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff15\\uff17\\uff13\\u865f"}', '017389', 'quanjia', 'zh-tw', 1000),
(6817, 6001, '5902-6001', 1, '草屯雙冬店', '{"number":"014199","shop":"\\u8349\\u5c6f\\u96d9\\u51ac\\u5e97","phone":"0492572861","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff13\\u4e4b\\uff14\\uff13\\u865f"}', '014199', 'quanjia', 'zh-tw', 1000),
(6818, 6001, '5902-6001', 1, '草屯南開店', '{"number":"016140","shop":"\\u8349\\u5c6f\\u5357\\u958b\\u5e97","phone":"0492568946","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff16\\uff18\\u865f"}', '016140', 'quanjia', 'zh-tw', 1000),
(6819, 6001, '5902-6001', 1, '草屯虎山店', '{"number":"018297","shop":"\\u8349\\u5c6f\\u864e\\u5c71\\u5e97","phone":"0492320230","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff11\\uff10\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '018297', 'quanjia', 'zh-tw', 1000),
(6820, 6001, '5902-6001', 1, '草屯中正店', '{"number":"017462","shop":"\\u8349\\u5c6f\\u4e2d\\u6b63\\u5e97","phone":"0492304751","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff13\\uff16\\u865f"}', '017462', 'quanjia', 'zh-tw', 1000),
(6821, 6002, '5902-6002', 1, '國姓水長流店', '{"number":"016786","shop":"\\u570b\\u59d3\\u6c34\\u9577\\u6d41\\u5e97","phone":"0492432846","address":"\\u9577\\u6d41\\u6751\\u5927\\u9577\\u8def\\uff15\\uff17\\uff17\\uff0d\\uff11\\uff17\\u865f"}', '016786', 'quanjia', 'zh-tw', 1000),
(6822, 6003, '5902-6003', 1, '集集金集店', '{"number":"013696","shop":"\\u96c6\\u96c6\\u91d1\\u96c6\\u5e97","phone":"0492760170","address":"\\u6c11\\u751f\\u8def\\uff16\\uff19\\u865f"}', '013696', 'quanjia', 'zh-tw', 1000),
(6823, 6004, '5902-6004', 1, '鹿谷溪頭店', '{"number":"016228","shop":"\\u9e7f\\u8c37\\u6eaa\\u982d\\u5e97","phone":"0492612677","address":"\\u8208\\u7522\\u8def\\uff12\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '016228', 'quanjia', 'zh-tw', 1000),
(6824, 6004, '5902-6004', 1, '鹿谷農會店', '{"number":"014880","shop":"\\u9e7f\\u8c37\\u8fb2\\u6703\\u5e97","phone":"0492750417","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\uff17\\uff17\\u865f"}', '014880', 'quanjia', 'zh-tw', 1000),
(6825, 6005, '5902-6005', 1, '名間松柏店', '{"number":"016041","shop":"\\u540d\\u9593\\u677e\\u67cf\\u5e97","phone":"0492583284","address":"\\u677e\\u5c71\\u6751\\u540d\\u677e\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff17\\u865f"}', '016041', 'quanjia', 'zh-tw', 1000),
(6826, 6005, '5902-6005', 1, '名間金交流店', '{"number":"012198","shop":"\\u540d\\u9593\\u91d1\\u4ea4\\u6d41\\u5e97","phone":"0492731964","address":"\\u5f70\\u5357\\u8def\\uff12\\uff14\\uff13\\u865f"}', '012198', 'quanjia', 'zh-tw', 1000),
(6827, 6006, '5902-6006', 1, '南投車站店', '{"number":"017850","shop":"\\u5357\\u6295\\u8eca\\u7ad9\\u5e97","phone":"0492242638","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff12\\uff11\\u865f"}', '017850', 'quanjia', 'zh-tw', 1000),
(6828, 6006, '5902-6006', 1, '南投康金店', '{"number":"016521","shop":"\\u5357\\u6295\\u5eb7\\u91d1\\u5e97","phone":"0492247360","address":"\\u5fa9\\u8208\\u8def\\uff13\\uff14\\uff12\\u865f"}', '016521', 'quanjia', 'zh-tw', 1000),
(6829, 6006, '5902-6006', 1, '南投署醫店', '{"number":"015359","shop":"\\u5357\\u6295\\u7f72\\u91ab\\u5e97","phone":"0492240220","address":"\\u5fa9\\u8208\\u8def\\uff14\\uff17\\uff18\\u865f"}', '015359', 'quanjia', 'zh-tw', 1000),
(6830, 6006, '5902-6006', 1, '南投南崗店', '{"number":"017154","shop":"\\u5357\\u6295\\u5357\\u5d17\\u5e97","phone":"0492202035","address":"\\u5357\\u5d17\\u4e8c\\u8def\\uff14\\uff10\\uff13\\u865f\\u4e00\\u6a13"}', '017154', 'quanjia', 'zh-tw', 1000),
(6831, 6006, '5902-6006', 1, '南投老家店', '{"number":"017915","shop":"\\u5357\\u6295\\u8001\\u5bb6\\u5e97","phone":"0492246703","address":"\\u5357\\u5d17\\u4e00\\u8def\\uff12\\uff18\\u865f"}', '017915', 'quanjia', 'zh-tw', 1000),
(6832, 6006, '5902-6006', 1, '南投仁和店', '{"number":"017780","shop":"\\u5357\\u6295\\u4ec1\\u548c\\u5e97","phone":"0492252545","address":"\\u5e73\\u5c71\\u91cc\\u5f70\\u5357\\u8def\\u4e09\\u6bb5\\uff15\\uff13\\u865f"}', '017780', 'quanjia', 'zh-tw', 1000),
(6833, 6006, '5902-6006', 1, '南投新中興店', '{"number":"017005","shop":"\\u5357\\u6295\\u65b0\\u4e2d\\u8208\\u5e97","phone":"0492390012","address":"\\u5b78\\u85dd\\u8def\\uff13\\u865f"}', '017005', 'quanjia', 'zh-tw', 1000),
(6834, 6006, '5902-6006', 1, '南投新村店', '{"number":"018625","shop":"\\u5357\\u6295\\u65b0\\u6751\\u5e97","phone":"0492339180","address":"\\u71df\\u5317\\u91cc\\u4e2d\\u6b63\\u8def\\uff13\\uff13\\uff10\\u4e4b\\uff16\\u865f\\u3001\\u4e4b\\uff11\\uff11\\u865f\\u4e00\\u6a13"}', '018625', 'quanjia', 'zh-tw', 1000),
(6835, 6006, '5902-6006', 1, '南投金袋店', '{"number":"016520","shop":"\\u5357\\u6295\\u91d1\\u888b\\u5e97","phone":"0492246829","address":"\\u80b2\\u6a02\\u8def\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '016520', 'quanjia', 'zh-tw', 1000),
(6836, 6006, '5902-6006', 1, '南投永順店', '{"number":"016650","shop":"\\u5357\\u6295\\u6c38\\u9806\\u5e97","phone":"0492246582","address":"\\u5f70\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff16\\uff10\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '016650', 'quanjia', 'zh-tw', 1000),
(6837, 6006, '5902-6006', 1, '南投光明店', '{"number":"018310","shop":"\\u5357\\u6295\\u5149\\u660e\\u5e97","phone":"0492312857","address":"\\u4e2d\\u8208\\u8def\\uff12\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '018310', 'quanjia', 'zh-tw', 1000),
(6838, 6007, '5902-6007', 1, '埔里安德店', '{"number":"017322","shop":"\\u57d4\\u91cc\\u5b89\\u5fb7\\u5e97","phone":"0492420684","address":"\\u516b\\u5fb7\\u8def\\uff13\\uff18\\u865f"}', '017322', 'quanjia', 'zh-tw', 1000),
(6839, 6007, '5902-6007', 1, '埔里高工店', '{"number":"013582","shop":"\\u57d4\\u91cc\\u9ad8\\u5de5\\u5e97","phone":"0492999423","address":"\\u548c\\u5e73\\u6771\\u8def\\uff14\\uff13\\uff11\\u865f"}', '013582', 'quanjia', 'zh-tw', 1000),
(6840, 6007, '5902-6007', 1, '埔里九龍店', '{"number":"015498","shop":"\\u57d4\\u91cc\\u4e5d\\u9f8d\\u5e97","phone":"0492996297","address":"\\u9686\\u751f\\u8def\\uff17\\uff11\\u865f"}', '015498', 'quanjia', 'zh-tw', 1000),
(6841, 6007, '5902-6007', 1, '埔里埔大店', '{"number":"015328","shop":"\\u57d4\\u91cc\\u57d4\\u5927\\u5e97","phone":"0492906026","address":"\\u6c11\\u751f\\u8def\\uff11\\uff14\\uff16\\u865f"}', '015328', 'quanjia', 'zh-tw', 1000),
(6842, 6007, '5902-6007', 1, '埔里水頭店', '{"number":"015857","shop":"\\u57d4\\u91cc\\u6c34\\u982d\\u5e97","phone":"0492420783","address":"\\u6c34\\u982d\\u91cc\\u4e2d\\u6b63\\u8def\\uff11\\uff16\\uff10\\u865f"}', '015857', 'quanjia', 'zh-tw', 1000),
(6843, 6007, '5902-6007', 1, '埔里金牛店', '{"number":"014518","shop":"\\u57d4\\u91cc\\u91d1\\u725b\\u5e97","phone":"0492915827","address":"\\u6843\\u7c73\\u8def\\uff12\\uff13\\uff0d\\uff17\\u865f"}', '014518', 'quanjia', 'zh-tw', 1000),
(6844, 6007, '5902-6007', 1, '埔里埔基店', '{"number":"011767","shop":"\\u57d4\\u91cc\\u57d4\\u57fa\\u5e97","phone":"0492915116","address":"\\u9435\\u5c71\\u8def\\uff11\\uff0d\\uff12\\u865f"}', '011767', 'quanjia', 'zh-tw', 1000),
(6845, 6007, '5902-6007', 1, '埔里鐵山店', '{"number":"013397","shop":"\\u57d4\\u91cc\\u9435\\u5c71\\u5e97","phone":"0492916873","address":"\\u9435\\u5c71\\u8def\\uff19\\u865f\\uff0e\\uff19\\uff0d\\uff11\\u865f"}', '013397', 'quanjia', 'zh-tw', 1000),
(6846, 6007, '5902-6007', 1, '埔里埔榮店', '{"number":"012168","shop":"\\u57d4\\u91cc\\u57d4\\u69ae\\u5e97","phone":"0492900366","address":"\\u8708\\u86a3\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff17\\u4e4b\\uff17\\u865f\\uff11\\u6a13"}', '012168', 'quanjia', 'zh-tw', 1000),
(6847, 6007, '5902-6007', 1, '埔里牛埔店', '{"number":"014653","shop":"\\u57d4\\u91cc\\u725b\\u57d4\\u5e97","phone":"0492932897","address":"\\u897f\\u5b89\\u8def\\u4e8c\\u6bb5\\uff19\\uff10\\u865f"}', '014653', 'quanjia', 'zh-tw', 1000),
(6848, 6007, '5902-6007', 1, '埔里大坪頂店', '{"number":"018753","shop":"\\u57d4\\u91cc\\u5927\\u576a\\u9802\\u5e97","phone":"0492933067","address":"\\u897f\\u5b89\\u8def\\u4e09\\u6bb5\\uff12\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '018753', 'quanjia', 'zh-tw', 1000),
(6849, 6007, '5902-6007', 1, '埔里枇杷店', '{"number":"017213","shop":"\\u57d4\\u91cc\\u6787\\u6777\\u5e97","phone":"0492986650","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '017213', 'quanjia', 'zh-tw', 1000),
(6850, 6007, '5902-6007', 1, '埔里泰安店', '{"number":"018239","shop":"\\u57d4\\u91cc\\u6cf0\\u5b89\\u5e97","phone":"0492903672","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '018239', 'quanjia', 'zh-tw', 1000),
(6851, 6007, '5902-6007', 1, '埔里愛埔店', '{"number":"016227","shop":"\\u57d4\\u91cc\\u611b\\u57d4\\u5e97","phone":"0492917636","address":"\\u4e2d\\u5c71\\u8def\\u56db\\u6bb5\\uff18\\uff17\\u865f"}', '016227', 'quanjia', 'zh-tw', 1000),
(6852, 6007, '5902-6007', 1, '埔里新東興店', '{"number":"017215","shop":"\\u57d4\\u91cc\\u65b0\\u6771\\u8208\\u5e97","phone":"0492987628","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff10\\uff14\\u865f"}', '017215', 'quanjia', 'zh-tw', 1000),
(6853, 6007, '5902-6007', 1, '埔里東榮店', '{"number":"017610","shop":"\\u57d4\\u91cc\\u6771\\u69ae\\u5e97","phone":"0492994966","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff17\\uff16\\u865f"}', '017610', 'quanjia', 'zh-tw', 1000),
(6854, 6007, '5902-6007', 1, '埔里金車店', '{"number":"015211","shop":"\\u57d4\\u91cc\\u91d1\\u8eca\\u5e97","phone":"0492996831","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff13\\uff14\\u865f"}', '015211', 'quanjia', 'zh-tw', 1000),
(6855, 6007, '5902-6007', 1, '埔里籃城店', '{"number":"016787","shop":"\\u57d4\\u91cc\\u7c43\\u57ce\\u5e97","phone":"0492912500","address":"\\u4e2d\\u6b63\\u8def\\uff19\\uff18\\uff11\\u865f"}', '016787', 'quanjia', 'zh-tw', 1000),
(6856, 6008, '5902-6008', 1, '仁愛高山青店', '{"number":"017267","shop":"\\u4ec1\\u611b\\u9ad8\\u5c71\\u9752\\u5e97","phone":"0492803863","address":"\\u5927\\u540c\\u6751\\u4fe1\\u7fa9\\u5df7\\uff13\\uff14\\u4e4b\\uff16\\u865f"}', '017267', 'quanjia', 'zh-tw', 1000),
(6857, 6008, '5902-6008', 1, '仁愛賽德克店', '{"number":"018467","shop":"\\u4ec1\\u611b\\u8cfd\\u5fb7\\u514b\\u5e97","phone":"0492920748","address":"\\u5357\\u8c50\\u6751\\u4e2d\\u6b63\\u8def\\uff18\\uff17\\uff0d\\uff11\\u865f"}', '018467', 'quanjia', 'zh-tw', 1000),
(6858, 6009, '5902-6009', 1, '魚池伊達邵店', '{"number":"018015","shop":"\\u9b5a\\u6c60\\u4f0a\\u9054\\u90b5\\u5e97","phone":"0492850405","address":"\\u7fa9\\u52c7\\u8857\\uff15\\uff15\\u865f"}', '018015', 'quanjia', 'zh-tw', 1000),
(6859, 6009, '5902-6009', 1, '魚池水沙連店', '{"number":"018213","shop":"\\u9b5a\\u6c60\\u6c34\\u6c99\\u9023\\u5e97","phone":"0492899432","address":"\\u9b5a\\u6c60\\u6751\\u9b5a\\u6c60\\u8857\\uff13\\uff12\\uff12\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018213', 'quanjia', 'zh-tw', 1000),
(6860, 6010, '5902-6010', 1, '南投中寮店', '{"number":"013868","shop":"\\u5357\\u6295\\u4e2d\\u5bee\\u5e97","phone":"0492692671","address":"\\u6c38\\u5b89\\u8857\\uff19\\uff18\\u865f"}', '013868', 'quanjia', 'zh-tw', 1000),
(6861, 6011, '5902-6011', 1, '竹山前山店', '{"number":"016785","shop":"\\u7af9\\u5c71\\u524d\\u5c71\\u5e97","phone":"0492632088","address":"\\u5927\\u660e\\u8def\\uff14\\uff16\\uff11\\u865f"}', '016785', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(6862, 6011, '5902-6011', 1, '竹山金溪店', '{"number":"016335","shop":"\\u7af9\\u5c71\\u91d1\\u6eaa\\u5e97","phone":"0492653787","address":"\\u6771\\u9109\\u8def\\uff15\\u4e4b\\uff17\\uff13\\u865f\\uff11\\u6a13"}', '016335', 'quanjia', 'zh-tw', 1000),
(6863, 6011, '5902-6011', 1, '竹山夯蕃薯店', '{"number":"017400","shop":"\\u7af9\\u5c71\\u592f\\u8543\\u85af\\u5e97","phone":"0492657267","address":"\\u96c6\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff12\\uff19\\u865f"}', '017400', 'quanjia', 'zh-tw', 1000),
(6864, 6011, '5902-6011', 1, '竹山延和店', '{"number":"018031","shop":"\\u7af9\\u5c71\\u5ef6\\u548c\\u5e97","phone":"0492630859","address":"\\u96c6\\u5c71\\u8def\\u4e09\\u6bb5\\uff15\\uff14\\uff12\\u865f"}', '018031', 'quanjia', 'zh-tw', 1000),
(6865, 6011, '5902-6011', 1, '竹山紫南宮店', '{"number":"017145","shop":"\\u7af9\\u5c71\\u7d2b\\u5357\\u5bae\\u5e97","phone":"0492624966","address":"\\u96c6\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff13\\uff17\\u865f"}', '017145', 'quanjia', 'zh-tw', 1000),
(6866, 6011, '5902-6011', 1, '竹山文化園店', '{"number":"017917","shop":"\\u7af9\\u5c71\\u6587\\u5316\\u5712\\u5e97","phone":"0492659758","address":"\\u9bc9\\u5357\\u8def\\uff12\\uff16\\u4e4b\\uff11\\uff12\\uff10\\u865f"}', '017917', 'quanjia', 'zh-tw', 1000),
(6867, 6011, '5902-6011', 1, '竹山金竹店', '{"number":"014655","shop":"\\u7af9\\u5c71\\u91d1\\u7af9\\u5e97","phone":"0492652785","address":"\\u7af9\\u5c71\\u8def\\uff11\\uff0d\\uff16\\uff0d\\uff12\\u865f"}', '014655', 'quanjia', 'zh-tw', 1000),
(6868, 6012, '5903-6012', 1, '澎湖湖西店', '{"number":"017551","shop":"\\u6f8e\\u6e56\\u6e56\\u897f\\u5e97","phone":"069923338","address":"\\u6e56\\u897f\\u6751\\u6e56\\u897f\\uff16\\uff15\\u865f"}', '017551', 'quanjia', 'zh-tw', 1000),
(6869, 6013, '5903-6013', 1, '澎湖光復店', '{"number":"014273","shop":"\\u6f8e\\u6e56\\u5149\\u5fa9\\u5e97","phone":"069260775","address":"\\u5149\\u5fa9\\u8def\\uff11\\uff17\\uff19\\u865f"}', '014273', 'quanjia', 'zh-tw', 1000),
(6870, 6013, '5903-6013', 1, '澎湖和田店', '{"number":"017342","shop":"\\u6f8e\\u6e56\\u548c\\u7530\\u5e97","phone":"069267983","address":"\\u6c11\\u6b0a\\u8def\\uff12\\u865f\\u4e00\\u6a13"}', '017342', 'quanjia', 'zh-tw', 1000),
(6871, 6013, '5903-6013', 1, '澎湖民族店', '{"number":"016719","shop":"\\u6f8e\\u6e56\\u6c11\\u65cf\\u5e97","phone":"069266673","address":"\\u6c11\\u65cf\\u8def\\uff15\\uff18\\u4e4b\\uff12\\u865f"}', '016719', 'quanjia', 'zh-tw', 1000),
(6872, 6013, '5903-6013', 1, '澎湖鑫科店', '{"number":"018275","shop":"\\u6f8e\\u6e56\\u946b\\u79d1\\u5e97","phone":"069265145","address":"\\u4e09\\u591a\\u8def\\uff11\\uff11\\uff18\\u865f"}', '018275', 'quanjia', 'zh-tw', 1000),
(6873, 6013, '5903-6013', 1, '澎湖三多店', '{"number":"018259","shop":"\\u6f8e\\u6e56\\u4e09\\u591a\\u5e97","phone":"069269810","address":"\\u4e09\\u591a\\u8def\\uff13\\uff10\\uff12\\u865f\\u4e00\\u6a13"}', '018259', 'quanjia', 'zh-tw', 1000),
(6874, 6013, '5903-6013', 1, '澎湖百利店', '{"number":"017623","shop":"\\u6f8e\\u6e56\\u767e\\u5229\\u5e97","phone":"069213717","address":"\\u65b0\\u5e97\\u8def\\uff14\\uff15\\uff19\\u865f\\u4e00\\u6a13"}', '017623', 'quanjia', 'zh-tw', 1000),
(6875, 6013, '5903-6013', 1, '澎湖朝陽店', '{"number":"017793","shop":"\\u6f8e\\u6e56\\u671d\\u967d\\u5e97","phone":"069262242","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff16\\uff19\\u865f"}', '017793', 'quanjia', 'zh-tw', 1000),
(6876, 6013, '5903-6013', 1, '澎湖海洋店', '{"number":"017155","shop":"\\u6f8e\\u6e56\\u6d77\\u6d0b\\u5e97","phone":"069269492","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff16\\u865f"}', '017155', 'quanjia', 'zh-tw', 1000),
(6877, 6013, '5903-6013', 1, '澎湖馬公店', '{"number":"017142","shop":"\\u6f8e\\u6e56\\u99ac\\u516c\\u5e97","phone":"069266458","address":"\\u91cd\\u6176\\u8857\\uff16\\uff11\\u865f"}', '017142', 'quanjia', 'zh-tw', 1000),
(6878, 6014, '5903-6014', 1, '澎湖外垵店', '{"number":"016382","shop":"\\u6f8e\\u6e56\\u5916\\u57b5\\u5e97","phone":"069982869","address":"\\u5916\\u57b5\\u6751\\uff11\\uff13\\uff10\\u865f"}', '016382', 'quanjia', 'zh-tw', 1000),
(6879, 6015, '5904-6015', 1, '長治德和店', '{"number":"016485","shop":"\\u9577\\u6cbb\\u5fb7\\u548c\\u5e97","phone":"087625826","address":"\\u5fb7\\u548c\\u8def\\uff16\\uff16\\u865f"}', '016485', 'quanjia', 'zh-tw', 1000),
(6880, 6015, '5904-6015', 1, '長治交流店', '{"number":"018656","shop":"\\u9577\\u6cbb\\u4ea4\\u6d41\\u5e97","phone":"087626098","address":"\\u7e41\\u83ef\\u6751\\u6c34\\u6e90\\u8def\\uff11\\uff19\\uff15\\u865f"}', '018656', 'quanjia', 'zh-tw', 1000),
(6881, 6015, '5904-6015', 1, '長治繁華店', '{"number":"018472","shop":"\\u9577\\u6cbb\\u7e41\\u83ef\\u5e97","phone":"087620282","address":"\\u7e41\\u83ef\\u6751\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff0d\\uff11\\u865f"}', '018472', 'quanjia', 'zh-tw', 1000),
(6882, 6015, '5904-6015', 1, '長治合潭店', '{"number":"015840","shop":"\\u9577\\u6cbb\\u5408\\u6f6d\\u5e97","phone":"087216029","address":"\\u6f6d\\u982d\\u8def\\uff11\\uff19\\uff12\\uff0d\\uff15\\u865f\\u3002\\uff11\\uff19\\uff12\\uff0d\\uff16\\u865f"}', '015840', 'quanjia', 'zh-tw', 1000),
(6883, 6016, '5904-6016', 1, '潮州長興店', '{"number":"016739","shop":"\\u6f6e\\u5dde\\u9577\\u8208\\u5e97","phone":"087895965","address":"\\u9577\\u8208\\u8def\\uff12\\uff16\\u865f"}', '016739', 'quanjia', 'zh-tw', 1000),
(6884, 6016, '5904-6016', 1, '潮州福星店', '{"number":"016111","shop":"\\u6f6e\\u5dde\\u798f\\u661f\\u5e97","phone":"087882133","address":"\\u798f\\u661f\\u8def\\uff13\\uff15\\uff11\\u3001\\uff13\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '016111', 'quanjia', 'zh-tw', 1000),
(6885, 6016, '5904-6016', 1, '潮州三林店', '{"number":"016535","shop":"\\u6f6e\\u5dde\\u4e09\\u6797\\u5e97","phone":"087898807","address":"\\u4e09\\u6797\\u8def\\uff11\\uff18\\uff15\\u865f\\u4e00\\u6a13"}', '016535', 'quanjia', 'zh-tw', 1000),
(6886, 6016, '5904-6016', 1, '潮州車頭店', '{"number":"017637","shop":"\\u6f6e\\u5dde\\u8eca\\u982d\\u5e97","phone":"087804081","address":"\\u65b0\\u751f\\u8def\\uff17\\uff17\\u865f"}', '017637', 'quanjia', 'zh-tw', 1000),
(6887, 6017, '5904-6017', 1, '車城風車店', '{"number":"016869","shop":"\\u8eca\\u57ce\\u98a8\\u8eca\\u5e97","phone":"088825476","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff0d\\uff11\\u865f"}', '016869', 'quanjia', 'zh-tw', 1000),
(6888, 6018, '5904-6018', 1, '東港東光店', '{"number":"012522","shop":"\\u6771\\u6e2f\\u6771\\u5149\\u5e97","phone":"088326703","address":"\\u9577\\u6625\\u4e8c\\u8def\\uff12\\uff10\\uff16\\u865f"}', '012522', 'quanjia', 'zh-tw', 1000),
(6889, 6018, '5904-6018', 1, '東港長春店', '{"number":"014762","shop":"\\u6771\\u6e2f\\u9577\\u6625\\u5e97","phone":"088323957","address":"\\u9577\\u6625\\u4e00\\u8def\\uff19\\uff13\\u865f"}', '014762', 'quanjia', 'zh-tw', 1000),
(6890, 6018, '5904-6018', 1, '東港碼頭店', '{"number":"014249","shop":"\\u6771\\u6e2f\\u78bc\\u982d\\u5e97","phone":"088323947","address":"\\u671d\\u9686\\u8def\\uff16\\u865f"}', '014249', 'quanjia', 'zh-tw', 1000),
(6891, 6018, '5904-6018', 1, '東港潭灣店', '{"number":"018316","shop":"\\u6771\\u6e2f\\u6f6d\\u7063\\u5e97","phone":"088327368","address":"\\u5927\\u6f6d\\u8def\\uff16\\u4e4b\\uff11\\uff15\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018316', 'quanjia', 'zh-tw', 1000),
(6892, 6018, '5904-6018', 1, '東港鮪魚店', '{"number":"018174","shop":"\\u6771\\u6e2f\\u9baa\\u9b5a\\u5e97","phone":"088326592","address":"\\u9806\\u6f01\\u8def\\uff11\\uff12\\uff19\\u865f"}', '018174', 'quanjia', 'zh-tw', 1000),
(6893, 6018, '5904-6018', 1, '東港興東店', '{"number":"012655","shop":"\\u6771\\u6e2f\\u8208\\u6771\\u5e97","phone":"088338646","address":"\\u8208\\u6771\\u8def\\uff14\\uff19\\u4e4b\\uff12\\u865f"}', '012655', 'quanjia', 'zh-tw', 1000),
(6894, 6018, '5904-6018', 1, '東港東隆店', '{"number":"013777","shop":"\\u6771\\u6e2f\\u6771\\u9686\\u5e97","phone":"088339381","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '013777', 'quanjia', 'zh-tw', 1000),
(6895, 6018, '5904-6018', 1, '東港安泰店', '{"number":"011305","shop":"\\u6771\\u6e2f\\u5b89\\u6cf0\\u5e97","phone":"088339579","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\uff12\\uff11\\uff10\\u865f\\uff08\\u5b89\\u6cf0\\u6559\\u5b78\\u91ab\\u9662\\uff09"}', '011305', 'quanjia', 'zh-tw', 1000),
(6896, 6019, '5904-6019', 1, '枋寮建興店', '{"number":"016016","shop":"\\u678b\\u5bee\\u5efa\\u8208\\u5e97","phone":"088712053","address":"\\u5efa\\u8208\\u8def\\uff12\\uff14\\uff16\\u865f"}', '016016', 'quanjia', 'zh-tw', 1000),
(6897, 6019, '5904-6019', 1, '枋寮臨海店', '{"number":"015400","shop":"\\u678b\\u5bee\\u81e8\\u6d77\\u5e97","phone":"088660321","address":"\\u81e8\\u6d77\\u8def\\u4e8c\\u6bb5\\uff18\\uff19\\u865f"}', '015400', 'quanjia', 'zh-tw', 1000),
(6898, 6019, '5904-6019', 1, '枋寮隆山店', '{"number":"018723","shop":"\\u678b\\u5bee\\u9686\\u5c71\\u5e97","phone":"088787017","address":"\\u9686\\u5c71\\u8def\\uff18\\uff10\\u865f"}', '018723', 'quanjia', 'zh-tw', 1000),
(6899, 6019, '5904-6019', 1, '枋寮北店', '{"number":"017300","shop":"\\u678b\\u5bee\\u5317\\u5e97","phone":"088716692","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff10\\u865f\\u3000"}', '017300', 'quanjia', 'zh-tw', 1000),
(6900, 6019, '5904-6019', 1, '枋寮大嚮店', '{"number":"017283","shop":"\\u678b\\u5bee\\u5927\\u56ae\\u5e97","phone":"088713070","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff13\\uff19\\u865f\\u53ca\\u5176\\u505c\\u8eca\\u5834"}', '017283', 'quanjia', 'zh-tw', 1000),
(6901, 6020, '5904-6020', 1, '枋山觀海店', '{"number":"016279","shop":"\\u678b\\u5c71\\u89c0\\u6d77\\u5e97","phone":"088761895","address":"\\u5357\\u548c\\u8def\\uff18\\uff10\\u865f"}', '016279', 'quanjia', 'zh-tw', 1000),
(6902, 6021, '5904-6021', 1, '高樹農會店', '{"number":"015196","shop":"\\u9ad8\\u6a39\\u8fb2\\u6703\\u5e97","phone":"087967540","address":"\\u5357\\u8208\\u8def\\uff11\\uff14\\uff11\\uff0d\\uff15\\u865f"}', '015196', 'quanjia', 'zh-tw', 1000),
(6903, 6022, '5904-6022', 1, '恆春恆楠店', '{"number":"018678","shop":"\\u6046\\u6625\\u6046\\u6960\\u5e97","phone":"088881028","address":"\\u6046\\u5357\\u8def\\uff11\\uff13\\uff0d\\uff12\\u865f\\u53ca\\u5176\\u505c\\u8eca\\u5834"}', '018678', 'quanjia', 'zh-tw', 1000),
(6904, 6022, '5904-6022', 1, '墾丁海洋店', '{"number":"018202","shop":"\\u58be\\u4e01\\u6d77\\u6d0b\\u5e97","phone":"088861656","address":"\\u58be\\u4e01\\u8def\\uff11\\uff11\\uff15\\u865f\\uff11\\u6a13\\u90e8\\u5206\\u9762\\u7a4d"}', '018202', 'quanjia', 'zh-tw', 1000),
(6905, 6022, '5904-6022', 1, '墾丁大街店', '{"number":"018221","shop":"\\u58be\\u4e01\\u5927\\u8857\\u5e97","phone":"088861658","address":"\\u58be\\u4e01\\u8def\\uff11\\uff14\\uff18\\u865f"}', '018221', 'quanjia', 'zh-tw', 1000),
(6906, 6022, '5904-6022', 1, '恆春北恆店', '{"number":"018121","shop":"\\u6046\\u6625\\u5317\\u6046\\u5e97","phone":"088880565","address":"\\u7701\\u5317\\u8def\\uff13\\uff17\\u865f"}', '018121', 'quanjia', 'zh-tw', 1000),
(6907, 6022, '5904-6022', 1, '恆春麗園店', '{"number":"018920","shop":"\\u6046\\u6625\\u9e97\\u5712\\u5e97","phone":"088880643","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff12\\uff18\\u865f"}', '018920', 'quanjia', 'zh-tw', 1000),
(6908, 6023, '5904-6023', 1, '佳冬廣惠店', '{"number":"017840","shop":"\\u4f73\\u51ac\\u5ee3\\u60e0\\u5e97","phone":"088667881","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff12\\u865f"}', '017840', 'quanjia', 'zh-tw', 1000),
(6909, 6024, '5904-6024', 1, '九如東寧店', '{"number":"015218","shop":"\\u4e5d\\u5982\\u6771\\u5be7\\u5e97","phone":"087397995","address":"\\u6771\\u5be7\\u8def\\uff12\\uff11\\uff15\\u865f"}', '015218', 'quanjia', 'zh-tw', 1000),
(6910, 6024, '5904-6024', 1, '九如豐源店', '{"number":"016432","shop":"\\u4e5d\\u5982\\u8c50\\u6e90\\u5e97","phone":"087395653","address":"\\u4e5d\\u5982\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff13\\uff0d\\uff11\\u865f"}', '016432', 'quanjia', 'zh-tw', 1000),
(6911, 6025, '5904-6025', 1, '崁頂文化店', '{"number":"016622","shop":"\\u5d01\\u9802\\u6587\\u5316\\u5e97","phone":"088635750","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff18\\uff18\\u865f"}', '016622', 'quanjia', 'zh-tw', 1000),
(6912, 6026, '5904-6026', 1, '里港豪吉店', '{"number":"017955","shop":"\\u91cc\\u6e2f\\u8c6a\\u5409\\u5e97","phone":"087733165","address":"\\u4e09\\u548c\\u8def\\uff11\\uff12\\uff11\\u4e4b\\uff15\\u865f"}', '017955', 'quanjia', 'zh-tw', 1000),
(6913, 6026, '5904-6026', 1, '里港永樂店', '{"number":"016371","shop":"\\u91cc\\u6e2f\\u6c38\\u6a02\\u5e97","phone":"087756890","address":"\\u6c38\\u6a02\\u8def\\uff14\\uff06\\uff16\\u865f"}', '016371', 'quanjia', 'zh-tw', 1000),
(6914, 6027, '5904-6027', 1, '林邊中林店', '{"number":"015903","shop":"\\u6797\\u908a\\u4e2d\\u6797\\u5e97","phone":"088750150","address":"\\u4e2d\\u6797\\u8def\\uff17\\uff19\\u865f"}', '015903', 'quanjia', 'zh-tw', 1000),
(6915, 6028, '5904-6028', 1, '麟洛麟趾店', '{"number":"015718","shop":"\\u9e9f\\u6d1b\\u9e9f\\u8dbe\\u5e97","phone":"087212575","address":"\\u4e2d\\u5c71\\u8def\\uff14\\uff11\\uff17\\u865f"}', '015718', 'quanjia', 'zh-tw', 1000),
(6916, 6029, '5904-6029', 1, '南州庄頭店', '{"number":"015842","shop":"\\u5357\\u5dde\\u5e84\\u982d\\u5e97","phone":"088642843","address":"\\u4e09\\u6c11\\u8def\\uff15\\uff12\\u4e4b\\uff13\\u865f"}', '015842', 'quanjia', 'zh-tw', 1000),
(6917, 6029, '5904-6029', 1, '南州壽元店', '{"number":"018142","shop":"\\u5357\\u5dde\\u58fd\\u5143\\u5e97","phone":"088643455","address":"\\u52dd\\u5229\\u8def\\uff15\\uff0d\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '018142', 'quanjia', 'zh-tw', 1000),
(6918, 6030, '5904-6030', 1, '內埔壽比店', '{"number":"018072","shop":"\\u5167\\u57d4\\u58fd\\u6bd4\\u5e97","phone":"087709493","address":"\\u8001\\u57e4\\u6751\\u58fd\\u6bd4\\u8def\\uff17\\uff14\\uff12\\u865f"}', '018072', 'quanjia', 'zh-tw', 1000),
(6919, 6030, '5904-6030', 1, '內埔埔勝店', '{"number":"016865","shop":"\\u5167\\u57d4\\u57d4\\u52dd\\u5e97","phone":"087784118","address":"\\u5357\\u5be7\\u8def\\uff11\\uff16\\uff14\\uff0d\\uff11\\u865f"}', '016865', 'quanjia', 'zh-tw', 1000),
(6920, 6030, '5904-6030', 1, '內埔光明店', '{"number":"017296","shop":"\\u5167\\u57d4\\u5149\\u660e\\u5e97","phone":"087789851","address":"\\u5167\\u57d4\\u6751\\u5149\\u660e\\u8def\\uff16\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '017296', 'quanjia', 'zh-tw', 1000),
(6921, 6030, '5904-6030', 1, '內埔學苑店', '{"number":"016116","shop":"\\u5167\\u57d4\\u5b78\\u82d1\\u5e97","phone":"087785950","address":"\\u58fd\\u6bd4\\u8def\\uff12\\uff12\\uff18\\u865f\\u4e00\\u6a13"}', '016116', 'quanjia', 'zh-tw', 1000),
(6922, 6030, '5904-6030', 1, '內埔屏科大店', '{"number":"015878","shop":"\\u5167\\u57d4\\u5c4f\\u79d1\\u5927\\u5e97","phone":"087740519","address":"\\u5b78\\u5e9c\\u8def\\uff11\\u865f"}', '015878', 'quanjia', 'zh-tw', 1000),
(6923, 6030, '5904-6030', 1, '內埔文化店', '{"number":"016866","shop":"\\u5167\\u57d4\\u6587\\u5316\\u5e97","phone":"087782022","address":"\\u4e2d\\u8208\\u8def\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '016866', 'quanjia', 'zh-tw', 1000),
(6924, 6030, '5904-6030', 1, '內埔豐田店', '{"number":"016089","shop":"\\u5167\\u57d4\\u8c50\\u7530\\u5e97","phone":"087783743","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff15\\uff13\\u865f"}', '016089', 'quanjia', 'zh-tw', 1000),
(6925, 6031, '5904-6031', 1, '屏東安心店', '{"number":"017841","shop":"\\u5c4f\\u6771\\u5b89\\u5fc3\\u5e97","phone":"087215756","address":"\\u5b89\\u5fc3\\u56db\\u6a6b\\u5df7\\uff14\\uff14\\uff19\\u865f"}', '017841', 'quanjia', 'zh-tw', 1000),
(6926, 6031, '5904-6031', 1, '屏東華盛店', '{"number":"012598","shop":"\\u5c4f\\u6771\\u83ef\\u76db\\u5e97","phone":"087517627","address":"\\u5d07\\u6b66\\u91cc\\u6c38\\u5927\\u8def\\uff16\\uff16\\u865f\\u4e00\\u6a13"}', '012598', 'quanjia', 'zh-tw', 1000),
(6927, 6031, '5904-6031', 1, '屏東大崇店', '{"number":"015382","shop":"\\u5c4f\\u6771\\u5927\\u5d07\\u5e97","phone":"087327312","address":"\\u5927\\u540c\\u5317\\u8def\\uff11\\uff10\\uff12\\u865f"}', '015382', 'quanjia', 'zh-tw', 1000),
(6928, 6031, '5904-6031', 1, '屏東愛園店', '{"number":"016057","shop":"\\u5c4f\\u6771\\u611b\\u5712\\u5e97","phone":"087329836","address":"\\u516c\\u5712\\u8def\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '016057', 'quanjia', 'zh-tw', 1000),
(6929, 6031, '5904-6031', 1, '屏東長安店', '{"number":"012563","shop":"\\u5c4f\\u6771\\u9577\\u5b89\\u5e97","phone":"087321979","address":"\\u5149\\u5fa9\\u8def\\uff13\\uff14\\uff18\\u865f\\u4e00\\u6a13"}', '012563', 'quanjia', 'zh-tw', 1000),
(6930, 6031, '5904-6031', 1, '屏東豐榮店', '{"number":"018073","shop":"\\u5c4f\\u6771\\u8c50\\u69ae\\u5e97","phone":"087364252","address":"\\u5ee3\\u6771\\u8def\\uff14\\uff15\\uff18\\u865f\\u4e00\\u6a13"}', '018073', 'quanjia', 'zh-tw', 1000),
(6931, 6031, '5904-6031', 1, '屏東廣興店', '{"number":"016277","shop":"\\u5c4f\\u6771\\u5ee3\\u8208\\u5e97","phone":"087364763","address":"\\u5ee3\\u6771\\u8def\\uff17\\uff12\\uff12\\u865f"}', '016277', 'quanjia', 'zh-tw', 1000),
(6932, 6031, '5904-6031', 1, '屏東勝利店', '{"number":"017053","shop":"\\u5c4f\\u6771\\u52dd\\u5229\\u5e97","phone":"087323220","address":"\\u5ee3\\u6771\\u8def\\uff19\\uff16\\uff11\\u865f"}', '017053', 'quanjia', 'zh-tw', 1000),
(6933, 6031, '5904-6031', 1, '屏東福光店', '{"number":"014526","shop":"\\u5c4f\\u6771\\u798f\\u5149\\u5e97","phone":"087519167","address":"\\u5ee3\\u6771\\u5357\\u8def\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '014526', 'quanjia', 'zh-tw', 1000),
(6934, 6031, '5904-6031', 1, '屏東歸來店', '{"number":"013665","shop":"\\u5c4f\\u6771\\u6b78\\u4f86\\u5e97","phone":"087214149","address":"\\u6e56\\u5357\\u91cc\\u6b78\\u7fa9\\u5df7\\uff13\\uff14\\u865f\\u4e00\\u6a13"}', '013665', 'quanjia', 'zh-tw', 1000),
(6935, 6031, '5904-6031', 1, '屏東昌賢店', '{"number":"016879","shop":"\\u5c4f\\u6771\\u660c\\u8ce2\\u5e97","phone":"087514933","address":"\\u5efa\\u6c11\\u8def\\uff16\\uff13\\u865f"}', '016879', 'quanjia', 'zh-tw', 1000),
(6936, 6031, '5904-6031', 1, '屏東民享店', '{"number":"016350","shop":"\\u5c4f\\u6771\\u6c11\\u4eab\\u5e97","phone":"087217523","address":"\\u6797\\u68ee\\u8def\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '016350', 'quanjia', 'zh-tw', 1000),
(6937, 6031, '5904-6031', 1, '屏東公館店', '{"number":"017696","shop":"\\u5c4f\\u6771\\u516c\\u9928\\u5e97","phone":"087518978","address":"\\u9f8d\\u83ef\\u8def\\uff11\\uff17\\uff18\\u865f"}', '017696', 'quanjia', 'zh-tw', 1000),
(6938, 6031, '5904-6031', 1, '屏東商大店', '{"number":"018607","shop":"\\u5c4f\\u6771\\u5546\\u5927\\u5e97","phone":"087217393","address":"\\u6c11\\u751f\\u6771\\u8def\\uff15\\uff11\\u865f\\uff08\\u5716\\u8cc7\\u5927\\u6a13\\u4e00\\u6a13\\uff09"}', '018607', 'quanjia', 'zh-tw', 1000),
(6939, 6031, '5904-6031', 1, '屏東民榮店', '{"number":"016225","shop":"\\u5c4f\\u6771\\u6c11\\u69ae\\u5e97","phone":"087224302","address":"\\u6c11\\u751f\\u8def\\uff11\\uff12\\uff0d\\uff12\\uff0e\\uff11\\uff12\\uff0d\\uff13\\u865f"}', '016225', 'quanjia', 'zh-tw', 1000),
(6940, 6031, '5904-6031', 1, '屏東屏榮店', '{"number":"013446","shop":"\\u5c4f\\u6771\\u5c4f\\u69ae\\u5e97","phone":"087211895","address":"\\u6c11\\u5b78\\u8def\\uff11\\uff14\\uff18\\u865f\\u4e00\\u6a13"}', '013446', 'quanjia', 'zh-tw', 1000),
(6941, 6031, '5904-6031', 1, '屏東大埔店', '{"number":"011639","shop":"\\u5c4f\\u6771\\u5927\\u57d4\\u5e97","phone":"087326415","address":"\\u6c11\\u65cf\\u8def\\uff13\\uff10\\uff13\\u865f\\u4e00\\u6a13"}', '011639', 'quanjia', 'zh-tw', 1000),
(6942, 6031, '5904-6031', 1, '屏東瑞光店', '{"number":"018530","shop":"\\u5c4f\\u6771\\u745e\\u5149\\u5e97","phone":"087210590","address":"\\u745e\\u5149\\u8def\\u4e8c\\u6bb5\\uff18\\uff16\\u865f"}', '018530', 'quanjia', 'zh-tw', 1000),
(6943, 6031, '5904-6031', 1, '屏東徐州店', '{"number":"017635","shop":"\\u5c4f\\u6771\\u5f90\\u5dde\\u5e97","phone":"087322293","address":"\\u52dd\\u5229\\u8def\\uff11\\uff19\\uff17\\u4e4b\\uff16\\uff0e\\uff11\\uff19\\uff17\\u4e4b\\uff17\\u865f"}', '017635', 'quanjia', 'zh-tw', 1000),
(6944, 6031, '5904-6031', 1, '屏東武成店', '{"number":"013463","shop":"\\u5c4f\\u6771\\u6b66\\u6210\\u5e97","phone":"087515082","address":"\\u6b66\\u6210\\u8857\\uff18\\uff12\\uff0d\\uff15\\u865f"}', '013463', 'quanjia', 'zh-tw', 1000),
(6945, 6031, '5904-6031', 1, '屏東正裕店', '{"number":"014403","shop":"\\u5c4f\\u6771\\u6b63\\u88d5\\u5e97","phone":"087367146","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff18\\uff18\\uff0d\\uff11\\u865f"}', '014403', 'quanjia', 'zh-tw', 1000),
(6946, 6031, '5904-6031', 1, '屏東華敬店', '{"number":"017420","shop":"\\u5c4f\\u6771\\u83ef\\u656c\\u5e97","phone":"087364107","address":"\\u838a\\u656c\\u8857\\u4e00\\u6bb5\\uff12\\uff19\\u865f"}', '017420', 'quanjia', 'zh-tw', 1000),
(6947, 6031, '5904-6031', 1, '屏東中華店', '{"number":"016592","shop":"\\u5c4f\\u6771\\u4e2d\\u83ef\\u5e97","phone":"087361342","address":"\\u81ea\\u7531\\u8def\\uff14\\uff12\\uff12\\u865f"}', '016592', 'quanjia', 'zh-tw', 1000),
(6948, 6032, '5904-6032', 1, '獅子金流店', '{"number":"017282","shop":"\\u7345\\u5b50\\u91d1\\u6d41\\u5e97","phone":"088701236","address":"\\u8349\\u57d4\\u6751\\uff11\\uff10\\u9130\\u8349\\u57d4\\uff16\\u5df7\\uff13\\uff16\\u865f"}', '017282', 'quanjia', 'zh-tw', 1000),
(6949, 6033, '5904-6033', 1, '萬丹萬鑫店', '{"number":"014487","shop":"\\u842c\\u4e39\\u842c\\u946b\\u5e97","phone":"087760552","address":"\\u842c\\u4e39\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\uff17\\u865f"}', '014487', 'quanjia', 'zh-tw', 1000),
(6950, 6034, '5904-6034', 1, '萬巒豬腳店', '{"number":"017136","shop":"\\u842c\\u5dd2\\u8c6c\\u8173\\u5e97","phone":"087813228","address":"\\u6c11\\u548c\\u8def\\uff15\\u865f\\u4e00\\u6a13\\u3001\\u4e8c\\u6a13\\u90e8\\u4efd"}', '017136', 'quanjia', 'zh-tw', 1000),
(6951, 6035, '5904-6035', 1, '新埤屏鵝店', '{"number":"017842","shop":"\\u65b0\\u57e4\\u5c4f\\u9d5d\\u5e97","phone":"087972105","address":"\\u65b0\\u6c11\\u8def\\uff13\\u865f"}', '017842', 'quanjia', 'zh-tw', 1000),
(6952, 6036, '5904-6036', 1, '新園新東店', '{"number":"014383","shop":"\\u65b0\\u5712\\u65b0\\u6771\\u5e97","phone":"088683432","address":"\\u65b0\\u6771\\u8def\\uff11\\u865f"}', '014383', 'quanjia', 'zh-tw', 1000),
(6953, 6036, '5904-6036', 1, '新園興隆店', '{"number":"016166","shop":"\\u65b0\\u5712\\u8208\\u9686\\u5e97","phone":"088325028","address":"\\u9e7d\\u57d4\\u6751\\u9e7d\\u9f8d\\u8def\\uff11\\uff15\\uff18\\u865f\\u3002\\uff11\\uff16\\uff10\\u865f"}', '016166', 'quanjia', 'zh-tw', 1000),
(6954, 6037, '5904-6037', 1, '鹽埔高朗店', '{"number":"013645","shop":"\\u9e7d\\u57d4\\u9ad8\\u6717\\u5e97","phone":"087930385","address":"\\u9ad8\\u6717\\u6751\\u4e09\\u6c11\\u8def\\uff18\\uff10\\uff0d\\uff11\\u865f"}', '013645', 'quanjia', 'zh-tw', 1000),
(6955, 6037, '5904-6037', 1, '鹽埔豐年店', '{"number":"015023","shop":"\\u9e7d\\u57d4\\u8c50\\u5e74\\u5e97","phone":"087936175","address":"\\u5149\\u5fa9\\u8def\\uff18\\uff19\\u865f"}', '015023', 'quanjia', 'zh-tw', 1000),
(6956, 6037, '5904-6037', 1, '鹽埔大仁店', '{"number":"014738","shop":"\\u9e7d\\u57d4\\u5927\\u4ec1\\u5e97","phone":"087628180","address":"\\u7dad\\u65b0\\u8def\\uff12\\uff10\\u865f\\uff08\\u5b78\\u751f\\u9910\\u5ef3\\uff09"}', '014738', 'quanjia', 'zh-tw', 1000),
(6957, 6037, '5904-6037', 1, '鹽埔新圍店', '{"number":"016967","shop":"\\u9e7d\\u57d4\\u65b0\\u570d\\u5e97","phone":"087937325","address":"\\u7dad\\u65b0\\u8def\\uff19\\uff10\\u4e4b\\uff12\\u865f\\u3127\\u6a13"}', '016967', 'quanjia', 'zh-tw', 1000),
(6958, 6038, '5904-6038', 1, '竹田農會店', '{"number":"018827","shop":"\\u7af9\\u7530\\u8fb2\\u6703\\u5e97","phone":"087713117","address":"\\u4e2d\\u6b63\\u8def\\uff17\\uff16\\uff0d\\uff15\\u865f"}', '018827', 'quanjia', 'zh-tw', 1000),
(6959, 6039, '5905-6039', 1, '大業店', '{"number":"014373","shop":"\\u5927\\u696d\\u5e97","phone":"0228964457","address":"\\u5927\\u8208\\u8857\\uff12\\uff12\\u865f"}', '014373', 'quanjia', 'zh-tw', 1000),
(6960, 6039, '5905-6039', 1, '大同店', '{"number":"013332","shop":"\\u5927\\u540c\\u5e97","phone":"0228919974","address":"\\u5927\\u696d\\u8def\\uff14\\uff15\\uff12\\u5df7\\uff13\\uff11\\u865f"}', '013332', 'quanjia', 'zh-tw', 1000),
(6961, 6039, '5905-6039', 1, '東華店', '{"number":"014539","shop":"\\u6771\\u83ef\\u5e97","phone":"0228232256","address":"\\u6771\\u83ef\\u8857\\u4e8c\\u6bb5\\uff18\\uff18\\u865f"}', '014539', 'quanjia', 'zh-tw', 1000),
(6962, 6039, '5905-6039', 1, '新奇岩店', '{"number":"017098","shop":"\\u65b0\\u5947\\u5ca9\\u5e97","phone":"0228947281","address":"\\u516c\\u9928\\u8def\\uff12\\uff13\\uff10\\u865f"}', '017098', 'quanjia', 'zh-tw', 1000),
(6963, 6039, '5905-6039', 1, '北投店', '{"number":"018181","shop":"\\u5317\\u6295\\u5e97","phone":"0228941595","address":"\\u5149\\u660e\\u8def\\uff12\\uff11\\uff18\\u4e4b\\uff11\\u865f"}', '018181', 'quanjia', 'zh-tw', 1000),
(6964, 6039, '5905-6039', 1, '光明店', '{"number":"011823","shop":"\\u5149\\u660e\\u5e97","phone":"0228966631","address":"\\u5149\\u660e\\u8def\\uff12\\uff13\\u865f\\uff0c\\uff12\\uff15\\u865f"}', '011823', 'quanjia', 'zh-tw', 1000),
(6965, 6039, '5905-6039', 1, '中永店', '{"number":"015082","shop":"\\u4e2d\\u6c38\\u5e97","phone":"0228949813","address":"\\u958b\\u660e\\u91cc\\u4e2d\\u548c\\u8857\\uff12\\uff15\\uff12\\u865f\\u4e00\\u6a13"}', '015082', 'quanjia', 'zh-tw', 1000),
(6966, 6039, '5905-6039', 1, '立賢店', '{"number":"013569","shop":"\\u7acb\\u8ce2\\u5e97","phone":"0228202721","address":"\\u7acb\\u8ce2\\u91cc\\u627f\\u5fb7\\u8def\\u4e03\\u6bb5\\uff12\\uff19\\uff10\\u865f"}', '013569', 'quanjia', 'zh-tw', 1000),
(6967, 6039, '5905-6039', 1, '崇合店', '{"number":"014838","shop":"\\u5d07\\u5408\\u5e97","phone":"0228972076","address":"\\u6e05\\u6c5f\\u91cc\\u4e09\\u5408\\u8857\\u4e8c\\u6bb5\\uff14\\uff18\\uff17\\u865f\\uff11\\u6a13"}', '014838', 'quanjia', 'zh-tw', 1000),
(6968, 6039, '5905-6039', 1, '明德店', '{"number":"017965","shop":"\\u660e\\u5fb7\\u5e97","phone":"0228239507","address":"\\u77f3\\u724c\\u91cc\\u660e\\u5fb7\\u8def\\uff19\\uff13\\u865f"}', '017965', 'quanjia', 'zh-tw', 1000),
(6969, 6039, '5905-6039', 1, '華勝店', '{"number":"016961","shop":"\\u83ef\\u52dd\\u5e97","phone":"0228217248","address":"\\u77f3\\u724c\\u8def\\uff12\\u6bb5\\uff18\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016961', 'quanjia', 'zh-tw', 1000),
(6970, 6039, '5905-6039', 1, '北榮店', '{"number":"014647","shop":"\\u5317\\u69ae\\u5e97","phone":"0228766755","address":"\\u77f3\\u724c\\u8def\\u4e8c\\u6bb5\\uff12\\uff10\\uff11\\u865f"}', '014647', 'quanjia', 'zh-tw', 1000),
(6971, 6039, '5905-6039', 1, '榮光店', '{"number":"016515","shop":"\\u69ae\\u5149\\u5e97","phone":"0228217765","address":"\\u77f3\\u724c\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff16\\u5df7\\uff19\\uff13\\u865f"}', '016515', 'quanjia', 'zh-tw', 1000),
(6972, 6039, '5905-6039', 1, '新實店', '{"number":"009489","shop":"\\u65b0\\u5be6\\u5e97","phone":"0228236547","address":"\\u5be6\\u8e10\\u8857\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '009489', 'quanjia', 'zh-tw', 1000),
(6973, 6039, '5905-6039', 1, '唭哩店', '{"number":"016748","shop":"\\u552d\\u54e9\\u5e97","phone":"0228219568","address":"\\u897f\\u5b89\\u8857\\u4e8c\\u6bb5\\uff12\\uff18\\uff13\\u865f"}', '016748', 'quanjia', 'zh-tw', 1000),
(6974, 6039, '5905-6039', 1, '東陽店', '{"number":"015347","shop":"\\u6771\\u967d\\u5e97","phone":"0228212319","address":"\\u897f\\u5b89\\u8857\\u4e00\\u6bb5\\uff12\\uff18\\uff13\\u865f"}', '015347', 'quanjia', 'zh-tw', 1000),
(6975, 6039, '5905-6039', 1, '振華店', '{"number":"014771","shop":"\\u632f\\u83ef\\u5e97","phone":"0228232410","address":"\\u632f\\u83ef\\u8857\\uff12\\u865f"}', '014771', 'quanjia', 'zh-tw', 1000),
(6976, 6039, '5905-6039', 1, '新知行店', '{"number":"013901","shop":"\\u65b0\\u77e5\\u884c\\u5e97","phone":"0228586738","address":"\\u77e5\\u884c\\u8def\\uff12\\uff13\\uff17\\u865f"}', '013901', 'quanjia', 'zh-tw', 1000),
(6977, 6039, '5905-6039', 1, '行勝店', '{"number":"016300","shop":"\\u884c\\u52dd\\u5e97","phone":"0228586707","address":"\\u77e5\\u884c\\u8def\\uff12\\uff19\\uff18\\u865f\\uff11\\u6a13"}', '016300', 'quanjia', 'zh-tw', 1000),
(6978, 6039, '5905-6039', 1, '復中店', '{"number":"016498","shop":"\\u5fa9\\u4e2d\\u5e97","phone":"0228924021","address":"\\u4e2d\\u548c\\u8857\\uff13\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '016498', 'quanjia', 'zh-tw', 1000),
(6979, 6039, '5905-6039', 1, '新和店', '{"number":"012067","shop":"\\u65b0\\u548c\\u5e97","phone":"0228912821","address":"\\u4e2d\\u548c\\u8857\\uff14\\uff18\\uff19\\u865f"}', '012067', 'quanjia', 'zh-tw', 1000),
(6980, 6039, '5905-6039', 1, '甲桂林店', '{"number":"015397","shop":"\\u7532\\u6842\\u6797\\u5e97","phone":"0228725427","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e03\\u6bb5\\uff12\\uff11\\uff19\\u5df7\\uff13\\u5f04\\uff11\\uff17\\uff11\\u865f\\u58f9\\u6a13"}', '015397', 'quanjia', 'zh-tw', 1000),
(6981, 6039, '5905-6039', 1, '文化店', '{"number":"016219","shop":"\\u6587\\u5316\\u5e97","phone":"0228976316","address":"\\u4e2d\\u592e\\u5317\\u8def\\u4e8c\\u6bb5\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '016219', 'quanjia', 'zh-tw', 1000),
(6982, 6039, '5905-6039', 1, '新復興崗店', '{"number":"015782","shop":"\\u65b0\\u5fa9\\u8208\\u5d17\\u5e97","phone":"0228910617","address":"\\u4e2d\\u592e\\u5317\\u8def\\u4e09\\u6bb5\\uff14\\u865f\\uff11\\u6a13"}', '015782', 'quanjia', 'zh-tw', 1000),
(6983, 6039, '5905-6039', 1, '清江店', '{"number":"015119","shop":"\\u6e05\\u6c5f\\u5e97","phone":"0228970433","address":"\\u4e2d\\u592e\\u91cc\\u6e05\\u6c5f\\u8def\\uff11\\u865f\\uff0c\\u4e2d\\u592e\\u5357\\u8def\\u4e00\\u6bb5\\uff16\\uff13\\u865f"}', '015119', 'quanjia', 'zh-tw', 1000),
(6984, 6039, '5905-6039', 1, '中央南路店', '{"number":"017247","shop":"\\u4e2d\\u592e\\u5357\\u8def\\u5e97","phone":"0228911712","address":"\\u4e2d\\u592e\\u5357\\u8def\\uff12\\u6bb5\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '017247', 'quanjia', 'zh-tw', 1000),
(6985, 6039, '5905-6039', 1, '永興店', '{"number":"013283","shop":"\\u6c38\\u8208\\u5e97","phone":"0228947414","address":"\\u4e2d\\u5eb8\\u91cc\\u6c38\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\u865f\\u3001\\uff13\\u865f\\u4e00\\u6a13"}', '013283', 'quanjia', 'zh-tw', 1000),
(6986, 6039, '5905-6039', 1, '新自強店', '{"number":"016560","shop":"\\u65b0\\u81ea\\u5f37\\u5e97","phone":"0228212852","address":"\\u81ea\\u5f37\\u8857\\uff11\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '016560', 'quanjia', 'zh-tw', 1000),
(6987, 6039, '5905-6039', 1, '尊賢店', '{"number":"017007","shop":"\\u5c0a\\u8ce2\\u5e97","phone":"0228271417","address":"\\u5c0a\\u8ce2\\u8857\\uff12\\uff16\\uff10\\u865f\\uff11\\uff26"}', '017007', 'quanjia', 'zh-tw', 1000),
(6988, 6040, '5905-6040', 1, '東方店', '{"number":"018055","shop":"\\u6771\\u65b9\\u5e97","phone":"0227039578","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\u5df7\\uff11\\uff10\\u865f\\u58f9\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018055', 'quanjia', 'zh-tw', 1000),
(6989, 6040, '5905-6040', 1, '樂和店', '{"number":"016351","shop":"\\u6a02\\u548c\\u5e97","phone":"0227329745","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff19\\u865f"}', '016351', 'quanjia', 'zh-tw', 1000),
(6990, 6040, '5905-6040', 1, '和信店', '{"number":"016909","shop":"\\u548c\\u4fe1\\u5e97","phone":"0227556391","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff14\\u865f"}', '016909', 'quanjia', 'zh-tw', 1000),
(6991, 6040, '5905-6040', 1, '敦安店', '{"number":"016746","shop":"\\u6566\\u5b89\\u5e97","phone":"0227019097","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff12\\u5df7\\uff12\\uff17\\u865f"}', '016746', 'quanjia', 'zh-tw', 1000),
(6992, 6040, '5905-6040', 1, '安富店', '{"number":"018248","shop":"\\u5b89\\u5bcc\\u5e97","phone":"0227755484","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\uff14\\uff19\\u5df7\\uff11\\uff10\\u865f"}', '018248', 'quanjia', 'zh-tw', 1000),
(6993, 6040, '5905-6040', 1, '安居店', '{"number":"016322","shop":"\\u5b89\\u5c45\\u5e97","phone":"0227375452","address":"\\u5b89\\u5c45\\u8857\\uff17\\uff16\\u865f"}', '016322', 'quanjia', 'zh-tw', 1000),
(6994, 6040, '5905-6040', 1, '台興店', '{"number":"015746","shop":"\\u53f0\\u8208\\u5e97","phone":"0227324804","address":"\\u9577\\u8208\\u8857\\uff15\\uff10\\u865f"}', '015746', 'quanjia', 'zh-tw', 1000),
(6995, 6040, '5905-6040', 1, '大安店', '{"number":"013409","shop":"\\u5927\\u5b89\\u5e97","phone":"0227117896","address":"\\u5927\\u5b89\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\u865f"}', '013409', 'quanjia', 'zh-tw', 1000),
(6996, 6040, '5905-6040', 1, '敦新店', '{"number":"017725","shop":"\\u6566\\u65b0\\u5e97","phone":"0227057671","address":"\\u6566\\u5b89\\u91cc\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\uff11\\uff11\\uff12\\u5df7\\uff15\\u865f\\u4e00\\u6a13"}', '017725', 'quanjia', 'zh-tw', 1000),
(6997, 6040, '5905-6040', 1, '新遠企店', '{"number":"017877","shop":"\\u65b0\\u9060\\u4f01\\u5e97","phone":"0227323623","address":"\\u6566\\u5316\\u5357\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff11\\u865f"}', '017877', 'quanjia', 'zh-tw', 1000),
(6998, 6040, '5905-6040', 1, '新敦民店', '{"number":"014052","shop":"\\u65b0\\u6566\\u6c11\\u5e97","phone":"0227111320","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff11\\u5df7\\uff17\\u865f"}', '014052', 'quanjia', 'zh-tw', 1000),
(6999, 6040, '5905-6040', 1, '忠孝店', '{"number":"017287","shop":"\\u5fe0\\u5b5d\\u5e97","phone":"0227780668","address":"\\u6566\\u5316\\u5357\\u8def\\u4e00\\u6bb5\\uff11\\uff19\\uff10\\u5df7\\uff17\\u865f"}', '017287', 'quanjia', 'zh-tw', 1000),
(7000, 6040, '5905-6040', 1, '懷生店', '{"number":"015263","shop":"\\u61f7\\u751f\\u5e97","phone":"0227763718","address":"\\u5fa9\\u8208\\u5357\\u8def\\uff11\\u6bb5\\uff17\\uff10\\u865f"}', '015263', 'quanjia', 'zh-tw', 1000),
(7001, 6040, '5905-6040', 1, '興和店', '{"number":"015818","shop":"\\u8208\\u548c\\u5e97","phone":"0227845780","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff13\\u865f"}', '015818', 'quanjia', 'zh-tw', 1000),
(7002, 6040, '5905-6040', 1, '興南店', '{"number":"018052","shop":"\\u8208\\u5357\\u5e97","phone":"0227552227","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\uff18\\uff0c\\uff11\\uff10\\u865f"}', '018052', 'quanjia', 'zh-tw', 1000),
(7003, 6040, '5905-6040', 1, '興忠店', '{"number":"018902","shop":"\\u8208\\u5fe0\\u5e97","phone":"0227419504","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\uff10\\u865f"}', '018902', 'quanjia', 'zh-tw', 1000),
(7004, 6040, '5905-6040', 1, '興仁店', '{"number":"017879","shop":"\\u8208\\u4ec1\\u5e97","phone":"0287732350","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\uff12\\uff11\\uff17\\u865f"}', '017879', 'quanjia', 'zh-tw', 1000),
(7005, 6040, '5905-6040', 1, '華視店', '{"number":"014368","shop":"\\u83ef\\u8996\\u5e97","phone":"0227310238","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff11\\uff11\\uff16\\u5df7\\uff12\\uff16\\u865f"}', '014368', 'quanjia', 'zh-tw', 1000),
(7006, 6040, '5905-6040', 1, '國父紀念館店', '{"number":"018222","shop":"\\u570b\\u7236\\u7d00\\u5ff5\\u9928\\u5e97","phone":"0227755468","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff12\\uff19\\uff12\\u865f\\uff08\\u7bc4\\u570d\\u5982\\u9644\\u5716\\uff09"}', '018222', 'quanjia', 'zh-tw', 1000),
(7007, 6040, '5905-6040', 1, '光新店', '{"number":"018373","shop":"\\u5149\\u65b0\\u5e97","phone":"0227849586","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff14\\uff11\\uff18\\u865f"}', '018373', 'quanjia', 'zh-tw', 1000),
(7008, 6040, '5905-6040', 1, '和東店', '{"number":"018665","shop":"\\u548c\\u6771\\u5e97","phone":"0227371371","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff12\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '018665', 'quanjia', 'zh-tw', 1000),
(7009, 6040, '5905-6040', 1, '和新店', '{"number":"018080","shop":"\\u548c\\u65b0\\u5e97","phone":"0283691009","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\uff12\\uff12\\u865f"}', '018080', 'quanjia', 'zh-tw', 1000),
(7010, 6040, '5905-6040', 1, '和復店', '{"number":"014395","shop":"\\u548c\\u5fa9\\u5e97","phone":"0227540370","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff11\\u865f\\uff0c\\uff12\\uff16\\uff13\\u865f"}', '014395', 'quanjia', 'zh-tw', 1000),
(7011, 6040, '5905-6040', 1, '成功店', '{"number":"012910","shop":"\\u6210\\u529f\\u5e97","phone":"0227550428","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff11\\u5df7\\uff13\\uff12\\u865f"}', '012910', 'quanjia', 'zh-tw', 1000),
(7012, 6040, '5905-6040', 1, '和茂店', '{"number":"014448","shop":"\\u548c\\u8302\\u5e97","phone":"0227371408","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '014448', 'quanjia', 'zh-tw', 1000),
(7013, 6040, '5905-6040', 1, '台師店', '{"number":"016569","shop":"\\u53f0\\u5e2b\\u5e97","phone":"0223682773","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff12\\u865f"}', '016569', 'quanjia', 'zh-tw', 1000),
(7014, 6040, '5905-6040', 1, '台科店', '{"number":"018658","shop":"\\u53f0\\u79d1\\u5e97","phone":"0227384936","address":"\\u57fa\\u9686\\u8def\\uff14\\u6bb5\\uff14\\uff13\\u865f\\u5730\\u4e0b\\u4e00\\u6a13\\u7b2c\\u4e09\\u9910\\u5ef3"}', '018658', 'quanjia', 'zh-tw', 1000),
(7015, 6040, '5905-6040', 1, '濟南二店', '{"number":"013823","shop":"\\u6fdf\\u5357\\u4e8c\\u5e97","phone":"0287734589","address":"\\u6fdf\\u5357\\u8def\\uff13\\u6bb5\\uff17\\u865f"}', '013823', 'quanjia', 'zh-tw', 1000),
(7016, 6040, '5905-6040', 1, '建南店', '{"number":"013898","shop":"\\u5efa\\u5357\\u5e97","phone":"0227318185","address":"\\u5efa\\u570b\\u5357\\u8def\\uff11\\u6bb5\\uff11\\uff15\\uff16\\uff0c\\uff11\\uff15\\uff18\\u865f"}', '013898', 'quanjia', 'zh-tw', 1000),
(7017, 6040, '5905-6040', 1, '建國店', '{"number":"014393","shop":"\\u5efa\\u570b\\u5e97","phone":"0227540801","address":"\\u5efa\\u570b\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff11\\u5df7\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '014393', 'quanjia', 'zh-tw', 1000),
(7018, 6040, '5905-6040', 1, '北科店', '{"number":"016573","shop":"\\u5317\\u79d1\\u5e97","phone":"0227762695","address":"\\u5efa\\u570b\\u5357\\u8def\\u4e00\\u6bb5\\uff18\\uff11\\u865f"}', '016573', 'quanjia', 'zh-tw', 1000),
(7019, 6040, '5905-6040', 1, '臨江店', '{"number":"017497","shop":"\\u81e8\\u6c5f\\u5e97","phone":"0227322438","address":"\\u81e8\\u6c5f\\u8857\\uff12\\u5df7\\uff12\\u865f"}', '017497', 'quanjia', 'zh-tw', 1000),
(7020, 6040, '5905-6040', 1, '古亭店', '{"number":"018480","shop":"\\u53e4\\u4ead\\u5e97","phone":"0223673372","address":"\\u7f85\\u65af\\u798f\\u8def\\uff12\\u6bb5\\uff11\\uff10\\uff13\\u865f"}', '018480', 'quanjia', 'zh-tw', 1000),
(7021, 6040, '5905-6040', 1, '羅中店', '{"number":"013639","shop":"\\u7f85\\u4e2d\\u5e97","phone":"0223924175","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\u865f\\uff11\\uff26"}', '013639', 'quanjia', 'zh-tw', 1000),
(7022, 6040, '5905-6040', 1, '羅騰店', '{"number":"014346","shop":"\\u7f85\\u9a30\\u5e97","phone":"0223651801","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\uff12\\uff16\\uff19\\u5df7\\uff12\\u865f"}', '014346', 'quanjia', 'zh-tw', 1000),
(7023, 6040, '5905-6040', 1, '台大楓林店', '{"number":"017548","shop":"\\u53f0\\u5927\\u6953\\u6797\\u5e97","phone":"0223675017","address":"\\u7f85\\u65af\\u798f\\u8def\\u56db\\u6bb5\\uff11\\u865f\\uff08\\u5973\\u4e5d\\u9910\\u5ef3\\uff09"}', '017548', 'quanjia', 'zh-tw', 1000),
(7024, 6040, '5905-6040', 1, '新台大店', '{"number":"011741","shop":"\\u65b0\\u53f0\\u5927\\u5e97","phone":"0223688949","address":"\\u7f85\\u65af\\u798f\\u8def\\u56db\\u6bb5\\uff11\\u865f\\u7b2c\\u4e00\\u5b78\\u751f\\u6d3b\\u52d5\\u4e2d\\u5fc3"}', '011741', 'quanjia', 'zh-tw', 1000),
(7025, 6040, '5905-6040', 1, '台福店', '{"number":"013518","shop":"\\u53f0\\u798f\\u5e97","phone":"0283691892","address":"\\u7f85\\u65af\\u798f\\u8def\\u56db\\u6bb5\\uff11\\u865f\\u8173\\u8e0f\\u8eca\\u90e8\\u90e8\\u4efd\\u7a7a\\u9593"}', '013518', 'quanjia', 'zh-tw', 1000),
(7026, 6040, '5905-6040', 1, '台大二活店', '{"number":"017186","shop":"\\u53f0\\u5927\\u4e8c\\u6d3b\\u5e97","phone":"0223661941","address":"\\u7f85\\u65af\\u798f\\u8def\\u56db\\u6bb5\\uff18\\uff15\\u865f\\uff08\\u7b2c\\u4e8c\\u5b78\\u751f\\u6d3b\\u52d5\\u4e2d\\u5fc3\\uff09"}', '017186', 'quanjia', 'zh-tw', 1000),
(7027, 6040, '5905-6040', 1, '忠愛店', '{"number":"013596","shop":"\\u5fe0\\u611b\\u5e97","phone":"0227314580","address":"\\u4ec1\\u611b\\u8def\\uff14\\u6bb5\\uff12\\uff17\\u5df7\\uff14\\uff13\\u865f"}', '013596', 'quanjia', 'zh-tw', 1000),
(7028, 6040, '5905-6040', 1, '明曜店', '{"number":"014770","shop":"\\u660e\\u66dc\\u5e97","phone":"0227780326","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\uff11\\uff15\\uff11\\u5df7\\uff13\\uff14\\u865f\\uff0e\\uff13\\uff16\\u865f"}', '014770', 'quanjia', 'zh-tw', 1000),
(7029, 6040, '5905-6040', 1, '國泰店', '{"number":"016473","shop":"\\u570b\\u6cf0\\u5e97","phone":"0227542056","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\uff12\\uff16\\uff16\\u5df7\\uff11\\uff15\\u5f04\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '016473', 'quanjia', 'zh-tw', 1000),
(7030, 6040, '5905-6040', 1, '吉泰店', '{"number":"018206","shop":"\\u5409\\u6cf0\\u5e97","phone":"0227001566","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\uff13\\uff10\\uff10\\u5df7\\uff11\\uff11\\u4e4b\\uff11\\u865f"}', '018206', 'quanjia', 'zh-tw', 1000),
(7031, 6040, '5905-6040', 1, '仁慈店', '{"number":"011616","shop":"\\u4ec1\\u6148\\u5e97","phone":"0227089002","address":"\\u4ec1\\u611b\\u8def\\u56db\\u6bb5\\uff14\\uff18\\u5df7\\uff16\\u865f"}', '011616', 'quanjia', 'zh-tw', 1000),
(7032, 6040, '5905-6040', 1, '瑞和店', '{"number":"018077","shop":"\\u745e\\u548c\\u5e97","phone":"0227049888","address":"\\u745e\\u5b89\\u8857\\uff11\\uff13\\uff15\\u5df7\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '018077', 'quanjia', 'zh-tw', 1000),
(7033, 6040, '5905-6040', 1, '師大店', '{"number":"017121","shop":"\\u5e2b\\u5927\\u5e97","phone":"0223918196","address":"\\u5e2b\\u5927\\u8def\\uff17\\uff19\\u865f"}', '017121', 'quanjia', 'zh-tw', 1000),
(7034, 6040, '5905-6040', 1, '安賢店', '{"number":"017768","shop":"\\u5b89\\u8ce2\\u5e97","phone":"0227074252","address":"\\u56db\\u7dad\\u8def\\uff11\\uff17\\uff10\\u5df7\\uff14\\u865f"}', '017768', 'quanjia', 'zh-tw', 1000),
(7035, 6040, '5905-6040', 1, '通和店', '{"number":"014206","shop":"\\u901a\\u548c\\u5e97","phone":"0227331503","address":"\\u901a\\u5b89\\u8857\\uff17\\uff17\\u865f"}', '014206', 'quanjia', 'zh-tw', 1000),
(7036, 6040, '5905-6040', 1, '通昌店', '{"number":"014482","shop":"\\u901a\\u660c\\u5e97","phone":"0223256420","address":"\\u6587\\u660c\\u8857\\uff11\\uff14\\uff12\\u865f\\u58f9\\u6a13\\u5168\\u90e8"}', '014482', 'quanjia', 'zh-tw', 1000),
(7037, 6040, '5905-6040', 1, '辛亥店', '{"number":"013549","shop":"\\u8f9b\\u4ea5\\u5e97","phone":"0223778503","address":"\\u8f9b\\u4ea5\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff11\\u5df7\\uff13\\u865f"}', '013549', 'quanjia', 'zh-tw', 1000),
(7038, 6040, '5905-6040', 1, '二繽店', '{"number":"015895","shop":"\\u4e8c\\u7e7d\\u5e97","phone":"0227372960","address":"\\u8f9b\\u4ea5\\u8def\\u4e09\\u6bb5\\uff13\\uff13\\uff10\\u865f"}', '015895', 'quanjia', 'zh-tw', 1000),
(7039, 6040, '5905-6040', 1, '台新店', '{"number":"016709","shop":"\\u53f0\\u65b0\\u5e97","phone":"0223626210","address":"\\u65b0\\u751f\\u5357\\u8def\\u4e09\\u6bb5\\uff18\\uff14\\u4e4b\\uff18\\u865f"}', '016709', 'quanjia', 'zh-tw', 1000),
(7040, 6040, '5905-6040', 1, '新生南路店', '{"number":"018229","shop":"\\u65b0\\u751f\\u5357\\u8def\\u5e97","phone":"0227035220","address":"\\u65b0\\u751f\\u5357\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff13\\u865f"}', '018229', 'quanjia', 'zh-tw', 1000),
(7041, 6040, '5905-6040', 1, '大森店', '{"number":"016790","shop":"\\u5927\\u68ee\\u5e97","phone":"0227005349","address":"\\u65b0\\u751f\\u5357\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff15\\u5df7\\uff13\\uff15\\u865f"}', '016790', 'quanjia', 'zh-tw', 1000),
(7042, 6040, '5905-6040', 1, '義興店', '{"number":"015666","shop":"\\u7fa9\\u8208\\u5e97","phone":"0227048404","address":"\\u4fe1\\u7fa9\\u8def\\uff14\\u6bb5\\uff11\\u4e4b\\uff11\\uff10\\uff0e\\uff11\\u4e4b\\uff11\\uff11\\u865f"}', '015666', 'quanjia', 'zh-tw', 1000),
(7043, 6040, '5905-6040', 1, '金信店', '{"number":"017363","shop":"\\u91d1\\u4fe1\\u5e97","phone":"0223587145","address":"\\u4fe1\\u7fa9\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff14\\u865f\\uff11\\u6a13"}', '017363', 'quanjia', 'zh-tw', 1000),
(7044, 6040, '5905-6040', 1, '信美店', '{"number":"014695","shop":"\\u4fe1\\u7f8e\\u5e97","phone":"0227544328","address":"\\u4fe1\\u7fa9\\u8def\\u4e09\\u6bb5\\uff11\\uff13\\uff14\\u5df7\\uff12\\u865f\\u58f9\\u6a13\\uff0b\\u5730\\u4e0b\\u5ba4"}', '014695', 'quanjia', 'zh-tw', 1000),
(7045, 6040, '5905-6040', 1, '義和店', '{"number":"014960","shop":"\\u7fa9\\u548c\\u5e97","phone":"0227047661","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\uff12\\uff16\\uff15\\u5df7\\uff18\\u865f"}', '014960', 'quanjia', 'zh-tw', 1000),
(7046, 6040, '5905-6040', 1, '義安店', '{"number":"014159","shop":"\\u7fa9\\u5b89\\u5e97","phone":"0227015844","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\uff18\\uff18\\u865f\\uff08\\u90e8\\u5206\\uff09"}', '014159', 'quanjia', 'zh-tw', 1000),
(7047, 6040, '5905-6040', 1, '延安二店', '{"number":"013927","shop":"\\u5ef6\\u5b89\\u4e8c\\u5e97","phone":"0287717379","address":"\\u5ef6\\u5409\\u8857\\uff11\\uff13\\uff10\\u865f"}', '013927', 'quanjia', 'zh-tw', 1000),
(7048, 6040, '5905-6040', 1, '延孝店', '{"number":"018934","shop":"\\u5ef6\\u5b5d\\u5e97","phone":"0227405319","address":"\\u5ef6\\u5409\\u8857\\uff11\\uff13\\uff15\\u865f\\u4e4b\\u4e09\\uff0c\\u4e00\\u6a13"}', '018934', 'quanjia', 'zh-tw', 1000),
(7049, 6040, '5905-6040', 1, '延安店', '{"number":"017556","shop":"\\u5ef6\\u5b89\\u5e97","phone":"0287716553","address":"\\u5ef6\\u5409\\u8857\\uff11\\uff15\\uff18\\u865f"}', '017556', 'quanjia', 'zh-tw', 1000),
(7050, 6040, '5905-6040', 1, '昌隆店', '{"number":"018581","shop":"\\u660c\\u9686\\u5e97","phone":"0287733114","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\uff13\\u6bb5\\uff12\\uff11\\uff17\\u5df7\\uff12\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '018581', 'quanjia', 'zh-tw', 1000),
(7051, 6040, '5905-6040', 1, '龍普店', '{"number":"015461","shop":"\\u9f8d\\u666e\\u5e97","phone":"0287733622","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\uff14\\u6bb5\\uff11\\uff17\\uff10\\u5df7\\uff16\\u5f04\\uff12\\u865f"}', '015461', 'quanjia', 'zh-tw', 1000),
(7052, 6040, '5905-6040', 1, '統領店', '{"number":"018020","shop":"\\u7d71\\u9818\\u5e97","phone":"0227112125","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\uff11\\uff18\\uff11\\u5df7\\uff17\\u5f04\\uff12\\uff11\\u865f\\uff11\\u6a13\\u90e8\\u4efd"}', '018020', 'quanjia', 'zh-tw', 1000),
(7053, 6040, '5905-6040', 1, '延吉店', '{"number":"017206","shop":"\\u5ef6\\u5409\\u5e97","phone":"0227412630","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\uff12\\uff11\\uff16\\u5df7\\uff13\\uff11\\u865f"}', '017206', 'quanjia', 'zh-tw', 1000),
(7054, 6040, '5905-6040', 1, '延東店', '{"number":"018457","shop":"\\u5ef6\\u6771\\u5e97","phone":"0287724842","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\uff12\\uff12\\uff13\\u5df7\\uff14\\uff11\\u865f"}', '018457', 'quanjia', 'zh-tw', 1000),
(7055, 6041, '5905-6041', 1, '長慶店', '{"number":"017719","shop":"\\u9577\\u6176\\u5e97","phone":"0225507756","address":"\\u9577\\u5b89\\u897f\\u8def\\uff12\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '017719', 'quanjia', 'zh-tw', 1000),
(7056, 6041, '5905-6041', 1, '玉泉店', '{"number":"017525","shop":"\\u7389\\u6cc9\\u5e97","phone":"0225522657","address":"\\u9577\\u5b89\\u897f\\u8def\\uff13\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '017525', 'quanjia', 'zh-tw', 1000),
(7057, 6041, '5905-6041', 1, '福安店', '{"number":"013977","shop":"\\u798f\\u5b89\\u5e97","phone":"0225509755","address":"\\u9577\\u5b89\\u897f\\u8def\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '013977', 'quanjia', 'zh-tw', 1000),
(7058, 6041, '5905-6041', 1, '日新店', '{"number":"018793","shop":"\\u65e5\\u65b0\\u5e97","phone":"0225505051","address":"\\u627f\\u5fb7\\u8def\\u4e8c\\u6bb5\\uff13\\uff19\\uff06\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '018793', 'quanjia', 'zh-tw', 1000),
(7059, 6041, '5905-6041', 1, '大龍店', '{"number":"016547","shop":"\\u5927\\u9f8d\\u5e97","phone":"0225980054","address":"\\u5927\\u9f8d\\u8857\\uff11\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '016547', 'quanjia', 'zh-tw', 1000),
(7060, 6041, '5905-6041', 1, '蘭州店', '{"number":"015569","shop":"\\u862d\\u5dde\\u5e97","phone":"0225995380","address":"\\u5927\\u9f8d\\u8857\\uff12\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '015569', 'quanjia', 'zh-tw', 1000),
(7061, 6041, '5905-6041', 1, '甘州店', '{"number":"018266","shop":"\\u7518\\u5dde\\u5e97","phone":"0225505587","address":"\\u6b78\\u7d8f\\u8857\\uff11\\uff18\\uff11\\u4e4b\\uff12\\u865f"}', '018266', 'quanjia', 'zh-tw', 1000),
(7062, 6041, '5905-6041', 1, '酒泉店', '{"number":"017311","shop":"\\u9152\\u6cc9\\u5e97","phone":"0225929575","address":"\\u5eab\\u502b\\u8857\\uff14\\uff18\\u4e4b\\uff14\\u865f"}', '017311', 'quanjia', 'zh-tw', 1000),
(7063, 6041, '5905-6041', 1, '福澤店', '{"number":"014801","shop":"\\u798f\\u6fa4\\u5e97","phone":"0225572577","address":"\\u6c11\\u6b0a\\u897f\\u8def\\uff11\\uff14\\uff16\\u865f"}', '014801', 'quanjia', 'zh-tw', 1000),
(7064, 6041, '5905-6041', 1, '萬全店', '{"number":"015590","shop":"\\u842c\\u5168\\u5e97","phone":"0225576965","address":"\\u6c11\\u751f\\u897f\\u8def\\uff16\\uff13\\u865f"}', '015590', 'quanjia', 'zh-tw', 1000),
(7065, 6041, '5905-6041', 1, '金慶店', '{"number":"016893","shop":"\\u91d1\\u6176\\u5e97","phone":"0225564600","address":"\\u5357\\u4eac\\u897f\\u8def\\uff13\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '016893', 'quanjia', 'zh-tw', 1000),
(7066, 6041, '5905-6041', 1, '京鋒店', '{"number":"018045","shop":"\\u4eac\\u92d2\\u5e97","phone":"0225587692","address":"\\u5357\\u4eac\\u897f\\u8def\\uff16\\uff11\\u865f\\uff11\\u6a13"}', '018045', 'quanjia', 'zh-tw', 1000),
(7067, 6041, '5905-6041', 1, '寧夏店', '{"number":"017908","shop":"\\u5be7\\u590f\\u5e97","phone":"0225500930","address":"\\u5be7\\u590f\\u8def\\uff12\\uff18\\uff0c\\uff13\\uff10\\uff0c\\uff12\\uff18\\u2014\\uff11\\uff0c\\uff12\\uff18\\u2014\\uff12\\u865f"}', '017908', 'quanjia', 'zh-tw', 1000),
(7068, 6041, '5905-6041', 1, '泰元店', '{"number":"017339","shop":"\\u6cf0\\u5143\\u5e97","phone":"0225592980","address":"\\u592a\\u539f\\u8def\\uff18\\uff11\\u865f"}', '017339', 'quanjia', 'zh-tw', 1000),
(7069, 6041, '5905-6041', 1, '永樂店', '{"number":"018592","shop":"\\u6c38\\u6a02\\u5e97","phone":"0225529571","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff10\\u865f\\u4e4b\\uff11\\u3000"}', '018592', 'quanjia', 'zh-tw', 1000),
(7070, 6041, '5905-6041', 1, '國順店', '{"number":"018861","shop":"\\u570b\\u9806\\u5e97","phone":"0225919787","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e09\\u6bb5\\uff11\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018861', 'quanjia', 'zh-tw', 1000),
(7071, 6041, '5905-6041', 1, '新橋店', '{"number":"018082","shop":"\\u65b0\\u6a4b\\u5e97","phone":"0225996171","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e09\\u6bb5\\uff12\\uff15\\u4e4b\\uff13\\u865f"}', '018082', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(7072, 6041, '5905-6041', 1, '明真店', '{"number":"017338","shop":"\\u660e\\u771f\\u5e97","phone":"0225982460","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u56db\\u6bb5\\uff11\\uff19\\u865f"}', '017338', 'quanjia', 'zh-tw', 1000),
(7073, 6041, '5905-6041', 1, '慶權店', '{"number":"018273","shop":"\\u6176\\u6b0a\\u5e97","phone":"0225578978","address":"\\u91cd\\u6176\\u5317\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '018273', 'quanjia', 'zh-tw', 1000),
(7074, 6042, '5905-6042', 1, '向陽店', '{"number":"016840","shop":"\\u5411\\u967d\\u5e97","phone":"0227887390","address":"\\u6771\\u65b0\\u91cc\\u91cd\\u967d\\u8def\\uff11\\uff16\\u865f\\u4e00\\u6a13"}', '016840', 'quanjia', 'zh-tw', 1000),
(7075, 6042, '5905-6042', 1, '港福店', '{"number":"013158","shop":"\\u6e2f\\u798f\\u5e97","phone":"0226543532","address":"\\u798f\\u5fb7\\u8857\\uff13\\uff17\\uff13\\u5df7\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '013158', 'quanjia', 'zh-tw', 1000),
(7076, 6042, '5905-6042', 1, '富康店', '{"number":"018875","shop":"\\u5bcc\\u5eb7\\u5e97","phone":"0227821423","address":"\\u5bcc\\u5eb7\\u8857\\uff18\\uff16\\u865f\\uff11\\uff26"}', '018875', 'quanjia', 'zh-tw', 1000),
(7077, 6042, '5905-6042', 1, '經貿店', '{"number":"018108","shop":"\\u7d93\\u8cbf\\u5e97","phone":"0227833027","address":"\\u7d93\\u8cbf\\u4e8c\\u8def\\uff12\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '018108', 'quanjia', 'zh-tw', 1000),
(7078, 6042, '5905-6042', 1, '新莊研店', '{"number":"014856","shop":"\\u65b0\\u838a\\u7814\\u5e97","phone":"0227853487","address":"\\u820a\\u838a\\u8857\\u4e00\\u6bb5\\uff11\\uff16\\uff19\\u865f"}', '014856', 'quanjia', 'zh-tw', 1000),
(7079, 6042, '5905-6042', 1, '胡適店', '{"number":"010358","shop":"\\u80e1\\u9069\\u5e97","phone":"0227888455","address":"\\u820a\\u838a\\u8857\\u4e00\\u6bb5\\uff13\\u5df7\\uff11\\uff16\\u865f"}', '010358', 'quanjia', 'zh-tw', 1000),
(7080, 6042, '5905-6042', 1, '國興店', '{"number":"015973","shop":"\\u570b\\u8208\\u5e97","phone":"0227832665","address":"\\u820a\\u838a\\u8857\\u4e00\\u6bb5\\uff13\\u5df7\\uff13\\u5f04\\uff12\\u865f"}', '015973', 'quanjia', 'zh-tw', 1000),
(7081, 6042, '5905-6042', 1, '新昆陽店', '{"number":"018413","shop":"\\u65b0\\u6606\\u967d\\u5e97","phone":"0227883495","address":"\\u6606\\u967d\\u8857\\uff11\\uff14\\uff15\\u865f"}', '018413', 'quanjia', 'zh-tw', 1000),
(7082, 6042, '5905-6042', 1, '港成店', '{"number":"014576","shop":"\\u6e2f\\u6210\\u5e97","phone":"0226548729","address":"\\u5357\\u6e2f\\u8def\\u4e09\\u6bb5\\uff12\\u865f"}', '014576', 'quanjia', 'zh-tw', 1000),
(7083, 6042, '5905-6042', 1, '工業一店', '{"number":"018459","shop":"\\u5de5\\u696d\\u4e00\\u5e97","phone":"0226550313","address":"\\u4e09\\u91cd\\u8def\\uff11\\uff19\\uff0d\\uff17\\u865f\\u5167\\u4e4b\\u4e00\\u90e8\\u4efd"}', '018459', 'quanjia', 'zh-tw', 1000),
(7084, 6042, '5905-6042', 1, '宏展店', '{"number":"018852","shop":"\\u5b8f\\u5c55\\u5e97","phone":"0226539324","address":"\\u4e09\\u91cd\\u8def\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '018852', 'quanjia', 'zh-tw', 1000),
(7085, 6042, '5905-6042', 1, '工業三店', '{"number":"017680","shop":"\\u5de5\\u696d\\u4e09\\u5e97","phone":"0227833949","address":"\\u4e09\\u91cd\\u8def\\uff16\\uff16\\u4e4b\\uff12\\u865f\\uff11\\u6a13"}', '017680', 'quanjia', 'zh-tw', 1000),
(7086, 6042, '5905-6042', 1, '興華店', '{"number":"017488","shop":"\\u8208\\u83ef\\u5e97","phone":"0227834076","address":"\\u8208\\u83ef\\u8def\\uff18\\uff16\\u865f"}', '017488', 'quanjia', 'zh-tw', 1000),
(7087, 6042, '5905-6042', 1, '中視店', '{"number":"012943","shop":"\\u4e2d\\u8996\\u5e97","phone":"0227864176","address":"\\u8208\\u5357\\u8857\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '012943', 'quanjia', 'zh-tw', 1000),
(7088, 6042, '5905-6042', 1, '研究院店', '{"number":"016464","shop":"\\u7814\\u7a76\\u9662\\u5e97","phone":"0226515140","address":"\\u7814\\u7a76\\u9662\\u8def\\uff12\\u6bb5\\uff17\\uff10\\u5df7\\uff11\\u865f"}', '016464', 'quanjia', 'zh-tw', 1000),
(7089, 6042, '5905-6042', 1, '華科大店', '{"number":"014456","shop":"\\u83ef\\u79d1\\u5927\\u5e97","phone":"0226548039","address":"\\u7814\\u7a76\\u9662\\u8def\\uff13\\u6bb5\\uff12\\uff14\\uff15\\u865f"}', '014456', 'quanjia', 'zh-tw', 1000),
(7090, 6042, '5905-6042', 1, '新成鑫店', '{"number":"015639","shop":"\\u65b0\\u6210\\u946b\\u5e97","phone":"0227853529","address":"\\u7389\\u6210\\u8857\\uff11\\uff17\\uff16\\u5df7\\uff11\\u865f"}', '015639', 'quanjia', 'zh-tw', 1000),
(7091, 6042, '5905-6042', 1, '工業二店', '{"number":"018460","shop":"\\u5de5\\u696d\\u4e8c\\u5e97","phone":"0226558763","address":"\\u5712\\u5340\\u8857\\uff13\\u865f\\uff12\\u6a13\\u4e4b\\uff17"}', '018460', 'quanjia', 'zh-tw', 1000),
(7092, 6042, '5905-6042', 1, '北鑫店', '{"number":"010980","shop":"\\u5317\\u946b\\u5e97","phone":"0227866062","address":"\\u4e2d\\u5761\\u5357\\u8def\\uff11\\uff15\\u865f"}', '010980', 'quanjia', 'zh-tw', 1000),
(7093, 6042, '5905-6042', 1, '重陽店', '{"number":"013890","shop":"\\u91cd\\u967d\\u5e97","phone":"0227893918","address":"\\u91cd\\u967d\\u8def\\uff11\\uff18\\uff13\\u3001\\uff11\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '013890', 'quanjia', 'zh-tw', 1000),
(7094, 6043, '5905-6043', 1, '東安店', '{"number":"013902","shop":"\\u6771\\u5b89\\u5e97","phone":"0226345521","address":"\\u5b89\\u5eb7\\u8def\\uff14\\uff18\\uff10\\u865f"}', '013902', 'quanjia', 'zh-tw', 1000),
(7095, 6043, '5905-6043', 1, '新內湖店', '{"number":"015371","shop":"\\u65b0\\u5167\\u6e56\\u5e97","phone":"0227948239","address":"\\u6210\\u529f\\u8def\\uff12\\u6bb5\\uff14\\uff12\\uff10\\u865f"}', '015371', 'quanjia', 'zh-tw', 1000),
(7096, 6043, '5905-6043', 1, '新三總店', '{"number":"016534","shop":"\\u65b0\\u4e09\\u7e3d\\u5e97","phone":"0287917684","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\uff13\\uff12\\uff15\\u865f\\uff22\\uff11\\uff26"}', '016534', 'quanjia', 'zh-tw', 1000),
(7097, 6043, '5905-6043', 1, '湖盛店', '{"number":"015508","shop":"\\u6e56\\u76db\\u5e97","phone":"0287921285","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\uff11\\uff14\\uff13\\u865f"}', '015508', 'quanjia', 'zh-tw', 1000),
(7098, 6043, '5905-6043', 1, '湖捷店', '{"number":"018313","shop":"\\u6e56\\u6377\\u5e97","phone":"0227946716","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\uff11\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '018313', 'quanjia', 'zh-tw', 1000),
(7099, 6043, '5905-6043', 1, '德湖店', '{"number":"017622","shop":"\\u5fb7\\u6e56\\u5e97","phone":"0287923344","address":"\\u6210\\u529f\\u8def\\u56db\\u6bb5\\uff16\\uff12\\u865f\\uff11\\u6a13\\u53ca\\uff22\\uff11"}', '017622', 'quanjia', 'zh-tw', 1000),
(7100, 6043, '5905-6043', 1, '精英店', '{"number":"014042","shop":"\\u7cbe\\u82f1\\u5e97","phone":"0226579148","address":"\\u5824\\u9802\\u5927\\u9053\\u4e8c\\u6bb5\\uff12\\uff14\\uff11\\u865f\\u58f9\\u6a13"}', '014042', 'quanjia', 'zh-tw', 1000),
(7101, 6043, '5905-6043', 1, '新東湖店', '{"number":"017030","shop":"\\u65b0\\u6771\\u6e56\\u5e97","phone":"0226317679","address":"\\u6771\\u6e56\\u8def\\uff14\\uff13\\u5df7\\uff14\\u865f"}', '017030', 'quanjia', 'zh-tw', 1000),
(7102, 6043, '5905-6043', 1, '瑞湖店', '{"number":"013730","shop":"\\u745e\\u6e56\\u5e97","phone":"0287524016","address":"\\u6e2f\\u5898\\u91cc\\u745e\\u5149\\u8def\\uff15\\uff11\\uff13\\u5df7\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '013730', 'quanjia', 'zh-tw', 1000),
(7103, 6043, '5905-6043', 1, '行善店', '{"number":"013637","shop":"\\u884c\\u5584\\u5e97","phone":"0227967192","address":"\\u884c\\u5584\\u8def\\uff12\\uff18\\uff19\\u865f"}', '013637', 'quanjia', 'zh-tw', 1000),
(7104, 6043, '5905-6043', 1, '新德明店', '{"number":"013284","shop":"\\u65b0\\u5fb7\\u660e\\u5e97","phone":"0227996853","address":"\\u74b0\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff10\\u865f"}', '013284', 'quanjia', 'zh-tw', 1000),
(7105, 6043, '5905-6043', 1, '環山店', '{"number":"014772","shop":"\\u74b0\\u5c71\\u5e97","phone":"0226271008","address":"\\u74b0\\u5c71\\u8def\\u4e00\\u6bb5\\uff15\\u865f"}', '014772', 'quanjia', 'zh-tw', 1000),
(7106, 6043, '5905-6043', 1, '金瑞店', '{"number":"017786","shop":"\\u91d1\\u745e\\u5e97","phone":"0227934276","address":"\\u91d1\\u9f8d\\u8def\\uff12\\uff12\\uff14\\u865f"}', '017786', 'quanjia', 'zh-tw', 1000),
(7107, 6043, '5905-6043', 1, '明美店', '{"number":"018807","shop":"\\u660e\\u7f8e\\u5e97","phone":"0227941977","address":"\\u91d1\\u838a\\u8def\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '018807', 'quanjia', 'zh-tw', 1000),
(7108, 6043, '5905-6043', 1, '堤頂店', '{"number":"018160","shop":"\\u5824\\u9802\\u5e97","phone":"0287989969","address":"\\u820a\\u5b97\\u8def\\u4e8c\\u6bb5\\uff12\\uff10\\uff17\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '018160', 'quanjia', 'zh-tw', 1000),
(7109, 6043, '5905-6043', 1, '紫新店', '{"number":"018517","shop":"\\u7d2b\\u65b0\\u5e97","phone":"0227940091","address":"\\u5eb7\\u5be7\\u8def\\u3127\\u6bb5\\uff13\\uff17\\u865f\\u3127\\u6a13"}', '018517', 'quanjia', 'zh-tw', 1000),
(7110, 6043, '5905-6043', 1, '護校店', '{"number":"013798","shop":"\\u8b77\\u6821\\u5e97","phone":"0226342271","address":"\\u5eb7\\u5be7\\u8def\\u4e09\\u6bb5\\uff17\\uff15\\u5df7\\uff11\\uff13\\uff17\\u865f"}', '013798', 'quanjia', 'zh-tw', 1000),
(7111, 6043, '5905-6043', 1, '康雲店', '{"number":"015810","shop":"\\u5eb7\\u96f2\\u5e97","phone":"0227940805","address":"\\u5eb7\\u5be7\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff16\\u865f\\u53ca\\u5730\\u4e0b\\u5ba4"}', '015810', 'quanjia', 'zh-tw', 1000),
(7112, 6043, '5905-6043', 1, '康福店', '{"number":"018893","shop":"\\u5eb7\\u798f\\u5e97","phone":"0226339860","address":"\\u5eb7\\u6a02\\u8857\\uff18\\uff17\\u865f"}', '018893', 'quanjia', 'zh-tw', 1000),
(7113, 6043, '5905-6043', 1, '湖山店', '{"number":"015432","shop":"\\u6e56\\u5c71\\u5e97","phone":"0226572616","address":"\\u9e97\\u5c71\\u8857\\uff13\\uff14\\uff18\\u5df7\\uff11\\uff10\\u5f04\\uff12\\u865f"}', '015432', 'quanjia', 'zh-tw', 1000),
(7114, 6043, '5905-6043', 1, '內華店', '{"number":"014391","shop":"\\u5167\\u83ef\\u5e97","phone":"0227911354","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\uff11\\uff16\\uff12\\u865f"}', '014391', 'quanjia', 'zh-tw', 1000),
(7115, 6043, '5905-6043', 1, '三民店', '{"number":"016265","shop":"\\u4e09\\u6c11\\u5e97","phone":"0227942827","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u516d\\u6bb5\\uff19\\uff10\\u5df7\\uff11\\u865f"}', '016265', 'quanjia', 'zh-tw', 1000),
(7116, 6043, '5905-6043', 1, '民善店', '{"number":"017999","shop":"\\u6c11\\u5584\\u5e97","phone":"0287922468","address":"\\u6c11\\u5584\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '017999', 'quanjia', 'zh-tw', 1000),
(7117, 6043, '5905-6043', 1, '湖濱店', '{"number":"012857","shop":"\\u6e56\\u6ff1\\u5e97","phone":"0226593051","address":"\\u5167\\u6e56\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff13\\u5df7\\uff11\\uff10\\uff14\\u865f"}', '012857', 'quanjia', 'zh-tw', 1000),
(7118, 6043, '5905-6043', 1, '湖安店', '{"number":"013996","shop":"\\u6e56\\u5b89\\u5e97","phone":"0226591427","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\uff12\\uff18\\uff15\\u5df7\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '013996', 'quanjia', 'zh-tw', 1000),
(7119, 6043, '5905-6043', 1, '碧湖店', '{"number":"011528","shop":"\\u78a7\\u6e56\\u5e97","phone":"0226277149","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\uff15\\uff19\\uff13\\u865f\\u4e00\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '011528', 'quanjia', 'zh-tw', 1000),
(7120, 6043, '5905-6043', 1, '麗水店', '{"number":"016568","shop":"\\u9e97\\u6c34\\u5e97","phone":"0226272956","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\uff17\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '016568', 'quanjia', 'zh-tw', 1000),
(7121, 6043, '5905-6043', 1, '麗山店', '{"number":"017163","shop":"\\u9e97\\u5c71\\u5e97","phone":"0226279495","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\uff17\\uff13\\uff17\\u5df7\\uff14\\uff19\\u865f"}', '017163', 'quanjia', 'zh-tw', 1000),
(7122, 6043, '5905-6043', 1, '陽湖店', '{"number":"017818","shop":"\\u967d\\u6e56\\u5e97","phone":"0226277102","address":"\\u5167\\u6e56\\u8def\\u4e00\\u6bb5\\uff19\\uff11\\u5df7\\uff14\\u865f\\uff11\\u6a13"}', '017818', 'quanjia', 'zh-tw', 1000),
(7123, 6043, '5905-6043', 1, '瑞豐店', '{"number":"017978","shop":"\\u745e\\u8c50\\u5e97","phone":"0287514934","address":"\\u745e\\u5149\\u8def\\uff12\\uff12\\uff10\\u865f"}', '017978', 'quanjia', 'zh-tw', 1000),
(7124, 6043, '5905-6043', 1, '瑞興店', '{"number":"018769","shop":"\\u745e\\u8208\\u5e97","phone":"0226591468","address":"\\u745e\\u5149\\u8def\\uff13\\uff10\\uff13\\u865f"}', '018769', 'quanjia', 'zh-tw', 1000),
(7125, 6043, '5905-6043', 1, '瑞智店', '{"number":"018709","shop":"\\u745e\\u667a\\u5e97","phone":"0287518611","address":"\\u745e\\u5149\\u8def\\uff14\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '018709', 'quanjia', 'zh-tw', 1000),
(7126, 6043, '5905-6043', 1, '瑞光店', '{"number":"018053","shop":"\\u745e\\u5149\\u5e97","phone":"0287514993","address":"\\u745e\\u5149\\u8def\\uff15\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '018053', 'quanjia', 'zh-tw', 1000),
(7127, 6043, '5905-6043', 1, '瑞盛店', '{"number":"015393","shop":"\\u745e\\u76db\\u5e97","phone":"0287926581","address":"\\u745e\\u5149\\u8def\\uff16\\uff16\\u5df7\\uff14\\uff10\\u865f"}', '015393', 'quanjia', 'zh-tw', 1000),
(7128, 6043, '5905-6043', 1, '陽鑫店', '{"number":"018636","shop":"\\u967d\\u946b\\u5e97","phone":"0226593732","address":"\\u745e\\u6e56\\u8857\\uff18\\uff10\\u865f\\uff11\\u6a13\\uff32\\uff13\\u3001\\uff32\\uff14\\u3000"}', '018636', 'quanjia', 'zh-tw', 1000),
(7129, 6043, '5905-6043', 1, '金莊店', '{"number":"014027","shop":"\\u91d1\\u838a\\u5e97","phone":"0227941829","address":"\\u77f3\\u6f6d\\u8def\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '014027', 'quanjia', 'zh-tw', 1000),
(7130, 6043, '5905-6043', 1, '紫陽店', '{"number":"016630","shop":"\\u7d2b\\u967d\\u5e97","phone":"0287519703","address":"\\u6587\\u5fb7\\u8def\\uff12\\uff11\\uff12\\u865f"}', '016630', 'quanjia', 'zh-tw', 1000),
(7131, 6043, '5905-6043', 1, '德陽店', '{"number":"016895","shop":"\\u5fb7\\u967d\\u5e97","phone":"0227987160","address":"\\u6587\\u5fb7\\u8def\\uff12\\uff12\\u5df7\\uff12\\uff15\\u865f"}', '016895', 'quanjia', 'zh-tw', 1000),
(7132, 6043, '5905-6043', 1, '瑞陽店', '{"number":"016951","shop":"\\u745e\\u967d\\u5e97","phone":"0226597471","address":"\\u6587\\u5fb7\\u8def\\uff19\\uff10\\u5df7\\uff14\\uff19\\u865f"}', '016951', 'quanjia', 'zh-tw', 1000),
(7133, 6043, '5905-6043', 1, '文湖店', '{"number":"018205","shop":"\\u6587\\u6e56\\u5e97","phone":"0227973433","address":"\\u6587\\u6e56\\u8857\\uff15\\uff19\\u865f"}', '018205', 'quanjia', 'zh-tw', 1000),
(7134, 6043, '5905-6043', 1, '新湖店', '{"number":"014943","shop":"\\u65b0\\u6e56\\u5e97","phone":"0227937065","address":"\\u65b0\\u6e56\\u4e8c\\u8def\\uff12\\uff15\\uff10\\u5df7\\uff18\\u865f\\uff11\\u6a13"}', '014943', 'quanjia', 'zh-tw', 1000),
(7135, 6043, '5905-6043', 1, '興盛店', '{"number":"018868","shop":"\\u8208\\u76db\\u5e97","phone":"0227903667","address":"\\u65b0\\u660e\\u8def\\uff11\\uff18\\uff12\\u865f"}', '018868', 'quanjia', 'zh-tw', 1000),
(7136, 6043, '5905-6043', 1, '星湖店', '{"number":"016673","shop":"\\u661f\\u6e56\\u5e97","phone":"0227906271","address":"\\u661f\\u96f2\\u8857\\uff11\\uff16\\uff11\\u5df7\\uff11\\u865f"}', '016673', 'quanjia', 'zh-tw', 1000),
(7137, 6043, '5905-6043', 1, '內科店', '{"number":"017501","shop":"\\u5167\\u79d1\\u5e97","phone":"0287511523","address":"\\u6d32\\u5b50\\u8857\\uff16\\uff11\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '017501', 'quanjia', 'zh-tw', 1000),
(7138, 6044, '5905-6044', 1, '華港店', '{"number":"015792","shop":"\\u83ef\\u6e2f\\u5e97","phone":"0228810722","address":"\\u5927\\u5357\\u8def\\uff12\\uff13\\uff11\\u865f"}', '015792', 'quanjia', 'zh-tw', 1000),
(7139, 6044, '5905-6044', 1, '大南店', '{"number":"015059","shop":"\\u5927\\u5357\\u5e97","phone":"0228833976","address":"\\u5927\\u5357\\u8def\\uff15\\uff12\\u865f"}', '015059', 'quanjia', 'zh-tw', 1000),
(7140, 6044, '5905-6044', 1, '德行店', '{"number":"014141","shop":"\\u5fb7\\u884c\\u5e97","phone":"0228314191","address":"\\u5fb7\\u884c\\u6771\\u8def\\uff11\\uff10\\uff19\\u5df7\\uff13\\u865f"}', '014141', 'quanjia', 'zh-tw', 1000),
(7141, 6044, '5905-6044', 1, '德忠店', '{"number":"018244","shop":"\\u5fb7\\u5fe0\\u5e97","phone":"0228318420","address":"\\u5fb7\\u884c\\u6771\\u8def\\uff11\\uff10\\uff19\\u5df7\\uff17\\uff15\\u865f\\u58f9\\u6a13"}', '018244', 'quanjia', 'zh-tw', 1000),
(7142, 6044, '5905-6044', 1, '芝蘭店', '{"number":"016784","shop":"\\u829d\\u862d\\u5e97","phone":"0228314783","address":"\\u5fb7\\u884c\\u6771\\u8def\\uff13\\uff13\\uff10\\u865f"}', '016784', 'quanjia', 'zh-tw', 1000),
(7143, 6044, '5905-6044', 1, '百齡店', '{"number":"016305","shop":"\\u767e\\u9f61\\u5e97","phone":"0228834606","address":"\\u798f\\u6e2f\\u8857\\uff11\\uff15\\uff18\\uff0d\\uff11\\u865f"}', '016305', 'quanjia', 'zh-tw', 1000),
(7144, 6044, '5905-6044', 1, '和豐店', '{"number":"018391","shop":"\\u548c\\u8c50\\u5e97","phone":"0228813084","address":"\\u798f\\u83ef\\u91cc\\u548c\\u8c50\\u8857\\uff12\\u865f\\u4e00\\u6a13"}', '018391', 'quanjia', 'zh-tw', 1000),
(7145, 6044, '5905-6044', 1, '福林店', '{"number":"016707","shop":"\\u798f\\u6797\\u5e97","phone":"0288611682","address":"\\u798f\\u6797\\u91cc\\u4e2d\\u6b63\\u8def\\uff12\\uff13\\uff13\\u865f\\uff0c\\uff12\\uff13\\uff13\\u4e4b\\uff11\\u865f"}', '016707', 'quanjia', 'zh-tw', 1000),
(7146, 6044, '5905-6044', 1, '新格致店', '{"number":"016306","shop":"\\u65b0\\u683c\\u81f4\\u5e97","phone":"0228623855","address":"\\u683c\\u81f4\\u8def\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '016306', 'quanjia', 'zh-tw', 1000),
(7147, 6044, '5905-6044', 1, '華崗店', '{"number":"013571","shop":"\\u83ef\\u5d17\\u5e97","phone":"0228629007","address":"\\u5149\\u83ef\\u8def\\uff12\\uff16\\u5df7\\uff13\\u865f\\uff0d\\uff12"}', '013571', 'quanjia', 'zh-tw', 1000),
(7148, 6044, '5905-6044', 1, '新文大店', '{"number":"014455","shop":"\\u65b0\\u6587\\u5927\\u5e97","phone":"0228620079","address":"\\u83ef\\u5ca1\\u8def\\uff15\\uff15\\u865f"}', '014455', 'quanjia', 'zh-tw', 1000),
(7149, 6044, '5905-6044', 1, '美崙店', '{"number":"017408","shop":"\\u7f8e\\u5d19\\u5e97","phone":"0228346427","address":"\\u83ef\\u69ae\\u8857\\uff19\\uff17\\u865f"}', '017408', 'quanjia', 'zh-tw', 1000),
(7150, 6044, '5905-6044', 1, '至善店', '{"number":"018320","shop":"\\u81f3\\u5584\\u5e97","phone":"0228414153","address":"\\u81e8\\u6eaa\\u91cc\\u81f3\\u5584\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff18\\u865f\\u4e00\\u6a13"}', '018320', 'quanjia', 'zh-tw', 1000),
(7151, 6044, '5905-6044', 1, '天文店', '{"number":"014389","shop":"\\u5929\\u6587\\u5e97","phone":"0228319102","address":"\\u7f8e\\u5d19\\u8857\\uff11\\uff11\\uff18\\u865f"}', '014389', 'quanjia', 'zh-tw', 1000),
(7152, 6044, '5905-6044', 1, '福港店', '{"number":"014902","shop":"\\u798f\\u6e2f\\u5e97","phone":"0228804266","address":"\\u524d\\u6e2f\\u8857\\uff11\\uff12\\uff16\\u865f"}', '014902', 'quanjia', 'zh-tw', 1000),
(7153, 6044, '5905-6044', 1, '大港店', '{"number":"018841","shop":"\\u5927\\u6e2f\\u5e97","phone":"0228832065","address":"\\u524d\\u6e2f\\u8857\\uff13\\uff19\\u865f"}', '018841', 'quanjia', 'zh-tw', 1000),
(7154, 6044, '5905-6044', 1, '社中店', '{"number":"014540","shop":"\\u793e\\u4e2d\\u5e97","phone":"0228132673","address":"\\u793e\\u4e2d\\u8857\\uff13\\uff18\\uff16\\u865f"}', '014540', 'quanjia', 'zh-tw', 1000),
(7155, 6044, '5905-6044', 1, '永新店', '{"number":"017663","shop":"\\u6c38\\u65b0\\u5e97","phone":"0228113436","address":"\\u793e\\u5b50\\u8857\\uff12\\uff17\\u865f"}', '017663', 'quanjia', 'zh-tw', 1000),
(7156, 6044, '5905-6044', 1, '芝玉店', '{"number":"016375","shop":"\\u829d\\u7389\\u5e97","phone":"0228343943","address":"\\u58eb\\u6771\\u8def\\uff12\\uff16\\uff16\\u5df7\\uff15\\u5f04\\uff11\\uff16\\u865f"}', '016375', 'quanjia', 'zh-tw', 1000),
(7157, 6044, '5905-6044', 1, '新士誠店', '{"number":"017575","shop":"\\u65b0\\u58eb\\u8aa0\\u5e97","phone":"0228314357","address":"\\u58eb\\u6771\\u8def\\uff18\\uff16\\u865f\\u58f9\\u6a13"}', '017575', 'quanjia', 'zh-tw', 1000),
(7158, 6044, '5905-6044', 1, '天成店', '{"number":"014541","shop":"\\u5929\\u6210\\u5e97","phone":"0228747141","address":"\\u5929\\u798f\\u91cc\\u5929\\u6bcd\\u6771\\u8def\\uff13\\uff16\\u865f\\u4e4b\\uff15\\uff0c\\u4e4b\\uff16"}', '014541', 'quanjia', 'zh-tw', 1000),
(7159, 6044, '5905-6044', 1, '天山店', '{"number":"014438","shop":"\\u5929\\u5c71\\u5e97","phone":"0228769215","address":"\\u5929\\u6bcd\\u6771\\u8def\\uff16\\uff19\\u5df7\\uff11\\uff11\\u4e4b\\uff19\\u865f\\uff11\\u6a13"}', '014438', 'quanjia', 'zh-tw', 1000),
(7160, 6044, '5905-6044', 1, '新磺溪店', '{"number":"015200","shop":"\\u65b0\\u78fa\\u6eaa\\u5e97","phone":"0228767673","address":"\\u5929\\u6bcd\\u897f\\u8def\\uff14\\uff10\\uff0d\\uff12\\u865f\\uff11\\u6a13"}', '015200', 'quanjia', 'zh-tw', 1000),
(7161, 6044, '5905-6044', 1, '通河店', '{"number":"016516","shop":"\\u901a\\u6cb3\\u5e97","phone":"0228858507","address":"\\u901a\\u6cb3\\u8857\\uff11\\uff14\\uff15\\u865f"}', '016516', 'quanjia', 'zh-tw', 1000),
(7162, 6044, '5905-6044', 1, '文鑫店', '{"number":"018442","shop":"\\u6587\\u946b\\u5e97","phone":"0228816801","address":"\\u6587\\u6797\\u8def\\uff12\\uff10\\uff15\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018442', 'quanjia', 'zh-tw', 1000),
(7163, 6044, '5905-6044', 1, '大北店', '{"number":"013548","shop":"\\u5927\\u5317\\u5e97","phone":"0228819255","address":"\\u6587\\u6797\\u8def\\uff13\\uff12\\uff10\\u865f"}', '013548', 'quanjia', 'zh-tw', 1000),
(7164, 6044, '5905-6044', 1, '葫蘆店', '{"number":"016798","shop":"\\u846b\\u8606\\u5e97","phone":"0288114965","address":"\\u5ef6\\u5e73\\u5317\\u8def\\u4e94\\u6bb5\\uff12\\uff18\\uff13\\u4e4b\\uff11\\u865f"}', '016798', 'quanjia', 'zh-tw', 1000),
(7165, 6044, '5905-6044', 1, '致昇店', '{"number":"017718","shop":"\\u81f4\\u6607\\u5e97","phone":"0228385392","address":"\\u96e8\\u8072\\u8857\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '017718', 'quanjia', 'zh-tw', 1000),
(7166, 6044, '5905-6044', 1, '中影店', '{"number":"017406","shop":"\\u4e2d\\u5f71\\u5e97","phone":"0228839581","address":"\\u81f3\\u5584\\u8def\\u4e8c\\u6bb5\\uff13\\uff14\\u865f"}', '017406', 'quanjia', 'zh-tw', 1000),
(7167, 6044, '5905-6044', 1, '士林店', '{"number":"018860","shop":"\\u58eb\\u6797\\u5e97","phone":"0228348066","address":"\\u4e2d\\u5c71\\u5317\\u8def\\uff15\\u6bb5\\uff16\\uff19\\uff17\\u865f"}', '018860', 'quanjia', 'zh-tw', 1000),
(7168, 6044, '5905-6044', 1, '天強店', '{"number":"014985","shop":"\\u5929\\u5f37\\u5e97","phone":"0228317990","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u516d\\u6bb5\\uff12\\uff13\\uff18\\u865f\\u58f9\\u6a13"}', '014985', 'quanjia', 'zh-tw', 1000),
(7169, 6044, '5905-6044', 1, '榮富店', '{"number":"018744","shop":"\\u69ae\\u5bcc\\u5e97","phone":"0228768631","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u516d\\u6bb5\\uff17\\uff12\\uff16\\u865f\\u5317\\u5074"}', '018744', 'quanjia', 'zh-tw', 1000),
(7170, 6044, '5905-6044', 1, '新陽明店', '{"number":"016684","shop":"\\u65b0\\u967d\\u660e\\u5e97","phone":"0228818262","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff12\\uff19\\u865f"}', '016684', 'quanjia', 'zh-tw', 1000),
(7171, 6044, '5905-6044', 1, '士商店', '{"number":"017340","shop":"\\u58eb\\u5546\\u5e97","phone":"0228838435","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff10\\uff13\\u865f"}', '017340', 'quanjia', 'zh-tw', 1000),
(7172, 6044, '5905-6044', 1, '新天和店', '{"number":"014186","shop":"\\u65b0\\u5929\\u548c\\u5e97","phone":"0228723753","address":"\\u5fe0\\u8aa0\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '014186', 'quanjia', 'zh-tw', 1000),
(7173, 6044, '5905-6044', 1, '新蘭雅店', '{"number":"014987","shop":"\\u65b0\\u862d\\u96c5\\u5e97","phone":"0228314977","address":"\\u5fe0\\u8aa0\\u8def\\u4e8c\\u6bb5\\uff15\\uff12\\u865f\\u58f9\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4\\u90e8\\u4efd"}', '014987', 'quanjia', 'zh-tw', 1000),
(7174, 6044, '5905-6044', 1, '誠德店', '{"number":"016412","shop":"\\u8aa0\\u5fb7\\u5e97","phone":"0228344780","address":"\\u5fe0\\u8aa0\\u8def\\u4e8c\\u6bb5\\uff15\\u865f\\uff11\\u6a13"}', '016412', 'quanjia', 'zh-tw', 1000),
(7175, 6044, '5905-6044', 1, '新葫東店', '{"number":"014686","shop":"\\u65b0\\u846b\\u6771\\u5e97","phone":"0228162923","address":"\\u91cd\\u6176\\u5317\\u8def\\u56db\\u6bb5\\uff11\\uff18\\uff14\\u865f\\uff11\\u6a13"}', '014686', 'quanjia', 'zh-tw', 1000),
(7176, 6045, '5905-6045', 1, '鑫德店', '{"number":"013938","shop":"\\u946b\\u5fb7\\u5e97","phone":"0287717609","address":"\\u516b\\u5fb7\\u8def\\u4e8c\\u6bb5\\uff14\\uff10\\uff10\\u865f"}', '013938', 'quanjia', 'zh-tw', 1000),
(7177, 6045, '5905-6045', 1, '台發店', '{"number":"018139","shop":"\\u53f0\\u767c\\u5e97","phone":"0225781936","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\uff13\\uff10\\u865f\\u58f9\\u6a13\\uff08\\u5982\\u9644\\u5716\\uff09"}', '018139', 'quanjia', 'zh-tw', 1000),
(7178, 6045, '5905-6045', 1, '中發店', '{"number":"018851","shop":"\\u4e2d\\u767c\\u5e97","phone":"0225793662","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\uff17\\uff14\\u5df7\\uff11\\uff10\\u865f\\uff11\\uff0e\\uff12\\u6a13\\u5982\\u9644\\u5716"}', '018851', 'quanjia', 'zh-tw', 1000),
(7179, 6045, '5905-6045', 1, '中崙店', '{"number":"015638","shop":"\\u4e2d\\u5d19\\u5e97","phone":"0225776466","address":"\\u516b\\u5fb7\\u8def\\u4e09\\u6bb5\\uff17\\uff14\\u5df7\\uff14\\uff13\\u865f"}', '015638', 'quanjia', 'zh-tw', 1000),
(7180, 6045, '5905-6045', 1, '復盛店', '{"number":"016137","shop":"\\u5fa9\\u76db\\u5e97","phone":"0227619127","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\uff14\\uff10\\u865f\\uff0e\\uff14\\uff12\\u865f"}', '016137', 'quanjia', 'zh-tw', 1000),
(7181, 6045, '5905-6045', 1, '寶清店', '{"number":"016953","shop":"\\u5bf6\\u6e05\\u5e97","phone":"0227532857","address":"\\u516b\\u5fb7\\u8def\\u56db\\u6bb5\\uff15\\uff19\\uff18\\u865f\\uff11\\u6a13"}', '016953', 'quanjia', 'zh-tw', 1000),
(7182, 6045, '5905-6045', 1, '長復店', '{"number":"014887","shop":"\\u9577\\u5fa9\\u5e97","phone":"0227500001","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\uff19\\u865f"}', '014887', 'quanjia', 'zh-tw', 1000),
(7183, 6045, '5905-6045', 1, '松醫店', '{"number":"011273","shop":"\\u677e\\u91ab\\u5e97","phone":"0227600199","address":"\\u6771\\u5149\\u91cc\\u5065\\u5eb7\\u8def\\uff11\\uff15\\uff18\\u865f"}', '011273', 'quanjia', 'zh-tw', 1000),
(7184, 6045, '5905-6045', 1, '長城店', '{"number":"012657","shop":"\\u9577\\u57ce\\u5e97","phone":"0227176687","address":"\\u6566\\u5316\\u5317\\u8def\\uff11\\uff12\\uff10\\u5df7\\uff18\\uff10\\u865f"}', '012657', 'quanjia', 'zh-tw', 1000),
(7185, 6045, '5905-6045', 1, '宏大店', '{"number":"012127","shop":"\\u5b8f\\u5927\\u5e97","phone":"0227183704","address":"\\u6566\\u5316\\u5317\\u8def\\uff11\\uff15\\uff15\\u5df7\\uff13\\u865f\\uff11\\u6a13"}', '012127', 'quanjia', 'zh-tw', 1000),
(7186, 6045, '5905-6045', 1, '長塑店', '{"number":"016406","shop":"\\u9577\\u5851\\u5e97","phone":"0227198993","address":"\\u6566\\u5316\\u5317\\u8def\\uff11\\uff19\\uff19\\u5df7\\uff12\\u5f04\\uff15\\u865f\\uff11\\u6a13"}', '016406', 'quanjia', 'zh-tw', 1000),
(7187, 6045, '5905-6045', 1, '敦中店', '{"number":"015863","shop":"\\u6566\\u4e2d\\u5e97","phone":"0287716763","address":"\\u6566\\u5316\\u5317\\u8def\\uff14\\u5df7\\uff11\\u865f"}', '015863', 'quanjia', 'zh-tw', 1000),
(7188, 6045, '5905-6045', 1, '大理店', '{"number":"015906","shop":"\\u5927\\u7406\\u5e97","phone":"0227473064","address":"\\u5149\\u5fa9\\u5317\\u8def\\uff11\\uff11\\u5df7\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '015906', 'quanjia', 'zh-tw', 1000),
(7189, 6045, '5905-6045', 1, '新德光店', '{"number":"013740","shop":"\\u65b0\\u5fb7\\u5149\\u5e97","phone":"0225780506","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff13\\uff12\\u5df7\\uff14\\uff16\\uff0d\\uff14\\u865f"}', '013740', 'quanjia', 'zh-tw', 1000),
(7190, 6045, '5905-6045', 1, '新大吉店', '{"number":"014091","shop":"\\u65b0\\u5927\\u5409\\u5e97","phone":"0227489223","address":"\\u5409\\u7965\\u8def\\uff11\\uff19\\u865f"}', '014091', 'quanjia', 'zh-tw', 1000),
(7191, 6045, '5905-6045', 1, '康柏店', '{"number":"013286","shop":"\\u5eb7\\u67cf\\u5e97","phone":"0227604612","address":"\\u5065\\u5eb7\\u8def\\uff12\\uff12\\uff10\\u865f"}', '013286', 'quanjia', 'zh-tw', 1000),
(7192, 6045, '5905-6045', 1, '民康店', '{"number":"017248","shop":"\\u6c11\\u5eb7\\u5e97","phone":"0227457090","address":"\\u5065\\u5eb7\\u8def\\uff12\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '017248', 'quanjia', 'zh-tw', 1000),
(7193, 6045, '5905-6045', 1, '興北店', '{"number":"015862","shop":"\\u8208\\u5317\\u5e97","phone":"0227150977","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\uff13\\u5df7\\uff11\\uff15\\u2014\\uff11\\u865f"}', '015862', 'quanjia', 'zh-tw', 1000),
(7194, 6045, '5905-6045', 1, '復北店', '{"number":"018478","shop":"\\u5fa9\\u5317\\u5e97","phone":"0225468878","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\uff14\\u865f\\u58f9\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018478', 'quanjia', 'zh-tw', 1000),
(7195, 6045, '5905-6045', 1, '北權店', '{"number":"014789","shop":"\\u5317\\u6b0a\\u5e97","phone":"0225469055","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\uff16\\u5df7\\uff11\\uff11\\u865f"}', '014789', 'quanjia', 'zh-tw', 1000),
(7196, 6045, '5905-6045', 1, '新民有店', '{"number":"017122","shop":"\\u65b0\\u6c11\\u6709\\u5e97","phone":"0287129937","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff16\\uff10\\u5df7\\uff11\\uff11\\u865f"}', '017122', 'quanjia', 'zh-tw', 1000),
(7197, 6045, '5905-6045', 1, '豐華店', '{"number":"013024","shop":"\\u8c50\\u83ef\\u5e97","phone":"0227123226","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff11\\uff13\\u5df7\\uff16\\u5f04\\uff11\\u865f\\u4e00\\u6a13"}', '013024', 'quanjia', 'zh-tw', 1000),
(7198, 6045, '5905-6045', 1, '敦德店', '{"number":"017087","shop":"\\u6566\\u5fb7\\u5e97","phone":"0227130655","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff12\\uff17\\u5df7\\uff16\\u865f\\uff11\\u6a13"}', '017087', 'quanjia', 'zh-tw', 1000),
(7199, 6045, '5905-6045', 1, '豐興店', '{"number":"018830","shop":"\\u8c50\\u8208\\u5e97","phone":"0225471001","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff13\\uff10\\u5df7\\uff15\\u5f04\\uff12\\uff12\\u865f"}', '018830', 'quanjia', 'zh-tw', 1000),
(7200, 6045, '5905-6045', 1, '豐禾店', '{"number":"012220","shop":"\\u8c50\\u79be\\u5e97","phone":"0227126702","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e09\\u6bb5\\uff11\\uff13\\uff10\\u5df7\\uff15\\u5f04\\uff12\\u865f"}', '012220', 'quanjia', 'zh-tw', 1000),
(7201, 6045, '5905-6045', 1, '民復店', '{"number":"016172","shop":"\\u6c11\\u5fa9\\u5e97","phone":"0225473532","address":"\\u6c11\\u751f\\u6771\\u8def\\u56db\\u6bb5\\uff18\\uff10\\u5df7\\uff13\\u865f\\uff11\\uff26"}', '016172', 'quanjia', 'zh-tw', 1000),
(7202, 6045, '5905-6045', 1, '中央店', '{"number":"016262","shop":"\\u4e2d\\u592e\\u5e97","phone":"0225460351","address":"\\u6c11\\u751f\\u6771\\u8def\\u56db\\u6bb5\\uff19\\uff15\\u865f"}', '016262', 'quanjia', 'zh-tw', 1000),
(7203, 6045, '5905-6045', 1, '松民店', '{"number":"016542","shop":"\\u677e\\u6c11\\u5e97","phone":"0237652608","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e94\\u6bb5\\uff11\\uff15\\uff19\\u865f"}', '016542', 'quanjia', 'zh-tw', 1000),
(7204, 6045, '5905-6045', 1, '昇東店', '{"number":"018901","shop":"\\u6607\\u6771\\u5e97","phone":"0227491649","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e94\\u6bb5\\uff11\\uff19\\uff17\\u865f"}', '018901', 'quanjia', 'zh-tw', 1000),
(7205, 6045, '5905-6045', 1, '東豐店', '{"number":"014959","shop":"\\u6771\\u8c50\\u5e97","phone":"0227612771","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e94\\u6bb5\\uff13\\uff17\\u865f"}', '014959', 'quanjia', 'zh-tw', 1000),
(7206, 6045, '5905-6045', 1, '京暉店', '{"number":"017500","shop":"\\u4eac\\u6689\\u5e97","phone":"0225472310","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e09\\u6bb5\\uff12\\uff18\\uff15\\u865f\\u58f9\\u6a13"}', '017500', 'quanjia', 'zh-tw', 1000),
(7207, 6045, '5905-6045', 1, '新健康店', '{"number":"017826","shop":"\\u65b0\\u5065\\u5eb7\\u5e97","phone":"0225462607","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\uff11\\uff13\\uff13\\u5df7\\uff19\\u5f04\\uff12\\u865f"}', '017826', 'quanjia', 'zh-tw', 1000),
(7208, 6045, '5905-6045', 1, '京鑽店', '{"number":"017769","shop":"\\u4eac\\u947d\\u5e97","phone":"0225460775","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\uff14\\uff17\\u865f\\u58f9\\u6a13"}', '017769', 'quanjia', 'zh-tw', 1000),
(7209, 6045, '5905-6045', 1, '京盛店', '{"number":"018742","shop":"\\u4eac\\u76db\\u5e97","phone":"0225795737","address":"\\u5357\\u4eac\\u6771\\u8def\\u56db\\u6bb5\\uff15\\uff16\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018742', 'quanjia', 'zh-tw', 1000),
(7210, 6045, '5905-6045', 1, '新東光店', '{"number":"014918","shop":"\\u65b0\\u6771\\u5149\\u5e97","phone":"0237652819","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\uff11\\uff12\\uff13\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '014918', 'quanjia', 'zh-tw', 1000),
(7211, 6045, '5905-6045', 1, '京吉店', '{"number":"015823","shop":"\\u4eac\\u5409\\u5e97","phone":"0227478279","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\uff11\\uff18\\uff10\\u865f"}', '015823', 'quanjia', 'zh-tw', 1000),
(7212, 6045, '5905-6045', 1, '新東寶店', '{"number":"018664","shop":"\\u65b0\\u6771\\u5bf6\\u5e97","phone":"0227605928","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\uff12\\uff19\\uff11\\u5df7\\uff11\\uff14\\u865f"}', '018664', 'quanjia', 'zh-tw', 1000),
(7213, 6045, '5905-6045', 1, '大盛店', '{"number":"011716","shop":"\\u5927\\u76db\\u5e97","phone":"0227650089","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e94\\u6bb5\\uff16\\uff16\\u5df7\\uff12\\u5f04\\uff11\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '011716', 'quanjia', 'zh-tw', 1000),
(7214, 6045, '5905-6045', 1, '三富店', '{"number":"017205","shop":"\\u4e09\\u5bcc\\u5e97","phone":"0227677510","address":"\\u4e09\\u6c11\\u8def\\uff11\\uff14\\uff18\\u865f"}', '017205', 'quanjia', 'zh-tw', 1000),
(7215, 6045, '5905-6045', 1, '京民店', '{"number":"013794","shop":"\\u4eac\\u6c11\\u5e97","phone":"0227422080","address":"\\u4e09\\u6c11\\u8def\\uff16\\u865f\\uff0b\\uff22\\uff11"}', '013794', 'quanjia', 'zh-tw', 1000),
(7216, 6045, '5905-6045', 1, '微風店', '{"number":"015587","shop":"\\u5fae\\u98a8\\u5e97","phone":"0287719880","address":"\\u5e02\\u6c11\\u5927\\u9053\\u56db\\u6bb5\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '015587', 'quanjia', 'zh-tw', 1000),
(7217, 6045, '5905-6045', 1, '松旺店', '{"number":"016710","shop":"\\u677e\\u65fa\\u5e97","phone":"0237652775","address":"\\u5854\\u60a0\\u8def\\uff11\\uff19\\u865f"}', '016710', 'quanjia', 'zh-tw', 1000),
(7218, 6045, '5905-6045', 1, '常興店', '{"number":"016801","shop":"\\u5e38\\u8208\\u5e97","phone":"0225464600","address":"\\u4e94\\u5e38\\u8857\\uff13\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '016801', 'quanjia', 'zh-tw', 1000),
(7219, 6045, '5905-6045', 1, '新東店', '{"number":"014542","shop":"\\u65b0\\u6771\\u5e97","phone":"0227653580","address":"\\u65b0\\u6771\\u8857\\uff11\\uff14\\u865f"}', '014542', 'quanjia', 'zh-tw', 1000),
(7220, 6045, '5905-6045', 1, '富錦店', '{"number":"017017","shop":"\\u5bcc\\u9326\\u5e97","phone":"0227455196","address":"\\u65b0\\u76ca\\u91cc\\u5bcc\\u9326\\u8857\\uff15\\uff12\\uff19\\u865f\\u4e00\\u6a13"}', '017017', 'quanjia', 'zh-tw', 1000),
(7221, 6045, '5905-6045', 1, '塔悠店', '{"number":"016890","shop":"\\u5854\\u60a0\\u5e97","phone":"0227420973","address":"\\u5ef6\\u58fd\\u8857\\uff12\\u865f\\u4e00\\u6a13"}', '016890', 'quanjia', 'zh-tw', 1000),
(7222, 6045, '5905-6045', 1, '慶城店', '{"number":"014261","shop":"\\u6176\\u57ce\\u5e97","phone":"0225464461","address":"\\u4e2d\\u6b63\\u91cc\\u6176\\u57ce\\u8857\\uff18\\u865f"}', '014261', 'quanjia', 'zh-tw', 1000),
(7223, 6045, '5905-6045', 1, '松壽店', '{"number":"016058","shop":"\\u677e\\u58fd\\u5e97","phone":"0227474015","address":"\\u81ea\\u5f37\\u91cc\\u5ef6\\u58fd\\u8857\\uff13\\uff13\\uff10\\u5df7\\uff17\\u5f04\\uff12\\uff12\\u865f\\u4e00\\u6a13"}', '016058', 'quanjia', 'zh-tw', 1000),
(7224, 6046, '5905-6046', 1, '和西店', '{"number":"017367","shop":"\\u548c\\u897f\\u5e97","phone":"0223080749","address":"\\u611b\\u9109\\u91cc\\u548c\\u5e73\\u897f\\u8def\\u4e09\\u6bb5\\uff12\\uff19\\uff10\\u4e4b\\uff15\\u865f\\u3001\\uff12\\uff19\\uff10"}', '017367', 'quanjia', 'zh-tw', 1000),
(7225, 6046, '5905-6046', 1, '寶元店', '{"number":"018147","shop":"\\u5bf6\\u5143\\u5e97","phone":"0223099925","address":"\\u5bf6\\u8208\\u8857\\uff14\\uff10\\u865f"}', '018147', 'quanjia', 'zh-tw', 1000),
(7226, 6046, '5905-6046', 1, '寶興店', '{"number":"016832","shop":"\\u5bf6\\u8208\\u5e97","phone":"0223013308","address":"\\u5bf6\\u8208\\u8857\\uff17\\uff18\\u865f"}', '016832', 'quanjia', 'zh-tw', 1000),
(7227, 6046, '5905-6046', 1, '萬東店', '{"number":"014839","shop":"\\u842c\\u6771\\u5e97","phone":"0223077891","address":"\\u6771\\u5712\\u8857\\uff11\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '014839', 'quanjia', 'zh-tw', 1000),
(7228, 6046, '5905-6046', 1, '鑫吉利店', '{"number":"016130","shop":"\\u946b\\u5409\\u5229\\u5e97","phone":"0223378557","address":"\\u6771\\u5712\\u8857\\uff12\\uff18\\u5df7\\uff13\\uff14\\u865f"}', '016130', 'quanjia', 'zh-tw', 1000),
(7229, 6046, '5905-6046', 1, '東園店', '{"number":"017962","shop":"\\u6771\\u5712\\u5e97","phone":"0223327420","address":"\\u6771\\u5712\\u8857\\uff16\\uff19\\u865f"}', '017962', 'quanjia', 'zh-tw', 1000),
(7230, 6046, '5905-6046', 1, '萬國店', '{"number":"013812","shop":"\\u842c\\u570b\\u5e97","phone":"0223894642","address":"\\u5ce8\\u7709\\u8857\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '013812', 'quanjia', 'zh-tw', 1000),
(7231, 6046, '5905-6046', 1, '新峨嵋店', '{"number":"017651","shop":"\\u65b0\\u5ce8\\u5d4b\\u5e97","phone":"0223711411","address":"\\u5ce8\\u7709\\u8857\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '017651', 'quanjia', 'zh-tw', 1000),
(7232, 6046, '5905-6046', 1, '新富民店', '{"number":"015943","shop":"\\u65b0\\u5bcc\\u6c11\\u5e97","phone":"0223070071","address":"\\u5bcc\\u6c11\\u8def\\uff19\\uff11\\u5df7\\uff18\\u865f\\uff11\\u6a13"}', '015943', 'quanjia', 'zh-tw', 1000),
(7233, 6046, '5905-6046', 1, '龍廣店', '{"number":"017328","shop":"\\u9f8d\\u5ee3\\u5e97","phone":"0223026434","address":"\\u5ee3\\u5dde\\u8857\\uff12\\uff10\\uff13\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '017328', 'quanjia', 'zh-tw', 1000),
(7234, 6046, '5905-6046', 1, '新廣州店', '{"number":"018111","shop":"\\u65b0\\u5ee3\\u5dde\\u5e97","phone":"0223027354","address":"\\u5ee3\\u5dde\\u8857\\uff12\\uff13\\uff15\\uff0d\\uff11\\u865f"}', '018111', 'quanjia', 'zh-tw', 1000),
(7235, 6046, '5905-6046', 1, '桂林店', '{"number":"016202","shop":"\\u6842\\u6797\\u5e97","phone":"0223318161","address":"\\u6842\\u6797\\u8def\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '016202', 'quanjia', 'zh-tw', 1000),
(7236, 6046, '5905-6046', 1, '貴陽店', '{"number":"017698","shop":"\\u8cb4\\u967d\\u5e97","phone":"0223891854","address":"\\u8cb4\\u967d\\u8857\\u4e8c\\u6bb5\\uff11\\uff18\\uff12\\u865f\\uff0c\\uff11\\uff18\\uff14\\u865f"}', '017698', 'quanjia', 'zh-tw', 1000),
(7237, 6046, '5905-6046', 1, '萬中店', '{"number":"015246","shop":"\\u842c\\u4e2d\\u5e97","phone":"0223887636","address":"\\u6f22\\u53e3\\u8857\\u4e8c\\u6bb5\\uff12\\uff12\\u865f"}', '015246', 'quanjia', 'zh-tw', 1000),
(7238, 6046, '5905-6046', 1, '萬明店', '{"number":"017790","shop":"\\u842c\\u660e\\u5e97","phone":"0223119635","address":"\\u6f22\\u53e3\\u8857\\u4e8c\\u6bb5\\uff16\\uff17\\u4e4b\\uff12\\u865f\\uff11\\u6a13"}', '017790', 'quanjia', 'zh-tw', 1000),
(7239, 6046, '5905-6046', 1, '漢中店', '{"number":"017430","shop":"\\u6f22\\u4e2d\\u5e97","phone":"0223141275","address":"\\u6f22\\u4e2d\\u8857\\uff11\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '017430', 'quanjia', 'zh-tw', 1000),
(7240, 6046, '5905-6046', 1, '萬捷店', '{"number":"018497","shop":"\\u842c\\u6377\\u5e97","phone":"0223811101","address":"\\u6f22\\u4e2d\\u8857\\uff15\\uff10\\u5df7\\uff11\\uff11\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '018497', 'quanjia', 'zh-tw', 1000),
(7241, 6046, '5905-6046', 1, '綠堤店', '{"number":"013690","shop":"\\u7da0\\u5824\\u5e97","phone":"0223041210","address":"\\u74b0\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff13\\u865f"}', '013690', 'quanjia', 'zh-tw', 1000),
(7242, 6046, '5905-6046', 1, '環南店', '{"number":"017103","shop":"\\u74b0\\u5357\\u5e97","phone":"0223026891","address":"\\u74b0\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\uff12\\uff19\\uff18\\u865f"}', '017103', 'quanjia', 'zh-tw', 1000),
(7243, 6046, '5905-6046', 1, '康華店', '{"number":"018618","shop":"\\u5eb7\\u83ef\\u5e97","phone":"0223027338","address":"\\u5eb7\\u5b9a\\u8def\\uff12\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '018618', 'quanjia', 'zh-tw', 1000),
(7244, 6046, '5905-6046', 1, '康勝店', '{"number":"016682","shop":"\\u5eb7\\u52dd\\u5e97","phone":"0223821077","address":"\\u5eb7\\u5b9a\\u8def\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '016682', 'quanjia', 'zh-tw', 1000),
(7245, 6046, '5905-6046', 1, '康定店', '{"number":"014905","shop":"\\u5eb7\\u5b9a\\u5e97","phone":"0223899260","address":"\\u5eb7\\u5b9a\\u8def\\uff17\\uff13\\u865f"}', '014905', 'quanjia', 'zh-tw', 1000),
(7246, 6046, '5905-6046', 1, '康陽店', '{"number":"018752","shop":"\\u5eb7\\u967d\\u5e97","phone":"0223812716","address":"\\u5eb7\\u5b9a\\u8def\\uff19\\uff19\\u865f"}', '018752', 'quanjia', 'zh-tw', 1000),
(7247, 6046, '5905-6046', 1, '成都店', '{"number":"018772","shop":"\\u6210\\u90fd\\u5e97","phone":"0223758507","address":"\\u6606\\u660e\\u8857\\uff11\\uff13\\uff14\\u865f\\uff1b\\u6210\\u90fd\\u8def\\uff18\\uff16\\u865f"}', '018772', 'quanjia', 'zh-tw', 1000),
(7248, 6046, '5905-6046', 1, '昆明店', '{"number":"014885","shop":"\\u6606\\u660e\\u5e97","phone":"0223705910","address":"\\u6606\\u660e\\u8857\\uff11\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '014885', 'quanjia', 'zh-tw', 1000),
(7249, 6046, '5905-6046', 1, '萬昌店', '{"number":"015859","shop":"\\u842c\\u660c\\u5e97","phone":"0223822578","address":"\\u6606\\u660e\\u8857\\uff19\\uff12\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '015859', 'quanjia', 'zh-tw', 1000),
(7250, 6046, '5905-6046', 1, '民和店', '{"number":"016199","shop":"\\u6c11\\u548c\\u5e97","phone":"0223039216","address":"\\u6c11\\u548c\\u8857\\uff19\\u865f\\uff11\\u6a13"}', '016199', 'quanjia', 'zh-tw', 1000),
(7251, 6046, '5905-6046', 1, '日祥店', '{"number":"017099","shop":"\\u65e5\\u7965\\u5e97","phone":"0223331039","address":"\\u9752\\u5e74\\u8def\\uff11\\uff15\\uff14\\u865f\\u3001\\uff11\\uff16\\uff18\\u5df7\\uff12\\u5f04\\uff11\\uff14\\u865f\\uff11\\u6a13"}', '017099', 'quanjia', 'zh-tw', 1000),
(7252, 6046, '5905-6046', 1, '公園店', '{"number":"015730","shop":"\\u516c\\u5712\\u5e97","phone":"0223051904","address":"\\u9752\\u5e74\\u8def\\uff14\\uff18\\u865f"}', '015730', 'quanjia', 'zh-tw', 1000),
(7253, 6046, '5905-6046', 1, '新青年店', '{"number":"017866","shop":"\\u65b0\\u9752\\u5e74\\u5e97","phone":"0223331983","address":"\\u9752\\u5e74\\u8def\\uff16\\u865f"}', '017866', 'quanjia', 'zh-tw', 1000),
(7254, 6046, '5905-6046', 1, '長泰店', '{"number":"018595","shop":"\\u9577\\u6cf0\\u5e97","phone":"0223034841","address":"\\u58fd\\u5fb7\\u91cc\\u9577\\u6cf0\\u8857\\uff12\\u865f\\uff12\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '018595', 'quanjia', 'zh-tw', 1000),
(7255, 6046, '5905-6046', 1, '新武成店', '{"number":"017153","shop":"\\u65b0\\u6b66\\u6210\\u5e97","phone":"0223326103","address":"\\u842c\\u5927\\u8def\\uff14\\uff18\\uff16\\u5df7\\uff15\\uff19\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '017153', 'quanjia', 'zh-tw', 1000),
(7256, 6046, '5905-6046', 1, '萬大店', '{"number":"018487","shop":"\\u842c\\u5927\\u5e97","phone":"0223040610","address":"\\u842c\\u5927\\u8def\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '018487', 'quanjia', 'zh-tw', 1000),
(7257, 6046, '5905-6046', 1, '萬年店', '{"number":"013811","shop":"\\u842c\\u5e74\\u5e97","phone":"0223883343","address":"\\u897f\\u5be7\\u5357\\u8def\\uff11\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '013811', 'quanjia', 'zh-tw', 1000),
(7258, 6046, '5905-6046', 1, '金園店', '{"number":"015892","shop":"\\u91d1\\u5712\\u5e97","phone":"0223083402","address":"\\u897f\\u5712\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff10\\u5df7\\uff14\\uff12\\u865f"}', '015892', 'quanjia', 'zh-tw', 1000),
(7259, 6046, '5905-6046', 1, '萬園店', '{"number":"015429","shop":"\\u842c\\u5712\\u5e97","phone":"0223040410","address":"\\u897f\\u5712\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff19\\u865f\\u58f9\\u6a13"}', '015429', 'quanjia', 'zh-tw', 1000),
(7260, 6046, '5905-6046', 1, '新興義店', '{"number":"016734","shop":"\\u65b0\\u8208\\u7fa9\\u5e97","phone":"0223034328","address":"\\u8208\\u7fa9\\u8857\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '016734', 'quanjia', 'zh-tw', 1000),
(7261, 6047, '5905-6047', 1, '新福興店', '{"number":"018412","shop":"\\u65b0\\u798f\\u8208\\u5e97","phone":"0229301491","address":"\\u798f\\u8208\\u8def\\uff16\\uff15\\u865f"}', '018412', 'quanjia', 'zh-tw', 1000),
(7262, 6047, '5905-6047', 1, '順輝店', '{"number":"015729","shop":"\\u9806\\u8f1d\\u5e97","phone":"0229388216","address":"\\u5149\\u8f1d\\u8def\\uff17\\u865f"}', '015729', 'quanjia', 'zh-tw', 1000),
(7263, 6047, '5905-6047', 1, '名門店', '{"number":"017175","shop":"\\u540d\\u9580\\u5e97","phone":"0222301700","address":"\\u548c\\u5e73\\u6771\\u8def\\u56db\\u6bb5\\uff19\\uff15\\u3001\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '017175', 'quanjia', 'zh-tw', 1000),
(7264, 6047, '5905-6047', 1, '景富店', '{"number":"016800","shop":"\\u666f\\u5bcc\\u5e97","phone":"0289313890","address":"\\u666f\\u798f\\u8857\\uff12\\uff15\\u865f"}', '016800', 'quanjia', 'zh-tw', 1000),
(7265, 6047, '5905-6047', 1, '景後店', '{"number":"016952","shop":"\\u666f\\u5f8c\\u5e97","phone":"0229342042","address":"\\u666f\\u5f8c\\u8857\\uff19\\uff15\\u865f"}', '016952', 'quanjia', 'zh-tw', 1000),
(7266, 6047, '5905-6047', 1, '新文華店', '{"number":"013719","shop":"\\u65b0\\u6587\\u83ef\\u5e97","phone":"0286633877","address":"\\u666f\\u83ef\\u8857\\uff13\\u5df7\\uff12\\u865f\\uff11\\u6a13\\u53ca\\uff22\\uff11"}', '013719', 'quanjia', 'zh-tw', 1000),
(7267, 6047, '5905-6047', 1, '華德店', '{"number":"018245","shop":"\\u83ef\\u5fb7\\u5e97","phone":"0229356335","address":"\\u666f\\u83ef\\u8857\\uff17\\uff15\\u865f"}', '018245', 'quanjia', 'zh-tw', 1000),
(7268, 6047, '5905-6047', 1, '景文店', '{"number":"017308","shop":"\\u666f\\u6587\\u5e97","phone":"0229303305","address":"\\u666f\\u6587\\u8857\\uff18\\uff13\\u865f"}', '017308', 'quanjia', 'zh-tw', 1000),
(7269, 6047, '5905-6047', 1, '世景店', '{"number":"018298","shop":"\\u4e16\\u666f\\u5e97","phone":"0286632846","address":"\\u666f\\u8208\\u8def\\uff12\\uff18\\uff12\\u5df7\\uff12\\u865f\\u58f9\\u6a13"}', '018298', 'quanjia', 'zh-tw', 1000),
(7270, 6047, '5905-6047', 1, '景中店', '{"number":"017661","shop":"\\u666f\\u4e2d\\u5e97","phone":"0229334768","address":"\\u666f\\u4e2d\\u8857\\uff15\\u865f\\uff0c\\u4e03\\u865f\\u4e00\\u6a13"}', '017661', 'quanjia', 'zh-tw', 1000),
(7271, 6047, '5905-6047', 1, '羅美店', '{"number":"018759","shop":"\\u7f85\\u7f8e\\u5e97","phone":"0229359387","address":"\\u7f85\\u65af\\u798f\\u8def\\uff16\\u6bb5\\uff11\\uff14\\uff12\\u5df7\\uff15\\u865f\\uff11\\u6a13"}', '018759', 'quanjia', 'zh-tw', 1000),
(7272, 6047, '5905-6047', 1, '羅和店', '{"number":"016570","shop":"\\u7f85\\u548c\\u5e97","phone":"0229352655","address":"\\u7f85\\u65af\\u798f\\u8def\\u516d\\u6bb5\\uff11\\uff14\\uff16\\uff0d\\uff11\\u865f"}', '016570', 'quanjia', 'zh-tw', 1000),
(7273, 6047, '5905-6047', 1, '景和店', '{"number":"015197","shop":"\\u666f\\u548c\\u5e97","phone":"0289319847","address":"\\u7f85\\u65af\\u798f\\u8def\\u516d\\u6bb5\\uff12\\uff17\\uff14\\u865f"}', '015197', 'quanjia', 'zh-tw', 1000),
(7274, 6047, '5905-6047', 1, '萬和店', '{"number":"014182","shop":"\\u842c\\u548c\\u5e97","phone":"0286636168","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\uff12\\uff11\\uff18\\u5df7\\uff13\\uff18\\u5f04\\uff12\\u865f\\uff11\\u6a13"}', '014182', 'quanjia', 'zh-tw', 1000),
(7275, 6047, '5905-6047', 1, '萬福店', '{"number":"017119","shop":"\\u842c\\u798f\\u5e97","phone":"0229315696","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e94\\u6bb5\\uff12\\uff16\\uff19\\u5df7\\uff11\\uff11\\u865f"}', '017119', 'quanjia', 'zh-tw', 1000),
(7276, 6047, '5905-6047', 1, '木新店', '{"number":"015542","shop":"\\u6728\\u65b0\\u5e97","phone":"0229388551","address":"\\u6728\\u65b0\\u8def\\uff13\\u6bb5\\uff13\\uff13\\uff13\\uff0e\\uff13\\uff13\\uff15\\u865f"}', '015542', 'quanjia', 'zh-tw', 1000),
(7277, 6047, '5905-6047', 1, '欣榮店', '{"number":"015897","shop":"\\u6b23\\u69ae\\u5e97","phone":"0222343591","address":"\\u6728\\u65b0\\u8def\\u4e09\\u6bb5\\uff19\\uff13\\u865f"}', '015897', 'quanjia', 'zh-tw', 1000),
(7278, 6047, '5905-6047', 1, '明興店', '{"number":"016837","shop":"\\u660e\\u8208\\u5e97","phone":"0286618412","address":"\\u6728\\u67f5\\u8def\\uff12\\u6bb5\\uff11\\uff10\\uff19\\u5df7\\uff12\\uff15\\u5f04\\uff12\\u865f\\uff0e\\uff12\\uff0d\\uff11\\u865f"}', '016837', 'quanjia', 'zh-tw', 1000),
(7279, 6047, '5905-6047', 1, '木興店', '{"number":"013748","shop":"\\u6728\\u8208\\u5e97","phone":"0222348419","address":"\\u6728\\u67f5\\u8def\\uff12\\u6bb5\\uff15\\uff12\\u865f"}', '013748', 'quanjia', 'zh-tw', 1000),
(7280, 6047, '5905-6047', 1, '木柵路店', '{"number":"013343","shop":"\\u6728\\u67f5\\u8def\\u5e97","phone":"0229362952","address":"\\u6728\\u67f5\\u8def\\u4e09\\u6bb5\\uff11\\uff14\\uff18\\u865f\\uff11\\uff15\\uff10\\u865f"}', '013343', 'quanjia', 'zh-tw', 1000),
(7281, 6047, '5905-6047', 1, '試院店', '{"number":"016093","shop":"\\u8a66\\u9662\\u5e97","phone":"0222369520","address":"\\u6728\\u67f5\\u8def\\u4e00\\u6bb5\\uff19\\uff11\\u865f\\uff19\\uff13\\u865f\\u4e00\\u6a13"}', '016093', 'quanjia', 'zh-tw', 1000),
(7282, 6047, '5905-6047', 1, '師美店', '{"number":"014208","shop":"\\u5e2b\\u7f8e\\u5e97","phone":"0229322856","address":"\\u6c40\\u5dde\\u8def\\uff14\\u6bb5\\uff17\\uff17\\u865f"}', '014208', 'quanjia', 'zh-tw', 1000),
(7283, 6047, '5905-6047', 1, '仙岩店', '{"number":"015040","shop":"\\u4ed9\\u5ca9\\u5e97","phone":"0286631305","address":"\\u4ed9\\u5ca9\\u8def\\uff12\\u865f"}', '015040', 'quanjia', 'zh-tw', 1000),
(7284, 6047, '5905-6047', 1, '興昌店', '{"number":"015086","shop":"\\u8208\\u660c\\u5e97","phone":"0229357810","address":"\\u8f9b\\u4ea5\\u8def\\uff14\\u6bb5\\uff11\\uff10\\uff11\\u5df7\\uff11\\u865f"}', '015086', 'quanjia', 'zh-tw', 1000),
(7285, 6047, '5905-6047', 1, '再興店', '{"number":"014696","shop":"\\u518d\\u8208\\u5e97","phone":"0222302780","address":"\\u8208\\u9686\\u8def\\uff13\\u6bb5\\uff12\\uff10\\uff17\\u5df7\\uff11\\uff11\\u5f04\\uff12\\u865f"}', '014696', 'quanjia', 'zh-tw', 1000),
(7286, 6047, '5905-6047', 1, '興業店', '{"number":"015667","shop":"\\u8208\\u696d\\u5e97","phone":"0286635963","address":"\\u8208\\u9686\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff19\\u865f"}', '015667', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(7287, 6047, '5905-6047', 1, '靜興店', '{"number":"014857","shop":"\\u975c\\u8208\\u5e97","phone":"0229356712","address":"\\u8208\\u9686\\u8def\\u4e8c\\u6bb5\\uff17\\uff15\\u865f\\u58f9\\u6a13"}', '014857', 'quanjia', 'zh-tw', 1000),
(7288, 6047, '5905-6047', 1, '中科大店', '{"number":"016916","shop":"\\u4e2d\\u79d1\\u5927\\u5e97","phone":"0229333950","address":"\\u8208\\u9686\\u8def\\u4e09\\u6bb5\\uff13\\uff16\\u5df7\\uff19\\u5f04\\uff11\\uff10\\u865f"}', '016916', 'quanjia', 'zh-tw', 1000),
(7289, 6047, '5905-6047', 1, '興崙店', '{"number":"017365","shop":"\\u8208\\u5d19\\u5e97","phone":"0229397480","address":"\\u8208\\u9686\\u8def\\u56db\\u6bb5\\uff15\\uff10\\u4e4b\\uff11\\u865f"}', '017365', 'quanjia', 'zh-tw', 1000),
(7290, 6047, '5905-6047', 1, '景興店', '{"number":"016263","shop":"\\u666f\\u8208\\u5e97","phone":"0229304049","address":"\\u8208\\u9686\\u8def\\u4e00\\u6bb5\\uff12\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '016263', 'quanjia', 'zh-tw', 1000),
(7291, 6047, '5905-6047', 1, '萬興店', '{"number":"016925","shop":"\\u842c\\u8208\\u5e97","phone":"0229304220","address":"\\u8208\\u9686\\u8def\\u4e00\\u6bb5\\uff15\\uff15\\u5df7\\uff12\\uff17\\u5f04\\uff11\\uff0d\\uff14\\u865f"}', '016925', 'quanjia', 'zh-tw', 1000),
(7292, 6047, '5905-6047', 1, '興園店', '{"number":"015728","shop":"\\u8208\\u5712\\u5e97","phone":"0229334696","address":"\\u8208\\u696d\\u91cc\\u8208\\u9686\\u8def\\u4e8c\\u6bb5\\uff12\\uff12\\uff10\\u5df7\\uff13\\uff13\\u865f"}', '015728', 'quanjia', 'zh-tw', 1000),
(7293, 6047, '5905-6047', 1, '政富店', '{"number":"017249","shop":"\\u653f\\u5bcc\\u5e97","phone":"0286613075","address":"\\u6307\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff15\\u865f\\uff11\\u6a13"}', '017249', 'quanjia', 'zh-tw', 1000),
(7294, 6047, '5905-6047', 1, '興政店', '{"number":"016836","shop":"\\u8208\\u653f\\u5e97","phone":"0286619335","address":"\\u6307\\u5357\\u8def\\u4e8c\\u6bb5\\uff18\\uff13\\u865f\\u58f9\\uff0b\\u8cb3\\u6a13"}', '016836', 'quanjia', 'zh-tw', 1000),
(7295, 6047, '5905-6047', 1, '鑫順店', '{"number":"016580","shop":"\\u946b\\u9806\\u5e97","phone":"0229370174","address":"\\u5fe0\\u9806\\u8857\\u4e8c\\u6bb5\\uff11\\uff16\\u865f"}', '016580', 'quanjia', 'zh-tw', 1000),
(7296, 6047, '5905-6047', 1, '大順店', '{"number":"017245","shop":"\\u5927\\u9806\\u5e97","phone":"0222344799","address":"\\u5fe0\\u9806\\u8857\\u4e00\\u6bb5\\uff11\\uff13\\uff11\\u865f"}', '017245', 'quanjia', 'zh-tw', 1000),
(7297, 6048, '5905-6048', 1, '崇德店', '{"number":"015668","shop":"\\u5d07\\u5fb7\\u5e97","phone":"0227333493","address":"\\u5d07\\u5fb7\\u8857\\uff12\\uff19\\u865f"}', '015668', 'quanjia', 'zh-tw', 1000),
(7298, 6048, '5905-6048', 1, '大道店', '{"number":"015953","shop":"\\u5927\\u9053\\u5e97","phone":"0227276692","address":"\\u5927\\u9053\\u8def\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '015953', 'quanjia', 'zh-tw', 1000),
(7299, 6048, '5905-6048', 1, '光復南路店', '{"number":"016838","shop":"\\u5149\\u5fa9\\u5357\\u8def\\u5e97","phone":"0227294291","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff14\\uff14\\uff17\\u4e4b\\uff12\\u865f"}', '016838', 'quanjia', 'zh-tw', 1000),
(7300, 6048, '5905-6048', 1, '復昌店', '{"number":"017827","shop":"\\u5fa9\\u660c\\u5e97","phone":"0223459489","address":"\\u5149\\u5fa9\\u5357\\u8def\\uff15\\uff10\\uff15\\u865f\\u3001\\uff15\\uff10\\uff17\\u865f\\u53ca\\u6587\\u660c\\u8857\\uff13\\uff12"}', '017827', 'quanjia', 'zh-tw', 1000),
(7301, 6048, '5905-6048', 1, '六張黎店', '{"number":"016604","shop":"\\u516d\\u5f35\\u9ece\\u5e97","phone":"0227338739","address":"\\u548c\\u5e73\\u6771\\u8def\\u4e09\\u6bb5\\uff13\\uff18\\uff17\\u865f"}', '016604', 'quanjia', 'zh-tw', 1000),
(7302, 6048, '5905-6048', 1, '欣富台店', '{"number":"015896","shop":"\\u6b23\\u5bcc\\u53f0\\u5e97","phone":"0227491525","address":"\\u864e\\u6797\\u8857\\uff11\\uff12\\uff10\\u5df7\\uff11\\uff16\\uff15\\u865f"}', '015896', 'quanjia', 'zh-tw', 1000),
(7303, 6048, '5905-6048', 1, '海華店', '{"number":"015819","shop":"\\u6d77\\u83ef\\u5e97","phone":"0287890667","address":"\\u864e\\u6797\\u8857\\uff11\\uff13\\uff12\\u5df7\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '015819', 'quanjia', 'zh-tw', 1000),
(7304, 6048, '5905-6048', 1, '忠林店', '{"number":"016495","shop":"\\u5fe0\\u6797\\u5e97","phone":"0287891305","address":"\\u864e\\u6797\\u8857\\uff11\\uff16\\uff16\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '016495', 'quanjia', 'zh-tw', 1000),
(7305, 6048, '5905-6048', 1, '新松林店', '{"number":"018521","shop":"\\u65b0\\u677e\\u6797\\u5e97","phone":"0227493109","address":"\\u864e\\u6797\\u8857\\uff16\\uff11\\uff0d\\uff14\\u865f"}', '018521', 'quanjia', 'zh-tw', 1000),
(7306, 6048, '5905-6048', 1, '永林店', '{"number":"018456","shop":"\\u6c38\\u6797\\u5e97","phone":"0227470209","address":"\\u864e\\u6797\\u8857\\uff18\\uff12\\u5df7\\uff12\\uff13\\u865f"}', '018456', 'quanjia', 'zh-tw', 1000),
(7307, 6048, '5905-6048', 1, '永隆店', '{"number":"012588","shop":"\\u6c38\\u9686\\u5e97","phone":"0227678120","address":"\\u57fa\\u9686\\u8def\\uff11\\u6bb5\\uff11\\uff14\\uff17\\u5df7\\uff17\\u865f"}', '012588', 'quanjia', 'zh-tw', 1000),
(7308, 6048, '5905-6048', 1, '松永店', '{"number":"016465","shop":"\\u677e\\u6c38\\u5e97","phone":"0223465356","address":"\\u677e\\u5fb7\\u8def\\uff11\\uff15\\uff17\\u865f"}', '016465', 'quanjia', 'zh-tw', 1000),
(7309, 6048, '5905-6048', 1, '信安店', '{"number":"015265","shop":"\\u4fe1\\u5b89\\u5e97","phone":"0287895039","address":"\\u677e\\u5fb7\\u8def\\uff12\\uff10\\uff10\\u5df7\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '015265', 'quanjia', 'zh-tw', 1000),
(7310, 6048, '5905-6048', 1, '新信德店', '{"number":"018390","shop":"\\u65b0\\u4fe1\\u5fb7\\u5e97","phone":"0223465799","address":"\\u677e\\u5fb7\\u8def\\uff12\\uff18\\uff13\\u865f"}', '018390', 'quanjia', 'zh-tw', 1000),
(7311, 6048, '5905-6048', 1, '松站店', '{"number":"016261","shop":"\\u677e\\u7ad9\\u5e97","phone":"0227678206","address":"\\u677e\\u9686\\u8def\\uff13\\uff12\\uff19\\u5df7\\uff18\\u865f\\u58f9\\u6a13"}', '016261', 'quanjia', 'zh-tw', 1000),
(7312, 6048, '5905-6048', 1, '南山廣場店', '{"number":"018449","shop":"\\u5357\\u5c71\\u5ee3\\u5834\\u5e97","phone":"0227585233","address":"\\u677e\\u4ec1\\u8def\\uff11\\uff10\\uff10\\u865f\\uff16\\u6a13\\u4e4b\\uff11"}', '018449', 'quanjia', 'zh-tw', 1000),
(7313, 6048, '5905-6048', 1, '新安興店', '{"number":"017989","shop":"\\u65b0\\u5b89\\u8208\\u5e97","phone":"0227204938","address":"\\u677e\\u4ec1\\u8def\\uff12\\uff14\\uff10\\u5df7\\uff12\\u865f"}', '017989', 'quanjia', 'zh-tw', 1000),
(7314, 6048, '5905-6048', 1, '松興店', '{"number":"018458","shop":"\\u677e\\u8208\\u5e97","phone":"0227603790","address":"\\u677e\\u5c71\\u8def\\uff11\\uff10\\uff17\\u865f"}', '018458', 'quanjia', 'zh-tw', 1000),
(7315, 6048, '5905-6048', 1, '松盛店', '{"number":"013949","shop":"\\u677e\\u76db\\u5e97","phone":"0227606140","address":"\\u677e\\u5c71\\u8def\\uff11\\uff15\\uff13\\u865f"}', '013949', 'quanjia', 'zh-tw', 1000),
(7316, 6048, '5905-6048', 1, '欣松春店', '{"number":"013312","shop":"\\u6b23\\u677e\\u6625\\u5e97","phone":"0227493963","address":"\\u677e\\u5c71\\u8def\\uff12\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '013312', 'quanjia', 'zh-tw', 1000),
(7317, 6048, '5905-6048', 1, '建鑫店', '{"number":"017309","shop":"\\u5efa\\u946b\\u5e97","phone":"0227233205","address":"\\u677e\\u58fd\\u8def\\uff12\\uff14\\u865f"}', '017309', 'quanjia', 'zh-tw', 1000),
(7318, 6048, '5905-6048', 1, '永孝店', '{"number":"017679","shop":"\\u6c38\\u5b5d\\u5e97","phone":"0227678185","address":"\\u677e\\u4fe1\\u8def\\uff11\\uff14\\uff15\\u865f"}', '017679', 'quanjia', 'zh-tw', 1000),
(7319, 6048, '5905-6048', 1, '北醫店', '{"number":"016260","shop":"\\u5317\\u91ab\\u5e97","phone":"0227229824","address":"\\u5433\\u8208\\u8857\\uff12\\uff16\\uff13\\u865f"}', '016260', 'quanjia', 'zh-tw', 1000),
(7320, 6048, '5905-6048', 1, '盛興店', '{"number":"018632","shop":"\\u76db\\u8208\\u5e97","phone":"0227201400","address":"\\u5433\\u8208\\u8857\\uff13\\uff13\\uff14\\u865f"}', '018632', 'quanjia', 'zh-tw', 1000),
(7321, 6048, '5905-6048', 1, '三興店', '{"number":"017120","shop":"\\u4e09\\u8208\\u5e97","phone":"0227232796","address":"\\u5433\\u8208\\u8857\\uff17\\u865f"}', '017120', 'quanjia', 'zh-tw', 1000),
(7322, 6048, '5905-6048', 1, '松仁店', '{"number":"015083","shop":"\\u677e\\u4ec1\\u5e97","phone":"0227237309","address":"\\u4fe1\\u7fa9\\u8def\\uff15\\u6bb5\\uff11\\uff15\\uff10\\u5df7\\uff12\\uff12\\uff11\\u865f"}', '015083', 'quanjia', 'zh-tw', 1000),
(7323, 6048, '5905-6048', 1, '松友店', '{"number":"017880","shop":"\\u677e\\u53cb\\u5e97","phone":"0223460402","address":"\\u4fe1\\u7fa9\\u8def\\u516d\\u6bb5\\uff17\\uff18\\u865f"}', '017880', 'quanjia', 'zh-tw', 1000),
(7324, 6048, '5905-6048', 1, '新貿店', '{"number":"012171","shop":"\\u65b0\\u8cbf\\u5e97","phone":"0287802293","address":"\\u4fe1\\u7fa9\\u8def\\u56db\\u6bb5\\uff14\\uff10\\uff17\\u865f\\u58f9\\u6a13"}', '012171', 'quanjia', 'zh-tw', 1000),
(7325, 6048, '5905-6048', 1, '祥和店', '{"number":"017662","shop":"\\u7965\\u548c\\u5e97","phone":"0227291793","address":"\\u4fe1\\u7fa9\\u8def\\u4e94\\u6bb5\\uff11\\uff15\\uff10\\u5df7\\uff14\\uff10\\uff11\\u5f04\\uff13\\uff11\\u865f"}', '017662', 'quanjia', 'zh-tw', 1000),
(7326, 6048, '5905-6048', 1, '外貿店', '{"number":"015758","shop":"\\u5916\\u8cbf\\u5e97","phone":"0227209160","address":"\\u4fe1\\u7fa9\\u8def\\u4e94\\u6bb5\\uff15\\u865f\\uff12\\u6a13"}', '015758', 'quanjia', 'zh-tw', 1000),
(7327, 6048, '5905-6048', 1, '逸鑫店', '{"number":"018712","shop":"\\u9038\\u946b\\u5e97","phone":"0227206664","address":"\\u9038\\u4ed9\\u8def\\uff14\\uff12\\u5df7\\uff12\\uff13\\u865f"}', '018712', 'quanjia', 'zh-tw', 1000),
(7328, 6048, '5905-6048', 1, '永吉二店', '{"number":"012953","shop":"\\u6c38\\u5409\\u4e8c\\u5e97","phone":"0227491648","address":"\\u6c38\\u5409\\u8def\\uff12\\uff12\\uff13\\u865f"}', '012953', 'quanjia', 'zh-tw', 1000),
(7329, 6048, '5905-6048', 1, '厚雅店', '{"number":"017731","shop":"\\u539a\\u96c5\\u5e97","phone":"0227659814","address":"\\u6c38\\u5409\\u8def\\uff13\\uff10\\u5df7\\uff11\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '017731', 'quanjia', 'zh-tw', 1000),
(7330, 6048, '5905-6048', 1, '五分埔店', '{"number":"014917","shop":"\\u4e94\\u5206\\u57d4\\u5e97","phone":"0227653612","address":"\\u4e2d\\u5761\\u5317\\u8def\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '014917', 'quanjia', 'zh-tw', 1000),
(7331, 6048, '5905-6048', 1, '新中坡店', '{"number":"016421","shop":"\\u65b0\\u4e2d\\u5761\\u5e97","phone":"0227270460","address":"\\u4e2d\\u5761\\u5357\\u8def\\uff12\\uff12\\uff19\\u865f"}', '016421', 'quanjia', 'zh-tw', 1000),
(7332, 6048, '5905-6048', 1, '協和店', '{"number":"015064","shop":"\\u5354\\u548c\\u5e97","phone":"0227590819","address":"\\u4e2d\\u5761\\u5357\\u8def\\uff13\\uff18\\u865f\\uff11\\uff26"}', '015064', 'quanjia', 'zh-tw', 1000),
(7333, 6048, '5905-6048', 1, '聯合店', '{"number":"014769","shop":"\\u806f\\u5408\\u5e97","phone":"0227685432","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u56db\\u6bb5\\uff15\\uff15\\uff13\\u5df7\\uff16\\u5f04\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '014769', 'quanjia', 'zh-tw', 1000),
(7334, 6048, '5905-6048', 1, '忠信店', '{"number":"016839","shop":"\\u5fe0\\u4fe1\\u5e97","phone":"0227422963","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\uff14\\uff12\\uff15\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '016839', 'quanjia', 'zh-tw', 1000),
(7335, 6048, '5905-6048', 1, '永信店', '{"number":"017031","shop":"\\u6c38\\u4fe1\\u5e97","phone":"0287807876","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\uff14\\uff17\\uff12\\u865f"}', '017031', 'quanjia', 'zh-tw', 1000),
(7336, 6048, '5905-6048', 1, '新忠隆店', '{"number":"018300","shop":"\\u65b0\\u5fe0\\u9686\\u5e97","phone":"0227493532","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e94\\u6bb5\\uff17\\uff11\\u5df7\\uff18\\u865f\\u58f9\\u6a13"}', '018300', 'quanjia', 'zh-tw', 1000),
(7337, 6048, '5905-6048', 1, '莊新店', '{"number":"018254","shop":"\\u838a\\u65b0\\u5e97","phone":"0227581883","address":"\\u838a\\u656c\\u8def\\uff13\\uff10\\uff17\\u865f"}', '018254', 'quanjia', 'zh-tw', 1000),
(7338, 6048, '5905-6048', 1, '莊敬店', '{"number":"018081","shop":"\\u838a\\u656c\\u5e97","phone":"0227201156","address":"\\u838a\\u656c\\u8def\\uff13\\uff17\\uff14\\u865f"}', '018081', 'quanjia', 'zh-tw', 1000),
(7339, 6049, '5905-6049', 1, '新北鄰店', '{"number":"016923","shop":"\\u65b0\\u5317\\u9130\\u5e97","phone":"0225325010","address":"\\u5317\\u5b89\\u8def\\uff14\\uff15\\uff18\\u5df7\\uff14\\uff11\\u5f04\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '016923', 'quanjia', 'zh-tw', 1000),
(7340, 6049, '5905-6049', 1, '永安店', '{"number":"015568","shop":"\\u6c38\\u5b89\\u5e97","phone":"0225322254","address":"\\u5317\\u5b89\\u8def\\uff16\\uff13\\uff10\\u5df7\\uff17\\u865f\\uff11\\u6a13"}', '015568', 'quanjia', 'zh-tw', 1000),
(7341, 6049, '5905-6049', 1, '美華店', '{"number":"015759","shop":"\\u7f8e\\u83ef\\u5e97","phone":"0285095070","address":"\\u5317\\u5b89\\u8def\\uff18\\uff11\\uff19\\u4e4b\\uff11\\u865f"}', '015759', 'quanjia', 'zh-tw', 1000),
(7342, 6049, '5905-6049', 1, '遼寧店', '{"number":"018207","shop":"\\u907c\\u5be7\\u5e97","phone":"0227405515","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\uff16\\u865f"}', '018207', 'quanjia', 'zh-tw', 1000),
(7343, 6049, '5905-6049', 1, '本部店', '{"number":"017071","shop":"\\u672c\\u90e8\\u5e97","phone":"0225173149","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e8c\\u6bb5\\uff19\\uff19\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '017071', 'quanjia', 'zh-tw', 1000),
(7344, 6049, '5905-6049', 1, '正義店', '{"number":"011877","shop":"\\u6b63\\u7fa9\\u5e97","phone":"0225239542","address":"\\u9577\\u5b89\\u6771\\u8def\\u4e00\\u6bb5\\uff15\\uff15\\u865f"}', '011877', 'quanjia', 'zh-tw', 1000),
(7345, 6049, '5905-6049', 1, '欣欣店', '{"number":"016364","shop":"\\u6b23\\u6b23\\u5e97","phone":"0225314871","address":"\\u9577\\u6625\\u8def\\uff11\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '016364', 'quanjia', 'zh-tw', 1000),
(7346, 6049, '5905-6049', 1, '春北店', '{"number":"018403","shop":"\\u6625\\u5317\\u5e97","phone":"0287707194","address":"\\u9577\\u6625\\u8def\\uff14\\uff11\\uff10\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018403', 'quanjia', 'zh-tw', 1000),
(7347, 6049, '5905-6049', 1, '長春店', '{"number":"016685","shop":"\\u9577\\u6625\\u5e97","phone":"0225817796","address":"\\u9577\\u6625\\u8def\\uff14\\uff18\\u865f"}', '016685', 'quanjia', 'zh-tw', 1000),
(7348, 6049, '5905-6049', 1, '直學店', '{"number":"017275","shop":"\\u76f4\\u5b78\\u5e97","phone":"0225328364","address":"\\u5927\\u76f4\\u8857\\uff11\\uff11\\u865f"}', '017275', 'quanjia', 'zh-tw', 1000),
(7349, 6049, '5905-6049', 1, '大直店', '{"number":"018505","shop":"\\u5927\\u76f4\\u5e97","phone":"0225328875","address":"\\u5927\\u76f4\\u8857\\uff13\\uff13\\u5df7\\uff11\\u865f"}', '018505', 'quanjia', 'zh-tw', 1000),
(7350, 6049, '5905-6049', 1, '新德城店', '{"number":"013032","shop":"\\u65b0\\u5fb7\\u57ce\\u5e97","phone":"0225995447","address":"\\u5fb7\\u60e0\\u8857\\uff11\\uff16\\uff0d\\uff17\\u865f"}', '013032', 'quanjia', 'zh-tw', 1000),
(7351, 6049, '5905-6049', 1, '德林店', '{"number":"017907","shop":"\\u5fb7\\u6797\\u5e97","phone":"0225961560","address":"\\u5fb7\\u60e0\\u8857\\uff11\\uff17\\uff13\\u865f"}', '017907', 'quanjia', 'zh-tw', 1000),
(7352, 6049, '5905-6049', 1, '撫順店', '{"number":"018679","shop":"\\u64ab\\u9806\\u5e97","phone":"0225927495","address":"\\u64ab\\u9806\\u8857\\uff11\\uff12\\u4e4b\\uff12\\u865f\\uff11\\u6a13"}', '018679', 'quanjia', 'zh-tw', 1000),
(7353, 6049, '5905-6049', 1, '京興店', '{"number":"017953","shop":"\\u4eac\\u8208\\u5e97","phone":"0225464084","address":"\\u5fa9\\u8208\\u5317\\u8def\\uff11\\uff14\\uff18\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '017953', 'quanjia', 'zh-tw', 1000),
(7354, 6049, '5905-6049', 1, '新復店', '{"number":"013797","shop":"\\u65b0\\u5fa9\\u5e97","phone":"0225097685","address":"\\u5fa9\\u8208\\u5317\\u8def\\uff15\\uff11\\uff14\\u5df7\\uff13\\uff15\\u865f"}', '013797', 'quanjia', 'zh-tw', 1000),
(7355, 6049, '5905-6049', 1, '興德店', '{"number":"015566","shop":"\\u8208\\u5fb7\\u5e97","phone":"0287725312","address":"\\u5fa9\\u8208\\u5357\\u8def\\u4e00\\u6bb5\\uff13\\uff18\\u865f"}', '015566', 'quanjia', 'zh-tw', 1000),
(7356, 6049, '5905-6049', 1, '合江店', '{"number":"013480","shop":"\\u5408\\u6c5f\\u5e97","phone":"0225185276","address":"\\u5408\\u6c5f\\u8857\\uff18\\uff17\\u865f\\u4e00\\u6a13"}', '013480', 'quanjia', 'zh-tw', 1000),
(7357, 6049, '5905-6049', 1, '新農店', '{"number":"018243","shop":"\\u65b0\\u8fb2\\u5e97","phone":"0225968538","address":"\\u6046\\u5b89\\u91cc\\u8fb2\\u5b89\\u8857\\uff12\\uff16\\u4e4b\\uff13\\u865f\\u4e00\\u6a13"}', '018243', 'quanjia', 'zh-tw', 1000),
(7358, 6049, '5905-6049', 1, '德惠店', '{"number":"017273","shop":"\\u5fb7\\u60e0\\u5e97","phone":"0225953593","address":"\\u5409\\u6797\\u8def\\uff14\\uff14\\uff18\\u865f"}', '017273', 'quanjia', 'zh-tw', 1000),
(7359, 6049, '5905-6049', 1, '建錦店', '{"number":"017357","shop":"\\u5efa\\u9326\\u5e97","phone":"0225065447","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13\\u53ca\\u90e8\\u5206\\u5730\\u4e0b\\u5ba4"}', '017357', 'quanjia', 'zh-tw', 1000),
(7360, 6049, '5905-6049', 1, '濱江店', '{"number":"013511","shop":"\\u6ff1\\u6c5f\\u5e97","phone":"0225159357","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e09\\u6bb5\\uff11\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '013511', 'quanjia', 'zh-tw', 1000),
(7361, 6049, '5905-6049', 1, '錦西店', '{"number":"017032","shop":"\\u9326\\u897f\\u5e97","phone":"0225673231","address":"\\u9326\\u897f\\u8857\\uff18\\u865f"}', '017032', 'quanjia', 'zh-tw', 1000),
(7362, 6049, '5905-6049', 1, '錦江店', '{"number":"016672","shop":"\\u9326\\u6c5f\\u5e97","phone":"0225638875","address":"\\u9326\\u5dde\\u8857\\uff12\\uff11\\uff15\\u865f"}', '016672', 'quanjia', 'zh-tw', 1000),
(7363, 6049, '5905-6049', 1, '新北大店', '{"number":"015161","shop":"\\u65b0\\u5317\\u5927\\u5e97","phone":"0225172305","address":"\\u9326\\u5dde\\u8857\\uff14\\uff12\\uff17\\u865f"}', '015161', 'quanjia', 'zh-tw', 1000),
(7364, 6049, '5905-6049', 1, '長林店', '{"number":"017699","shop":"\\u9577\\u6797\\u5e97","phone":"0225629310","address":"\\u6797\\u68ee\\u5317\\u8def\\uff11\\uff10\\uff17\\u5df7\\uff15\\uff14\\u865f"}', '017699', 'quanjia', 'zh-tw', 1000),
(7365, 6049, '5905-6049', 1, '金林店', '{"number":"013729","shop":"\\u91d1\\u6797\\u5e97","phone":"0225629847","address":"\\u6797\\u68ee\\u5317\\u8def\\uff11\\uff10\\uff19\\u865f\\uff11\\u6a13"}', '013729', 'quanjia', 'zh-tw', 1000),
(7366, 6049, '5905-6049', 1, '林森北路店', '{"number":"016751","shop":"\\u6797\\u68ee\\u5317\\u8def\\u5e97","phone":"0225230561","address":"\\u6797\\u68ee\\u5317\\u8def\\uff11\\uff11\\uff19\\u5df7\\uff14\\uff19\\uff0c\\uff15\\uff11\\u865f"}', '016751', 'quanjia', 'zh-tw', 1000),
(7367, 6049, '5905-6049', 1, '復林店', '{"number":"017963","shop":"\\u5fa9\\u6797\\u5e97","phone":"0225230478","address":"\\u6797\\u68ee\\u5317\\u8def\\uff11\\uff14\\uff19\\uff0d\\uff11\\uff0e\\uff11\\uff14\\uff19\\uff0d\\uff12\\u865f\\uff11\\u6a13"}', '017963', 'quanjia', 'zh-tw', 1000),
(7368, 6049, '5905-6049', 1, '金漾店', '{"number":"016220","shop":"\\u91d1\\u6f3e\\u5e97","phone":"0225219884","address":"\\u6797\\u68ee\\u5317\\u8def\\uff13\\uff10\\uff18\\u865f"}', '016220', 'quanjia', 'zh-tw', 1000),
(7369, 6049, '5905-6049', 1, '林慶店', '{"number":"017327","shop":"\\u6797\\u6176\\u5e97","phone":"0225672790","address":"\\u6797\\u68ee\\u5317\\u8def\\uff13\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '017327', 'quanjia', 'zh-tw', 1000),
(7370, 6049, '5905-6049', 1, '錦林店', '{"number":"017752","shop":"\\u9326\\u6797\\u5e97","phone":"0225239913","address":"\\u6797\\u68ee\\u5317\\u8def\\uff13\\uff19\\uff19\\u5df7\\uff11\\uff10\\u865f\\u4e00\\u6a13"}', '017752', 'quanjia', 'zh-tw', 1000),
(7371, 6049, '5905-6049', 1, '錦富店', '{"number":"016922","shop":"\\u9326\\u5bcc\\u5e97","phone":"0225684923","address":"\\u6797\\u68ee\\u5317\\u8def\\uff14\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '016922', 'quanjia', 'zh-tw', 1000),
(7372, 6049, '5905-6049', 1, '新林森店', '{"number":"012544","shop":"\\u65b0\\u6797\\u68ee\\u5e97","phone":"0225977209","address":"\\u6797\\u68ee\\u5317\\u8def\\uff16\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '012544', 'quanjia', 'zh-tw', 1000),
(7373, 6049, '5905-6049', 1, '龍京店', '{"number":"018620","shop":"\\u9f8d\\u4eac\\u5e97","phone":"0225082793","address":"\\u9f8d\\u6c5f\\u8def\\uff11\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '018620', 'quanjia', 'zh-tw', 1000),
(7374, 6049, '5905-6049', 1, '中興店', '{"number":"017058","shop":"\\u4e2d\\u8208\\u5e97","phone":"0225012043","address":"\\u9f8d\\u6c5f\\u8def\\uff12\\uff10\\uff11\\u865f\\uff11\\uff26"}', '017058', 'quanjia', 'zh-tw', 1000),
(7375, 6049, '5905-6049', 1, '榮星店', '{"number":"018173","shop":"\\u69ae\\u661f\\u5e97","phone":"0225169569","address":"\\u9f8d\\u6c5f\\u8def\\uff13\\uff15\\uff12\\u865f"}', '018173', 'quanjia', 'zh-tw', 1000),
(7376, 6049, '5905-6049', 1, '鑫豐店', '{"number":"015663","shop":"\\u946b\\u8c50\\u5e97","phone":"0225157030","address":"\\u9f8d\\u6c5f\\u8def\\uff13\\uff15\\uff16\\u5df7\\uff17\\uff12\\u865f"}', '015663', 'quanjia', 'zh-tw', 1000),
(7377, 6049, '5905-6049', 1, '新南京店', '{"number":"014112","shop":"\\u65b0\\u5357\\u4eac\\u5e97","phone":"0287725827","address":"\\u9f8d\\u6c5f\\u8def\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '014112', 'quanjia', 'zh-tw', 1000),
(7378, 6049, '5905-6049', 1, '錦民店', '{"number":"018272","shop":"\\u9326\\u6c11\\u5e97","phone":"0225078797","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff12\\u5df7\\uff11\\uff14\\u865f"}', '018272', 'quanjia', 'zh-tw', 1000),
(7379, 6049, '5905-6049', 1, '新吉林店', '{"number":"018815","shop":"\\u65b0\\u5409\\u6797\\u5e97","phone":"0225639757","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e8c\\u6bb5\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '018815', 'quanjia', 'zh-tw', 1000),
(7380, 6049, '5905-6049', 1, '江寧店', '{"number":"016752","shop":"\\u6c5f\\u5be7\\u5e97","phone":"0225171595","address":"\\u6c11\\u6b0a\\u6771\\u8def\\u4e09\\u6bb5\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '016752', 'quanjia', 'zh-tw', 1000),
(7381, 6049, '5905-6049', 1, '民權西路店', '{"number":"016511","shop":"\\u6c11\\u6b0a\\u897f\\u8def\\u5e97","phone":"0225994884","address":"\\u6c11\\u6b0a\\u897f\\u8def\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '016511', 'quanjia', 'zh-tw', 1000),
(7382, 6049, '5905-6049', 1, '民佳店', '{"number":"018404","shop":"\\u6c11\\u4f73\\u5e97","phone":"0225038763","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '018404', 'quanjia', 'zh-tw', 1000),
(7383, 6049, '5905-6049', 1, '玉林店', '{"number":"016028","shop":"\\u7389\\u6797\\u5e97","phone":"0225222731","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e00\\u6bb5\\uff12\\uff17\\u5df7\\uff11\\uff15\\u865f"}', '016028', 'quanjia', 'zh-tw', 1000),
(7384, 6049, '5905-6049', 1, '福泰店', '{"number":"014538","shop":"\\u798f\\u6cf0\\u5e97","phone":"0225413026","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '014538', 'quanjia', 'zh-tw', 1000),
(7385, 6049, '5905-6049', 1, '鑫泰店', '{"number":"013781","shop":"\\u946b\\u6cf0\\u5e97","phone":"0225212132","address":"\\u6c11\\u751f\\u6771\\u8def\\u4e00\\u6bb5\\uff13\\uff19\\u865f"}', '013781', 'quanjia', 'zh-tw', 1000),
(7386, 6049, '5905-6049', 1, '馬偕店', '{"number":"015295","shop":"\\u99ac\\u5055\\u5e97","phone":"0225316236","address":"\\u6c11\\u751f\\u897f\\u8def\\uff12\\uff19\\u865f"}', '015295', 'quanjia', 'zh-tw', 1000),
(7387, 6049, '5905-6049', 1, '民族店', '{"number":"015602","shop":"\\u6c11\\u65cf\\u5e97","phone":"0225185693","address":"\\u6c11\\u65cf\\u6771\\u8def\\uff14\\uff11\\uff10\\u5df7\\uff12\\uff13\\u5f04\\uff12\\uff14\\u865f"}', '015602', 'quanjia', 'zh-tw', 1000),
(7388, 6049, '5905-6049', 1, '明水店', '{"number":"017555","shop":"\\u660e\\u6c34\\u5e97","phone":"0285097543","address":"\\u660e\\u6c34\\u8def\\uff15\\uff18\\uff11\\u5df7\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '017555', 'quanjia', 'zh-tw', 1000),
(7389, 6049, '5905-6049', 1, '興亞店', '{"number":"013570","shop":"\\u8208\\u4e9e\\u5e97","phone":"0225312051","address":"\\u5357\\u4eac\\u6771\\u8def\\uff12\\u6bb5\\uff12\\uff16\\u865f"}', '013570', 'quanjia', 'zh-tw', 1000),
(7390, 6049, '5905-6049', 1, '京貿店', '{"number":"018242","shop":"\\u4eac\\u8cbf\\u5e97","phone":"0225066873","address":"\\u5357\\u4eac\\u6771\\u8def\\u4e09\\u6bb5\\uff16\\uff15\\u865f"}', '018242', 'quanjia', 'zh-tw', 1000),
(7391, 6049, '5905-6049', 1, '中捷店', '{"number":"015198","shop":"\\u4e2d\\u6377\\u5e97","phone":"0225557010","address":"\\u5357\\u4eac\\u897f\\u8def\\uff11\\uff16\\u865f\\uff22\\uff11"}', '015198', 'quanjia', 'zh-tw', 1000),
(7392, 6049, '5905-6049', 1, '松農店', '{"number":"018917","shop":"\\u677e\\u8fb2\\u5e97","phone":"0225028032","address":"\\u8fb2\\u5b89\\u8857\\uff11\\uff16\\uff10\\u865f"}', '018917', 'quanjia', 'zh-tw', 1000),
(7393, 6049, '5905-6049', 1, '農安店', '{"number":"018088","shop":"\\u8fb2\\u5b89\\u5e97","phone":"0225042520","address":"\\u8fb2\\u5b89\\u8857\\uff12\\uff14\\uff19\\u865f"}', '018088', 'quanjia', 'zh-tw', 1000),
(7394, 6049, '5905-6049', 1, '新晴店', '{"number":"017811","shop":"\\u65b0\\u6674\\u5e97","phone":"0225955820","address":"\\u8fb2\\u5b89\\u8857\\uff14\\uff0d\\uff11\\u865f"}', '017811', 'quanjia', 'zh-tw', 1000),
(7395, 6049, '5905-6049', 1, '新稻江店', '{"number":"018666","shop":"\\u65b0\\u7a3b\\u6c5f\\u5e97","phone":"0225994657","address":"\\u8fb2\\u5b89\\u8857\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '018666', 'quanjia', 'zh-tw', 1000),
(7396, 6049, '5905-6049', 1, '光輝店', '{"number":"017820","shop":"\\u5149\\u8f1d\\u5e97","phone":"0225955703","address":"\\u6674\\u5149\\u91cc\\u5fb7\\u60e0\\u8857\\uff13\\uff14\\u4e4b\\uff12\\u865f\\u4e00\\u6a13"}', '017820', 'quanjia', 'zh-tw', 1000),
(7397, 6049, '5905-6049', 1, '雙城店', '{"number":"016173","shop":"\\u96d9\\u57ce\\u5e97","phone":"0225996056","address":"\\u96d9\\u57ce\\u8857\\uff11\\uff12\\u4e4b\\uff11\\u865f"}', '016173', 'quanjia', 'zh-tw', 1000),
(7398, 6049, '5905-6049', 1, '金磚店', '{"number":"013731","shop":"\\u91d1\\u78da\\u5e97","phone":"0225994347","address":"\\u96d9\\u57ce\\u8857\\uff11\\uff19\\u5df7\\uff12\\u865f"}', '013731', 'quanjia', 'zh-tw', 1000),
(7399, 6049, '5905-6049', 1, '雙林店', '{"number":"016078","shop":"\\u96d9\\u6797\\u5e97","phone":"0225992453","address":"\\u96d9\\u57ce\\u8857\\uff12\\u4e4b\\uff12\\u865f"}', '016078', 'quanjia', 'zh-tw', 1000),
(7400, 6049, '5905-6049', 1, '松平店', '{"number":"014715","shop":"\\u677e\\u5e73\\u5e97","phone":"0225318666","address":"\\u56db\\u5e73\\u8857\\uff14\\uff17\\u865f"}', '014715', 'quanjia', 'zh-tw', 1000),
(7401, 6049, '5905-6049', 1, '松茂店', '{"number":"018109","shop":"\\u677e\\u8302\\u5e97","phone":"0225028713","address":"\\u677e\\u6c5f\\u8def\\uff11\\uff12\\uff17\\u4e4b\\uff11\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018109', 'quanjia', 'zh-tw', 1000),
(7402, 6049, '5905-6049', 1, '光華店', '{"number":"017991","shop":"\\u5149\\u83ef\\u5e97","phone":"0225670175","address":"\\u677e\\u6c5f\\u8def\\uff12\\uff14\\u4e4b\\uff11\\u865f"}', '017991', 'quanjia', 'zh-tw', 1000),
(7403, 6049, '5905-6049', 1, '新松店', '{"number":"014662","shop":"\\u65b0\\u677e\\u5e97","phone":"0225715620","address":"\\u677e\\u6c5f\\u8def\\uff13\\uff13\\uff10\\u5df7\\uff13\\uff13\\u865f"}', '014662', 'quanjia', 'zh-tw', 1000),
(7404, 6049, '5905-6049', 1, '權勝店', '{"number":"017355","shop":"\\u6b0a\\u52dd\\u5e97","phone":"0225935820","address":"\\u677e\\u6c5f\\u8def\\uff14\\uff10\\uff10\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017355', 'quanjia', 'zh-tw', 1000),
(7405, 6049, '5905-6049', 1, '松好店', '{"number":"018619","shop":"\\u677e\\u597d\\u5e97","phone":"0225083831","address":"\\u677e\\u6c5f\\u8def\\uff16\\uff11\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '018619', 'quanjia', 'zh-tw', 1000),
(7406, 6049, '5905-6049', 1, '新衡山店', '{"number":"015346","shop":"\\u65b0\\u8861\\u5c71\\u5e97","phone":"0225332342","address":"\\u901a\\u5317\\u8857\\uff11\\uff11\\uff11\\u865f"}', '015346', 'quanjia', 'zh-tw', 1000),
(7407, 6049, '5905-6049', 1, '五常店', '{"number":"018188","shop":"\\u4e94\\u5e38\\u5e97","phone":"0225067078","address":"\\u4e94\\u5e38\\u8857\\uff15\\uff13\\u5df7\\uff12\\uff13\\u865f\\uff11\\u865f"}', '018188', 'quanjia', 'zh-tw', 1000),
(7408, 6049, '5905-6049', 1, '美林店', '{"number":"017730","shop":"\\u7f8e\\u6797\\u5e97","phone":"0225678382","address":"\\u65b0\\u751f\\u5317\\u8def\\u4e8c\\u6bb5\\uff16\\uff12\\u5df7\\uff13\\uff18\\uff0d\\uff13\\u865f"}', '017730', 'quanjia', 'zh-tw', 1000),
(7409, 6049, '5905-6049', 1, '鑫通店', '{"number":"015920","shop":"\\u946b\\u901a\\u5e97","phone":"0225817485","address":"\\u65b0\\u751f\\u5317\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff16\\u865f"}', '015920', 'quanjia', 'zh-tw', 1000),
(7410, 6049, '5905-6049', 1, '興安店', '{"number":"018376","shop":"\\u8208\\u5b89\\u5e97","phone":"0225052013","address":"\\u8208\\u5b89\\u8857\\uff15\\uff17\\u865f"}', '018376', 'quanjia', 'zh-tw', 1000),
(7411, 6049, '5905-6049', 1, '京江店', '{"number":"014010","shop":"\\u4eac\\u6c5f\\u5e97","phone":"0225678224","address":"\\u4e00\\u6c5f\\u8857\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '014010', 'quanjia', 'zh-tw', 1000),
(7412, 6049, '5905-6049', 1, '長通店', '{"number":"016549","shop":"\\u9577\\u901a\\u5e97","phone":"0225029136","address":"\\u4f0a\\u901a\\u8857\\uff11\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '016549', 'quanjia', 'zh-tw', 1000),
(7413, 6049, '5905-6049', 1, '金通店', '{"number":"013978","shop":"\\u91d1\\u901a\\u5e97","phone":"0225181554","address":"\\u4f0a\\u901a\\u8857\\uff15\\uff18\\u865f"}', '013978', 'quanjia', 'zh-tw', 1000),
(7414, 6049, '5905-6049', 1, '美麗店', '{"number":"017888","shop":"\\u7f8e\\u9e97\\u5e97","phone":"0285011290","address":"\\u6a02\\u7fa4\\u4e8c\\u8def\\uff11\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '017888', 'quanjia', 'zh-tw', 1000),
(7415, 6049, '5905-6049', 1, '樂群店', '{"number":"015060","shop":"\\u6a02\\u7fa4\\u5e97","phone":"0285095167","address":"\\u6a02\\u7fa4\\u4e8c\\u8def\\uff11\\uff18\\uff16\\u865f"}', '015060', 'quanjia', 'zh-tw', 1000),
(7416, 6049, '5905-6049', 1, '日津店', '{"number":"017933","shop":"\\u65e5\\u6d25\\u5e97","phone":"0225635367","address":"\\u6b63\\u7fa9\\u91cc\\u5929\\u6d25\\u8857\\uff14\\uff17\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017933', 'quanjia', 'zh-tw', 1000),
(7417, 6049, '5905-6049', 1, '聚葉店', '{"number":"014903","shop":"\\u805a\\u8449\\u5e97","phone":"0225716328","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff17\\u5df7\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '014903', 'quanjia', 'zh-tw', 1000),
(7418, 6049, '5905-6049', 1, '台鑫店', '{"number":"017449","shop":"\\u53f0\\u946b\\u5e97","phone":"0225118851","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff14\\uff14\\u865f\\uff11\\u6a13\\u90e8\\u4efd"}', '017449', 'quanjia', 'zh-tw', 1000),
(7419, 6049, '5905-6049', 1, '新國賓店', '{"number":"016585","shop":"\\u65b0\\u570b\\u8cd3\\u5e97","phone":"0225818863","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff17\\uff15\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '016585', 'quanjia', 'zh-tw', 1000),
(7420, 6049, '5905-6049', 1, '圓山飯店', '{"number":"017899","shop":"\\u5713\\u5c71\\u98ef\\u5e97","phone":"0228850843","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u56db\\u6bb5\\uff11\\u5df7\\uff11\\u865f\\uff11\\u6a13\\uff08\\u9e92\\u9e9f\\u5ef3\\uff09\\uff09"}', '017899', 'quanjia', 'zh-tw', 1000),
(7421, 6049, '5905-6049', 1, '市民店', '{"number":"012022","shop":"\\u5e02\\u6c11\\u5e97","phone":"0225638109","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e00\\u6bb5\\uff15\\uff18\\u865f"}', '012022', 'quanjia', 'zh-tw', 1000),
(7422, 6049, '5905-6049', 1, '中賓店', '{"number":"005989","shop":"\\u4e2d\\u8cd3\\u5e97","phone":"0225230023","address":"\\u4e2d\\u5c71\\u91cc\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff15\\uff19\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '005989', 'quanjia', 'zh-tw', 1000),
(7423, 6049, '5905-6049', 1, '錦原店', '{"number":"018112","shop":"\\u9326\\u539f\\u5e97","phone":"0225412311","address":"\\u4e2d\\u539f\\u8857\\uff11\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '018112', 'quanjia', 'zh-tw', 1000),
(7424, 6049, '5905-6049', 1, '新吉原店', '{"number":"017553","shop":"\\u65b0\\u5409\\u539f\\u5e97","phone":"0225113653","address":"\\u4e2d\\u539f\\u8857\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '017553', 'quanjia', 'zh-tw', 1000),
(7425, 6049, '5905-6049', 1, '朱崙店', '{"number":"016150","shop":"\\u6731\\u5d19\\u5e97","phone":"0227528615","address":"\\u6731\\u5d19\\u8857\\uff16\\uff17\\u865f"}', '016150', 'quanjia', 'zh-tw', 1000),
(7426, 6050, '5905-6050', 1, '大孝店', '{"number":"015063","shop":"\\u5927\\u5b5d\\u5e97","phone":"0223216231","address":"\\u611b\\u570b\\u6771\\u8def\\uff11\\uff11\\uff12\\u865f\\uff11\\u6a13\\uff0e\\uff12\\u6a13"}', '015063', 'quanjia', 'zh-tw', 1000),
(7427, 6050, '5905-6050', 1, '教育大學店', '{"number":"016575","shop":"\\u6559\\u80b2\\u5927\\u5b78\\u5e97","phone":"0223888317","address":"\\u611b\\u570b\\u897f\\u8def\\uff11\\u865f"}', '016575', 'quanjia', 'zh-tw', 1000),
(7428, 6050, '5905-6050', 1, '新德店', '{"number":"013575","shop":"\\u65b0\\u5fb7\\u5e97","phone":"0223214351","address":"\\u516b\\u5fb7\\u8def\\u4e00\\u6bb5\\uff14\\uff13\\u5df7\\uff12\\u865f"}', '013575', 'quanjia', 'zh-tw', 1000),
(7429, 6050, '5905-6050', 1, '博愛店', '{"number":"018369","shop":"\\u535a\\u611b\\u5e97","phone":"0223432173","address":"\\u535a\\u611b\\u8def\\uff16\\uff13\\u865f\\uff11\\uff26\\uff0b\\uff22\\uff11\\uff26"}', '018369', 'quanjia', 'zh-tw', 1000),
(7430, 6050, '5905-6050', 1, '福昌店', '{"number":"017358","shop":"\\u798f\\u660c\\u5e97","phone":"0223913137","address":"\\u798f\\u5dde\\u8857\\uff11\\uff10\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '017358', 'quanjia', 'zh-tw', 1000),
(7431, 6050, '5905-6050', 1, '新仟囍店', '{"number":"018263","shop":"\\u65b0\\u4edf\\u56cd\\u5e97","phone":"0223822831","address":"\\u9928\\u524d\\u8def\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '018263', 'quanjia', 'zh-tw', 1000),
(7432, 6050, '5905-6050', 1, '東大二店', '{"number":"013711","shop":"\\u6771\\u5927\\u4e8c\\u5e97","phone":"0223714669","address":"\\u8cb4\\u967d\\u8857\\u4e00\\u6bb5\\uff15\\uff16\\u865f\\uff22\\uff11\\uff08\\u6771\\u5433\\u5927\\u5b78\\u57ce\\u5340\\u90e8\\uff09"}', '013711', 'quanjia', 'zh-tw', 1000),
(7433, 6050, '5905-6050', 1, '漢盛店', '{"number":"015850","shop":"\\u6f22\\u76db\\u5e97","phone":"0223117024","address":"\\u6f22\\u53e3\\u8857\\u4e00\\u6bb5\\uff11\\uff18\\u865f"}', '015850', 'quanjia', 'zh-tw', 1000),
(7434, 6050, '5905-6050', 1, '文祥店', '{"number":"018150","shop":"\\u6587\\u7965\\u5e97","phone":"0223914884","address":"\\u676d\\u5dde\\u5357\\u8def\\u4e00\\u6bb5\\uff11\\uff14\\uff17\\u865f"}', '018150', 'quanjia', 'zh-tw', 1000),
(7435, 6050, '5905-6050', 1, '和鄰店', '{"number":"017366","shop":"\\u548c\\u9130\\u5e97","phone":"0223628326","address":"\\u548c\\u5e73\\u897f\\u8def\\u4e00\\u6bb5\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '017366', 'quanjia', 'zh-tw', 1000),
(7436, 6050, '5905-6050', 1, '新衡陽店', '{"number":"017503","shop":"\\u65b0\\u8861\\u967d\\u5e97","phone":"0223711130","address":"\\u8861\\u967d\\u8def\\uff17\\uff17\\u865f\\u4e00\\u6a13"}', '017503', 'quanjia', 'zh-tw', 1000),
(7437, 6050, '5905-6050', 1, '衡慶店', '{"number":"017203","shop":"\\u8861\\u6176\\u5e97","phone":"0223820271","address":"\\u8861\\u967d\\u8def\\uff17\\u865f\\uff11\\u6a13\\u90e8\\u5206\\uff08\\u5982\\u9644\\u5716\\uff09"}', '017203', 'quanjia', 'zh-tw', 1000),
(7438, 6050, '5905-6050', 1, '摩天店', '{"number":"018265","shop":"\\u6469\\u5929\\u5e97","phone":"0223148151","address":"\\u8a31\\u660c\\u8857\\uff12\\uff16\\u865f"}', '018265', 'quanjia', 'zh-tw', 1000),
(7439, 6050, '5905-6050', 1, '西站店', '{"number":"016659","shop":"\\u897f\\u7ad9\\u5e97","phone":"0223120577","address":"\\u61f7\\u5be7\\u8857\\uff17\\u4e4b\\uff11\\u865f"}', '016659', 'quanjia', 'zh-tw', 1000),
(7440, 6050, '5905-6050', 1, '齊東店', '{"number":"014322","shop":"\\u9f4a\\u6771\\u5e97","phone":"0223942076","address":"\\u6fdf\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff0d\\uff17\\u865f\\uff11\\u6a13"}', '014322', 'quanjia', 'zh-tw', 1000),
(7441, 6050, '5905-6050', 1, '開封店', '{"number":"017223","shop":"\\u958b\\u5c01\\u5e97","phone":"0223709020","address":"\\u958b\\u5c01\\u8857\\u4e00\\u6bb5\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '017223', 'quanjia', 'zh-tw', 1000),
(7442, 6050, '5905-6050', 1, '林森南路店', '{"number":"016799","shop":"\\u6797\\u68ee\\u5357\\u8def\\u5e97","phone":"0223519110","address":"\\u6797\\u68ee\\u5357\\u8def\\uff15\\uff17\\uff0e\\uff15\\uff19\\u865f"}', '016799', 'quanjia', 'zh-tw', 1000),
(7443, 6050, '5905-6050', 1, '羅斯店', '{"number":"018140","shop":"\\u7f85\\u65af\\u5e97","phone":"0223962007","address":"\\u7f85\\u65af\\u798f\\u8def\\uff12\\u6bb5\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '018140', 'quanjia', 'zh-tw', 1000),
(7444, 6050, '5905-6050', 1, '羅安店', '{"number":"018528","shop":"\\u7f85\\u5b89\\u5e97","phone":"0223654518","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '018528', 'quanjia', 'zh-tw', 1000),
(7445, 6050, '5905-6050', 1, '館中店', '{"number":"014745","shop":"\\u9928\\u4e2d\\u5e97","phone":"0223672204","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\uff13\\uff11\\uff16\\u5df7\\uff18\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '014745', 'quanjia', 'zh-tw', 1000),
(7446, 6050, '5905-6050', 1, '金安店', '{"number":"018768","shop":"\\u91d1\\u5b89\\u5e97","phone":"0223654620","address":"\\u7f85\\u65af\\u798f\\u8def\\u4e09\\u6bb5\\uff18\\u865f\\uff11\\uff0b\\uff12\\u6a13"}', '018768', 'quanjia', 'zh-tw', 1000),
(7447, 6050, '5905-6050', 1, '南海店', '{"number":"014490","shop":"\\u5357\\u6d77\\u5e97","phone":"0223564283","address":"\\u5357\\u6d77\\u8def\\uff12\\uff10\\u865f"}', '014490', 'quanjia', 'zh-tw', 1000),
(7448, 6050, '5905-6050', 1, '金門店', '{"number":"016606","shop":"\\u91d1\\u9580\\u5e97","phone":"0223642756","address":"\\u6c40\\u5dde\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '016606', 'quanjia', 'zh-tw', 1000),
(7449, 6050, '5905-6050', 1, '新廈門店', '{"number":"014453","shop":"\\u65b0\\u5ec8\\u9580\\u5e97","phone":"0223681443","address":"\\u6c40\\u5dde\\u8def\\u4e8c\\u6bb5\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '014453', 'quanjia', 'zh-tw', 1000),
(7450, 6050, '5905-6050', 1, '文盛店', '{"number":"017605","shop":"\\u6587\\u76db\\u5e97","phone":"0223681345","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff13\\u865f"}', '017605', 'quanjia', 'zh-tw', 1000),
(7451, 6050, '5905-6050', 1, '公館店', '{"number":"015201","shop":"\\u516c\\u9928\\u5e97","phone":"0223688539","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\uff12\\uff15\\uff11\\u865f"}', '015201', 'quanjia', 'zh-tw', 1000),
(7452, 6050, '5905-6050', 1, '水源店', '{"number":"014142","shop":"\\u6c34\\u6e90\\u5e97","phone":"0223642257","address":"\\u6c40\\u5dde\\u8def\\u4e09\\u6bb5\\uff12\\uff16\\uff11\\u865f"}', '014142', 'quanjia', 'zh-tw', 1000),
(7453, 6050, '5905-6050', 1, '新龍口店', '{"number":"017008","shop":"\\u65b0\\u9f8d\\u53e3\\u5e97","phone":"0223047184","address":"\\u6c40\\u5dde\\u8def\\u4e00\\u6bb5\\uff12\\uff14\\uff14\\u865f"}', '017008', 'quanjia', 'zh-tw', 1000),
(7454, 6050, '5905-6050', 1, '富陽店', '{"number":"017407","shop":"\\u5bcc\\u967d\\u5e97","phone":"0223754181","address":"\\u8944\\u967d\\u8def\\uff17\\u865f\\uff11\\u6a13"}', '017407', 'quanjia', 'zh-tw', 1000),
(7455, 6050, '5905-6050', 1, '南陽店', '{"number":"015589","shop":"\\u5357\\u967d\\u5e97","phone":"0223881469","address":"\\u4fe1\\u967d\\u8857\\uff11\\uff15\\u865f"}', '015589', 'quanjia', 'zh-tw', 1000),
(7456, 6050, '5905-6050', 1, '新東門店', '{"number":"014785","shop":"\\u65b0\\u6771\\u9580\\u5e97","phone":"0223564259","address":"\\u4fe1\\u7fa9\\u8def\\u4e00\\u6bb5\\uff11\\u865f"}', '014785', 'quanjia', 'zh-tw', 1000),
(7457, 6050, '5905-6050', 1, '寶慶店', '{"number":"018151","shop":"\\u5bf6\\u6176\\u5e97","phone":"0223898700","address":"\\u5ef6\\u5e73\\u5357\\u8def\\uff11\\uff11\\uff11\\u865f"}', '018151', 'quanjia', 'zh-tw', 1000),
(7458, 6050, '5905-6050', 1, '和醫店', '{"number":"016200","shop":"\\u548c\\u91ab\\u5e97","phone":"0223122560","address":"\\u5ef6\\u5e73\\u5357\\u8def\\uff11\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '016200', 'quanjia', 'zh-tw', 1000),
(7459, 6050, '5905-6050', 1, '郡王店', '{"number":"014575","shop":"\\u90e1\\u738b\\u5e97","phone":"0223719902","address":"\\u5ef6\\u5e73\\u5357\\u8def\\uff16\\uff18\\u865f"}', '014575', 'quanjia', 'zh-tw', 1000),
(7460, 6050, '5905-6050', 1, '新惠安店', '{"number":"015956","shop":"\\u65b0\\u60e0\\u5b89\\u5e97","phone":"0223036887","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff17\\u5df7\\uff14\\uff16\\u865f"}', '015956', 'quanjia', 'zh-tw', 1000),
(7461, 6050, '5905-6050', 1, '南機場店', '{"number":"013547","shop":"\\u5357\\u6a5f\\u5834\\u5e97","phone":"0223039420","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff11\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '013547', 'quanjia', 'zh-tw', 1000),
(7462, 6050, '5905-6050', 1, '台醫店', '{"number":"006598","shop":"\\u53f0\\u91ab\\u5e97","phone":"0223278841","address":"\\u4e2d\\u5c71\\u5357\\u8def\\uff17\\u865f\\uff11\\u6a13"}', '006598', 'quanjia', 'zh-tw', 1000),
(7463, 6050, '5905-6050', 1, '台大醫院店', '{"number":"018527","shop":"\\u53f0\\u5927\\u91ab\\u9662\\u5e97","phone":"0233223538","address":"\\u4e2d\\u5c71\\u5357\\u8def\\uff17\\u865f\\uff22\\uff11\\u6a13"}', '018527', 'quanjia', 'zh-tw', 1000),
(7464, 6050, '5905-6050', 1, '兆豐店', '{"number":"018710","shop":"\\u5146\\u8c50\\u5e97","phone":"0223418109","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\u4e8c\\u6bb5\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '018710', 'quanjia', 'zh-tw', 1000),
(7465, 6050, '5905-6050', 1, '鴻啟店', '{"number":"016266","shop":"\\u9d3b\\u555f\\u5e97","phone":"0223142878","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff10\\u865f"}', '016266', 'quanjia', 'zh-tw', 1000),
(7466, 6050, '5905-6050', 1, '凱撒店', '{"number":"018141","shop":"\\u51f1\\u6492\\u5e97","phone":"0223898803","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\uff13\\uff18\\u865f\\uff11\\u6a13\\uff08\\u90e8\\u4efd\\uff09"}', '018141', 'quanjia', 'zh-tw', 1000),
(7467, 6050, '5905-6050', 1, '北捷店', '{"number":"017485","shop":"\\u5317\\u6377\\u5e97","phone":"0223831985","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\uff14\\uff17\\u865f\\uff22\\uff11\\uff26"}', '017485', 'quanjia', 'zh-tw', 1000),
(7468, 6050, '5905-6050', 1, '亞慶店', '{"number":"016918","shop":"\\u4e9e\\u6176\\u5e97","phone":"0223706675","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\u4e00\\u6bb5\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '016918', 'quanjia', 'zh-tw', 1000),
(7469, 6050, '5905-6050', 1, '重慶店', '{"number":"017294","shop":"\\u91cd\\u6176\\u5e97","phone":"0223122797","address":"\\u91cd\\u6176\\u5357\\u8def\\u4e00\\u6bb5\\uff15\\uff18\\u865f"}', '017294', 'quanjia', 'zh-tw', 1000),
(7470, 6051, '5906-6051', 1, '台東賓朗店', '{"number":"017326","shop":"\\u53f0\\u6771\\u8cd3\\u6717\\u5e97","phone":"089236230","address":"\\u8cd3\\u6717\\u8def\\uff12\\uff19\\uff12\\u865f"}', '017326', 'quanjia', 'zh-tw', 1000),
(7471, 6051, '5906-6051', 1, '卑南初鹿店', '{"number":"015648","shop":"\\u5351\\u5357\\u521d\\u9e7f\\u5e97","phone":"089570655","address":"\\u521d\\u9e7f\\u6751\\u5fe0\\u5b5d\\u8def\\uff18\\uff15\\u865f"}', '015648', 'quanjia', 'zh-tw', 1000),
(7472, 6051, '5906-6051', 1, '台東和平店', '{"number":"018000","shop":"\\u53f0\\u6771\\u548c\\u5e73\\u5e97","phone":"089380790","address":"\\u592a\\u5e73\\u6751\\u548c\\u5e73\\u8def\\uff11\\uff10\\uff12\\u865f\\u4e00\\u6a13"}', '018000', 'quanjia', 'zh-tw', 1000),
(7473, 6051, '5906-6051', 1, '台東龍泉店', '{"number":"018032","shop":"\\u53f0\\u6771\\u9f8d\\u6cc9\\u5e97","phone":"089514523","address":"\\u6eab\\u6cc9\\u6751\\u9f8d\\u6cc9\\u8def\\uff15\\uff15\\u865f\\u4e00\\u6a13\\u4e4b\\uff11"}', '018032', 'quanjia', 'zh-tw', 1000),
(7474, 6052, '5906-6052', 1, '成功中華店', '{"number":"017618","shop":"\\u6210\\u529f\\u4e2d\\u83ef\\u5e97","phone":"089853820","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '017618', 'quanjia', 'zh-tw', 1000),
(7475, 6053, '5906-6053', 1, '池上車站店', '{"number":"018361","shop":"\\u6c60\\u4e0a\\u8eca\\u7ad9\\u5e97","phone":"089863755","address":"\\u5fe0\\u5b5d\\u8def\\uff12\\uff16\\uff19\\u865f"}', '018361', 'quanjia', 'zh-tw', 1000),
(7476, 6054, '5906-6054', 1, '台東達人店', '{"number":"016455","shop":"\\u53f0\\u6771\\u9054\\u4eba\\u5e97","phone":"089702689","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff15\\uff14\\uff0d\\uff12\\u865f"}', '016455', 'quanjia', 'zh-tw', 1000),
(7477, 6055, '5906-6055', 1, '台東大竹店', '{"number":"017975","shop":"\\u53f0\\u6771\\u5927\\u7af9\\u5e97","phone":"089760208","address":"\\u5927\\u7af9\\uff16\\u865f"}', '017975', 'quanjia', 'zh-tw', 1000),
(7478, 6056, '5906-6056', 1, '東河農會店', '{"number":"015262","shop":"\\u6771\\u6cb3\\u8fb2\\u6703\\u5e97","phone":"089531539","address":"\\u90fd\\u862d\\u6751\\u90fd\\u862d\\u8def\\uff12\\uff10\\uff19\\uff0d\\uff11\\u865f"}', '015262', 'quanjia', 'zh-tw', 1000),
(7479, 6057, '5906-6057', 1, '台東關山店', '{"number":"017000","shop":"\\u53f0\\u6771\\u95dc\\u5c71\\u5e97","phone":"089814083","address":"\\u91cc\\u74cf\\u91cc\\u6c11\\u6b0a\\u8def\\uff11\\u4e4b\\uff16\\u865f\\u4e00\\u6a13"}', '017000', 'quanjia', 'zh-tw', 1000),
(7480, 6057, '5906-6057', 1, '關山民族店', '{"number":"011740","shop":"\\u95dc\\u5c71\\u6c11\\u65cf\\u5e97","phone":"089814885","address":"\\u91cc\\u58df\\u91cc\\u6c11\\u65cf\\u8def\\uff15\\uff13\\uff0d\\uff11\\u865f"}', '011740', 'quanjia', 'zh-tw', 1000),
(7481, 6058, '5906-6058', 1, '台東鹿野店', '{"number":"018740","shop":"\\u53f0\\u6771\\u9e7f\\u91ce\\u5e97","phone":"089561502","address":"\\u9e7f\\u91ce\\u6751\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff19\\uff18\\u865f\\u4e00\\u6a13"}', '018740', 'quanjia', 'zh-tw', 1000),
(7482, 6059, '5906-6059', 1, '綠島朝日店', '{"number":"014788","shop":"\\u7da0\\u5cf6\\u671d\\u65e5\\u5e97","phone":"089671146","address":"\\u5357\\u5bee\\u6751\\uff19\\uff19\\u865f"}', '014788', 'quanjia', 'zh-tw', 1000),
(7483, 6060, '5906-6060', 1, '台東博愛店', '{"number":"015913","shop":"\\u53f0\\u6771\\u535a\\u611b\\u5e97","phone":"089341217","address":"\\u535a\\u611b\\u8def\\uff14\\uff18\\uff16\\u865f"}', '015913', 'quanjia', 'zh-tw', 1000),
(7484, 6060, '5906-6060', 1, '台東四維店', '{"number":"018495","shop":"\\u53f0\\u6771\\u56db\\u7dad\\u5e97","phone":"089348139","address":"\\u50b3\\u5ee3\\u8def\\uff13\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '018495', 'quanjia', 'zh-tw', 1000),
(7485, 6060, '5906-6060', 1, '台東豐榮店', '{"number":"018613","shop":"\\u53f0\\u6771\\u8c50\\u69ae\\u5e97","phone":"089341938","address":"\\u8c50\\u69ae\\u8def\\uff11\\uff18\\uff17\\u865f"}', '018613', 'quanjia', 'zh-tw', 1000),
(7486, 6060, '5906-6060', 1, '台東豐樂店', '{"number":"012061","shop":"\\u53f0\\u6771\\u8c50\\u6a02\\u5e97","phone":"089325869","address":"\\u8c50\\u6a02\\u91cc\\u6b63\\u6c23\\u5317\\u8def\\uff15\\uff12\\uff16\\u865f\\u4e00\\u6a13"}', '012061', 'quanjia', 'zh-tw', 1000),
(7487, 6060, '5906-6060', 1, '台東大同店', '{"number":"018554","shop":"\\u53f0\\u6771\\u5927\\u540c\\u5e97","phone":"089360595","address":"\\u5fa9\\u570b\\u91cc\\u5927\\u540c\\u8def\\uff11\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '018554', 'quanjia', 'zh-tw', 1000),
(7488, 6060, '5906-6060', 1, '台東維新店', '{"number":"015220","shop":"\\u53f0\\u6771\\u7dad\\u65b0\\u5e97","phone":"089347383","address":"\\u66f4\\u751f\\u8def\\uff15\\uff17\\uff15\\u865f"}', '015220', 'quanjia', 'zh-tw', 1000),
(7489, 6060, '5906-6060', 1, '台東中興店', '{"number":"018075","shop":"\\u53f0\\u6771\\u4e2d\\u8208\\u5e97","phone":"089239473","address":"\\u5149\\u660e\\u91cc\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\uff14\\uff14\\uff12\\u865f\\u4e00\\u6a13"}', '018075', 'quanjia', 'zh-tw', 1000),
(7490, 6060, '5906-6060', 1, '台東知本店', '{"number":"016978","shop":"\\u53f0\\u6771\\u77e5\\u672c\\u5e97","phone":"089512191","address":"\\u5efa\\u8208\\u91cc\\u9752\\u6d77\\u8def\\u56db\\u6bb5\\uff14\\uff17\\uff12\\u865f\\uff11\\u6a13"}', '016978', 'quanjia', 'zh-tw', 1000),
(7491, 6060, '5906-6060', 1, '台東新生店', '{"number":"011636","shop":"\\u53f0\\u6771\\u65b0\\u751f\\u5e97","phone":"089341973","address":"\\u958b\\u5c01\\u8857\\uff16\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '011636', 'quanjia', 'zh-tw', 1000),
(7492, 6060, '5906-6060', 1, '台東南京店', '{"number":"018473","shop":"\\u53f0\\u6771\\u5357\\u4eac\\u5e97","phone":"089332782","address":"\\u6c11\\u65cf\\u91cc\\u6b63\\u6c23\\u8def\\uff13\\uff18\\uff14\\u865f\\u4e00\\u6a13"}', '018473', 'quanjia', 'zh-tw', 1000),
(7493, 6060, '5906-6060', 1, '台東南王店', '{"number":"015777","shop":"\\u53f0\\u6771\\u5357\\u738b\\u5e97","phone":"089224995","address":"\\u5357\\u738b\\u91cc\\u66f4\\u751f\\u5317\\u8def\\uff16\\uff10\\uff13\\u865f"}', '015777', 'quanjia', 'zh-tw', 1000),
(7494, 6060, '5906-6060', 1, '台東興昌店', '{"number":"016212","shop":"\\u53f0\\u6771\\u8208\\u660c\\u5e97","phone":"089233387","address":"\\u6587\\u660c\\u8def\\uff12\\u865f\\u58f9\\u6a13"}', '016212', 'quanjia', 'zh-tw', 1000),
(7495, 6060, '5906-6060', 1, '台東豐里店', '{"number":"017235","shop":"\\u53f0\\u6771\\u8c50\\u91cc\\u5e97","phone":"089318596","address":"\\u4e2d\\u83ef\\u8def\\u4e09\\u6bb5\\uff12\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '017235', 'quanjia', 'zh-tw', 1000),
(7496, 6060, '5906-6060', 1, '台東鐵花店', '{"number":"017383","shop":"\\u53f0\\u6771\\u9435\\u82b1\\u5e97","phone":"089338872","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff15\\uff17\\uff15\\u865f"}', '017383', 'quanjia', 'zh-tw', 1000),
(7497, 6060, '5906-6060', 1, '台東文化店', '{"number":"013866","shop":"\\u53f0\\u6771\\u6587\\u5316\\u5e97","phone":"089341912","address":"\\u4e2d\\u5c71\\u91cc\\u4e2d\\u5c71\\u8def\\uff13\\uff14\\uff15\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '013866', 'quanjia', 'zh-tw', 1000),
(7498, 6060, '5906-6060', 1, '台東寶桑店', '{"number":"015621","shop":"\\u53f0\\u6771\\u5bf6\\u6851\\u5e97","phone":"089239683","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff12\\uff11\\uff11\\u865f"}', '015621', 'quanjia', 'zh-tw', 1000),
(7499, 6061, '5906-6061', 1, '台東太麻里店', '{"number":"016977","shop":"\\u53f0\\u6771\\u592a\\u9ebb\\u91cc\\u5e97","phone":"089780150","address":"\\u6cf0\\u548c\\u6751\\u592a\\u9ebb\\u91cc\\u8857\\uff13\\uff11\\uff16\\u865f"}', '016977', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(7500, 6062, '5907-6062', 1, '安定保安店', '{"number":"016165","shop":"\\u5b89\\u5b9a\\u4fdd\\u5b89\\u5e97","phone":"065976267","address":"\\u4fdd\\u897f\\u91cc\\uff13\\uff13\\uff19\\u4e4b\\uff13\\u865f\\u4e00\\u6a13"}', '016165', 'quanjia', 'zh-tw', 1000),
(7501, 6062, '5907-6062', 1, '安定港口店', '{"number":"017892","shop":"\\u5b89\\u5b9a\\u6e2f\\u53e3\\u5e97","phone":"065939547","address":"\\u6e2f\\u5357\\u91cc\\u6e2f\\u53e3\\u8def\\uff12\\uff14\\uff14\\u4e4b\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '017892', 'quanjia', 'zh-tw', 1000),
(7502, 6062, '5907-6062', 1, '安定海寮店', '{"number":"016998","shop":"\\u5b89\\u5b9a\\u6d77\\u5bee\\u5e97","phone":"065933959","address":"\\u6d77\\u5bee\\uff11\\uff10\\uff0d\\uff12\\u865f\\uff11\\u6a13\\u90e8\\u5206"}', '016998', 'quanjia', 'zh-tw', 1000),
(7503, 6062, '5907-6062', 1, '安定善高店', '{"number":"016811","shop":"\\u5b89\\u5b9a\\u5584\\u9ad8\\u5e97","phone":"065975396","address":"\\u8607\\u539d\\u91cc\\uff12\\uff19\\uff13\\uff0d\\uff16\\uff18\\u865f"}', '016811', 'quanjia', 'zh-tw', 1000),
(7504, 6063, '5907-6063', 1, '台南安順店', '{"number":"016012","shop":"\\u53f0\\u5357\\u5b89\\u9806\\u5e97","phone":"063564715","address":"\\u5b89\\u548c\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff16\\u865f"}', '016012', 'quanjia', 'zh-tw', 1000),
(7505, 6063, '5907-6063', 1, '台南文安店', '{"number":"017580","shop":"\\u53f0\\u5357\\u6587\\u5b89\\u5e97","phone":"062827508","address":"\\u5b89\\u548c\\u8def\\u4e00\\u6bb5\\uff17\\uff13\\uff06\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '017580', 'quanjia', 'zh-tw', 1000),
(7506, 6063, '5907-6063', 1, '台南興德店', '{"number":"018914","shop":"\\u53f0\\u5357\\u8208\\u5fb7\\u5e97","phone":"062457612","address":"\\u5b89\\u4e2d\\u8def\\u56db\\u6bb5\\uff12\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '018914', 'quanjia', 'zh-tw', 1000),
(7507, 6063, '5907-6063', 1, '台南安中店', '{"number":"017162","shop":"\\u53f0\\u5357\\u5b89\\u4e2d\\u5e97","phone":"062478562","address":"\\u5b89\\u4e2d\\u8def\\u4e00\\u6bb5\\uff16\\uff19\\uff19\\u5df7\\uff11\\u865f"}', '017162', 'quanjia', 'zh-tw', 1000),
(7508, 6063, '5907-6063', 1, '台南新本原店', '{"number":"016223","shop":"\\u53f0\\u5357\\u65b0\\u672c\\u539f\\u5e97","phone":"062453180","address":"\\u672c\\u539f\\u8857\\u4e09\\u6bb5\\uff12\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '016223', 'quanjia', 'zh-tw', 1000),
(7509, 6063, '5907-6063', 1, '台南長安店', '{"number":"013361","shop":"\\u53f0\\u5357\\u9577\\u5b89\\u5e97","phone":"063571280","address":"\\u9577\\u548c\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\u5df7\\uff12\\uff17\\uff15\\u865f"}', '013361', 'quanjia', 'zh-tw', 1000),
(7510, 6063, '5907-6063', 1, '台南長溪店', '{"number":"018171","shop":"\\u53f0\\u5357\\u9577\\u6eaa\\u5e97","phone":"062475035","address":"\\u9577\\u6eaa\\u8def\\u4e09\\u6bb5\\uff13\\uff17\\uff16\\u865f"}', '018171', 'quanjia', 'zh-tw', 1000),
(7511, 6063, '5907-6063', 1, '台南城西店', '{"number":"017919","shop":"\\u53f0\\u5357\\u57ce\\u897f\\u5e97","phone":"062575852","address":"\\u57ce\\u897f\\u8857\\u4e00\\u6bb5\\uff14\\uff11\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '017919', 'quanjia', 'zh-tw', 1000),
(7512, 6063, '5907-6063', 1, '台南大安店', '{"number":"016337","shop":"\\u53f0\\u5357\\u5927\\u5b89\\u5e97","phone":"062474809","address":"\\u5927\\u5b89\\u8857\\uff11\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '016337', 'quanjia', 'zh-tw', 1000),
(7513, 6063, '5907-6063', 1, '台南安南店', '{"number":"017029","shop":"\\u53f0\\u5357\\u5b89\\u5357\\u5e97","phone":"063584103","address":"\\u6d77\\u4f43\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff10\\u865f"}', '017029', 'quanjia', 'zh-tw', 1000),
(7514, 6063, '5907-6063', 1, '台南新安田店', '{"number":"016718","shop":"\\u53f0\\u5357\\u65b0\\u5b89\\u7530\\u5e97","phone":"063586576","address":"\\u6d77\\u4f43\\u8def\\u4e00\\u6bb5\\uff13\\uff14\\uff17\\u865f"}', '016718', 'quanjia', 'zh-tw', 1000),
(7515, 6063, '5907-6063', 1, '台南安慶店', '{"number":"016760","shop":"\\u53f0\\u5357\\u5b89\\u6176\\u5e97","phone":"062474770","address":"\\u7406\\u60f3\\u91cc\\u5927\\u5b89\\u8857\\uff17\\uff12\\uff18\\u865f\\u4e00\\u6a13"}', '016760', 'quanjia', 'zh-tw', 1000),
(7516, 6063, '5907-6063', 1, '台南頂安店', '{"number":"017096","shop":"\\u53f0\\u5357\\u9802\\u5b89\\u5e97","phone":"063560771","address":"\\u57f9\\u5b89\\u8def\\uff11\\uff15\\uff11\\u865f"}', '017096', 'quanjia', 'zh-tw', 1000),
(7517, 6063, '5907-6063', 1, '台南台江店', '{"number":"014098","shop":"\\u53f0\\u5357\\u53f0\\u6c5f\\u5e97","phone":"062470289","address":"\\u53f0\\u6c5f\\u5927\\u9053\\u4e8c\\u6bb5\\uff14\\uff18\\uff11\\u865f"}', '014098', 'quanjia', 'zh-tw', 1000),
(7518, 6064, '5907-6064', 1, '台南新安平店', '{"number":"012199","shop":"\\u53f0\\u5357\\u65b0\\u5b89\\u5e73\\u5e97","phone":"062234228","address":"\\u5b89\\u5e73\\u8def\\uff11\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '012199', 'quanjia', 'zh-tw', 1000),
(7519, 6064, '5907-6064', 1, '台南河美店', '{"number":"014275","shop":"\\u53f0\\u5357\\u6cb3\\u7f8e\\u5e97","phone":"062230712","address":"\\u5b89\\u5e73\\u8def\\uff14\\uff12\\uff18\\u865f"}', '014275', 'quanjia', 'zh-tw', 1000),
(7520, 6064, '5907-6064', 1, '台南慶平店', '{"number":"013931","shop":"\\u53f0\\u5357\\u6176\\u5e73\\u5e97","phone":"062930685","address":"\\u5efa\\u5e73\\u91cc\\uff15\\u9130\\u6176\\u5e73\\u8def\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '013931', 'quanjia', 'zh-tw', 1000),
(7521, 6064, '5907-6064', 1, '台南康裕店', '{"number":"018431","shop":"\\u53f0\\u5357\\u5eb7\\u88d5\\u5e97","phone":"062931235","address":"\\u5065\\u5eb7\\u4e09\\u8857\\uff12\\uff10\\uff19\\u865f\\uff11\\u6a13"}', '018431', 'quanjia', 'zh-tw', 1000),
(7522, 6064, '5907-6064', 1, '台南新康華店', '{"number":"017672","shop":"\\u53f0\\u5357\\u65b0\\u5eb7\\u83ef\\u5e97","phone":"062954396","address":"\\u5065\\u5eb7\\u4e09\\u8857\\uff12\\uff13\\uff15\\u865f"}', '017672', 'quanjia', 'zh-tw', 1000),
(7523, 6064, '5907-6064', 1, '台南國平店', '{"number":"017015","shop":"\\u53f0\\u5357\\u570b\\u5e73\\u5e97","phone":"062939137","address":"\\u5e73\\u901a\\u91cc\\u570b\\u5e73\\u8def\\uff15\\uff19\\uff19\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '017015', 'quanjia', 'zh-tw', 1000),
(7524, 6064, '5907-6064', 1, '台南承天店', '{"number":"014913","shop":"\\u53f0\\u5357\\u627f\\u5929\\u5e97","phone":"062983705","address":"\\u6176\\u5e73\\u8def\\uff15\\uff17\\uff13\\u865f\\uff11\\u6a13"}', '014913', 'quanjia', 'zh-tw', 1000),
(7525, 6064, '5907-6064', 1, '台南建平店', '{"number":"017416","shop":"\\u53f0\\u5357\\u5efa\\u5e73\\u5e97","phone":"062992938","address":"\\u6587\\u5e73\\u91cc\\u5065\\u5eb7\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\u865f\\u4e00\\u6a13"}', '017416', 'quanjia', 'zh-tw', 1000),
(7526, 6064, '5907-6064', 1, '台南文平店', '{"number":"015980","shop":"\\u53f0\\u5357\\u6587\\u5e73\\u5e97","phone":"062989408","address":"\\u6587\\u5e73\\u8def\\uff14\\uff10\\uff15\\uff0e\\uff14\\uff10\\uff17\\u865f"}', '015980', 'quanjia', 'zh-tw', 1000),
(7527, 6065, '5907-6065', 1, '白河昶興店', '{"number":"017893","shop":"\\u767d\\u6cb3\\u6636\\u8208\\u5e97","phone":"066855541","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff13\\u865f"}', '017893', 'quanjia', 'zh-tw', 1000),
(7528, 6066, '5907-6066', 1, '台南北成店', '{"number":"015215","shop":"\\u53f0\\u5357\\u5317\\u6210\\u5e97","phone":"062826541","address":"\\u5317\\u6210\\u8def\\uff13\\uff19\\u865f"}', '015215', 'quanjia', 'zh-tw', 1000),
(7529, 6066, '5907-6066', 1, '台南北忠店', '{"number":"018405","shop":"\\u53f0\\u5357\\u5317\\u5fe0\\u5e97","phone":"062527578","address":"\\u5317\\u9580\\u8def\\u4e8c\\u6bb5\\uff13\\uff16\\uff18\\u865f\\uff11\\u6a13\\uff08\\u5982\\u9644\\u5716\\uff09"}', '018405', 'quanjia', 'zh-tw', 1000),
(7530, 6066, '5907-6066', 1, '台南新北門店', '{"number":"014706","shop":"\\u53f0\\u5357\\u65b0\\u5317\\u9580\\u5e97","phone":"062222025","address":"\\u5317\\u9580\\u8def\\u4e8c\\u6bb5\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '014706', 'quanjia', 'zh-tw', 1000),
(7531, 6066, '5907-6066', 1, '台南北園店', '{"number":"017085","shop":"\\u53f0\\u5357\\u5317\\u5712\\u5e97","phone":"062344469","address":"\\u5317\\u5712\\u8857\\uff12\\uff10\\u865f\\uff11\\u6a13\\u53ca\\u593e\\u5c64"}', '017085', 'quanjia', 'zh-tw', 1000),
(7532, 6066, '5907-6066', 1, '台南長順店', '{"number":"016862","shop":"\\u53f0\\u5357\\u9577\\u9806\\u5e97","phone":"062210179","address":"\\u9577\\u5317\\u8857\\uff11\\uff11\\uff12\\u865f"}', '016862', 'quanjia', 'zh-tw', 1000),
(7533, 6066, '5907-6066', 1, '台南忠成店', '{"number":"016336","shop":"\\u53f0\\u5357\\u5fe0\\u6210\\u5e97","phone":"062211656","address":"\\u6210\\u529f\\u8def\\uff11\\uff11\\uff18\\uff0c\\uff11\\uff12\\uff10\\u865f"}', '016336', 'quanjia', 'zh-tw', 1000),
(7534, 6066, '5907-6066', 1, '台南長成店', '{"number":"016556","shop":"\\u53f0\\u5357\\u9577\\u6210\\u5e97","phone":"062255085","address":"\\u6210\\u529f\\u8def\\uff12\\uff11\\uff12\\u865f"}', '016556', 'quanjia', 'zh-tw', 1000),
(7535, 6066, '5907-6066', 1, '台南臨安店', '{"number":"014781","shop":"\\u53f0\\u5357\\u81e8\\u5b89\\u5e97","phone":"062508275","address":"\\u6210\\u529f\\u8def\\uff15\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '014781', 'quanjia', 'zh-tw', 1000),
(7536, 6066, '5907-6066', 1, '台南國宅店', '{"number":"018120","shop":"\\u53f0\\u5357\\u570b\\u5b85\\u5e97","phone":"062521509","address":"\\u5927\\u9053\\u91cc\\u5317\\u9580\\u8def\\u4e8c\\u6bb5\\uff15\\uff14\\uff15\\u865f\\u4e00\\u6a13"}', '018120', 'quanjia', 'zh-tw', 1000),
(7537, 6066, '5907-6066', 1, '台南大興店', '{"number":"017521","shop":"\\u53f0\\u5357\\u5927\\u8208\\u5e97","phone":"062506975","address":"\\u5927\\u8208\\u8857\\uff13\\uff19\\uff18\\u865f"}', '017521', 'quanjia', 'zh-tw', 1000),
(7538, 6066, '5907-6066', 1, '台南公園店', '{"number":"016590","shop":"\\u53f0\\u5357\\u516c\\u5712\\u5e97","phone":"062246780","address":"\\u516c\\u5712\\u5317\\u8def\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '016590', 'quanjia', 'zh-tw', 1000),
(7539, 6066, '5907-6066', 1, '台南文成店', '{"number":"018808","shop":"\\u53f0\\u5357\\u6587\\u6210\\u5e97","phone":"062587936","address":"\\u6d77\\u5b89\\u8def\\u4e09\\u6bb5\\uff18\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '018808', 'quanjia', 'zh-tw', 1000),
(7540, 6066, '5907-6066', 1, '台南和順店', '{"number":"017453","shop":"\\u53f0\\u5357\\u548c\\u9806\\u5e97","phone":"062254767","address":"\\u548c\\u9806\\u91cc\\u516c\\u5712\\u5357\\u8def\\uff13\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '017453', 'quanjia', 'zh-tw', 1000),
(7541, 6066, '5907-6066', 1, '台南南園店', '{"number":"017417","shop":"\\u53f0\\u5357\\u5357\\u5712\\u5e97","phone":"062389353","address":"\\u5357\\u5712\\u8857\\uff11\\uff10\\uff12\\u865f\\uff11\\uff0b\\uff12\\u6a13"}', '017417', 'quanjia', 'zh-tw', 1000),
(7542, 6066, '5907-6066', 1, '台南和緯店', '{"number":"013368","shop":"\\u53f0\\u5357\\u548c\\u7def\\u5e97","phone":"062507078","address":"\\u6587\\u6210\\u91cc\\u548c\\u7def\\u8def\\u4e09\\u6bb5\\uff13\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '013368', 'quanjia', 'zh-tw', 1000),
(7543, 6066, '5907-6066', 1, '台南育德店', '{"number":"017520","shop":"\\u53f0\\u5357\\u80b2\\u5fb7\\u5e97","phone":"062512062","address":"\\u80b2\\u5fb7\\u8def\\uff14\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '017520', 'quanjia', 'zh-tw', 1000),
(7544, 6066, '5907-6066', 1, '台南大豐店', '{"number":"017583","shop":"\\u53f0\\u5357\\u5927\\u8c50\\u5e97","phone":"062507706","address":"\\u4e2d\\u83ef\\u5317\\u8def\\u4e00\\u6bb5\\uff18\\uff10\\u865f\\uff11\\u6a13\\u5168\\u90e8"}', '017583', 'quanjia', 'zh-tw', 1000),
(7545, 6067, '5907-6067', 1, '台南榮寶店', '{"number":"016905","shop":"\\u53f0\\u5357\\u69ae\\u5bf6\\u5e97","phone":"062363772","address":"\\u9577\\u69ae\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '016905', 'quanjia', 'zh-tw', 1000),
(7546, 6067, '5907-6067', 1, '台南東德店', '{"number":"014977","shop":"\\u53f0\\u5357\\u6771\\u5fb7\\u5e97","phone":"062908347","address":"\\u5d07\\u5fb7\\u8def\\uff11\\uff12\\uff18\\u865f"}', '014977', 'quanjia', 'zh-tw', 1000),
(7547, 6067, '5907-6067', 1, '台南新崇義店', '{"number":"014872","shop":"\\u53f0\\u5357\\u65b0\\u5d07\\u7fa9\\u5e97","phone":"062908348","address":"\\u5d07\\u5fb7\\u8def\\uff14\\uff17\\uff11\\uff0d\\uff13\\u865f"}', '014872', 'quanjia', 'zh-tw', 1000),
(7548, 6067, '5907-6067', 1, '台南崇德店', '{"number":"018133","shop":"\\u53f0\\u5357\\u5d07\\u5fb7\\u5e97","phone":"062673558","address":"\\u5d07\\u5fb7\\u8def\\uff17\\uff13\\uff17\\u865f"}', '018133', 'quanjia', 'zh-tw', 1000),
(7549, 6067, '5907-6067', 1, '台南崇善店', '{"number":"017196","shop":"\\u53f0\\u5357\\u5d07\\u5584\\u5e97","phone":"062600746","address":"\\u5d07\\u5584\\u8def\\uff16\\uff18\\uff18\\u865f"}', '017196', 'quanjia', 'zh-tw', 1000),
(7550, 6067, '5907-6067', 1, '台南成大店', '{"number":"017599","shop":"\\u53f0\\u5357\\u6210\\u5927\\u5e97","phone":"062004692","address":"\\u5927\\u5b78\\u8def\\uff11\\u865f\\u3000\\u5149\\u5fa9\\u6821\\u5340\\u5b78\\u751f\\u9910\\u5ef3"}', '017599', 'quanjia', 'zh-tw', 1000),
(7551, 6067, '5907-6067', 1, '台南德東店', '{"number":"018253","shop":"\\u53f0\\u5357\\u5fb7\\u6771\\u5e97","phone":"062900863","address":"\\u5fb7\\u6771\\u8857\\uff18\\uff13\\u865f\\u5168\\u68df"}', '018253', 'quanjia', 'zh-tw', 1000),
(7552, 6067, '5907-6067', 1, '台南東文店', '{"number":"018071","shop":"\\u53f0\\u5357\\u6771\\u6587\\u5e97","phone":"062603556","address":"\\u6771\\u9580\\u8def\\u4e09\\u6bb5\\uff11\\uff16\\uff18\\u865f"}', '018071', 'quanjia', 'zh-tw', 1000),
(7553, 6067, '5907-6067', 1, '台南新樓店', '{"number":"013885","shop":"\\u53f0\\u5357\\u65b0\\u6a13\\u5e97","phone":"062085046","address":"\\u6771\\u9580\\u8def\\u4e00\\u6bb5\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '013885', 'quanjia', 'zh-tw', 1000),
(7554, 6067, '5907-6067', 1, '台南富農一店', '{"number":"015801","shop":"\\u53f0\\u5357\\u5bcc\\u8fb2\\u4e00\\u5e97","phone":"063359083","address":"\\u5bcc\\u8fb2\\u8857\\u4e8c\\u6bb5\\uff13\\u865f\\uff11\\u6a13"}', '015801', 'quanjia', 'zh-tw', 1000),
(7555, 6067, '5907-6067', 1, '台南東平店', '{"number":"018018","shop":"\\u53f0\\u5357\\u6771\\u5e73\\u5e97","phone":"062002921","address":"\\u5149\\u660e\\u8857\\uff12\\uff11\\uff17\\u865f\\uff0c\\uff12\\uff11\\uff19\\u865f"}', '018018', 'quanjia', 'zh-tw', 1000),
(7556, 6067, '5907-6067', 1, '台南林森店', '{"number":"015302","shop":"\\u53f0\\u5357\\u6797\\u68ee\\u5e97","phone":"062376800","address":"\\u6797\\u68ee\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff18\\u865f"}', '015302', 'quanjia', 'zh-tw', 1000),
(7557, 6067, '5907-6067', 1, '台南一中店', '{"number":"015966","shop":"\\u53f0\\u5357\\u4e00\\u4e2d\\u5e97","phone":"062087710","address":"\\u6c11\\u65cf\\u8def\\u4e00\\u6bb5\\uff11\\u865f"}', '015966', 'quanjia', 'zh-tw', 1000),
(7558, 6067, '5907-6067', 1, '台南仁東店', '{"number":"017016","shop":"\\u53f0\\u5357\\u4ec1\\u6771\\u5e97","phone":"062605708","address":"\\u4ec1\\u6771\\u8857\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '017016', 'quanjia', 'zh-tw', 1000),
(7559, 6067, '5907-6067', 1, '台南新義統店', '{"number":"015601","shop":"\\u53f0\\u5357\\u65b0\\u7fa9\\u7d71\\u5e97","phone":"062897432","address":"\\u4ec1\\u548c\\u8def\\uff11\\uff10\\uff11\\uff0d\\uff11\\u865f"}', '015601', 'quanjia', 'zh-tw', 1000),
(7560, 6067, '5907-6067', 1, '台南新博店', '{"number":"016533","shop":"\\u53f0\\u5357\\u65b0\\u535a\\u5e97","phone":"062094958","address":"\\u80b2\\u6a02\\u8857\\uff11\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '016533', 'quanjia', 'zh-tw', 1000),
(7561, 6067, '5907-6067', 1, '台南裕聖店', '{"number":"017803","shop":"\\u53f0\\u5357\\u88d5\\u8056\\u5e97","phone":"063314522","address":"\\u88d5\\u4fe1\\u8def\\uff13\\uff18\\uff13\\u865f"}', '017803', 'quanjia', 'zh-tw', 1000),
(7562, 6067, '5907-6067', 1, '台南裕義店', '{"number":"018501","shop":"\\u53f0\\u5357\\u88d5\\u7fa9\\u5e97","phone":"063316762","address":"\\u88d5\\u7fa9\\u8def\\uff15\\uff17\\uff16\\u865f"}', '018501', 'quanjia', 'zh-tw', 1000),
(7563, 6067, '5907-6067', 1, '台南東成店', '{"number":"012923","shop":"\\u53f0\\u5357\\u6771\\u6210\\u5e97","phone":"062897438","address":"\\u81ea\\u7531\\u8def\\u4e09\\u6bb5\\uff12\\uff12\\uff13\\u865f"}', '012923', 'quanjia', 'zh-tw', 1000),
(7564, 6068, '5907-6068', 1, '官田新田店', '{"number":"018630","shop":"\\u5b98\\u7530\\u65b0\\u7530\\u5e97","phone":"065794440","address":"\\u9686\\u7530\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff13\\uff15\\u865f"}', '018630', 'quanjia', 'zh-tw', 1000),
(7565, 6069, '5907-6069', 1, '關廟八六店', '{"number":"017952","shop":"\\u95dc\\u5edf\\u516b\\u516d\\u5e97","phone":"065959040","address":"\\u5357\\u96c4\\u8def\\u4e8c\\u6bb5\\uff19\\uff13\\uff18\\u865f"}', '017952', 'quanjia', 'zh-tw', 1000),
(7566, 6069, '5907-6069', 1, '關廟英雄店', '{"number":"017673","shop":"\\u95dc\\u5edf\\u82f1\\u96c4\\u5e97","phone":"065951217","address":"\\u5357\\u96c4\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '017673', 'quanjia', 'zh-tw', 1000),
(7567, 6069, '5907-6069', 1, '關廟旺萊店', '{"number":"016966","shop":"\\u95dc\\u5edf\\u65fa\\u840a\\u5e97","phone":"065954243","address":"\\u65fa\\u840a\\u8def\\uff11\\uff12\\uff17\\u865f"}', '016966', 'quanjia', 'zh-tw', 1000),
(7568, 6069, '5907-6069', 1, '關廟南雄店', '{"number":"016429","shop":"\\u95dc\\u5edf\\u5357\\u96c4\\u5e97","phone":"065955835","address":"\\u4e2d\\u592e\\u8def\\uff12\\uff14\\uff16\\u865f"}', '016429', 'quanjia', 'zh-tw', 1000),
(7569, 6070, '5907-6070', 1, '歸仁長榮店', '{"number":"015402","shop":"\\u6b78\\u4ec1\\u9577\\u69ae\\u5e97","phone":"062785265","address":"\\u9577\\u5927\\u8def\\uff11\\u865f\\u7b2c\\u4e00\\u5bbf\\u820d\\u4e00\\u6a13"}', '015402', 'quanjia', 'zh-tw', 1000),
(7570, 6070, '5907-6070', 1, '歸仁大順店', '{"number":"011889","shop":"\\u6b78\\u4ec1\\u5927\\u9806\\u5e97","phone":"062397162","address":"\\u5f8c\\u5e02\\u91cc\\u5927\\u9806\\u8857\\uff11\\uff17\\uff10\\u865f\\u4e00\\u6a13"}', '011889', 'quanjia', 'zh-tw', 1000),
(7571, 6070, '5907-6070', 1, '歸仁文仁店', '{"number":"016513","shop":"\\u6b78\\u4ec1\\u6587\\u4ec1\\u5e97","phone":"063307920","address":"\\u5f8c\\u5e02\\u91cc\\u6c11\\u65cf\\u5317\\u8857\\uff18\\uff15\\u865f\\u4e00\\u6a13"}', '016513', 'quanjia', 'zh-tw', 1000),
(7572, 6070, '5907-6070', 1, '歸仁新文化店', '{"number":"015446","shop":"\\u6b78\\u4ec1\\u65b0\\u6587\\u5316\\u5e97","phone":"062303581","address":"\\u5357\\u4fdd\\u91cc\\u6c11\\u6b0a\\u5317\\u8def\\uff11\\uff14\\uff17\\u865f"}', '015446', 'quanjia', 'zh-tw', 1000),
(7573, 6070, '5907-6070', 1, '歸仁七甲店', '{"number":"018758","shop":"\\u6b78\\u4ec1\\u4e03\\u7532\\u5e97","phone":"062304335","address":"\\u4e2d\\u6b63\\u5317\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\uff10\\u865f"}', '018758', 'quanjia', 'zh-tw', 1000),
(7574, 6071, '5907-6071', 1, '後壁茄苳店', '{"number":"012726","shop":"\\u5f8c\\u58c1\\u8304\\u82f3\\u5e97","phone":"066881114","address":"\\u5609\\u660e\\u91cc\\u4e0a\\u8304\\u82f3\\uff11\\uff14\\uff16\\u4e4b\\uff13\\uff13\\u865f\\uff13\\uff12\\u865f"}', '012726', 'quanjia', 'zh-tw', 1000),
(7575, 6071, '5907-6071', 1, '新營國道南店', '{"number":"011489","shop":"\\u65b0\\u71df\\u570b\\u9053\\u5357\\u5e97","phone":"066328428","address":"\\u7af9\\u65b0\\u91cc\\u65b0\\u539d\\uff16\\uff19\\u865f"}', '011489', 'quanjia', 'zh-tw', 1000),
(7576, 6071, '5907-6071', 1, '新營國道北店', '{"number":"012784","shop":"\\u65b0\\u71df\\u570b\\u9053\\u5317\\u5e97","phone":"066321336","address":"\\u7af9\\u65b0\\u91cc\\u65b0\\u539d\\uff17\\uff12\\u865f"}', '012784', 'quanjia', 'zh-tw', 1000),
(7577, 6072, '5907-6072', 1, '佳里光復店', '{"number":"016011","shop":"\\u4f73\\u91cc\\u5149\\u5fa9\\u5e97","phone":"067237050","address":"\\u5b89\\u897f\\u91cc\\u5149\\u5fa9\\u8def\\uff13\\uff12\\uff17\\u865f"}', '016011', 'quanjia', 'zh-tw', 1000),
(7578, 6072, '5907-6072', 1, '佳里佳興店', '{"number":"013952","shop":"\\u4f73\\u91cc\\u4f73\\u8208\\u5e97","phone":"067266943","address":"\\u4f73\\u91cc\\u8208\\uff14\\uff14\\uff11\\uff0d\\uff11\\u865f"}', '013952', 'quanjia', 'zh-tw', 1000),
(7579, 6072, '5907-6072', 1, '佳里延平店', '{"number":"012901","shop":"\\u4f73\\u91cc\\u5ef6\\u5e73\\u5e97","phone":"067227976","address":"\\u5ef6\\u5e73\\u8def\\uff14\\uff16\\uff18\\uff0d\\uff12\\u865f"}', '012901', 'quanjia', 'zh-tw', 1000),
(7580, 6072, '5907-6072', 1, '佳里中山店', '{"number":"016190","shop":"\\u4f73\\u91cc\\u4e2d\\u5c71\\u5e97","phone":"067238351","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff15\\uff15\\u865f"}', '016190', 'quanjia', 'zh-tw', 1000),
(7581, 6073, '5907-6073', 1, '將軍青鯤鯓店', '{"number":"018587","shop":"\\u5c07\\u8ecd\\u9752\\u9be4\\u9bd3\\u5e97","phone":"067920315","address":"\\u9be4\\u9bd3\\u91cc\\uff12\\uff11\\uff12\\u865f"}', '018587', 'quanjia', 'zh-tw', 1000),
(7582, 6074, '5907-6074', 1, '柳營敏惠店', '{"number":"018172","shop":"\\u67f3\\u71df\\u654f\\u60e0\\u5e97","phone":"066224748","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff11\\uff16\\u865f"}', '018172', 'quanjia', 'zh-tw', 1000),
(7583, 6074, '5907-6074', 1, '柳營重溪店', '{"number":"016311","shop":"\\u67f3\\u71df\\u91cd\\u6eaa\\u5e97","phone":"066234800","address":"\\u91cd\\u6eaa\\u91cc\\u5c0f\\u8173\\u817f\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '016311', 'quanjia', 'zh-tw', 1000),
(7584, 6075, '5907-6075', 1, '六甲民生附店', '{"number":"011344","shop":"\\u516d\\u7532\\u6c11\\u751f\\u9644\\u5e97","phone":"066986882","address":"\\u5de5\\u7814\\u8def\\uff18\\u865f"}', '011344', 'quanjia', 'zh-tw', 1000),
(7585, 6075, '5907-6075', 1, '六甲新民店', '{"number":"015739","shop":"\\u516d\\u7532\\u65b0\\u6c11\\u5e97","phone":"066984945","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '015739', 'quanjia', 'zh-tw', 1000),
(7586, 6076, '5907-6076', 1, '麻豆新樓店', '{"number":"014433","shop":"\\u9ebb\\u8c46\\u65b0\\u6a13\\u5e97","phone":"065702893","address":"\\u5c0f\\u57e4\\u91cc\\u82d3\\u5b50\\u6797\\uff12\\uff10\\u865f"}', '014433', 'quanjia', 'zh-tw', 1000),
(7587, 6076, '5907-6076', 1, '麻豆興中店', '{"number":"017133","shop":"\\u9ebb\\u8c46\\u8208\\u4e2d\\u5e97","phone":"065711047","address":"\\u8208\\u4e2d\\u8def\\uff12\\uff12\\uff18\\u865f"}', '017133', 'quanjia', 'zh-tw', 1000),
(7588, 6076, '5907-6076', 1, '麻豆興民店', '{"number":"012250","shop":"\\u9ebb\\u8c46\\u8208\\u6c11\\u5e97","phone":"065711224","address":"\\u8208\\u4e2d\\u8def\\uff15\\uff11\\u865f"}', '012250', 'quanjia', 'zh-tw', 1000),
(7589, 6076, '5907-6076', 1, '麻豆黎明店', '{"number":"012120","shop":"\\u9ebb\\u8c46\\u9ece\\u660e\\u5e97","phone":"065711104","address":"\\u4e2d\\u8208\\u91cc\\u8208\\u570b\\u8def\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '012120', 'quanjia', 'zh-tw', 1000),
(7590, 6077, '5907-6077', 1, '台南新大林店', '{"number":"016082","shop":"\\u53f0\\u5357\\u65b0\\u5927\\u6797\\u5e97","phone":"062141759","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff16\\u5df7\\uff12\\u865f"}', '016082', 'quanjia', 'zh-tw', 1000),
(7591, 6077, '5907-6077', 1, '台南神鷹店', '{"number":"016721","shop":"\\u53f0\\u5357\\u795e\\u9df9\\u5e97","phone":"062907130","address":"\\u6a5f\\u5834\\u8def\\uff19\\uff10\\uff15\\u865f"}', '016721', 'quanjia', 'zh-tw', 1000),
(7592, 6077, '5907-6077', 1, '台南水萍塭店', '{"number":"018290","shop":"\\u53f0\\u5357\\u6c34\\u840d\\u586d\\u5e97","phone":"062211952","address":"\\u91d1\\u83ef\\u8def\\u4e8c\\u6bb5\\uff13\\uff18\\uff14\\u865f"}', '018290', 'quanjia', 'zh-tw', 1000),
(7593, 6077, '5907-6077', 1, '台南永寧店', '{"number":"017687","shop":"\\u53f0\\u5357\\u6c38\\u5be7\\u5e97","phone":"062627520","address":"\\u7063\\u88e1\\u8def\\uff12\\uff17\\uff18\\u865f"}', '017687', 'quanjia', 'zh-tw', 1000),
(7594, 6077, '5907-6077', 1, '台南三喜店', '{"number":"017095","shop":"\\u53f0\\u5357\\u4e09\\u559c\\u5e97","phone":"062628253","address":"\\u559c\\u6a39\\u8def\\uff12\\uff12\\uff10\\u865f"}', '017095', 'quanjia', 'zh-tw', 1000),
(7595, 6077, '5907-6077', 1, '台南新和店', '{"number":"012461","shop":"\\u53f0\\u5357\\u65b0\\u548c\\u5e97","phone":"062630575","address":"\\u65b0\\u5efa\\u8def\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '012461', 'quanjia', 'zh-tw', 1000),
(7596, 6077, '5907-6077', 1, '台南金華店', '{"number":"012731","shop":"\\u53f0\\u5357\\u91d1\\u83ef\\u5e97","phone":"062638459","address":"\\u65b0\\u5b5d\\u8def\\uff17\\uff12\\u865f\\uff11\\u6a13"}', '012731', 'quanjia', 'zh-tw', 1000),
(7597, 6077, '5907-6077', 1, '台南新夏店', '{"number":"016468","shop":"\\u53f0\\u5357\\u65b0\\u590f\\u5e97","phone":"062615535","address":"\\u65b0\\u8208\\u8def\\uff11\\uff15\\uff11\\u865f"}', '016468', 'quanjia', 'zh-tw', 1000),
(7598, 6077, '5907-6077', 1, '台南灣裡店', '{"number":"018800","shop":"\\u53f0\\u5357\\u7063\\u88e1\\u5e97","phone":"062960741","address":"\\u8208\\u5357\\u8857\\uff16\\uff13\\u865f\\u5de6\\u908a"}', '018800', 'quanjia', 'zh-tw', 1000),
(7599, 6077, '5907-6077', 1, '台南華興店', '{"number":"016109","shop":"\\u53f0\\u5357\\u83ef\\u8208\\u5e97","phone":"062921082","address":"\\u4e2d\\u83ef\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff10\\u865f"}', '016109', 'quanjia', 'zh-tw', 1000),
(7600, 6078, '5907-6078', 1, '仁德鼎安店', '{"number":"017567","shop":"\\u4ec1\\u5fb7\\u9f0e\\u5b89\\u5e97","phone":"062495741","address":"\\u5fb7\\u5b89\\u8def\\uff11\\u4e4b\\uff11\\u865f"}', '017567', 'quanjia', 'zh-tw', 1000),
(7601, 6078, '5907-6078', 1, '仁德德南店', '{"number":"018550","shop":"\\u4ec1\\u5fb7\\u5fb7\\u5357\\u5e97","phone":"062498364","address":"\\u5fb7\\u5357\\u8def\\uff12\\uff12\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '018550', 'quanjia', 'zh-tw', 1000),
(7602, 6078, '5907-6078', 1, '仁德新德店', '{"number":"014899","shop":"\\u4ec1\\u5fb7\\u65b0\\u5fb7\\u5e97","phone":"062792875","address":"\\u5fb7\\u5584\\u8def\\uff12\\uff17\\uff19\\uff0d\\uff13\\u865f"}', '014899', 'quanjia', 'zh-tw', 1000),
(7603, 6078, '5907-6078', 1, '仁德德洋店', '{"number":"018516","shop":"\\u4ec1\\u5fb7\\u5fb7\\u6d0b\\u5e97","phone":"062692842","address":"\\u5f8c\\u58c1\\u91cc\\u5fb7\\u6d0b\\u8def\\uff12\\uff14\\uff18\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '018516', 'quanjia', 'zh-tw', 1000),
(7604, 6078, '5907-6078', 1, '仁德中二店', '{"number":"017587","shop":"\\u4ec1\\u5fb7\\u4e2d\\u4e8c\\u5e97","phone":"062672656","address":"\\u6587\\u83ef\\u3127\\u8857\\uff18\\uff19\\u865f\\uff08\\u6559\\u5b78\\u5340\\uff09\\u3000"}', '017587', 'quanjia', 'zh-tw', 1000),
(7605, 6078, '5907-6078', 1, '仁德中一店', '{"number":"017586","shop":"\\u4ec1\\u5fb7\\u4e2d\\u4e00\\u5e97","phone":"062672649","address":"\\u6587\\u83ef\\u4e00\\u8857\\uff18\\uff19\\u865f\\uff08\\u6d3b\\u52d5\\u4e2d\\u5fc3\\uff09\\u3000"}', '017586', 'quanjia', 'zh-tw', 1000),
(7606, 6078, '5907-6078', 1, '仁德仁義店', '{"number":"015981","shop":"\\u4ec1\\u5fb7\\u4ec1\\u7fa9\\u5e97","phone":"062492442","address":"\\u4e2d\\u5c71\\u8def\\uff14\\uff12\\uff16\\u865f"}', '015981', 'quanjia', 'zh-tw', 1000),
(7607, 6078, '5907-6078', 1, '仁德仁紡店', '{"number":"013540","shop":"\\u4ec1\\u5fb7\\u4ec1\\u7d21\\u5e97","phone":"062491472","address":"\\u4e2d\\u6b63\\u8def\\u4e8c\\u6bb5\\uff18\\uff10\\uff15\\u865f"}', '013540', 'quanjia', 'zh-tw', 1000),
(7608, 6078, '5907-6078', 1, '仁德二仁店', '{"number":"018365","shop":"\\u4ec1\\u5fb7\\u4e8c\\u4ec1\\u5e97","phone":"062663473","address":"\\u4e2d\\u6b63\\u897f\\u8def\\uff12\\uff11\\u865f"}', '018365', 'quanjia', 'zh-tw', 1000),
(7609, 6079, '5907-6079', 1, '善化啤酒店', '{"number":"017330","shop":"\\u5584\\u5316\\u5564\\u9152\\u5e97","phone":"065853997","address":"\\u6210\\u529f\\u8def\\uff11\\uff0d\\uff11\\u865f"}', '017330', 'quanjia', 'zh-tw', 1000),
(7610, 6079, '5907-6079', 1, '善化光文店', '{"number":"015478","shop":"\\u5584\\u5316\\u5149\\u6587\\u5e97","phone":"065854481","address":"\\u5149\\u6587\\u91cc\\u4e2d\\u5c71\\u8def\\uff19\\uff19\\u865f\\u4e00\\u6a13"}', '015478', 'quanjia', 'zh-tw', 1000),
(7611, 6079, '5907-6079', 1, '善化住華店', '{"number":"018010","shop":"\\u5584\\u5316\\u4f4f\\u83ef\\u5e97","phone":"065055430","address":"\\u74b0\\u6771\\u8def\\u4e8c\\u6bb5\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '018010', 'quanjia', 'zh-tw', 1000),
(7612, 6079, '5907-6079', 1, '善化興華店', '{"number":"016107","shop":"\\u5584\\u5316\\u8208\\u83ef\\u5e97","phone":"065851143","address":"\\u5efa\\u570b\\u8def\\uff13\\uff18\\u865f"}', '016107', 'quanjia', 'zh-tw', 1000),
(7613, 6079, '5907-6079', 1, '善化正國店', '{"number":"018551","shop":"\\u5584\\u5316\\u6b63\\u570b\\u5e97","phone":"065853799","address":"\\u6587\\u660c\\u91cc\\u4e2d\\u6b63\\u8def\\uff11\\uff16\\uff10\\u865f\\u4e00\\u6a13"}', '018551', 'quanjia', 'zh-tw', 1000),
(7614, 6079, '5907-6079', 1, '善化和平店', '{"number":"015775","shop":"\\u5584\\u5316\\u548c\\u5e73\\u5e97","phone":"065852942","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff13\\uff11\\u4e4b\\uff16\\u865f\\uff11\\u6a13"}', '015775', 'quanjia', 'zh-tw', 1000),
(7615, 6080, '5907-6080', 1, '西港南海店', '{"number":"016136","shop":"\\u897f\\u6e2f\\u5357\\u6d77\\u5e97","phone":"067958252","address":"\\u6176\\u5b89\\u8def\\uff12\\uff10\\uff16\\u865f"}', '016136', 'quanjia', 'zh-tw', 1000),
(7616, 6080, '5907-6080', 1, '西港港美店', '{"number":"018476","shop":"\\u897f\\u6e2f\\u6e2f\\u7f8e\\u5e97","phone":"067957204","address":"\\u6176\\u5b89\\u8def\\uff12\\uff12\\uff19\\u865f\\uff08\\u5b78\\u751f\\u9910\\u5ef3\\uff09"}', '018476', 'quanjia', 'zh-tw', 1000),
(7617, 6080, '5907-6080', 1, '西港新興店', '{"number":"015836","shop":"\\u897f\\u6e2f\\u65b0\\u8208\\u5e97","phone":"067954217","address":"\\u65b0\\u8208\\u8857\\uff11\\uff11\\u865f"}', '015836', 'quanjia', 'zh-tw', 1000),
(7618, 6080, '5907-6080', 1, '西港慶安店', '{"number":"015020","shop":"\\u897f\\u6e2f\\u6176\\u5b89\\u5e97","phone":"067952250","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff16\\uff13\\u865f"}', '015020', 'quanjia', 'zh-tw', 1000),
(7619, 6081, '5907-6081', 1, '下營中山店', '{"number":"012517","shop":"\\u4e0b\\u71df\\u4e2d\\u5c71\\u5e97","phone":"066893846","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff13\\uff12\\u865f"}', '012517', 'quanjia', 'zh-tw', 1000),
(7620, 6082, '5907-6082', 1, '新化那拔店', '{"number":"017581","shop":"\\u65b0\\u5316\\u90a3\\u62d4\\u5e97","phone":"065912967","address":"\\u90a3\\u62d4\\u6797\\uff12\\uff13\\u865f\\u4e4b\\uff11\\uff16"}', '017581', 'quanjia', 'zh-tw', 1000),
(7621, 6082, '5907-6082', 1, '新化鑫義店', '{"number":"016163","shop":"\\u65b0\\u5316\\u946b\\u7fa9\\u5e97","phone":"065901941","address":"\\u4fe1\\u7fa9\\u8def\\uff13\\uff17\\uff11\\u865f"}', '016163', 'quanjia', 'zh-tw', 1000),
(7622, 6082, '5907-6082', 1, '新化新北店', '{"number":"017268","shop":"\\u65b0\\u5316\\u65b0\\u5317\\u5e97","phone":"065987546","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff19\\uff17\\u865f\\u5168\\u90e8"}', '017268', 'quanjia', 'zh-tw', 1000),
(7623, 6082, '5907-6082', 1, '新化正孝店', '{"number":"018033","shop":"\\u65b0\\u5316\\u6b63\\u5b5d\\u5e97","phone":"065986475","address":"\\u5fe0\\u5b5d\\u8def\\uff11\\uff15\\uff18\\u865f"}', '018033', 'quanjia', 'zh-tw', 1000),
(7624, 6083, '5907-6083', 1, '新市大社店', '{"number":"016296","shop":"\\u65b0\\u5e02\\u5927\\u793e\\u5e97","phone":"065898187","address":"\\u5927\\u793e\\u91cc\\uff13\\uff13\\uff15\\u865f"}', '016296', 'quanjia', 'zh-tw', 1000),
(7625, 6083, '5907-6083', 1, '新市和平店', '{"number":"017920","shop":"\\u65b0\\u5e02\\u548c\\u5e73\\u5e97","phone":"065899638","address":"\\u5bcc\\u6797\\u8def\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '017920', 'quanjia', 'zh-tw', 1000),
(7626, 6083, '5907-6083', 1, '新市光華店', '{"number":"016902","shop":"\\u65b0\\u5e02\\u5149\\u83ef\\u5e97","phone":"065899942","address":"\\u5149\\u83ef\\u8857\\uff11\\uff13\\uff15\\u865f"}', '016902', 'quanjia', 'zh-tw', 1000),
(7627, 6083, '5907-6083', 1, '新市群創二店', '{"number":"017482","shop":"\\u65b0\\u5e02\\u7fa4\\u5275\\u4e8c\\u5e97","phone":"065050307","address":"\\u74b0\\u897f\\u8def\\u4e8c\\u6bb5\\uff12\\u865f"}', '017482', 'quanjia', 'zh-tw', 1000),
(7628, 6083, '5907-6083', 1, '新市群創七店', '{"number":"017565","shop":"\\u65b0\\u5e02\\u7fa4\\u5275\\u4e03\\u5e97","phone":"065052173","address":"\\u74b0\\u897f\\u8def\\u4e00\\u6bb5\\uff13\\u865f"}', '017565', 'quanjia', 'zh-tw', 1000),
(7629, 6083, '5907-6083', 1, '新市群創四店', '{"number":"017852","shop":"\\u65b0\\u5e02\\u7fa4\\u5275\\u56db\\u5e97","phone":"065052175","address":"\\u74b0\\u897f\\u8def\\u4e00\\u6bb5\\uff13\\u865f"}', '017852', 'quanjia', 'zh-tw', 1000),
(7630, 6083, '5907-6083', 1, '新市群科店', '{"number":"017331","shop":"\\u65b0\\u5e02\\u7fa4\\u79d1\\u5e97","phone":"065058324","address":"\\u74b0\\u897f\\u8def\\u4e00\\u6bb5\\uff13\\u865f\\uff22\\uff11\\uff26\\uff21\\u5e97\\uff08\\u539f\\u5bbf\\u5340\\uff09"}', '017331', 'quanjia', 'zh-tw', 1000),
(7631, 6083, '5907-6083', 1, '新市新和店', '{"number":"015183","shop":"\\u65b0\\u5e02\\u65b0\\u548c\\u5e97","phone":"065896607","address":"\\u6c11\\u6b0a\\u8def\\uff15\\uff12\\u865f"}', '015183', 'quanjia', 'zh-tw', 1000),
(7632, 6083, '5907-6083', 1, '新市群創一店', '{"number":"017481","shop":"\\u65b0\\u5e02\\u7fa4\\u5275\\u4e00\\u5e97","phone":"065055039","address":"\\u5947\\u696d\\u8def\\uff11\\u865f"}', '017481', 'quanjia', 'zh-tw', 1000),
(7633, 6083, '5907-6083', 1, '新市遠科大店', '{"number":"016046","shop":"\\u65b0\\u5e02\\u9060\\u79d1\\u5927\\u5e97","phone":"065977168","address":"\\u4e2d\\u83ef\\u8def\\uff14\\uff19\\u865f"}', '016046', 'quanjia', 'zh-tw', 1000),
(7634, 6083, '5907-6083', 1, '新市華興店', '{"number":"014180","shop":"\\u65b0\\u5e02\\u83ef\\u8208\\u5e97","phone":"065891477","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '014180', 'quanjia', 'zh-tw', 1000),
(7635, 6083, '5907-6083', 1, '新市群創六店', '{"number":"018170","shop":"\\u65b0\\u5e02\\u7fa4\\u5275\\u516d\\u5e97","phone":"065898611","address":"\\u7d2b\\u695d\\u8def\\uff12\\uff11\\u865f"}', '018170', 'quanjia', 'zh-tw', 1000),
(7636, 6084, '5907-6084', 1, '新營帝寶店', '{"number":"018469","shop":"\\u65b0\\u71df\\u5e1d\\u5bf6\\u5e97","phone":"066523925","address":"\\u5fa9\\u8208\\u8def\\uff18\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '018469', 'quanjia', 'zh-tw', 1000),
(7637, 6084, '5907-6084', 1, '新營和平店', '{"number":"012740","shop":"\\u65b0\\u71df\\u548c\\u5e73\\u5e97","phone":"066325617","address":"\\u548c\\u5e73\\u8def\\uff14\\uff16\\u865f"}', '012740', 'quanjia', 'zh-tw', 1000),
(7638, 6084, '5907-6084', 1, '新營民興店', '{"number":"015837","shop":"\\u65b0\\u71df\\u6c11\\u8208\\u5e97","phone":"066592241","address":"\\u6c11\\u6cbb\\u8def\\uff11\\uff12\\uff12\\u865f"}', '015837', 'quanjia', 'zh-tw', 1000),
(7639, 6084, '5907-6084', 1, '新營南新店', '{"number":"016451","shop":"\\u65b0\\u71df\\u5357\\u65b0\\u5e97","phone":"066591421","address":"\\u6c11\\u6cbb\\u8def\\uff11\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '016451', 'quanjia', 'zh-tw', 1000),
(7640, 6084, '5907-6084', 1, '新營南紙店', '{"number":"018892","shop":"\\u65b0\\u71df\\u5357\\u7d19\\u5e97","phone":"066595340","address":"\\u5357\\u7d19\\u91cc\\u5efa\\u696d\\u8def\\uff13\\uff11\\uff17\\u865f\\u4e00\\u6a13"}', '018892', 'quanjia', 'zh-tw', 1000),
(7641, 6084, '5907-6084', 1, '新營三族店', '{"number":"018655","shop":"\\u65b0\\u71df\\u4e09\\u65cf\\u5e97","phone":"066323275","address":"\\u4e09\\u6c11\\u8def\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '018655', 'quanjia', 'zh-tw', 1000),
(7642, 6084, '5907-6084', 1, '新營東興店', '{"number":"016293","shop":"\\u65b0\\u71df\\u6771\\u8208\\u5e97","phone":"066372731","address":"\\u65b0\\u6771\\u91cc\\u6771\\u8208\\u8def\\uff11\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '016293', 'quanjia', 'zh-tw', 1000),
(7643, 6084, '5907-6084', 1, '新營中興店', '{"number":"017269","shop":"\\u65b0\\u71df\\u4e2d\\u8208\\u5e97","phone":"066334689","address":"\\u6c38\\u751f\\u91cc\\u4e2d\\u8208\\u8def\\uff13\\uff12\\u865f\\u4e00\\u6a13"}', '017269', 'quanjia', 'zh-tw', 1000),
(7644, 6084, '5907-6084', 1, '新營裕民店', '{"number":"017037","shop":"\\u65b0\\u71df\\u88d5\\u6c11\\u5e97","phone":"066326426","address":"\\u88d5\\u6c11\\u8def\\uff11\\u865f"}', '017037', 'quanjia', 'zh-tw', 1000),
(7645, 6084, '5907-6084', 1, '新營新興店', '{"number":"017711","shop":"\\u65b0\\u71df\\u65b0\\u8208\\u5e97","phone":"066326860","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff19\\u4e4b\\uff19\\u865f\\uff11\\u6a13"}', '017711', 'quanjia', 'zh-tw', 1000),
(7646, 6085, '5907-6085', 1, '學甲安得富店', '{"number":"018432","shop":"\\u5b78\\u7532\\u5b89\\u5f97\\u5bcc\\u5e97","phone":"067839207","address":"\\u83ef\\u5b97\\u8def\\uff13\\uff12\\uff18\\u865f"}', '018432', 'quanjia', 'zh-tw', 1000),
(7647, 6085, '5907-6085', 1, '學甲狀元店', '{"number":"017293","shop":"\\u5b78\\u7532\\u72c0\\u5143\\u5e97","phone":"067832360","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff18\\uff13\\u4e4b\\uff16\\u865f\\uff11\\u6a13"}', '017293', 'quanjia', 'zh-tw', 1000),
(7648, 6086, '5907-6086', 1, '鹽水清泉店', '{"number":"018878","shop":"\\u9e7d\\u6c34\\u6e05\\u6cc9\\u5e97","phone":"066528354","address":"\\u671d\\u7434\\u8def\\uff16\\uff15\\u865f"}', '018878', 'quanjia', 'zh-tw', 1000),
(7649, 6086, '5907-6086', 1, '鹽水武廟店', '{"number":"017359","shop":"\\u9e7d\\u6c34\\u6b66\\u5edf\\u5e97","phone":"066524945","address":"\\u91d1\\u548c\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '017359', 'quanjia', 'zh-tw', 1000),
(7650, 6086, '5907-6086', 1, '鹽水朝琴店', '{"number":"012972","shop":"\\u9e7d\\u6c34\\u671d\\u7434\\u5e97","phone":"066526857","address":"\\u6c34\\u79c0\\u91cc\\u671d\\u7434\\u8def\\uff11\\uff14\\uff10\\u4e4b\\uff12\\u865f\\u4e00\\u6a13"}', '012972', 'quanjia', 'zh-tw', 1000),
(7651, 6087, '5907-6087', 1, '永康大橋店', '{"number":"011449","shop":"\\u6c38\\u5eb7\\u5927\\u6a4b\\u5e97","phone":"063039275","address":"\\u5927\\u6a4b\\u4e8c\\u8857\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '011449', 'quanjia', 'zh-tw', 1000),
(7652, 6087, '5907-6087', 1, '永康華橋店', '{"number":"018490","shop":"\\u6c38\\u5eb7\\u83ef\\u6a4b\\u5e97","phone":"062317322","address":"\\u5927\\u6a4b\\u4e09\\u8857\\uff18\\uff16\\u865f"}', '018490', 'quanjia', 'zh-tw', 1000),
(7653, 6087, '5907-6087', 1, '永康永仁店', '{"number":"018747","shop":"\\u6c38\\u5eb7\\u6c38\\u4ec1\\u5e97","phone":"062056842","address":"\\u5927\\u4ec1\\u8857\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '018747', 'quanjia', 'zh-tw', 1000),
(7654, 6087, '5907-6087', 1, '永康大展店', '{"number":"014188","shop":"\\u6c38\\u5eb7\\u5927\\u5c55\\u5e97","phone":"062054274","address":"\\u5927\\u7063\\u6771\\u8def\\uff13\\uff18\\u865f"}', '014188', 'quanjia', 'zh-tw', 1000),
(7655, 6087, '5907-6087', 1, '永康新大灣店', '{"number":"017295","shop":"\\u6c38\\u5eb7\\u65b0\\u5927\\u7063\\u5e97","phone":"062057565","address":"\\u5927\\u7063\\u8def\\uff11\\uff19\\uff17\\u865f"}', '017295', 'quanjia', 'zh-tw', 1000),
(7656, 6087, '5907-6087', 1, '永康大華店', '{"number":"017280","shop":"\\u6c38\\u5eb7\\u5927\\u83ef\\u5e97","phone":"062715086","address":"\\u5927\\u7063\\u8def\\uff13\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '017280', 'quanjia', 'zh-tw', 1000),
(7657, 6087, '5907-6087', 1, '永康大武店', '{"number":"018799","shop":"\\u6c38\\u5eb7\\u5927\\u6b66\\u5e97","phone":"062521479","address":"\\u5927\\u6b66\\u8857\\uff18\\u865f"}', '018799', 'quanjia', 'zh-tw', 1000),
(7658, 6087, '5907-6087', 1, '永康東強店', '{"number":"016315","shop":"\\u6c38\\u5eb7\\u6771\\u5f37\\u5e97","phone":"063026813","address":"\\u6771\\u6a4b\\u4e00\\u8def\\uff12\\uff14\\uff16\\u865f\\u4e00\\u6a13"}', '016315', 'quanjia', 'zh-tw', 1000),
(7659, 6087, '5907-6087', 1, '永康永慶店', '{"number":"016295","shop":"\\u6c38\\u5eb7\\u6c38\\u6176\\u5e97","phone":"062029417","address":"\\u5fa9\\u570b\\u4e00\\u8def\\uff13\\uff14\\uff14\\u865f\\uff0e\\uff13\\uff14\\uff16\\u865f"}', '016295', 'quanjia', 'zh-tw', 1000),
(7660, 6087, '5907-6087', 1, '永康復華店', '{"number":"018291","shop":"\\u6c38\\u5eb7\\u5fa9\\u83ef\\u5e97","phone":"062036243","address":"\\u5fa9\\u570b\\u4e00\\u8def\\uff14\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '018291', 'quanjia', 'zh-tw', 1000),
(7661, 6087, '5907-6087', 1, '永康永勝店', '{"number":"016108","shop":"\\u6c38\\u5eb7\\u6c38\\u52dd\\u5e97","phone":"062017269","address":"\\u5fa9\\u83ef\\u4e03\\u8857\\uff11\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '016108', 'quanjia', 'zh-tw', 1000),
(7662, 6087, '5907-6087', 1, '永康華興店', '{"number":"014705","shop":"\\u6c38\\u5eb7\\u83ef\\u8208\\u5e97","phone":"063126297","address":"\\u83ef\\u8208\\u8857\\uff11\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '014705', 'quanjia', 'zh-tw', 1000),
(7663, 6087, '5907-6087', 1, '永康福樂店', '{"number":"017518","shop":"\\u6c38\\u5eb7\\u798f\\u6a02\\u5e97","phone":"062039583","address":"\\u516d\\u5408\\u91cc\\u4e2d\\u83ef\\u4e8c\\u8def\\uff12\\uff17\\uff10\\u865f\\u4e00\\u6a13"}', '017518', 'quanjia', 'zh-tw', 1000),
(7664, 6087, '5907-6087', 1, '永康新南台店', '{"number":"017566","shop":"\\u6c38\\u5eb7\\u65b0\\u5357\\u53f0\\u5e97","phone":"062434018","address":"\\u5357\\u53f0\\u8857\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '017566', 'quanjia', 'zh-tw', 1000),
(7665, 6087, '5907-6087', 1, '永康勝學店', '{"number":"017491","shop":"\\u6c38\\u5eb7\\u52dd\\u5b78\\u5e97","phone":"063139334","address":"\\u52dd\\u5b78\\u8def\\uff12\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '017491', 'quanjia', 'zh-tw', 1000),
(7666, 6087, '5907-6087', 1, '永康車行店', '{"number":"018733","shop":"\\u6c38\\u5eb7\\u8eca\\u884c\\u5e97","phone":"062011453","address":"\\u738b\\u884c\\u8def\\uff15\\uff16\\uff13\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018733', 'quanjia', 'zh-tw', 1000),
(7667, 6087, '5907-6087', 1, '永康文化店', '{"number":"017381","shop":"\\u6c38\\u5eb7\\u6587\\u5316\\u5e97","phone":"062339352","address":"\\u6587\\u5316\\u8def\\uff11\\uff11\\uff18\\u865f"}', '017381', 'quanjia', 'zh-tw', 1000),
(7668, 6087, '5907-6087', 1, '永康五王店', '{"number":"016738","shop":"\\u6c38\\u5eb7\\u4e94\\u738b\\u5e97","phone":"063020810","address":"\\u4e94\\u738b\\u91cc\\u4e2d\\u5c71\\u6771\\u8def\\uff12\\uff12\\uff10\\u865f"}', '016738', 'quanjia', 'zh-tw', 1000),
(7669, 6087, '5907-6087', 1, '永康廣興店', '{"number":"016105","shop":"\\u6c38\\u5eb7\\u5ee3\\u8208\\u5e97","phone":"062073215","address":"\\u897f\\u52e2\\u8def\\uff12\\uff10\\uff15\\u865f"}', '016105', 'quanjia', 'zh-tw', 1000),
(7670, 6087, '5907-6087', 1, '永康新民店', '{"number":"016829","shop":"\\u6c38\\u5eb7\\u65b0\\u6c11\\u5e97","phone":"062438287","address":"\\u65b0\\u6c11\\u8857\\uff17\\uff13\\u865f"}', '016829', 'quanjia', 'zh-tw', 1000),
(7671, 6087, '5907-6087', 1, '永康鹽洲店', '{"number":"016889","shop":"\\u6c38\\u5eb7\\u9e7d\\u6d32\\u5e97","phone":"062434458","address":"\\u9e7d\\u5fe0\\u8857\\uff11\\uff12\\uff17\\u865f"}', '016889', 'quanjia', 'zh-tw', 1000),
(7672, 6087, '5907-6087', 1, '永康新永安店', '{"number":"018180","shop":"\\u6c38\\u5eb7\\u65b0\\u6c38\\u5b89\\u5e97","phone":"062434261","address":"\\u6c38\\u5b89\\u8def\\uff11\\uff11\\uff17\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018180', 'quanjia', 'zh-tw', 1000),
(7673, 6087, '5907-6087', 1, '永康永華店', '{"number":"017582","shop":"\\u6c38\\u5eb7\\u6c38\\u83ef\\u5e97","phone":"063013225","address":"\\u6c38\\u5927\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff16\\uff16\\u865f"}', '017582', 'quanjia', 'zh-tw', 1000),
(7674, 6087, '5907-6087', 1, '永康永明店', '{"number":"018748","shop":"\\u6c38\\u5eb7\\u6c38\\u660e\\u5e97","phone":"062017873","address":"\\u6c38\\u660e\\u8857\\uff12\\uff16\\uff12\\u865f"}', '018748', 'quanjia', 'zh-tw', 1000),
(7675, 6087, '5907-6087', 1, '永康五福店', '{"number":"017997","shop":"\\u6c38\\u5eb7\\u4e94\\u798f\\u5e97","phone":"063026970","address":"\\u4e2d\\u83ef\\u8def\\uff15\\uff10\\uff18\\u865f"}', '017997', 'quanjia', 'zh-tw', 1000),
(7676, 6087, '5907-6087', 1, '永康新長億店', '{"number":"018017","shop":"\\u6c38\\u5eb7\\u65b0\\u9577\\u5104\\u5e97","phone":"063020941","address":"\\u4e2d\\u83ef\\u897f\\u8857\\uff11\\uff15\\uff19\\u865f"}', '018017', 'quanjia', 'zh-tw', 1000),
(7677, 6087, '5907-6087', 1, '永康兵仔市店', '{"number":"017743","shop":"\\u6c38\\u5eb7\\u5175\\u4ed4\\u5e02\\u5e97","phone":"063123115","address":"\\u4e2d\\u83ef\\u4e00\\u8def\\uff16\\uff11\\u865f"}', '017743', 'quanjia', 'zh-tw', 1000),
(7678, 6087, '5907-6087', 1, '永康世界店', '{"number":"014194","shop":"\\u6c38\\u5eb7\\u4e16\\u754c\\u5e97","phone":"062019873","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff14\\uff12\\u865f"}', '014194', 'quanjia', 'zh-tw', 1000),
(7679, 6087, '5907-6087', 1, '永康學府店', '{"number":"017585","shop":"\\u6c38\\u5eb7\\u5b78\\u5e9c\\u5e97","phone":"062435262","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff18\\uff11\\u865f\\u3000\\u3000"}', '017585', 'quanjia', 'zh-tw', 1000),
(7680, 6087, '5907-6087', 1, '永康忠孝店', '{"number":"018870","shop":"\\u6c38\\u5eb7\\u5fe0\\u5b5d\\u5e97","phone":"063134320","address":"\\u5fe0\\u5b5d\\u8def\\uff17\\uff18\\uff0c\\uff18\\uff10\\u865f"}', '018870', 'quanjia', 'zh-tw', 1000),
(7681, 6087, '5907-6087', 1, '永康自強店', '{"number":"018451","shop":"\\u6c38\\u5eb7\\u81ea\\u5f37\\u5e97","phone":"062023702","address":"\\u81ea\\u5f37\\u8def\\uff17\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '018451', 'quanjia', 'zh-tw', 1000),
(7682, 6087, '5907-6087', 1, '永康龍橋店', '{"number":"014900","shop":"\\u6c38\\u5eb7\\u9f8d\\u6a4b\\u5e97","phone":"062029670","address":"\\u81ea\\u5f37\\u8def\\uff18\\uff13\\uff10\\u865f"}', '014900', 'quanjia', 'zh-tw', 1000),
(7683, 6088, '5907-6088', 1, '玉井民生店', '{"number":"013516","shop":"\\u7389\\u4e95\\u6c11\\u751f\\u5e97","phone":"065745873","address":"\\u6c11\\u65cf\\u8def\\uff18\\uff19\\u865f"}', '013516', 'quanjia', 'zh-tw', 1000),
(7684, 6089, '5907-6089', 1, '台南康樂三店', '{"number":"018848","shop":"\\u53f0\\u5357\\u5eb7\\u6a02\\u4e09\\u5e97","phone":"062224451","address":"\\u5e9c\\u524d\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '018848', 'quanjia', 'zh-tw', 1000),
(7685, 6089, '5907-6089', 1, '台南美環店', '{"number":"017588","shop":"\\u53f0\\u5357\\u7f8e\\u74b0\\u5e97","phone":"062989962","address":"\\u5e9c\\u524d\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff17\\u865f"}', '017588', 'quanjia', 'zh-tw', 1000),
(7686, 6089, '5907-6089', 1, '台南和善店', '{"number":"017086","shop":"\\u53f0\\u5357\\u548c\\u5584\\u5e97","phone":"062802166","address":"\\u548c\\u5584\\u8857\\uff16\\uff19\\u865f\\uff11\\uff26"}', '017086', 'quanjia', 'zh-tw', 1000),
(7687, 6089, '5907-6089', 1, '台南美美店', '{"number":"017789","shop":"\\u53f0\\u5357\\u7f8e\\u7f8e\\u5e97","phone":"063587209","address":"\\u6e56\\u7f8e\\u8857\\uff17\\uff12\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017789', 'quanjia', 'zh-tw', 1000),
(7688, 6089, '5907-6089', 1, '台南康樂一店', '{"number":"015381","shop":"\\u53f0\\u5357\\u5eb7\\u6a02\\u4e00\\u5e97","phone":"062255075","address":"\\u5eb7\\u6a02\\u8857\\uff11\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '015381', 'quanjia', 'zh-tw', 1000),
(7689, 6089, '5907-6089', 1, '台南康樂二店', '{"number":"011605","shop":"\\u53f0\\u5357\\u5eb7\\u6a02\\u4e8c\\u5e97","phone":"062213463","address":"\\u5eb7\\u6a02\\u8857\\uff11\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '011605', 'quanjia', 'zh-tw', 1000),
(7690, 6089, '5907-6089', 1, '台南赤崁店', '{"number":"012778","shop":"\\u53f0\\u5357\\u8d64\\u5d01\\u5e97","phone":"062216207","address":"\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\uff17\\u865f\\u4e00\\u6a13"}', '012778', 'quanjia', 'zh-tw', 1000),
(7691, 6089, '5907-6089', 1, '台南大學店', '{"number":"016434","shop":"\\u53f0\\u5357\\u5927\\u5b78\\u5e97","phone":"062142350","address":"\\u4e94\\u5983\\u8857\\uff11\\uff19\\uff10\\u865f\\u5168\\u68df"}', '016434', 'quanjia', 'zh-tw', 1000),
(7692, 6089, '5907-6089', 1, '台南五妃店', '{"number":"015195","shop":"\\u53f0\\u5357\\u4e94\\u5983\\u5e97","phone":"062142397","address":"\\u4e94\\u5983\\u8857\\uff12\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '015195', 'quanjia', 'zh-tw', 1000),
(7693, 6089, '5907-6089', 1, '台南勝興店', '{"number":"013966","shop":"\\u53f0\\u5357\\u52dd\\u8208\\u5e97","phone":"063582106","address":"\\u6b66\\u8056\\u8def\\uff11\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '013966', 'quanjia', 'zh-tw', 1000),
(7694, 6089, '5907-6089', 1, '台南三越店', '{"number":"018765","shop":"\\u53f0\\u5357\\u4e09\\u8d8a\\u5e97","phone":"062223185","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff16\\uff12\\u865f\\uff22\\uff12\\uff26"}', '018765', 'quanjia', 'zh-tw', 1000),
(7695, 6089, '5907-6089', 1, '台南前站店', '{"number":"018123","shop":"\\u53f0\\u5357\\u524d\\u7ad9\\u5e97","phone":"062225096","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff10\\uff17\\u865f\\uff11\\uff0b\\uff12\\u6a13\\uff08\\u5982\\u9644\\u5716"}', '018123', 'quanjia', 'zh-tw', 1000),
(7696, 6089, '5907-6089', 1, '台南忠義店', '{"number":"015019","shop":"\\u53f0\\u5357\\u5fe0\\u7fa9\\u5e97","phone":"062143579","address":"\\u5fe0\\u7fa9\\u8def\\u4e00\\u6bb5\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '015019', 'quanjia', 'zh-tw', 1000),
(7697, 6090, '5908-6090', 1, '台中北屯店', '{"number":"017033","shop":"\\u53f0\\u4e2d\\u5317\\u5c6f\\u5e97","phone":"0422332903","address":"\\u5317\\u5c6f\\u8def\\uff14\\uff15\\u865f"}', '017033', 'quanjia', 'zh-tw', 1000),
(7698, 6090, '5908-6090', 1, '台中館東店', '{"number":"015240","shop":"\\u53f0\\u4e2d\\u9928\\u6771\\u5e97","phone":"0423272118","address":"\\u535a\\u9928\\u6771\\u8857\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '015240', 'quanjia', 'zh-tw', 1000),
(7699, 6090, '5908-6090', 1, '台中嘉勝店', '{"number":"016779","shop":"\\u53f0\\u4e2d\\u5609\\u52dd\\u5e97","phone":"0422069198","address":"\\u5927\\u5fb7\\u8857\\uff14\\uff17\\u865f\\u58f9\\u6a13"}', '016779', 'quanjia', 'zh-tw', 1000),
(7700, 6090, '5908-6090', 1, '台中大功店', '{"number":"017318","shop":"\\u53f0\\u4e2d\\u5927\\u529f\\u5e97","phone":"0422064420","address":"\\u5927\\u6e56\\u91cc\\u516c\\u5712\\u8def\\uff11\\uff14\\uff16\\u865f\\u4e00\\u6a13"}', '017318', 'quanjia', 'zh-tw', 1000),
(7701, 6090, '5908-6090', 1, '台中東成店', '{"number":"017736","shop":"\\u53f0\\u4e2d\\u6771\\u6210\\u5e97","phone":"0422345768","address":"\\u6771\\u6210\\u8def\\uff12\\uff10\\uff0c\\uff12\\uff12\\u865f\\uff11\\u865f"}', '017736', 'quanjia', 'zh-tw', 1000),
(7702, 6090, '5908-6090', 1, '台中上發店', '{"number":"016236","shop":"\\u53f0\\u4e2d\\u4e0a\\u767c\\u5e97","phone":"0422914739","address":"\\u6f22\\u53e3\\u8def\\u4e09\\u6bb5\\uff18\\uff18\\u865f"}', '016236', 'quanjia', 'zh-tw', 1000),
(7703, 6090, '5908-6090', 1, '台中漢強店', '{"number":"018425","shop":"\\u53f0\\u4e2d\\u6f22\\u5f37\\u5e97","phone":"0422372241","address":"\\u6f22\\u53e3\\u8def\\u56db\\u6bb5\\uff12\\uff18\\uff14\\u4e4b\\uff11\\u865f"}', '018425', 'quanjia', 'zh-tw', 1000),
(7704, 6090, '5908-6090', 1, '台中漢文店', '{"number":"015875","shop":"\\u53f0\\u4e2d\\u6f22\\u6587\\u5e97","phone":"0422928648","address":"\\u6f22\\u53e3\\u8def\\u56db\\u6bb5\\uff15\\uff17\\u865f"}', '015875', 'quanjia', 'zh-tw', 1000),
(7705, 6090, '5908-6090', 1, '台中健興店', '{"number":"017839","shop":"\\u53f0\\u4e2d\\u5065\\u8208\\u5e97","phone":"0422085683","address":"\\u5065\\u884c\\u91cc\\u5065\\u884c\\u8def\\uff17\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '017839', 'quanjia', 'zh-tw', 1000),
(7706, 6090, '5908-6090', 1, '台中永興店', '{"number":"012696","shop":"\\u53f0\\u4e2d\\u6c38\\u8208\\u5e97","phone":"0422360356","address":"\\u5065\\u884c\\u8def\\uff13\\uff17\\uff15\\u865f\\uff11\\uff26"}', '012696', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(7707, 6090, '5908-6090', 1, '台中新大衛店', '{"number":"017263","shop":"\\u53f0\\u4e2d\\u65b0\\u5927\\u885b\\u5e97","phone":"0422025829","address":"\\u9032\\u5316\\u5317\\u8def\\uff13\\uff16\\uff15\\u865f\\uff11\\u6a13\\u4e4b\\uff12"}', '017263', 'quanjia', 'zh-tw', 1000),
(7708, 6090, '5908-6090', 1, '台中漢口店', '{"number":"016607","shop":"\\u53f0\\u4e2d\\u6f22\\u53e3\\u5e97","phone":"0422922475","address":"\\u8cf4\\u539d\\u91cc\\u6f22\\u53e3\\u8def\\u56db\\u6bb5\\uff15\\uff16\\uff0c\\uff15\\uff18\\uff0c\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '016607', 'quanjia', 'zh-tw', 1000),
(7709, 6090, '5908-6090', 1, '台中嘉農店', '{"number":"015977","shop":"\\u53f0\\u4e2d\\u5609\\u8fb2\\u5e97","phone":"0422937917","address":"\\u8cf4\\u65fa\\u91cc\\u5317\\u5e73\\u8def\\u4e8c\\u6bb5\\uff18\\u865f"}', '015977', 'quanjia', 'zh-tw', 1000),
(7710, 6090, '5908-6090', 1, '台中新東義店', '{"number":"014842","shop":"\\u53f0\\u4e2d\\u65b0\\u6771\\u7fa9\\u5e97","phone":"0422913297","address":"\\u8cf4\\u65fa\\u91cc\\u9752\\u5cf6\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\u865f"}', '014842', 'quanjia', 'zh-tw', 1000),
(7711, 6090, '5908-6090', 1, '台中梅亭東店', '{"number":"014871","shop":"\\u53f0\\u4e2d\\u6885\\u4ead\\u6771\\u5e97","phone":"0422372543","address":"\\u6885\\u4ead\\u6771\\u8857\\uff16\\uff12\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '014871', 'quanjia', 'zh-tw', 1000),
(7712, 6090, '5908-6090', 1, '台中金美德店', '{"number":"016588","shop":"\\u53f0\\u4e2d\\u91d1\\u7f8e\\u5fb7\\u5e97","phone":"0422070089","address":"\\u7f8e\\u5fb7\\u8857\\uff11\\uff18\\uff14\\u865f"}', '016588', 'quanjia', 'zh-tw', 1000),
(7713, 6090, '5908-6090', 1, '台中太陽店', '{"number":"018680","shop":"\\u53f0\\u4e2d\\u592a\\u967d\\u5e97","phone":"0422022098","address":"\\u660e\\u5fb7\\u91cc\\u592a\\u539f\\u8def\\u4e00\\u6bb5\\uff14\\uff15\\uff10\\uff0d\\uff11\\u865f"}', '018680', 'quanjia', 'zh-tw', 1000),
(7714, 6090, '5908-6090', 1, '台中學友店', '{"number":"017631","shop":"\\u53f0\\u4e2d\\u5b78\\u53cb\\u5e97","phone":"0422252991","address":"\\u4e09\\u6c11\\u8def\\u4e09\\u6bb5\\uff12\\uff11\\uff15\\u865f"}', '017631', 'quanjia', 'zh-tw', 1000),
(7715, 6090, '5908-6090', 1, '台中台體大店', '{"number":"018813","shop":"\\u53f0\\u4e2d\\u53f0\\u9ad4\\u5927\\u5e97","phone":"0422292290","address":"\\u96d9\\u5341\\u8def\\uff11\\u6bb5\\uff11\\uff16\\u865f"}', '018813', 'quanjia', 'zh-tw', 1000),
(7716, 6090, '5908-6090', 1, '台中遠大店', '{"number":"017686","shop":"\\u53f0\\u4e2d\\u9060\\u5927\\u5e97","phone":"0422383593","address":"\\u7d8f\\u9060\\u8def\\u4e00\\u6bb5\\uff18\\u865f\\uff11\\u6a13"}', '017686', 'quanjia', 'zh-tw', 1000),
(7717, 6090, '5908-6090', 1, '台中水莊店', '{"number":"015253","shop":"\\u53f0\\u4e2d\\u6c34\\u838a\\u5e97","phone":"0422065321","address":"\\u6587\\u5316\\u8857\\uff11\\uff13\\u3001\\uff11\\uff15\\u3001\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '015253', 'quanjia', 'zh-tw', 1000),
(7718, 6090, '5908-6090', 1, '台中五權一店', '{"number":"017941","shop":"\\u53f0\\u4e2d\\u4e94\\u6b0a\\u4e00\\u5e97","phone":"0422060109","address":"\\u4e94\\u6b0a\\u8def\\uff13\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '017941', 'quanjia', 'zh-tw', 1000),
(7719, 6090, '5908-6090', 1, '台中五億店', '{"number":"014398","shop":"\\u53f0\\u4e2d\\u4e94\\u5104\\u5e97","phone":"0422077256","address":"\\u4e94\\u7fa9\\u8857\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '014398', 'quanjia', 'zh-tw', 1000),
(7720, 6090, '5908-6090', 1, '台中福多店', '{"number":"014966","shop":"\\u53f0\\u4e2d\\u798f\\u591a\\u5e97","phone":"0422929761","address":"\\u965c\\u897f\\u8def\\uff16\\uff13\\u865f"}', '014966', 'quanjia', 'zh-tw', 1000),
(7721, 6090, '5908-6090', 1, '台中一中街店', '{"number":"015512","shop":"\\u53f0\\u4e2d\\u4e00\\u4e2d\\u8857\\u5e97","phone":"0422257909","address":"\\u4e00\\u4e2d\\u8857\\uff11\\uff12\\uff19\\u865f"}', '015512', 'quanjia', 'zh-tw', 1000),
(7722, 6090, '5908-6090', 1, '台中一中一店', '{"number":"017302","shop":"\\u53f0\\u4e2d\\u4e00\\u4e2d\\u4e00\\u5e97","phone":"0422250678","address":"\\u4e00\\u4e2d\\u8857\\uff11\\u865f\\uff11\\u6a13\\uff0e\\u5730\\u4e0b\\uff11\\u6a13"}', '017302', 'quanjia', 'zh-tw', 1000),
(7723, 6090, '5908-6090', 1, '台中一中讚店', '{"number":"016252","shop":"\\u53f0\\u4e2d\\u4e00\\u4e2d\\u8b9a\\u5e97","phone":"0422250622","address":"\\u4e00\\u4e2d\\u8857\\uff12\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '016252', 'quanjia', 'zh-tw', 1000),
(7724, 6090, '5908-6090', 1, '台中喜樂店', '{"number":"017285","shop":"\\u53f0\\u4e2d\\u559c\\u6a02\\u5e97","phone":"0422070206","address":"\\u82f1\\u624d\\u8def\\uff12\\uff16\\uff16\\u865f"}', '017285', 'quanjia', 'zh-tw', 1000),
(7725, 6090, '5908-6090', 1, '台中育德店', '{"number":"016391","shop":"\\u53f0\\u4e2d\\u80b2\\u5fb7\\u5e97","phone":"0422039666","address":"\\u80b2\\u5fb7\\u8def\\uff11\\uff10\\uff18\\u865f\\uff0c\\u7be4\\u884c\\u8def\\uff13\\uff16\\uff19\\u865f\\uff0c\\uff13\\uff17\\uff11\\u865f"}', '016391', 'quanjia', 'zh-tw', 1000),
(7726, 6090, '5908-6090', 1, '台中微笑店', '{"number":"016418","shop":"\\u53f0\\u4e2d\\u5fae\\u7b11\\u5e97","phone":"0422330806","address":"\\u80b2\\u6a02\\u8857\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '016418', 'quanjia', 'zh-tw', 1000),
(7727, 6090, '5908-6090', 1, '台中中清一店', '{"number":"018616","shop":"\\u53f0\\u4e2d\\u4e2d\\u6e05\\u4e00\\u5e97","phone":"0422020301","address":"\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\uff13\\uff17\\uff10\\u865f"}', '018616', 'quanjia', 'zh-tw', 1000),
(7728, 6090, '5908-6090', 1, '台中高雅店', '{"number":"018396","shop":"\\u53f0\\u4e2d\\u9ad8\\u96c5\\u5e97","phone":"0422916368","address":"\\u4e2d\\u6e05\\u8def\\u4e00\\u6bb5\\uff17\\uff12\\uff10\\u865f\\u3001\\uff17\\uff12\\uff12\\u865f"}', '018396', 'quanjia', 'zh-tw', 1000),
(7729, 6090, '5908-6090', 1, '台中一中漾店', '{"number":"016599","shop":"\\u53f0\\u4e2d\\u4e00\\u4e2d\\u6f3e\\u5e97","phone":"0422292029","address":"\\u5c0a\\u8ce2\\u8857\\uff12\\uff12\\uff0d\\uff13\\u865f\\uff11\\u6a13\\u3001\\u5730\\u4e0b\\uff11\\u6a13"}', '016599', 'quanjia', 'zh-tw', 1000),
(7730, 6091, '5908-6091', 1, '台中大向店', '{"number":"016647","shop":"\\u53f0\\u4e2d\\u5927\\u5411\\u5e97","phone":"0422318703","address":"\\u5317\\u5c6f\\u8def\\uff12\\uff11\\uff10\\u4e4b\\uff13\\u865f\\uff0c\\uff12\\uff11\\uff10\\u4e4b\\uff15\\u865f\\uff11\\u6a13"}', '016647', 'quanjia', 'zh-tw', 1000),
(7731, 6091, '5908-6091', 1, '台中北新店', '{"number":"017685","shop":"\\u53f0\\u4e2d\\u5317\\u65b0\\u5e97","phone":"0422434763","address":"\\u5317\\u5c6f\\u8def\\uff12\\uff18\\uff18\\u865f\\uff0c\\uff12\\uff18\\uff18\\u4e4b\\uff11\\u865f"}', '017685', 'quanjia', 'zh-tw', 1000),
(7732, 6091, '5908-6091', 1, '台中金頂店', '{"number":"013660","shop":"\\u53f0\\u4e2d\\u91d1\\u9802\\u5e97","phone":"0424392609","address":"\\u90e8\\u5b50\\u8def\\uff13\\uff15\\uff11\\u3001\\uff13\\uff15\\uff13\\u865f"}', '013660', 'quanjia', 'zh-tw', 1000),
(7733, 6091, '5908-6091', 1, '台中昌盛店', '{"number":"015409","shop":"\\u53f0\\u4e2d\\u660c\\u76db\\u5e97","phone":"0422479842","address":"\\u5d07\\u5fb7\\u4e8c\\u8def\\u4e00\\u6bb5\\uff12\\uff15\\uff17\\u865f\\u3001\\uff12\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '015409', 'quanjia', 'zh-tw', 1000),
(7734, 6091, '5908-6091', 1, '台中崇大店', '{"number":"018496","shop":"\\u53f0\\u4e2d\\u5d07\\u5927\\u5e97","phone":"0422477685","address":"\\u5d07\\u5fb7\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff16\\u865f"}', '018496', 'quanjia', 'zh-tw', 1000),
(7735, 6091, '5908-6091', 1, '台中崇德店', '{"number":"016559","shop":"\\u53f0\\u4e2d\\u5d07\\u5fb7\\u5e97","phone":"0422429360","address":"\\u5d07\\u5fb7\\u8def\\u4e8c\\u6bb5\\uff13\\uff15\\uff11\\u865f"}', '016559', 'quanjia', 'zh-tw', 1000),
(7736, 6091, '5908-6091', 1, '台中興安店', '{"number":"015832","shop":"\\u53f0\\u4e2d\\u8208\\u5b89\\u5e97","phone":"0422460995","address":"\\u5927\\u9023\\u8def\\u4e09\\u6bb5\\uff11\\uff13\\uff17\\u865f\\uff11\\uff26"}', '015832', 'quanjia', 'zh-tw', 1000),
(7737, 6091, '5908-6091', 1, '台中東光店', '{"number":"016100","shop":"\\u53f0\\u4e2d\\u6771\\u5149\\u5e97","phone":"0424360567","address":"\\u6771\\u5149\\u8def\\uff18\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '016100', 'quanjia', 'zh-tw', 1000),
(7738, 6091, '5908-6091', 1, '台中大坑店', '{"number":"018046","shop":"\\u53f0\\u4e2d\\u5927\\u5751\\u5e97","phone":"0424362022","address":"\\u6771\\u5c71\\u8def\\uff11\\u6bb5\\uff13\\uff18\\uff10\\u4e4b\\uff12\\uff13\\u865f"}', '018046', 'quanjia', 'zh-tw', 1000),
(7739, 6091, '5908-6091', 1, '台中培鶯店', '{"number":"017838","shop":"\\u53f0\\u4e2d\\u57f9\\u9daf\\u5e97","phone":"0422392572","address":"\\u6771\\u5c71\\u8def\\u4e8c\\u6bb5\\uff15\\uff11\\uff0d\\uff11\\uff11\\u865f"}', '017838', 'quanjia', 'zh-tw', 1000),
(7740, 6091, '5908-6091', 1, '台中水景店', '{"number":"015468","shop":"\\u53f0\\u4e2d\\u6c34\\u666f\\u5e97","phone":"0424362774","address":"\\u6771\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff19\\uff16\\u4e4b\\uff11\\u865f"}', '015468', 'quanjia', 'zh-tw', 1000),
(7741, 6091, '5908-6091', 1, '台中敦化店', '{"number":"013260","shop":"\\u53f0\\u4e2d\\u6566\\u5316\\u5e97","phone":"0422920301","address":"\\u6566\\u5316\\u8def\\u4e00\\u6bb5\\uff15\\uff17\\uff13\\u865f"}', '013260', 'quanjia', 'zh-tw', 1000),
(7742, 6091, '5908-6091', 1, '台中新豐樂店', '{"number":"016980","shop":"\\u53f0\\u4e2d\\u65b0\\u8c50\\u6a02\\u5e97","phone":"0424225917","address":"\\u8c50\\u6a02\\u8def\\uff17\\uff0d\\uff15\\u865f"}', '016980', 'quanjia', 'zh-tw', 1000),
(7743, 6091, '5908-6091', 1, '台中和順店', '{"number":"014968","shop":"\\u53f0\\u4e2d\\u548c\\u9806\\u5e97","phone":"0424391336","address":"\\u548c\\u9806\\u8def\\uff14\\uff10\\uff10\\u865f"}', '014968', 'quanjia', 'zh-tw', 1000),
(7744, 6091, '5908-6091', 1, '台中金河店', '{"number":"013212","shop":"\\u53f0\\u4e2d\\u91d1\\u6cb3\\u5e97","phone":"0422345716","address":"\\u6cb3\\u5317\\u8def\\u4e8c\\u6bb5\\uff19\\uff18\\u865f"}', '013212', 'quanjia', 'zh-tw', 1000),
(7745, 6091, '5908-6091', 1, '台中花見店', '{"number":"014823","shop":"\\u53f0\\u4e2d\\u82b1\\u898b\\u5e97","phone":"0424361670","address":"\\u5efa\\u548c\\u8def\\u4e00\\u6bb5\\uff14\\uff12\\uff10\\u865f"}', '014823', 'quanjia', 'zh-tw', 1000),
(7746, 6091, '5908-6091', 1, '台中情人店', '{"number":"018128","shop":"\\u53f0\\u4e2d\\u60c5\\u4eba\\u5e97","phone":"0424365681","address":"\\u666f\\u8ce2\\u8def\\uff11\\uff10\\uff16\\u865f\\uff11\\u3001\\uff12\\uff26"}', '018128', 'quanjia', 'zh-tw', 1000),
(7747, 6091, '5908-6091', 1, '台中英皇店', '{"number":"017979","shop":"\\u53f0\\u4e2d\\u82f1\\u7687\\u5e97","phone":"0424361564","address":"\\u8ecd\\u798f\\u5341\\u516d\\u8def\\uff12\\uff17\\uff17\\u865f"}', '017979', 'quanjia', 'zh-tw', 1000),
(7748, 6091, '5908-6091', 1, '台中軍功店', '{"number":"017837","shop":"\\u53f0\\u4e2d\\u8ecd\\u529f\\u5e97","phone":"0424374670","address":"\\u8ecd\\u529f\\u8def\\u4e00\\u6bb5\\uff14\\uff19\\uff17\\u865f\\u3001\\uff14\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '017837', 'quanjia', 'zh-tw', 1000),
(7749, 6091, '5908-6091', 1, '台中遼寧店', '{"number":"015993","shop":"\\u53f0\\u4e2d\\u907c\\u5be7\\u5e97","phone":"0422471695","address":"\\u907c\\u5be7\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '015993', 'quanjia', 'zh-tw', 1000),
(7750, 6091, '5908-6091', 1, '台中山陽店', '{"number":"015320","shop":"\\u53f0\\u4e2d\\u5c71\\u967d\\u5e97","phone":"0422910486","address":"\\u5e73\\u548c\\u91cc\\u5c71\\u897f\\u8def\\u4e8c\\u6bb5\\uff12\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '015320', 'quanjia', 'zh-tw', 1000),
(7751, 6091, '5908-6091', 1, '台中熱河店', '{"number":"012279","shop":"\\u53f0\\u4e2d\\u71b1\\u6cb3\\u5e97","phone":"0422438041","address":"\\u5e73\\u5fc3\\u91cc\\u71b1\\u6cb3\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff14\\u865f\\u3001\\uff11\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '012279', 'quanjia', 'zh-tw', 1000),
(7752, 6091, '5908-6091', 1, '台中樂樂店', '{"number":"018282","shop":"\\u53f0\\u4e2d\\u6a02\\u6a02\\u5e97","phone":"0422365516","address":"\\u71b1\\u6cb3\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff19\\u865f"}', '018282', 'quanjia', 'zh-tw', 1000),
(7753, 6091, '5908-6091', 1, '台中新崇河店', '{"number":"017509","shop":"\\u53f0\\u4e2d\\u65b0\\u5d07\\u6cb3\\u5e97","phone":"0422413302","address":"\\u71b1\\u6cb3\\u8def\\u4e09\\u6bb5\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '017509', 'quanjia', 'zh-tw', 1000),
(7754, 6091, '5908-6091', 1, '台中仁美店', '{"number":"015319","shop":"\\u53f0\\u4e2d\\u4ec1\\u7f8e\\u5e97","phone":"0424226445","address":"\\u4ec1\\u7f8e\\u91cc\\u660c\\u5e73\\u6771\\u4e8c\\u8def\\uff11\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '015319', 'quanjia', 'zh-tw', 1000),
(7755, 6091, '5908-6091', 1, '台中四平店', '{"number":"013460","shop":"\\u53f0\\u4e2d\\u56db\\u5e73\\u5e97","phone":"0422965197","address":"\\u56db\\u5e73\\u8def\\uff13\\uff15\\u4e4b\\uff16\\u865f"}', '013460', 'quanjia', 'zh-tw', 1000),
(7756, 6091, '5908-6091', 1, '台中松茂店', '{"number":"018026","shop":"\\u53f0\\u4e2d\\u677e\\u8302\\u5e97","phone":"0422473340","address":"\\u677e\\u5f37\\u91cc\\u8208\\u5b89\\u8def\\u4e8c\\u6bb5\\uff14\\uff16\\uff11\\u5df7\\uff12\\u865f\\uff14\\uff16\\uff13\\u865f\\u4e00"}', '018026', 'quanjia', 'zh-tw', 1000),
(7757, 6091, '5908-6091', 1, '台中真義店', '{"number":"013790","shop":"\\u53f0\\u4e2d\\u771f\\u7fa9\\u5e97","phone":"0422479532","address":"\\u677e\\u7fa9\\u8857\\uff11\\uff16\\uff10\\u865f\\u3001\\uff11\\uff16\\uff12\\u865f"}', '013790', 'quanjia', 'zh-tw', 1000),
(7758, 6091, '5908-6091', 1, '台中豐源店', '{"number":"014780","shop":"\\u53f0\\u4e2d\\u8c50\\u6e90\\u5e97","phone":"0422410563","address":"\\u677e\\u7af9\\u5317\\u8def\\uff11\\uff15\\uff10\\u865f"}', '014780', 'quanjia', 'zh-tw', 1000),
(7759, 6091, '5908-6091', 1, '台中金強店', '{"number":"017167","shop":"\\u53f0\\u4e2d\\u91d1\\u5f37\\u5e97","phone":"0422474880","address":"\\u677e\\u7af9\\u8def\\u4e8c\\u6bb5\\uff13\\uff16\\uff16\\uff0d\\uff11\\u865f"}', '017167', 'quanjia', 'zh-tw', 1000),
(7760, 6091, '5908-6091', 1, '台中太順店', '{"number":"017073","shop":"\\u53f0\\u4e2d\\u592a\\u9806\\u5e97","phone":"0424361134","address":"\\u592a\\u9806\\u8def\\uff11\\uff10\\uff13\\u865f"}', '017073', 'quanjia', 'zh-tw', 1000),
(7761, 6091, '5908-6091', 1, '台中新太原店', '{"number":"014965","shop":"\\u53f0\\u4e2d\\u65b0\\u592a\\u539f\\u5e97","phone":"0422331756","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\uff11\\uff15\\uff12\\u865f"}', '014965', 'quanjia', 'zh-tw', 1000),
(7762, 6091, '5908-6091', 1, '台中金原店', '{"number":"016878","shop":"\\u53f0\\u4e2d\\u91d1\\u539f\\u5e97","phone":"0422383255","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\uff12\\uff13\\uff11\\u865f"}', '016878', 'quanjia', 'zh-tw', 1000),
(7763, 6091, '5908-6091', 1, '台中睿景店', '{"number":"013911","shop":"\\u53f0\\u4e2d\\u777f\\u666f\\u5e97","phone":"0424361805","address":"\\u592a\\u539f\\u8def\\u4e09\\u6bb5\\uff18\\uff14\\uff19\\u865f"}', '013911', 'quanjia', 'zh-tw', 1000),
(7764, 6091, '5908-6091', 1, '台中偉如店', '{"number":"018443","shop":"\\u53f0\\u4e2d\\u5049\\u5982\\u5e97","phone":"0422370537","address":"\\u5929\\u6d25\\u8def\\uff13\\u6bb5\\uff17\\uff12\\u865f"}', '018443', 'quanjia', 'zh-tw', 1000),
(7765, 6091, '5908-6091', 1, '台中時尚店', '{"number":"018122","shop":"\\u53f0\\u4e2d\\u6642\\u5c1a\\u5e97","phone":"0422920168","address":"\\u6587\\u5fc3\\u8def\\uff13\\u6bb5\\uff19\\uff18\\uff13\\u865f"}', '018122', 'quanjia', 'zh-tw', 1000),
(7766, 6091, '5908-6091', 1, '台中梅川東店', '{"number":"016947","shop":"\\u53f0\\u4e2d\\u6885\\u5ddd\\u6771\\u5e97","phone":"0422360977","address":"\\u6587\\u5fc3\\u8def\\uff14\\u6bb5\\uff12\\uff16\\uff18\\u865f"}', '016947', 'quanjia', 'zh-tw', 1000),
(7767, 6091, '5908-6091', 1, '台中鼎安店', '{"number":"017669","shop":"\\u53f0\\u4e2d\\u9f0e\\u5b89\\u5e97","phone":"0422412451","address":"\\u8208\\u5b89\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff13\\u865f"}', '017669', 'quanjia', 'zh-tw', 1000),
(7768, 6091, '5908-6091', 1, '台中新大昇店', '{"number":"016900","shop":"\\u53f0\\u4e2d\\u65b0\\u5927\\u6607\\u5e97","phone":"0424260962","address":"\\u4e2d\\u6e05\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff15\\uff10\\u5df7\\uff11\\uff17\\uff16\\u5f04\\uff13\\uff11\\u865f"}', '016900', 'quanjia', 'zh-tw', 1000),
(7769, 6091, '5908-6091', 1, '台中中泰店', '{"number":"015766","shop":"\\u53f0\\u4e2d\\u4e2d\\u6cf0\\u5e97","phone":"0422956901","address":"\\u4e2d\\u6e05\\u8def\\u4e8c\\u6bb5\\uff14\\uff10\\uff19\\u865f\\u3001\\uff14\\uff11\\uff11\\u865f"}', '015766', 'quanjia', 'zh-tw', 1000),
(7770, 6092, '5908-6092', 1, '大安海墘店', '{"number":"017733","shop":"\\u5927\\u5b89\\u6d77\\u5898\\u5e97","phone":"0426800086","address":"\\u5927\\u5b89\\u6e2f\\u8def\\uff11\\uff10\\uff12\\uff11\\u865f"}', '017733', 'quanjia', 'zh-tw', 1000),
(7771, 6092, '5908-6092', 1, '大安全盈店', '{"number":"013912","shop":"\\u5927\\u5b89\\u5168\\u76c8\\u5e97","phone":"0426714756","address":"\\u4e2d\\u5c71\\u5357\\u8def\\uff13\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '013912', 'quanjia', 'zh-tw', 1000),
(7772, 6093, '5908-6093', 1, '大肚高山店', '{"number":"013123","shop":"\\u5927\\u809a\\u9ad8\\u5c71\\u5e97","phone":"0426993268","address":"\\u5927\\u5fb7\\u4e09\\u8857\\uff13\\uff18\\u865f"}', '013123', 'quanjia', 'zh-tw', 1000),
(7773, 6093, '5908-6093', 1, '大肚新市鎮店', '{"number":"017413","shop":"\\u5927\\u809a\\u65b0\\u5e02\\u93ae\\u5e97","phone":"0426999622","address":"\\u5927\\u660e\\u4e09\\u8857\\uff11\\uff15\\uff12\\u865f"}', '017413', 'quanjia', 'zh-tw', 1000),
(7774, 6093, '5908-6093', 1, '大肚火車頭店', '{"number":"014726","shop":"\\u5927\\u809a\\u706b\\u8eca\\u982d\\u5e97","phone":"0426990401","address":"\\u6c99\\u7530\\u8def\\u4e8c\\u6bb5\\uff17\\uff17\\uff11\\u865f"}', '014726', 'quanjia', 'zh-tw', 1000),
(7775, 6093, '5908-6093', 1, '大肚王田店', '{"number":"016989","shop":"\\u5927\\u809a\\u738b\\u7530\\u5e97","phone":"0426934823","address":"\\u6c99\\u7530\\u8def\\u4e00\\u6bb5\\uff11\\uff14\\uff14\\uff0d\\uff11\\u865f"}', '016989', 'quanjia', 'zh-tw', 1000),
(7776, 6093, '5908-6093', 1, '大肚台蔗店', '{"number":"015103","shop":"\\u5927\\u809a\\u53f0\\u8517\\u5e97","phone":"0426912459","address":"\\u904a\\u5712\\u8def\\u4e8c\\u6bb5\\uff12\\u865f"}', '015103', 'quanjia', 'zh-tw', 1000),
(7777, 6093, '5908-6093', 1, '大肚瑞功店', '{"number":"014475","shop":"\\u5927\\u809a\\u745e\\u529f\\u5e97","phone":"0426918804","address":"\\u904a\\u5712\\u8def\\u4e00\\u6bb5\\uff16\\uff19\\uff0d\\uff11\\u865f"}', '014475', 'quanjia', 'zh-tw', 1000),
(7778, 6093, '5908-6093', 1, '大肚大洋店', '{"number":"016168","shop":"\\u5927\\u809a\\u5927\\u6d0b\\u5e97","phone":"0426911903","address":"\\u4e2d\\u6c99\\u8def\\uff11\\uff16\\uff14\\u5df7\\uff13\\u5f04\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '016168', 'quanjia', 'zh-tw', 1000),
(7779, 6094, '5908-6094', 1, '大甲車頭店', '{"number":"018381","shop":"\\u5927\\u7532\\u8eca\\u982d\\u5e97","phone":"0426760418","address":"\\u5927\\u7532\\u91cc\\u8523\\u516c\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '018381', 'quanjia', 'zh-tw', 1000),
(7780, 6094, '5908-6094', 1, '大甲甲讚店', '{"number":"018359","shop":"\\u5927\\u7532\\u7532\\u8b9a\\u5e97","phone":"0426803391","address":"\\u8523\\u516c\\u8def\\uff11\\uff17\\uff13\\u865f"}', '018359', 'quanjia', 'zh-tw', 1000),
(7781, 6094, '5908-6094', 1, '大甲甲中店', '{"number":"017508","shop":"\\u5927\\u7532\\u7532\\u4e2d\\u5e97","phone":"0426764822","address":"\\u6c34\\u6e90\\u8def\\uff11\\u865f"}', '017508', 'quanjia', 'zh-tw', 1000),
(7782, 6094, '5908-6094', 1, '大甲水源店', '{"number":"018380","shop":"\\u5927\\u7532\\u6c34\\u6e90\\u5e97","phone":"0426761668","address":"\\u6c34\\u6e90\\u8def\\uff14\\uff15\\uff10\\u865f"}', '018380', 'quanjia', 'zh-tw', 1000),
(7783, 6094, '5908-6094', 1, '大甲金雁店', '{"number":"016965","shop":"\\u5927\\u7532\\u91d1\\u96c1\\u5e97","phone":"0426803407","address":"\\u4fe1\\u7fa9\\u8def\\uff13\\uff10\\uff18\\u865f"}', '016965', 'quanjia', 'zh-tw', 1000),
(7784, 6094, '5908-6094', 1, '大甲鐵山店', '{"number":"018835","shop":"\\u5927\\u7532\\u9435\\u5c71\\u5e97","phone":"0426804208","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff14\\uff19\\u865f"}', '018835', 'quanjia', 'zh-tw', 1000),
(7785, 6094, '5908-6094', 1, '大甲台鐵店', '{"number":"018568","shop":"\\u5927\\u7532\\u53f0\\u9435\\u5e97","phone":"0426800369","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff18\\uff12\\uff18\\u865f"}', '018568', 'quanjia', 'zh-tw', 1000),
(7786, 6095, '5908-6095', 1, '大里愛心店', '{"number":"017471","shop":"\\u5927\\u91cc\\u611b\\u5fc3\\u5e97","phone":"0424067490","address":"\\u611b\\u5fc3\\u8def\\uff17\\uff15\\u865f"}', '017471', 'quanjia', 'zh-tw', 1000),
(7787, 6095, '5908-6095', 1, '大里大金店', '{"number":"018089","shop":"\\u5927\\u91cc\\u5927\\u91d1\\u5e97","phone":"0424963848","address":"\\u9577\\u6625\\u8def\\uff17\\uff18\\u5df7\\uff15\\uff10\\u865f"}', '018089', 'quanjia', 'zh-tw', 1000),
(7788, 6095, '5908-6095', 1, '大里成功店', '{"number":"017916","shop":"\\u5927\\u91cc\\u6210\\u529f\\u5e97","phone":"0424967027","address":"\\u6210\\u529f\\u8def\\uff15\\uff14\\uff17\\u865f"}', '017916', 'quanjia', 'zh-tw', 1000),
(7789, 6095, '5908-6095', 1, '大里新榮店', '{"number":"016975","shop":"\\u5927\\u91cc\\u65b0\\u69ae\\u5e97","phone":"0424830774","address":"\\u5927\\u91cc\\u8def\\uff16\\uff15\\u865f"}', '016975', 'quanjia', 'zh-tw', 1000),
(7790, 6095, '5908-6095', 1, '大里大明店', '{"number":"015242","shop":"\\u5927\\u91cc\\u5927\\u660e\\u5e97","phone":"0424870979","address":"\\u5927\\u660e\\u8def\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '015242', 'quanjia', 'zh-tw', 1000),
(7791, 6095, '5908-6095', 1, '大里新捷勝店', '{"number":"017536","shop":"\\u5927\\u91cc\\u65b0\\u6377\\u52dd\\u5e97","phone":"0424068605","address":"\\u5927\\u660e\\u8def\\uff15\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '017536', 'quanjia', 'zh-tw', 1000),
(7792, 6095, '5908-6095', 1, '大里東芳店', '{"number":"014110","shop":"\\u5927\\u91cc\\u6771\\u82b3\\u5e97","phone":"0424953985","address":"\\u6771\\u6e56\\u91cc\\u6771\\u5357\\u8def\\uff11\\uff14\\uff12\\u4e4b\\uff16\\u865f\\uff11\\u6a13"}', '014110', 'quanjia', 'zh-tw', 1000),
(7793, 6095, '5908-6095', 1, '大里工業店', '{"number":"018063","shop":"\\u5927\\u91cc\\u5de5\\u696d\\u5e97","phone":"0424918981","address":"\\u5de5\\u696d\\u8def\\uff19\\uff14\\u865f\\u3001\\uff19\\uff16\\u865f"}', '018063', 'quanjia', 'zh-tw', 1000),
(7794, 6095, '5908-6095', 1, '大里軟科店', '{"number":"018727","shop":"\\u5927\\u91cc\\u8edf\\u79d1\\u5e97","phone":"0424962900","address":"\\u516c\\u5712\\u8857\\uff14\\uff12\\uff13\\uff0d\\uff11\\u865f"}', '018727', 'quanjia', 'zh-tw', 1000),
(7795, 6095, '5908-6095', 1, '大里大功店', '{"number":"018533","shop":"\\u5927\\u91cc\\u5927\\u529f\\u5e97","phone":"0424821224","address":"\\u570b\\u5149\\u91cc\\u570b\\u5149\\u8def\\u4e8c\\u6bb5\\uff13\\uff18\\u865f\\u4e00\\u6a13"}', '018533', 'quanjia', 'zh-tw', 1000),
(7796, 6095, '5908-6095', 1, '大里河堤店', '{"number":"018178","shop":"\\u5927\\u91cc\\u6cb3\\u5824\\u5e97","phone":"0422751784","address":"\\u7acb\\u5fb7\\u91cc\\u7acb\\u4e2d\\u8857\\uff19\\u865f"}', '018178', 'quanjia', 'zh-tw', 1000),
(7797, 6095, '5908-6095', 1, '大里立新店', '{"number":"017465","shop":"\\u5927\\u91cc\\u7acb\\u65b0\\u5e97","phone":"0422754133","address":"\\u7acb\\u65b0\\u8857\\uff13\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '017465', 'quanjia', 'zh-tw', 1000),
(7798, 6095, '5908-6095', 1, '大里內新店', '{"number":"018465","shop":"\\u5927\\u91cc\\u5167\\u65b0\\u5e97","phone":"0424866921","address":"\\u5167\\u65b0\\u8857\\uff15\\uff14\\uff0c\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '018465', 'quanjia', 'zh-tw', 1000),
(7799, 6095, '5908-6095', 1, '大里金大發店', '{"number":"015325","shop":"\\u5927\\u91cc\\u91d1\\u5927\\u767c\\u5e97","phone":"0424914545","address":"\\u4ec1\\u5316\\u8def\\uff13\\uff14\\uff13\\uff0d\\uff11\\u865f"}', '015325', 'quanjia', 'zh-tw', 1000),
(7800, 6095, '5908-6095', 1, '大里新日新店', '{"number":"016482","shop":"\\u5927\\u91cc\\u65b0\\u65e5\\u65b0\\u5e97","phone":"0424833758","address":"\\u65e5\\u65b0\\u8def\\uff15\\uff18\\uff16\\u865f"}', '016482', 'quanjia', 'zh-tw', 1000),
(7801, 6095, '5908-6095', 1, '大里瑞城店', '{"number":"018626","shop":"\\u5927\\u91cc\\u745e\\u57ce\\u5e97","phone":"0424968665","address":"\\u745e\\u57ce\\u4e00\\u8857\\uff12\\u865f\\u3001\\uff12\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018626', 'quanjia', 'zh-tw', 1000),
(7802, 6095, '5908-6095', 1, '大里善化店', '{"number":"018627","shop":"\\u5927\\u91cc\\u5584\\u5316\\u5e97","phone":"0424918213","address":"\\u5584\\u5316\\u8def\\uff11\\uff14\\uff16\\u865f"}', '018627', 'quanjia', 'zh-tw', 1000),
(7803, 6095, '5908-6095', 1, '大里爽文店', '{"number":"015105","shop":"\\u5927\\u91cc\\u723d\\u6587\\u5e97","phone":"0424069756","address":"\\u723d\\u6587\\u8def\\uff18\\uff17\\uff10\\uff0d\\uff11\\u865f"}', '015105', 'quanjia', 'zh-tw', 1000),
(7804, 6095, '5908-6095', 1, '大里好美店', '{"number":"016253","shop":"\\u5927\\u91cc\\u597d\\u7f8e\\u5e97","phone":"0424962146","address":"\\u5857\\u57ce\\u8def\\uff12\\uff13\\uff10\\u5df7\\uff17\\uff15\\u865f\\u53ca\\uff17\\uff15\\u865f\\u4e4b\\uff11"}', '016253', 'quanjia', 'zh-tw', 1000),
(7805, 6095, '5908-6095', 1, '大里新城店', '{"number":"017351","shop":"\\u5927\\u91cc\\u65b0\\u57ce\\u5e97","phone":"0424935172","address":"\\u5857\\u57ce\\u8def\\uff12\\uff19\\uff11\\u865f"}', '017351', 'quanjia', 'zh-tw', 1000),
(7806, 6095, '5908-6095', 1, '大里金城店', '{"number":"017321","shop":"\\u5927\\u91cc\\u91d1\\u57ce\\u5e97","phone":"0424935341","address":"\\u5857\\u57ce\\u8def\\uff15\\uff13\\uff17\\u865f"}', '017321', 'quanjia', 'zh-tw', 1000),
(7807, 6095, '5908-6095', 1, '大里再發店', '{"number":"016937","shop":"\\u5927\\u91cc\\u518d\\u767c\\u5e97","phone":"0424953738","address":"\\u5857\\u57ce\\u8def\\uff16\\uff18\\uff11\\u865f"}', '016937', 'quanjia', 'zh-tw', 1000),
(7808, 6095, '5908-6095', 1, '大里塗城店', '{"number":"017323","shop":"\\u5927\\u91cc\\u5857\\u57ce\\u5e97","phone":"0424930415","address":"\\u5857\\u57ce\\u8def\\uff17\\uff14\\uff12\\u865f\\u3001\\uff17\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '017323', 'quanjia', 'zh-tw', 1000),
(7809, 6095, '5908-6095', 1, '大里西湖店', '{"number":"016481","shop":"\\u5927\\u91cc\\u897f\\u6e56\\u5e97","phone":"0424962341","address":"\\u897f\\u6e56\\u8def\\uff13\\uff13\\uff17\\u865f"}', '016481', 'quanjia', 'zh-tw', 1000),
(7810, 6095, '5908-6095', 1, '大里勝美店', '{"number":"018466","shop":"\\u5927\\u91cc\\u52dd\\u7f8e\\u5e97","phone":"0424834377","address":"\\u897f\\u69ae\\u8def\\uff16\\uff18\\u865f"}', '018466', 'quanjia', 'zh-tw', 1000),
(7811, 6095, '5908-6095', 1, '大里新生店', '{"number":"017169","shop":"\\u5927\\u91cc\\u65b0\\u751f\\u5e97","phone":"0424853381","address":"\\u73fe\\u5cb1\\u8def\\uff11\\uff18\\uff17\\u865f\\uff0e\\uff11\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '017169', 'quanjia', 'zh-tw', 1000),
(7812, 6095, '5908-6095', 1, '大里新光店', '{"number":"015815","shop":"\\u5927\\u91cc\\u65b0\\u5149\\u5e97","phone":"0424831925","address":"\\u65b0\\u5149\\u8def\\uff19\\uff13\\u865f"}', '015815', 'quanjia', 'zh-tw', 1000),
(7813, 6095, '5908-6095', 1, '大里益民店', '{"number":"017170","shop":"\\u5927\\u91cc\\u76ca\\u6c11\\u5e97","phone":"0424813483","address":"\\u65b0\\u91cc\\u91cc\\u76ca\\u6c11\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff13\\u865f\\uff11\\u6a13"}', '017170', 'quanjia', 'zh-tw', 1000),
(7814, 6095, '5908-6095', 1, '大里立仁店', '{"number":"018238","shop":"\\u5927\\u91cc\\u7acb\\u4ec1\\u5e97","phone":"0422777327","address":"\\u65b0\\u4ec1\\u91cc\\u7acb\\u4ec1\\u8def\\uff18\\uff13\\u865f\\u3001\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '018238', 'quanjia', 'zh-tw', 1000),
(7815, 6095, '5908-6095', 1, '大里新興店', '{"number":"016990","shop":"\\u5927\\u91cc\\u65b0\\u8208\\u5e97","phone":"0424063642","address":"\\u65b0\\u8208\\u8def\\uff14\\uff17\\u865f"}', '016990', 'quanjia', 'zh-tw', 1000),
(7816, 6095, '5908-6095', 1, '大里東益店', '{"number":"018531","shop":"\\u5927\\u91cc\\u6771\\u76ca\\u5e97","phone":"0424820572","address":"\\u76ca\\u6c11\\u8def\\u4e8c\\u6bb5\\uff12\\uff18\\uff10\\u865f"}', '018531', 'quanjia', 'zh-tw', 1000),
(7817, 6095, '5908-6095', 1, '大里新大益店', '{"number":"016006","shop":"\\u5927\\u91cc\\u65b0\\u5927\\u76ca\\u5e97","phone":"0424832179","address":"\\u76ca\\u6c11\\u8def\\u4e8c\\u6bb5\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '016006', 'quanjia', 'zh-tw', 1000),
(7818, 6095, '5908-6095', 1, '大里永勝店', '{"number":"017013","shop":"\\u5927\\u91cc\\u6c38\\u52dd\\u5e97","phone":"0424061062","address":"\\u6c38\\u9686\\u91cc\\u5927\\u660e\\u8def\\uff14\\uff16\\uff19\\u865f\\u4e00\\u6a13"}', '017013', 'quanjia', 'zh-tw', 1000),
(7819, 6095, '5908-6095', 1, '大里順發店', '{"number":"010459","shop":"\\u5927\\u91cc\\u9806\\u767c\\u5e97","phone":"0424069634","address":"\\u6c38\\u9686\\u8def\\uff12\\uff10\\uff19\\u865f\\u58f9\\u6a13"}', '010459', 'quanjia', 'zh-tw', 1000),
(7820, 6095, '5908-6095', 1, '大里永興店', '{"number":"018156","shop":"\\u5927\\u91cc\\u6c38\\u8208\\u5e97","phone":"0424837840","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff16\\u865f"}', '018156', 'quanjia', 'zh-tw', 1000),
(7821, 6095, '5908-6095', 1, '大里大發店', '{"number":"017279","shop":"\\u5927\\u91cc\\u5927\\u767c\\u5e97","phone":"0424964207","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff19\\u4e4b\\uff15\\u865f\\uff11\\u6a13"}', '017279', 'quanjia', 'zh-tw', 1000),
(7822, 6096, '5908-6096', 1, '大雅雅環店', '{"number":"015277","shop":"\\u5927\\u96c5\\u96c5\\u74b0\\u5e97","phone":"0425663474","address":"\\u5927\\u96c5\\u6751\\uff12\\uff19\\u9130\\u96c5\\u74b0\\u8def\\u4e8c\\u6bb5\\uff11\\uff0c\\uff13\\u865f\\uff11\\u6a13"}', '015277', 'quanjia', 'zh-tw', 1000),
(7823, 6096, '5908-6096', 1, '大雅廣福店', '{"number":"017760","shop":"\\u5927\\u96c5\\u5ee3\\u798f\\u5e97","phone":"0425681946","address":"\\u6a6b\\u5c71\\u91cc\\u4e8c\\u9130\\u4e2d\\u5c71\\u8def\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '017760', 'quanjia', 'zh-tw', 1000),
(7824, 6096, '5908-6096', 1, '大雅永勝店', '{"number":"017199","shop":"\\u5927\\u96c5\\u6c38\\u52dd\\u5e97","phone":"0425602522","address":"\\u79d1\\u96c5\\u4e8c\\u8def\\uff18\\u865f\\uff11\\u6a13"}', '017199', 'quanjia', 'zh-tw', 1000),
(7825, 6096, '5908-6096', 1, '大雅中科店', '{"number":"012491","shop":"\\u5927\\u96c5\\u4e2d\\u79d1\\u5e97","phone":"0425604708","address":"\\u516d\\u5bf6\\u91cc\\u4e2d\\u6e05\\u8def\\uff14\\u6bb5\\uff15\\uff18\\uff11\\u865f"}', '012491', 'quanjia', 'zh-tw', 1000),
(7826, 6096, '5908-6096', 1, '大雅清泉店', '{"number":"016700","shop":"\\u5927\\u96c5\\u6e05\\u6cc9\\u5e97","phone":"0425652050","address":"\\u516d\\u5bf6\\u91cc\\u4e2d\\u6e05\\u8def\\u56db\\u6bb5\\uff19\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '016700', 'quanjia', 'zh-tw', 1000),
(7827, 6096, '5908-6096', 1, '大雅楓林店', '{"number":"013658","shop":"\\u5927\\u96c5\\u6953\\u6797\\u5e97","phone":"0425684539","address":"\\u6c11\\u751f\\u8def\\u4e09\\u6bb5\\uff14\\uff15\\uff18\\u865f"}', '013658', 'quanjia', 'zh-tw', 1000),
(7828, 6096, '5908-6096', 1, '大雅上楓店', '{"number":"014667","shop":"\\u5927\\u96c5\\u4e0a\\u6953\\u5e97","phone":"0425662482","address":"\\u6c11\\u751f\\u8def\\u56db\\u6bb5\\uff11\\uff15\\uff11\\u865f\\u4e00\\u6a13"}', '014667', 'quanjia', 'zh-tw', 1000),
(7829, 6096, '5908-6096', 1, '大雅好神店', '{"number":"016948","shop":"\\u5927\\u96c5\\u597d\\u795e\\u5e97","phone":"0425607958","address":"\\u795e\\u6797\\u5357\\u8def\\uff19\\uff18\\u865f"}', '016948', 'quanjia', 'zh-tw', 1000),
(7830, 6096, '5908-6096', 1, '大雅金學府店', '{"number":"012870","shop":"\\u5927\\u96c5\\u91d1\\u5b78\\u5e9c\\u5e97","phone":"0425671139","address":"\\u5b78\\u5e9c\\u8def\\uff11\\uff17\\uff16\\uff0d\\uff13\\u865f"}', '012870', 'quanjia', 'zh-tw', 1000),
(7831, 6096, '5908-6096', 1, '大雅金雅環店', '{"number":"018542","shop":"\\u5927\\u96c5\\u91d1\\u96c5\\u74b0\\u5e97","phone":"0425600807","address":"\\u96c5\\u74b0\\u8def\\uff11\\u6bb5\\uff11\\uff19\\uff11\\u865f\\uff11\\u6a13\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018542', 'quanjia', 'zh-tw', 1000),
(7832, 6096, '5908-6096', 1, '大雅有春店', '{"number":"017735","shop":"\\u5927\\u96c5\\u6709\\u6625\\u5e97","phone":"0425676469","address":"\\u96c5\\u6f6d\\u8def\\u56db\\u6bb5\\uff12\\uff19\\uff16\\u865f"}', '017735', 'quanjia', 'zh-tw', 1000),
(7833, 6096, '5908-6096', 1, '大雅文雅店', '{"number":"016600","shop":"\\u5927\\u96c5\\u6587\\u96c5\\u5e97","phone":"0425604511","address":"\\u6c38\\u548c\\u8def\\uff11\\uff12\\uff17\\uff0d\\uff18\\u865f"}', '016600', 'quanjia', 'zh-tw', 1000),
(7834, 6096, '5908-6096', 1, '大雅永和店', '{"number":"015379","shop":"\\u5927\\u96c5\\u6c38\\u548c\\u5e97","phone":"0425609441","address":"\\u6c38\\u548c\\u8def\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '015379', 'quanjia', 'zh-tw', 1000),
(7835, 6096, '5908-6096', 1, '大雅好雅店', '{"number":"016378","shop":"\\u5927\\u96c5\\u597d\\u96c5\\u5e97","phone":"0425606984","address":"\\u4e2d\\u6e05\\u6771\\u8def\\uff11\\uff17\\uff11\\u865f"}', '016378', 'quanjia', 'zh-tw', 1000),
(7836, 6096, '5908-6096', 1, '大雅金交流店', '{"number":"017470","shop":"\\u5927\\u96c5\\u91d1\\u4ea4\\u6d41\\u5e97","phone":"0425602565","address":"\\u4e2d\\u6e05\\u8def\\uff13\\u6bb5\\uff19\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '017470', 'quanjia', 'zh-tw', 1000),
(7837, 6097, '5908-6097', 1, '台中鳳鳴店', '{"number":"016426","shop":"\\u53f0\\u4e2d\\u9cf3\\u9cf4\\u5e97","phone":"0422808292","address":"\\u5927\\u632f\\u8857\\uff13\\uff11\\u865f"}', '016426', 'quanjia', 'zh-tw', 1000),
(7838, 6097, '5908-6097', 1, '台中東園店', '{"number":"013717","shop":"\\u53f0\\u4e2d\\u6771\\u5712\\u5e97","phone":"0422154768","address":"\\u6771\\u5149\\u5712\\u8def\\uff15\\uff13\\uff16\\u865f"}', '013717', 'quanjia', 'zh-tw', 1000),
(7839, 6097, '5908-6097', 1, '台中金東門店', '{"number":"015398","shop":"\\u53f0\\u4e2d\\u91d1\\u6771\\u9580\\u5e97","phone":"0422806630","address":"\\u6771\\u9580\\u8def\\uff11\\uff11\\uff18\\u865f"}', '015398', 'quanjia', 'zh-tw', 1000),
(7840, 6097, '5908-6097', 1, '台中東英店', '{"number":"011990","shop":"\\u53f0\\u4e2d\\u6771\\u82f1\\u5e97","phone":"0422138121","address":"\\u6771\\u4fe1\\u91cc\\u65f1\\u6eaa\\u6771\\u8def\\u4e00\\u6bb5\\uff13\\uff10\\uff10\\u865f\\u3001\\uff13\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '011990', 'quanjia', 'zh-tw', 1000),
(7841, 6097, '5908-6097', 1, '台中金站店', '{"number":"017012","shop":"\\u53f0\\u4e2d\\u91d1\\u7ad9\\u5e97","phone":"0422245956","address":"\\u5fa9\\u8208\\u8def\\u56db\\u6bb5\\uff11\\uff14\\uff17\\u865f"}', '017012', 'quanjia', 'zh-tw', 1000),
(7842, 6097, '5908-6097', 1, '台中新富台店', '{"number":"015173","shop":"\\u53f0\\u4e2d\\u65b0\\u5bcc\\u53f0\\u5e97","phone":"0422132761","address":"\\u5bcc\\u53f0\\u6771\\u8857\\uff17\\uff12\\u865f\\uff11\\u6a13"}', '015173', 'quanjia', 'zh-tw', 1000),
(7843, 6097, '5908-6097', 1, '台中金站二店', '{"number":"017135","shop":"\\u53f0\\u4e2d\\u91d1\\u7ad9\\u4e8c\\u5e97","phone":"0422280086","address":"\\u548c\\u5e73\\u8857\\uff11\\uff11\\uff19\\uff0d\\uff14\\u865f"}', '017135', 'quanjia', 'zh-tw', 1000),
(7844, 6097, '5908-6097', 1, '台中力行店', '{"number":"016185","shop":"\\u53f0\\u4e2d\\u529b\\u884c\\u5e97","phone":"0423602447","address":"\\u529b\\u884c\\u8def\\uff12\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '016185', 'quanjia', 'zh-tw', 1000),
(7845, 6097, '5908-6097', 1, '台中十甲店', '{"number":"015469","shop":"\\u53f0\\u4e2d\\u5341\\u7532\\u5e97","phone":"0422132931","address":"\\u5341\\u7532\\u8def\\uff12\\uff16\\uff12\\u865f\\u4e00\\u6a13"}', '015469', 'quanjia', 'zh-tw', 1000),
(7846, 6097, '5908-6097', 1, '台中新車頭店', '{"number":"015990","shop":"\\u53f0\\u4e2d\\u65b0\\u8eca\\u982d\\u5e97","phone":"0422231850","address":"\\u65b0\\u6c11\\u8857\\uff18\\uff18\\u865f"}', '015990', 'quanjia', 'zh-tw', 1000),
(7847, 6097, '5908-6097', 1, '台中長樂店', '{"number":"014263","shop":"\\u53f0\\u4e2d\\u9577\\u6a02\\u5e97","phone":"0422134614","address":"\\u6a02\\u696d\\u8def\\uff13\\uff14\\uff12\\u865f"}', '014263', 'quanjia', 'zh-tw', 1000),
(7848, 6097, '5908-6097', 1, '台中金礦店', '{"number":"018543","shop":"\\u53f0\\u4e2d\\u91d1\\u7926\\u5e97","phone":"0422281695","address":"\\u632f\\u8208\\u8def\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '018543', 'quanjia', 'zh-tw', 1000),
(7849, 6097, '5908-6097', 1, '台中金自由店', '{"number":"015495","shop":"\\u53f0\\u4e2d\\u91d1\\u81ea\\u7531\\u5e97","phone":"0422136648","address":"\\u81ea\\u7531\\u8def\\u4e09\\u6bb5\\uff19\\uff15\\u865f"}', '015495', 'quanjia', 'zh-tw', 1000),
(7850, 6098, '5908-6098', 1, '東勢東坑店', '{"number":"017639","shop":"\\u6771\\u52e2\\u6771\\u5751\\u5e97","phone":"0425770076","address":"\\u6771\\u5751\\u8def\\uff13\\uff17\\uff17\\u865f"}', '017639', 'quanjia', 'zh-tw', 1000),
(7851, 6098, '5908-6098', 1, '東勢東豐店', '{"number":"018155","shop":"\\u6771\\u52e2\\u6771\\u8c50\\u5e97","phone":"0425772350","address":"\\u8c50\\u52e2\\u8def\\uff12\\uff11\\uff15\\u865f\\uff0e\\uff12\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '018155', 'quanjia', 'zh-tw', 1000),
(7852, 6098, '5908-6098', 1, '東勢豐勢店', '{"number":"014971","shop":"\\u6771\\u52e2\\u8c50\\u52e2\\u5e97","phone":"0425773245","address":"\\u8c50\\u52e2\\u8def\\uff14\\uff18\\uff12\\uff0c\\uff14\\uff18\\uff14\\u865f\\uff11\\uff0c\\uff12\\uff0c\\uff13\\u6a13"}', '014971', 'quanjia', 'zh-tw', 1000),
(7853, 6098, '5908-6098', 1, '東勢勢林店', '{"number":"016237","shop":"\\u6771\\u52e2\\u52e2\\u6797\\u5e97","phone":"0425881752","address":"\\u52e2\\u6797\\u8857\\uff12\\uff13\\uff10\\u865f"}', '016237', 'quanjia', 'zh-tw', 1000),
(7854, 6098, '5908-6098', 1, '東勢嶺先店', '{"number":"016187","shop":"\\u6771\\u52e2\\u5dba\\u5148\\u5e97","phone":"0425774305","address":"\\u6cf0\\u660c\\u91cc\\u6771\\u5d0e\\u8def\\uff15\\u6bb5\\uff13\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '016187', 'quanjia', 'zh-tw', 1000),
(7855, 6098, '5908-6098', 1, '東勢客進店', '{"number":"016101","shop":"\\u6771\\u52e2\\u5ba2\\u9032\\u5e97","phone":"0425880738","address":"\\u4e2d\\u6b63\\u8def\\uff11\\u865f"}', '016101', 'quanjia', 'zh-tw', 1000),
(7856, 6099, '5908-6099', 1, '豐原大道店', '{"number":"015947","shop":"\\u8c50\\u539f\\u5927\\u9053\\u5e97","phone":"0425241890","address":"\\u5317\\u967d\\u91cc\\uff11\\uff13\\u9130\\u8c50\\u539f\\u5927\\u9053\\u56db\\u6bb5\\uff12\\uff19\\uff13\\u865f"}', '015947', 'quanjia', 'zh-tw', 1000),
(7857, 6099, '5908-6099', 1, '豐原綠山店', '{"number":"014585","shop":"\\u8c50\\u539f\\u7da0\\u5c71\\u5e97","phone":"0425294152","address":"\\u5317\\u967d\\u91cc\\u5357\\u967d\\u8def\\uff16\\uff10\\u865f\\u4e00\\u6a13"}', '014585', 'quanjia', 'zh-tw', 1000),
(7858, 6099, '5908-6099', 1, '豐原金旺店', '{"number":"016433","shop":"\\u8c50\\u539f\\u91d1\\u65fa\\u5e97","phone":"0425280211","address":"\\u8c50\\u5317\\u8857\\uff12\\uff14\\uff16\\u865f"}', '016433', 'quanjia', 'zh-tw', 1000),
(7859, 6099, '5908-6099', 1, '豐原豐東店', '{"number":"016933","shop":"\\u8c50\\u539f\\u8c50\\u6771\\u5e97","phone":"0425294832","address":"\\u8c50\\u6771\\u8def\\uff11\\uff12\\uff12\\u865f"}', '016933', 'quanjia', 'zh-tw', 1000),
(7860, 6099, '5908-6099', 1, '豐原騰偉店', '{"number":"014970","shop":"\\u8c50\\u539f\\u9a30\\u5049\\u5e97","phone":"0425227617","address":"\\u8c50\\u6771\\u8def\\uff12\\uff13\\uff19\\u865f"}', '014970', 'quanjia', 'zh-tw', 1000),
(7861, 6099, '5908-6099', 1, '豐原真樂店', '{"number":"016005","shop":"\\u8c50\\u539f\\u771f\\u6a02\\u5e97","phone":"0425204834","address":"\\u8c50\\u52e2\\u8def\\u4e8c\\u6bb5\\uff17\\uff18\\uff17\\u865f"}', '016005', 'quanjia', 'zh-tw', 1000),
(7862, 6099, '5908-6099', 1, '豐原金睿店', '{"number":"017387","shop":"\\u8c50\\u539f\\u91d1\\u777f\\u5e97","phone":"0425132799","address":"\\u8c50\\u52e2\\u8def\\u4e00\\u6bb5\\uff12\\uff15\\uff19\\u865f"}', '017387', 'quanjia', 'zh-tw', 1000),
(7863, 6099, '5908-6099', 1, '豐原太陽店', '{"number":"018444","shop":"\\u8c50\\u539f\\u592a\\u967d\\u5e97","phone":"0425291026","address":"\\u8c50\\u967d\\u8def\\uff11\\uff10\\uff19\\u865f"}', '018444', 'quanjia', 'zh-tw', 1000),
(7864, 6099, '5908-6099', 1, '豐原榮豐店', '{"number":"018602","shop":"\\u8c50\\u539f\\u69ae\\u8c50\\u5e97","phone":"0425151901","address":"\\u8c50\\u4e2d\\u8def\\uff17\\uff19\\u865f\\uff11\\uff26"}', '018602', 'quanjia', 'zh-tw', 1000),
(7865, 6099, '5908-6099', 1, '豐原鎌村店', '{"number":"012936","shop":"\\u8c50\\u539f\\u938c\\u6751\\u5e97","phone":"0425391802","address":"\\u938c\\u6751\\u8def\\uff16\\uff14\\uff19\\u865f"}', '012936', 'quanjia', 'zh-tw', 1000),
(7866, 6099, '5908-6099', 1, '豐原永康店', '{"number":"015055","shop":"\\u8c50\\u539f\\u6c38\\u5eb7\\u5e97","phone":"0425201374","address":"\\u5357\\u967d\\u91cc\\u6c38\\u5eb7\\u8def\\uff12\\uff11\\uff15\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '015055', 'quanjia', 'zh-tw', 1000),
(7867, 6099, '5908-6099', 1, '豐原互助店', '{"number":"013775","shop":"\\u8c50\\u539f\\u4e92\\u52a9\\u5e97","phone":"0425346526","address":"\\u4e09\\u6751\\u91cc\\u897f\\u52e2\\u8def\\uff14\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '013775', 'quanjia', 'zh-tw', 1000),
(7868, 6099, '5908-6099', 1, '豐原社皮店', '{"number":"015175","shop":"\\u8c50\\u539f\\u793e\\u76ae\\u5e97","phone":"0425152711","address":"\\u793e\\u76ae\\u91cc\\u5927\\u8c50\\u8def\\uff15\\u6bb5\\uff14\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '015175', 'quanjia', 'zh-tw', 1000),
(7869, 6099, '5908-6099', 1, '豐原社興店', '{"number":"015353","shop":"\\u8c50\\u539f\\u793e\\u8208\\u5e97","phone":"0425253429","address":"\\u793e\\u8208\\u4e94\\u8857\\uff11\\u865f"}', '015353', 'quanjia', 'zh-tw', 1000),
(7870, 6099, '5908-6099', 1, '豐原新水源店', '{"number":"012750","shop":"\\u8c50\\u539f\\u65b0\\u6c34\\u6e90\\u5e97","phone":"0425247522","address":"\\u6c34\\u6e90\\u8def\\uff11\\uff17\\u865f"}', '012750', 'quanjia', 'zh-tw', 1000),
(7871, 6099, '5908-6099', 1, '豐原豐富店', '{"number":"016777","shop":"\\u8c50\\u539f\\u8c50\\u5bcc\\u5e97","phone":"0425229385","address":"\\u6c34\\u6e90\\u8def\\uff14\\uff15\\uff10\\uff0d\\uff11\\u865f"}', '016777', 'quanjia', 'zh-tw', 1000),
(7872, 6099, '5908-6099', 1, '豐原豐南店', '{"number":"011837","shop":"\\u8c50\\u539f\\u8c50\\u5357\\u5e97","phone":"0425200705","address":"\\u7530\\u5fc3\\u91cc\\u8c50\\u5357\\u8857\\uff11\\uff13\\uff13\\u865f\\uff11\\uff13\\uff13\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '011837', 'quanjia', 'zh-tw', 1000),
(7873, 6099, '5908-6099', 1, '豐原甜心店', '{"number":"016932","shop":"\\u8c50\\u539f\\u751c\\u5fc3\\u5e97","phone":"0425298399","address":"\\u7530\\u5fc3\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff11\\u865f"}', '016932', 'quanjia', 'zh-tw', 1000),
(7874, 6099, '5908-6099', 1, '豐原金美店', '{"number":"018796","shop":"\\u8c50\\u539f\\u91d1\\u7f8e\\u5e97","phone":"0425239760","address":"\\u4fe1\\u7fa9\\u8857\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '018796', 'quanjia', 'zh-tw', 1000),
(7875, 6099, '5908-6099', 1, '豐原中興店', '{"number":"014096","shop":"\\u8c50\\u539f\\u4e2d\\u8208\\u5e97","phone":"0425263450","address":"\\u5713\\u74b0\\u5357\\u8def\\uff17\\uff16\\u865f"}', '014096', 'quanjia', 'zh-tw', 1000),
(7876, 6099, '5908-6099', 1, '豐原葫蘆墩店', '{"number":"018880","shop":"\\u8c50\\u539f\\u846b\\u8606\\u58a9\\u5e97","phone":"0425295497","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff19\\uff13\\u865f"}', '018880', 'quanjia', 'zh-tw', 1000),
(7877, 6100, '5908-6100', 1, '和平新谷關店', '{"number":"012330","shop":"\\u548c\\u5e73\\u65b0\\u8c37\\u95dc\\u5e97","phone":"0425950073","address":"\\u6771\\u95dc\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\uff17\\uff0d\\uff15\\u865f"}', '012330', 'quanjia', 'zh-tw', 1000),
(7878, 6100, '5908-6100', 1, '和平農會店', '{"number":"017942","shop":"\\u548c\\u5e73\\u8fb2\\u6703\\u5e97","phone":"0425941899","address":"\\u5357\\u52e2\\u91cc\\u6771\\u95dc\\u8def\\uff13\\u6bb5\\uff12\\uff13\\uff15\\uff0d\\uff12\\u865f"}', '017942', 'quanjia', 'zh-tw', 1000),
(7879, 6100, '5908-6100', 1, '和平梨山店', '{"number":"017353","shop":"\\u548c\\u5e73\\u68a8\\u5c71\\u5e97","phone":"0425980098","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff18\\u865f"}', '017353', 'quanjia', 'zh-tw', 1000),
(7880, 6101, '5908-6101', 1, '麗寶樂園店', '{"number":"015856","shop":"\\u9e97\\u5bf6\\u6a02\\u5712\\u5e97","phone":"0425583161","address":"\\u5b89\\u7709\\u8def\\uff11\\uff11\\uff15\\uff0d\\uff13\\uff11\\u865f"}', '015856', 'quanjia', 'zh-tw', 1000),
(7881, 6101, '5908-6101', 1, '麗寶摩天輪店', '{"number":"018589","shop":"\\u9e97\\u5bf6\\u6469\\u5929\\u8f2a\\u5e97","phone":"0425560057","address":"\\u798f\\u5bb9\\u8def\\uff12\\uff13\\uff17\\u865f\\uff12\\u6a13"}', '018589', 'quanjia', 'zh-tw', 1000),
(7882, 6101, '5908-6101', 1, '后里新中興店', '{"number":"018382","shop":"\\u540e\\u91cc\\u65b0\\u4e2d\\u8208\\u5e97","phone":"0425581262","address":"\\u7532\\u540e\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\uff12\\u865f"}', '018382', 'quanjia', 'zh-tw', 1000),
(7883, 6101, '5908-6101', 1, '后里文明店', '{"number":"017477","shop":"\\u540e\\u91cc\\u6587\\u660e\\u5e97","phone":"0425580098","address":"\\u6587\\u660e\\u8def\\uff11\\uff10\\uff16\\u865f"}', '017477', 'quanjia', 'zh-tw', 1000),
(7884, 6101, '5908-6101', 1, '后里旺安店', '{"number":"018191","shop":"\\u540e\\u91cc\\u65fa\\u5b89\\u5e97","phone":"0425586951","address":"\\u4e2d\\u548c\\u91cc\\u516c\\u5b89\\u8def\\uff11\\uff10\\uff15\\u865f\\u4e00\\u6a13"}', '018191', 'quanjia', 'zh-tw', 1000),
(7885, 6102, '5908-6102', 1, '龍井藝術店', '{"number":"018027","shop":"\\u9f8d\\u4e95\\u85dd\\u8853\\u5e97","phone":"0426318703","address":"\\u6771\\u6d77\\u91cc\\uff11\\uff10\\u9130\\u85dd\\u8853\\u8857\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '018027', 'quanjia', 'zh-tw', 1000),
(7886, 6102, '5908-6102', 1, '龍井大火力店', '{"number":"013563","shop":"\\u9f8d\\u4e95\\u5927\\u706b\\u529b\\u5e97","phone":"0426392523","address":"\\u9f8d\\u660c\\u8def\\uff11\\uff10\\u865f"}', '013563', 'quanjia', 'zh-tw', 1000),
(7887, 6102, '5908-6102', 1, '龍井龍勝店', '{"number":"018663","shop":"\\u9f8d\\u4e95\\u9f8d\\u52dd\\u5e97","phone":"0426528249","address":"\\u9f8d\\u793e\\u8def\\uff14\\uff13\\uff19\\u865f"}', '018663', 'quanjia', 'zh-tw', 1000),
(7888, 6102, '5908-6102', 1, '龍井向漾店', '{"number":"018522","shop":"\\u9f8d\\u4e95\\u5411\\u6f3e\\u5e97","phone":"0426312163","address":"\\u9f8d\\u793e\\u8def\\uff16\\uff17\\u865f\\uff11\\u6a13\\u81f3\\uff14\\u6a13\\u5168\\u90e8"}', '018522', 'quanjia', 'zh-tw', 1000),
(7889, 6102, '5908-6102', 1, '龍井茄投店', '{"number":"014519","shop":"\\u9f8d\\u4e95\\u8304\\u6295\\u5e97","phone":"0426308407","address":"\\u8304\\u6295\\u8def\\uff16\\uff17\\u4e4b\\uff11\\u865f"}', '014519', 'quanjia', 'zh-tw', 1000),
(7890, 6102, '5908-6102', 1, '龍井沙田店', '{"number":"015413","shop":"\\u9f8d\\u4e95\\u6c99\\u7530\\u5e97","phone":"0426367163","address":"\\u6c99\\u7530\\u8def\\u516d\\u6bb5\\uff11\\uff18\\uff17\\u865f"}', '015413', 'quanjia', 'zh-tw', 1000),
(7891, 6102, '5908-6102', 1, '龍井龍山店', '{"number":"016379","shop":"\\u9f8d\\u4e95\\u9f8d\\u5c71\\u5e97","phone":"0426361524","address":"\\u5c71\\u8173\\u91cc\\u9f8d\\u5c71\\u8857\\uff18\\uff15\\u865f"}', '016379', 'quanjia', 'zh-tw', 1000),
(7892, 6102, '5908-6102', 1, '龍井新文勝店', '{"number":"013313","shop":"\\u9f8d\\u4e95\\u65b0\\u6587\\u52dd\\u5e97","phone":"0426319793","address":"\\u53f0\\u7063\\u5927\\u9053\\u4e94\\u6bb5\\uff13\\u5df7\\uff16\\uff12\\u5f04\\uff14\\uff19\\u865f"}', '013313', 'quanjia', 'zh-tw', 1000),
(7893, 6102, '5908-6102', 1, '龍井龍后店', '{"number":"015573","shop":"\\u9f8d\\u4e95\\u9f8d\\u540e\\u5e97","phone":"0426522061","address":"\\u65b0\\u8208\\u8def\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '015573', 'quanjia', 'zh-tw', 1000),
(7894, 6102, '5908-6102', 1, '龍井龍盈店', '{"number":"016040","shop":"\\u9f8d\\u4e95\\u9f8d\\u76c8\\u5e97","phone":"0426318790","address":"\\u65b0\\u8208\\u8def\\uff14\\uff19\\u5df7\\uff12\\u865f"}', '016040', 'quanjia', 'zh-tw', 1000),
(7895, 6102, '5908-6102', 1, '龍井海大店', '{"number":"017450","shop":"\\u9f8d\\u4e95\\u6d77\\u5927\\u5e97","phone":"0426312703","address":"\\u65b0\\u8208\\u8def\\u6771\\u8208\\u5df7\\uff14\\uff18\\u865f\\u4e00\\u6a13\\u3001\\u5730\\u4e0b\\u5ba4"}', '017450', 'quanjia', 'zh-tw', 1000),
(7896, 6102, '5908-6102', 1, '龍井新庄店', '{"number":"015772","shop":"\\u9f8d\\u4e95\\u65b0\\u5e84\\u5e97","phone":"0426520796","address":"\\u65b0\\u5e84\\u91cc\\u65b0\\u8208\\u8def\\uff12\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '015772', 'quanjia', 'zh-tw', 1000),
(7897, 6102, '5908-6102', 1, '龍井遊園北店', '{"number":"017238","shop":"\\u9f8d\\u4e95\\u904a\\u5712\\u5317\\u5e97","phone":"0426314971","address":"\\u904a\\u5712\\u5317\\u8def\\uff14\\uff14\\uff13\\u865f"}', '017238', 'quanjia', 'zh-tw', 1000),
(7898, 6102, '5908-6102', 1, '龍井學園店', '{"number":"018311","shop":"\\u9f8d\\u4e95\\u5b78\\u5712\\u5e97","phone":"0426521590","address":"\\u904a\\u5712\\u5357\\u8def\\uff12\\uff19\\uff17\\u865f"}', '018311', 'quanjia', 'zh-tw', 1000),
(7899, 6102, '5908-6102', 1, '龍井龍安店', '{"number":"018087","shop":"\\u9f8d\\u4e95\\u9f8d\\u5b89\\u5e97","phone":"0426398795","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff13\\u865f"}', '018087', 'quanjia', 'zh-tw', 1000),
(7900, 6102, '5908-6102', 1, '龍井龍津店', '{"number":"014246","shop":"\\u9f8d\\u4e95\\u9f8d\\u6d25\\u5e97","phone":"0426304049","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff13\\uff13\\u865f"}', '014246', 'quanjia', 'zh-tw', 1000),
(7901, 6103, '5908-6103', 1, '台中金大慶店', '{"number":"017115","shop":"\\u53f0\\u4e2d\\u91d1\\u5927\\u6176\\u5e97","phone":"0422600280","address":"\\u5927\\u6176\\u8857\\u4e8c\\u6bb5\\uff18\\u865f"}', '017115', 'quanjia', 'zh-tw', 1000),
(7902, 6103, '5908-6103', 1, '台中金獅店', '{"number":"018890","shop":"\\u53f0\\u4e2d\\u91d1\\u7345\\u5e97","phone":"0422633016","address":"\\u6771\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\u865f"}', '018890', 'quanjia', 'zh-tw', 1000),
(7903, 6103, '5908-6103', 1, '台中福田店', '{"number":"015695","shop":"\\u53f0\\u4e2d\\u798f\\u7530\\u5e97","phone":"0422614416","address":"\\u798f\\u7530\\u8def\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '015695', 'quanjia', 'zh-tw', 1000),
(7904, 6103, '5908-6103', 1, '台中興美店', '{"number":"015280","shop":"\\u53f0\\u4e2d\\u8208\\u7f8e\\u5e97","phone":"0422600991","address":"\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\uff19\\uff19\\u5df7\\uff11\\uff18\\u865f"}', '015280', 'quanjia', 'zh-tw', 1000),
(7905, 6103, '5908-6103', 1, '台中高工店', '{"number":"017352","shop":"\\u53f0\\u4e2d\\u9ad8\\u5de5\\u5e97","phone":"0422653734","address":"\\u9ad8\\u5de5\\u8def\\uff19\\uff12\\u865f"}', '017352', 'quanjia', 'zh-tw', 1000),
(7906, 6103, '5908-6103', 1, '台中進步店', '{"number":"018628","shop":"\\u53f0\\u4e2d\\u9032\\u6b65\\u5e97","phone":"0422650685","address":"\\u5de5\\u5b78\\u5317\\u8def\\uff11\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '018628', 'quanjia', 'zh-tw', 1000),
(7907, 6103, '5908-6103', 1, '台中新時代店', '{"number":"016039","shop":"\\u53f0\\u4e2d\\u65b0\\u6642\\u4ee3\\u5e97","phone":"0422608615","address":"\\u5de5\\u5b78\\u4e8c\\u8857\\uff19\\uff15\\u865f\\u4e00\\u6a13"}', '016039', 'quanjia', 'zh-tw', 1000),
(7908, 6103, '5908-6103', 1, '台中中興二店', '{"number":"013965","shop":"\\u53f0\\u4e2d\\u4e2d\\u8208\\u4e8c\\u5e97","phone":"0422856331","address":"\\u570b\\u5149\\u8def\\uff12\\uff15\\uff10\\u865f"}', '013965', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(7909, 6103, '5908-6103', 1, '台中中興店', '{"number":"013630","shop":"\\u53f0\\u4e2d\\u4e2d\\u8208\\u5e97","phone":"0422850205","address":"\\u570b\\u5149\\u8def\\uff12\\uff15\\uff10\\u865f\\u793e\\u7ba1\\u5927\\u6a13\\uff11\\u6a13\\uff08\\uff11\\uff11\\uff10\\u5ba4\\uff09"}', '013630', 'quanjia', 'zh-tw', 1000),
(7910, 6103, '5908-6103', 1, '台中興大店', '{"number":"015770","shop":"\\u53f0\\u4e2d\\u8208\\u5927\\u5e97","phone":"0422851742","address":"\\u7a4d\\u5584\\u91cc\\u5b78\\u5e9c\\u8def\\uff15\\uff11\\u865f\\uff0c\\uff15\\uff13\\u865f"}', '015770', 'quanjia', 'zh-tw', 1000),
(7911, 6103, '5908-6103', 1, '台中中山一店', '{"number":"016683","shop":"\\u53f0\\u4e2d\\u4e2d\\u5c71\\u4e00\\u5e97","phone":"0424718909","address":"\\u5efa\\u570b\\u5317\\u8def\\uff11\\u6bb5\\uff11\\uff11\\uff10\\u865f"}', '016683', 'quanjia', 'zh-tw', 1000),
(7912, 6103, '5908-6103', 1, '台中汝川店', '{"number":"015805","shop":"\\u53f0\\u4e2d\\u6c5d\\u5ddd\\u5e97","phone":"0424715784","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff10\\u865f\\uff08\\u6c5d\\u5ddd\\u91ab\\u7642\\u5927\\u6a13\\uff22\\uff11\\uff09"}', '015805', 'quanjia', 'zh-tw', 1000),
(7913, 6103, '5908-6103', 1, '台中新高橋店', '{"number":"015645","shop":"\\u53f0\\u4e2d\\u65b0\\u9ad8\\u6a4b\\u5e97","phone":"0423726342","address":"\\u5efa\\u570b\\u5317\\u8def\\u4e00\\u6bb5\\uff12\\uff15\\uff10\\u865f"}', '015645', 'quanjia', 'zh-tw', 1000),
(7914, 6103, '5908-6103', 1, '台中柳川店', '{"number":"018755","shop":"\\u53f0\\u4e2d\\u67f3\\u5ddd\\u5e97","phone":"0423756530","address":"\\u7f8e\\u6751\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\u865f\\u3001\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018755', 'quanjia', 'zh-tw', 1000),
(7915, 6103, '5908-6103', 1, '台中帝國店', '{"number":"016392","shop":"\\u53f0\\u4e2d\\u5e1d\\u570b\\u5e97","phone":"0422600448","address":"\\u7f8e\\u6751\\u5357\\u8def\\uff11\\uff15\\uff13\\u3001\\uff11\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '016392', 'quanjia', 'zh-tw', 1000),
(7916, 6103, '5908-6103', 1, '台中金南門店', '{"number":"016427","shop":"\\u53f0\\u4e2d\\u91d1\\u5357\\u9580\\u5e97","phone":"0422856435","address":"\\u5357\\u9580\\u8def\\uff15\\uff17\\u865f\\uff11\\uff26"}', '016427', 'quanjia', 'zh-tw', 1000),
(7917, 6103, '5908-6103', 1, '台中崇倫店', '{"number":"017937","shop":"\\u53f0\\u4e2d\\u5d07\\u502b\\u5e97","phone":"0423766132","address":"\\u5357\\u5c6f\\u8def\\u4e00\\u6bb5\\uff12\\uff17\\uff13\\u865f"}', '017937', 'quanjia', 'zh-tw', 1000),
(7918, 6103, '5908-6103', 1, '台中登陽店', '{"number":"017076","shop":"\\u53f0\\u4e2d\\u767b\\u967d\\u5e97","phone":"0422654239","address":"\\u6587\\u5fc3\\u5357\\u8def\\uff15\\uff14\\uff18\\u865f"}', '017076', 'quanjia', 'zh-tw', 1000),
(7919, 6103, '5908-6103', 1, '台中金和店', '{"number":"017632","shop":"\\u53f0\\u4e2d\\u91d1\\u548c\\u5e97","phone":"0422201810","address":"\\u5b78\\u5e9c\\u8def\\uff11\\uff12\\uff13\\u865f"}', '017632', 'quanjia', 'zh-tw', 1000),
(7920, 6103, '5908-6103', 1, '台中新學府店', '{"number":"016737","shop":"\\u53f0\\u4e2d\\u65b0\\u5b78\\u5e9c\\u5e97","phone":"0422206022","address":"\\u5b78\\u5e9c\\u8def\\uff11\\uff16\\uff18\\u5df7\\uff12\\u865f"}', '016737', 'quanjia', 'zh-tw', 1000),
(7921, 6103, '5908-6103', 1, '台中大安店', '{"number":"017290","shop":"\\u53f0\\u4e2d\\u5927\\u5b89\\u5e97","phone":"0422603275","address":"\\u5fe0\\u660e\\u5357\\u8def\\uff17\\uff13\\uff10\\u5df7\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '017290', 'quanjia', 'zh-tw', 1000),
(7922, 6103, '5908-6103', 1, '台中忠孝夜店', '{"number":"017709","shop":"\\u53f0\\u4e2d\\u5fe0\\u5b5d\\u591c\\u5e97","phone":"0422852580","address":"\\u5fe0\\u5b5d\\u8def\\uff11\\uff10\\uff12\\u865f"}', '017709', 'quanjia', 'zh-tw', 1000),
(7923, 6104, '5908-6104', 1, '台中保安店', '{"number":"018820","shop":"\\u53f0\\u4e2d\\u4fdd\\u5b89\\u5e97","phone":"0423500203","address":"\\u4fdd\\u5b89\\u5341\\u8857\\uff11\\uff16\\uff16\\u865f"}', '018820', 'quanjia', 'zh-tw', 1000),
(7924, 6104, '5908-6104', 1, '台中嶺東店', '{"number":"015643","shop":"\\u53f0\\u4e2d\\u5dba\\u6771\\u5e97","phone":"0423829243","address":"\\u6625\\u793e\\u91cc\\u6c38\\u6625\\u5357\\u8def\\uff11\\uff12\\uff15\\u865f"}', '015643', 'quanjia', 'zh-tw', 1000),
(7925, 6104, '5908-6104', 1, '台中田心店', '{"number":"011908","shop":"\\u53f0\\u4e2d\\u7530\\u5fc3\\u5e97","phone":"0424734909","address":"\\u5927\\u58a9\\u516d\\u8857\\uff12\\uff16\\uff11\\u865f"}', '011908', 'quanjia', 'zh-tw', 1000),
(7926, 6104, '5908-6104', 1, '台中敦親店', '{"number":"016522","shop":"\\u53f0\\u4e2d\\u6566\\u89aa\\u5e97","phone":"0424719372","address":"\\u5927\\u58a9\\u8def\\uff11\\uff16\\uff11\\u865f"}', '016522', 'quanjia', 'zh-tw', 1000),
(7927, 6104, '5908-6104', 1, '台中十一街店', '{"number":"017028","shop":"\\u53f0\\u4e2d\\u5341\\u4e00\\u8857\\u5e97","phone":"0423206248","address":"\\u5927\\u58a9\\u8def\\uff15\\uff11\\uff14\\u865f\\uff11\\u6a13"}', '017028', 'quanjia', 'zh-tw', 1000),
(7928, 6104, '5908-6104', 1, '台中大鼎店', '{"number":"012885","shop":"\\u53f0\\u4e2d\\u5927\\u9f0e\\u5e97","phone":"0424731752","address":"\\u5927\\u58a9\\u5357\\u8def\\uff13\\uff13\\uff12\\u865f\\u3001\\uff13\\uff13\\uff16\\u865f\\u4e00\\u6a13"}', '012885', 'quanjia', 'zh-tw', 1000),
(7929, 6104, '5908-6104', 1, '台中墩陽店', '{"number":"016159","shop":"\\u53f0\\u4e2d\\u58a9\\u967d\\u5e97","phone":"0423288661","address":"\\u5927\\u58a9\\u5341\\u4e03\\u8857\\uff11\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '016159', 'quanjia', 'zh-tw', 1000),
(7930, 6104, '5908-6104', 1, '台中傑盛店', '{"number":"014247","shop":"\\u53f0\\u4e2d\\u5091\\u76db\\u5e97","phone":"0422525201","address":"\\u5927\\u58a9\\u5341\\u4e00\\u8857\\uff13\\uff17\\uff10\\u865f\\u3001\\uff13\\uff17\\uff12\\u865f"}', '014247', 'quanjia', 'zh-tw', 1000),
(7931, 6104, '5908-6104', 1, '台中大河店', '{"number":"018360","shop":"\\u53f0\\u4e2d\\u5927\\u6cb3\\u5e97","phone":"0422511440","address":"\\u5927\\u58a9\\u5341\\u4e00\\u8857\\uff16\\uff14\\uff12\\u865f"}', '018360', 'quanjia', 'zh-tw', 1000),
(7932, 6104, '5908-6104', 1, '台中東興店', '{"number":"016229","shop":"\\u53f0\\u4e2d\\u6771\\u8208\\u5e97","phone":"0424712047","address":"\\u6771\\u8208\\u8def\\u4e8c\\u6bb5\\uff12\\uff18\\uff11\\uff0c\\uff12\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '016229', 'quanjia', 'zh-tw', 1000),
(7933, 6104, '5908-6104', 1, '台中新東二店', '{"number":"015016","shop":"\\u53f0\\u4e2d\\u65b0\\u6771\\u4e8c\\u5e97","phone":"0424731935","address":"\\u6771\\u8208\\u8def\\u4e8c\\u6bb5\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '015016', 'quanjia', 'zh-tw', 1000),
(7934, 6104, '5908-6104', 1, '台中大進店', '{"number":"017291","shop":"\\u53f0\\u4e2d\\u5927\\u9032\\u5e97","phone":"0423192334","address":"\\u516c\\u76ca\\u8def\\u4e8c\\u6bb5\\uff13\\uff19\\u865f"}', '017291', 'quanjia', 'zh-tw', 1000),
(7935, 6104, '5908-6104', 1, '台中惠春店', '{"number":"014847","shop":"\\u53f0\\u4e2d\\u60e0\\u6625\\u5e97","phone":"0422513414","address":"\\u516c\\u76ca\\u8def\\u4e8c\\u6bb5\\uff16\\uff13\\uff11\\u865f"}', '014847', 'quanjia', 'zh-tw', 1000),
(7936, 6104, '5908-6104', 1, '台中大英店', '{"number":"011828","shop":"\\u53f0\\u4e2d\\u5927\\u82f1\\u5e97","phone":"0423106077","address":"\\u6e9d\\u5898\\u91cc\\u5927\\u696d\\u8def\\uff12\\uff17\\uff11\\u865f\\u4e00\\u6a13"}', '011828', 'quanjia', 'zh-tw', 1000),
(7937, 6104, '5908-6104', 1, '台中惠文店', '{"number":"011630","shop":"\\u53f0\\u4e2d\\u60e0\\u6587\\u5e97","phone":"0422584215","address":"\\u6cb3\\u5357\\u8def\\u56db\\u6bb5\\uff13\\uff12\\uff16\\u865f"}', '011630', 'quanjia', 'zh-tw', 1000),
(7938, 6104, '5908-6104', 1, '台中圓滿店', '{"number":"014032","shop":"\\u53f0\\u4e2d\\u5713\\u6eff\\u5e97","phone":"0423808945","address":"\\u60e0\\u6587\\u8def\\uff14\\uff19\\uff19\\u865f"}', '014032', 'quanjia', 'zh-tw', 1000),
(7939, 6104, '5908-6104', 1, '台中墩鴻店', '{"number":"015995","shop":"\\u53f0\\u4e2d\\u58a9\\u9d3b\\u5e97","phone":"0423207680","address":"\\u60e0\\u4e2d\\u91cc\\u5927\\u58a9\\u5341\\u4e00\\u8857\\uff12\\uff18\\uff18\\u865f\\u3001\\uff12\\uff19\\uff10\\u865f\\u4e00\\u6a13"}', '015995', 'quanjia', 'zh-tw', 1000),
(7940, 6104, '5908-6104', 1, '台中林新店', '{"number":"015057","shop":"\\u53f0\\u4e2d\\u6797\\u65b0\\u5e97","phone":"0422510100","address":"\\u60e0\\u4e2d\\u8def\\u4e09\\u6bb5\\uff13\\uff16\\u865f\\uff22\\u68df\\uff11\\uff26\\u5546\\u5e97\\uff12\\u5e97\\u9762"}', '015057', 'quanjia', 'zh-tw', 1000),
(7941, 6104, '5908-6104', 1, '台中惠中店', '{"number":"004114","shop":"\\u53f0\\u4e2d\\u60e0\\u4e2d\\u5e97","phone":"0423816112","address":"\\u60e0\\u4e2d\\u8def\\u4e09\\u6bb5\\uff14\\uff16\\u865f\\u3001\\uff14\\uff18\\u865f\\u3001\\uff15\\uff10\\u865f"}', '004114', 'quanjia', 'zh-tw', 1000),
(7942, 6104, '5908-6104', 1, '台中建功店', '{"number":"018212","shop":"\\u53f0\\u4e2d\\u5efa\\u529f\\u5e97","phone":"0423817852","address":"\\u5efa\\u529f\\u8def\\uff11\\uff10\\uff17\\u4e4b\\uff13\\uff18\\u865f\\uff11\\uff10\\uff17\\u4e4b\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '018212', 'quanjia', 'zh-tw', 1000),
(7943, 6104, '5908-6104', 1, '台中精密科店', '{"number":"016018","shop":"\\u53f0\\u4e2d\\u7cbe\\u5bc6\\u79d1\\u5e97","phone":"0423554532","address":"\\u7cbe\\u79d1\\u6771\\u8def\\uff11\\uff17\\u865f\\uff22\\u68df\\uff12\\u6a13"}', '016018', 'quanjia', 'zh-tw', 1000),
(7944, 6104, '5908-6104', 1, '台中楓樹店', '{"number":"017412","shop":"\\u53f0\\u4e2d\\u6953\\u6a39\\u5e97","phone":"0424700620","address":"\\u9ece\\u660e\\u8def\\u4e00\\u6bb5\\uff12\\uff15\\uff13\\u865f\\u3001\\uff12\\uff15\\uff15\\u865f"}', '017412', 'quanjia', 'zh-tw', 1000),
(7945, 6104, '5908-6104', 1, '台中鼎豐店', '{"number":"016080","shop":"\\u53f0\\u4e2d\\u9f0e\\u8c50\\u5e97","phone":"0423809208","address":"\\u8c4a\\u6a02\\u91cc\\u6c38\\u6625\\u6771\\u4e00\\u8def\\uff17\\uff11\\uff19\\u865f\\u4e00\\u6a13"}', '016080', 'quanjia', 'zh-tw', 1000),
(7946, 6104, '5908-6104', 1, '台中新文山店', '{"number":"016038","shop":"\\u53f0\\u4e2d\\u65b0\\u6587\\u5c71\\u5e97","phone":"0423805475","address":"\\u5dba\\u6771\\u8def\\uff17\\uff13\\uff10\\u865f"}', '016038', 'quanjia', 'zh-tw', 1000),
(7947, 6104, '5908-6104', 1, '台中龍富店', '{"number":"016088","shop":"\\u53f0\\u4e2d\\u9f8d\\u5bcc\\u5e97","phone":"0423807235","address":"\\u9f8d\\u5bcc\\u8def\\u56db\\u6bb5\\uff12\\u865f\\uff11\\u6a13"}', '016088', 'quanjia', 'zh-tw', 1000),
(7948, 6104, '5908-6104', 1, '台中風華店', '{"number":"015877","shop":"\\u53f0\\u4e2d\\u98a8\\u83ef\\u5e97","phone":"0423816211","address":"\\u5357\\u5c6f\\u91cc\\u6cb3\\u5357\\u8def\\u56db\\u6bb5\\uff16\\uff19\\uff12\\u865f\\u4e00\\u6a13"}', '015877', 'quanjia', 'zh-tw', 1000),
(7949, 6104, '5908-6104', 1, '台中金南屯店', '{"number":"012515","shop":"\\u53f0\\u4e2d\\u91d1\\u5357\\u5c6f\\u5e97","phone":"0424734538","address":"\\u5357\\u5c6f\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff19\\u865f"}', '012515', 'quanjia', 'zh-tw', 1000),
(7950, 6104, '5908-6104', 1, '台中黎明店', '{"number":"016189","shop":"\\u53f0\\u4e2d\\u9ece\\u660e\\u5e97","phone":"0422540498","address":"\\u4e09\\u539d\\u91cc\\u9ece\\u660e\\u8def\\u4e8c\\u6bb5\\uff14\\uff10\\uff16\\u865f"}', '016189', 'quanjia', 'zh-tw', 1000),
(7951, 6104, '5908-6104', 1, '台中親家店', '{"number":"018430","shop":"\\u53f0\\u4e2d\\u89aa\\u5bb6\\u5e97","phone":"0423867500","address":"\\u6587\\u5c71\\u516b\\u8857\\uff16\\uff16\\u865f\\uff0c\\uff16\\uff18\\u865f"}', '018430', 'quanjia', 'zh-tw', 1000),
(7952, 6104, '5908-6104', 1, '台中龍富二店', '{"number":"017143","shop":"\\u53f0\\u4e2d\\u9f8d\\u5bcc\\u4e8c\\u5e97","phone":"0423807391","address":"\\u4e94\\u6b0a\\u897f\\u8def\\uff12\\u6bb5\\uff11\\uff11\\uff17\\uff12\\u865f"}', '017143', 'quanjia', 'zh-tw', 1000),
(7953, 6104, '5908-6104', 1, '台中嶺南店', '{"number":"018030","shop":"\\u53f0\\u4e2d\\u5dba\\u5357\\u5e97","phone":"0423861284","address":"\\u4e94\\u6b0a\\u897f\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff17\\u865f\\u3001\\uff11\\uff17\\uff19\\u865f"}', '018030', 'quanjia', 'zh-tw', 1000),
(7954, 6104, '5908-6104', 1, '台中益豐店', '{"number":"018226","shop":"\\u53f0\\u4e2d\\u76ca\\u8c50\\u5e97","phone":"0423890611","address":"\\u5411\\u4e0a\\u8def\\uff13\\u6bb5\\uff13\\uff13\\uff15\\u865f"}', '018226', 'quanjia', 'zh-tw', 1000),
(7955, 6104, '5908-6104', 1, '台中永春店', '{"number":"018429","shop":"\\u53f0\\u4e2d\\u6c38\\u6625\\u5e97","phone":"0423861613","address":"\\u6c38\\u6625\\u8def\\uff13\\uff17\\u865f"}', '018429', 'quanjia', 'zh-tw', 1000),
(7956, 6104, '5908-6104', 1, '台中金美店', '{"number":"017652","shop":"\\u53f0\\u4e2d\\u91d1\\u7f8e\\u5e97","phone":"0423816217","address":"\\u6c38\\u5b9a\\u91cc\\uff11\\uff14\\u9130\\u5357\\u5c6f\\u8def\\u4e8c\\u6bb5\\uff18\\uff17\\uff12\\u865f"}', '017652', 'quanjia', 'zh-tw', 1000),
(7957, 6104, '5908-6104', 1, '台中金勇店', '{"number":"015646","shop":"\\u53f0\\u4e2d\\u91d1\\u52c7\\u5e97","phone":"0423807836","address":"\\u5fe0\\u52c7\\u8def\\uff17\\uff11\\uff0d\\uff11\\u865f"}', '015646', 'quanjia', 'zh-tw', 1000),
(7958, 6104, '5908-6104', 1, '台中新忠勇店', '{"number":"012451","shop":"\\u53f0\\u4e2d\\u65b0\\u5fe0\\u52c7\\u5e97","phone":"0423801003","address":"\\u5fe0\\u52c7\\u8def\\uff17\\uff16\\u4e4b\\uff13\\u865f"}', '012451', 'quanjia', 'zh-tw', 1000),
(7959, 6105, '5908-6105', 1, '清水金橫濱店', '{"number":"018732","shop":"\\u6e05\\u6c34\\u91d1\\u6a6b\\u6ff1\\u5e97","phone":"0426580180","address":"\\u6e2f\\u57e0\\u8def\\uff13\\u6bb5\\uff12\\uff10\\uff19\\u865f"}', '018732', 'quanjia', 'zh-tw', 1000),
(7960, 6105, '5908-6105', 1, '清水高美店', '{"number":"018059","shop":"\\u6e05\\u6c34\\u9ad8\\u7f8e\\u5e97","phone":"0426112405","address":"\\u9ad8\\u7f8e\\u91cc\\u9ad8\\u7f8e\\u8def\\uff15\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '018059', 'quanjia', 'zh-tw', 1000),
(7961, 6105, '5908-6105', 1, '清水好美店', '{"number":"016853","shop":"\\u6e05\\u6c34\\u597d\\u7f8e\\u5e97","phone":"0426261265","address":"\\u9ad8\\u7f8e\\u8def\\uff13\\uff10\\uff18\\uff0d\\uff11\\u865f"}', '016853', 'quanjia', 'zh-tw', 1000),
(7962, 6105, '5908-6105', 1, '清水必成店', '{"number":"015681","shop":"\\u6e05\\u6c34\\u5fc5\\u6210\\u5e97","phone":"0426566100","address":"\\u6c11\\u548c\\u8def\\u4e8c\\u6bb5\\uff11\\uff19\\uff19\\u865f"}', '015681', 'quanjia', 'zh-tw', 1000),
(7963, 6105, '5908-6105', 1, '清水中山店', '{"number":"015470","shop":"\\u6e05\\u6c34\\u4e2d\\u5c71\\u5e97","phone":"0426221679","address":"\\u6e05\\u6c34\\u91cc\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff10\\u865f"}', '015470', 'quanjia', 'zh-tw', 1000),
(7964, 6105, '5908-6105', 1, '清水米糕店', '{"number":"012050","shop":"\\u6e05\\u6c34\\u7c73\\u7cd5\\u5e97","phone":"0426222901","address":"\\u65b0\\u8208\\u8def\\uff11\\uff11\\uff19\\u865f"}', '012050', 'quanjia', 'zh-tw', 1000),
(7965, 6105, '5908-6105', 1, '清水德光店', '{"number":"016767","shop":"\\u6e05\\u6c34\\u5fb7\\u5149\\u5e97","phone":"0426268265","address":"\\u4e2d\\u6e05\\u8def\\uff19\\u6bb5\\uff14\\uff14\\uff12\\u865f"}', '016767', 'quanjia', 'zh-tw', 1000),
(7966, 6105, '5908-6105', 1, '清水榮玉店', '{"number":"013506","shop":"\\u6e05\\u6c34\\u69ae\\u7389\\u5e97","phone":"0426224952","address":"\\u4e2d\\u6b63\\u8857\\uff17\\uff19\\u865f"}', '013506', 'quanjia', 'zh-tw', 1000),
(7967, 6106, '5908-6106', 1, '沙鹿弘光店', '{"number":"017320","shop":"\\u6c99\\u9e7f\\u5f18\\u5149\\u5e97","phone":"0426335938","address":"\\u5317\\u52e2\\u6771\\u8def\\uff12\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '017320', 'quanjia', 'zh-tw', 1000),
(7968, 6106, '5908-6106', 1, '沙鹿東家店', '{"number":"013895","shop":"\\u6c99\\u9e7f\\u6771\\u5bb6\\u5e97","phone":"0426318450","address":"\\u5317\\u52e2\\u6771\\u8def\\uff14\\uff11\\uff11\\uff0d\\uff12\\u865f"}', '013895', 'quanjia', 'zh-tw', 1000),
(7969, 6106, '5908-6106', 1, '沙鹿英才店', '{"number":"014825","shop":"\\u6c99\\u9e7f\\u82f1\\u624d\\u5e97","phone":"0426326567","address":"\\u5317\\u52e2\\u6771\\u8def\\uff15\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '014825', 'quanjia', 'zh-tw', 1000),
(7970, 6106, '5908-6106', 1, '沙鹿北勢東店', '{"number":"018670","shop":"\\u6c99\\u9e7f\\u5317\\u52e2\\u6771\\u5e97","phone":"0426527983","address":"\\u5317\\u52e2\\u6771\\u8def\\uff16\\uff14\\uff16\\u865f\\u4e00\\u6a13\\u5168\\u90e8"}', '018670', 'quanjia', 'zh-tw', 1000),
(7971, 6106, '5908-6106', 1, '沙鹿鎮南店', '{"number":"012803","shop":"\\u6c99\\u9e7f\\u93ae\\u5357\\u5e97","phone":"0426337539","address":"\\u5317\\u52e2\\u91cc\\u93ae\\u5357\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '012803', 'quanjia', 'zh-tw', 1000),
(7972, 6106, '5908-6106', 1, '沙鹿金智店', '{"number":"016045","shop":"\\u6c99\\u9e7f\\u91d1\\u667a\\u5e97","phone":"0426620477","address":"\\u6210\\u529f\\u6771\\u8857\\uff14\\uff12\\u3001\\uff14\\uff14\\u3001\\uff14\\uff16\\u865f"}', '016045', 'quanjia', 'zh-tw', 1000),
(7973, 6106, '5908-6106', 1, '沙鹿金站店', '{"number":"018853","shop":"\\u6c99\\u9e7f\\u91d1\\u7ad9\\u5e97","phone":"0426350507","address":"\\u5927\\u540c\\u8857\\uff11\\uff14\\uff0d\\uff12\\u865f"}', '018853', 'quanjia', 'zh-tw', 1000),
(7974, 6106, '5908-6106', 1, '沙鹿光榮店', '{"number":"016290","shop":"\\u6c99\\u9e7f\\u5149\\u69ae\\u5e97","phone":"0426628321","address":"\\u5149\\u83ef\\u8def\\uff13\\uff15\\uff19\\u865f\\uff13\\uff16\\uff11\\u865f"}', '016290', 'quanjia', 'zh-tw', 1000),
(7975, 6106, '5908-6106', 1, '沙鹿金斗店', '{"number":"017873","shop":"\\u6c99\\u9e7f\\u91d1\\u6597\\u5e97","phone":"0426360607","address":"\\u5357\\u6597\\u8def\\uff12\\uff19\\u865f"}', '017873', 'quanjia', 'zh-tw', 1000),
(7976, 6106, '5908-6106', 1, '沙鹿正德店', '{"number":"013182","shop":"\\u6c99\\u9e7f\\u6b63\\u5fb7\\u5e97","phone":"0426529713","address":"\\u5c4f\\u897f\\u8def\\uff19\\uff18\\u865f"}', '013182', 'quanjia', 'zh-tw', 1000),
(7977, 6106, '5908-6106', 1, '沙鹿沙田店', '{"number":"018103","shop":"\\u6c99\\u9e7f\\u6c99\\u7530\\u5e97","phone":"0426368565","address":"\\u6c99\\u7530\\u8def\\uff11\\uff10\\uff11\\u865f"}', '018103', 'quanjia', 'zh-tw', 1000),
(7978, 6106, '5908-6106', 1, '沙鹿興安店', '{"number":"017442","shop":"\\u6c99\\u9e7f\\u8208\\u5b89\\u5e97","phone":"0426625488","address":"\\u8208\\u5b89\\u8def\\uff15\\uff13\\u4e4b\\uff13\\u865f"}', '017442', 'quanjia', 'zh-tw', 1000),
(7979, 6106, '5908-6106', 1, '沙鹿鎮平店', '{"number":"012536","shop":"\\u6c99\\u9e7f\\u93ae\\u5e73\\u5e97","phone":"0426362846","address":"\\u93ae\\u5357\\u8def\\u4e8c\\u6bb5\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '012536', 'quanjia', 'zh-tw', 1000),
(7980, 6106, '5908-6106', 1, '沙鹿正英店', '{"number":"018078","shop":"\\u6c99\\u9e7f\\u6b63\\u82f1\\u5e97","phone":"0426520207","address":"\\u6b63\\u82f1\\u8def\\uff13\\uff19\\uff19\\u865f"}', '018078', 'quanjia', 'zh-tw', 1000),
(7981, 6106, '5908-6106', 1, '沙鹿靜宜店', '{"number":"015178","shop":"\\u6c99\\u9e7f\\u975c\\u5b9c\\u5e97","phone":"0426313790","address":"\\u4e2d\\u68f2\\u8def\\uff12\\uff10\\uff10\\u865f\\uff0d\\u81f3\\u5584\\u6a13"}', '015178', 'quanjia', 'zh-tw', 1000),
(7982, 6106, '5908-6106', 1, '沙鹿飛航店', '{"number":"015796","shop":"\\u6c99\\u9e7f\\u98db\\u822a\\u5e97","phone":"0426153527","address":"\\u4e2d\\u6e05\\u8def\\uff14\\uff13\\u4e4b\\uff15\\uff12\\uff0e\\uff15\\uff13\\uff0e\\uff15\\uff15\\uff0e\\uff15\\uff16\\u865f"}', '015796', 'quanjia', 'zh-tw', 1000),
(7983, 6106, '5908-6106', 1, '沙鹿鹿寮店', '{"number":"018633","shop":"\\u6c99\\u9e7f\\u9e7f\\u5bee\\u5e97","phone":"0426620002","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff14\\uff18\\u4e4b\\uff12\\u865f"}', '018633', 'quanjia', 'zh-tw', 1000),
(7984, 6106, '5908-6106', 1, '沙鹿鑫車店', '{"number":"017127","shop":"\\u6c99\\u9e7f\\u946b\\u8eca\\u5e97","phone":"0426628957","address":"\\u4e2d\\u6b63\\u8857\\uff14\\uff18\\u865f"}', '017127', 'quanjia', 'zh-tw', 1000),
(7985, 6106, '5908-6106', 1, '沙鹿大展店', '{"number":"016270","shop":"\\u6c99\\u9e7f\\u5927\\u5c55\\u5e97","phone":"0426526030","address":"\\u81ea\\u5f37\\u8def\\uff13\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '016270', 'quanjia', 'zh-tw', 1000),
(7986, 6107, '5908-6107', 1, '神岡工業店', '{"number":"014245","shop":"\\u795e\\u5ca1\\u5de5\\u696d\\u5e97","phone":"0425616468","address":"\\u5317\\u5e84\\u91cc\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff12\\uff10\\u4e4b\\uff12\\u865f\\uff11\\uff11\\uff12\\uff10\\u4e4b\\uff13"}', '014245', 'quanjia', 'zh-tw', 1000),
(7987, 6107, '5908-6107', 1, '神岡大漢店', '{"number":"014583","shop":"\\u795e\\u5ca1\\u5927\\u6f22\\u5e97","phone":"0425206148","address":"\\u5927\\u6f22\\u8857\\uff17\\uff12\\u865f"}', '014583', 'quanjia', 'zh-tw', 1000),
(7988, 6107, '5908-6107', 1, '神岡新社口店', '{"number":"018025","shop":"\\u795e\\u5ca1\\u65b0\\u793e\\u53e3\\u5e97","phone":"0425634782","address":"\\u793e\\u5357\\u91cc\\u660c\\u5e73\\u8def\\uff15\\u6bb5\\uff12\\uff18\\uff19\\u865f"}', '018025', 'quanjia', 'zh-tw', 1000),
(7989, 6107, '5908-6107', 1, '神岡陞灃店', '{"number":"017511","shop":"\\u795e\\u5ca1\\u965e\\u7043\\u5e97","phone":"0425631309","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff11\\uff17\\u865f"}', '017511', 'quanjia', 'zh-tw', 1000),
(7990, 6107, '5908-6107', 1, '神岡加油店', '{"number":"018296","shop":"\\u795e\\u5ca1\\u52a0\\u6cb9\\u5e97","phone":"0425130599","address":"\\u4e2d\\u5c71\\u8def\\uff18\\uff18\\u865f"}', '018296', 'quanjia', 'zh-tw', 1000),
(7991, 6108, '5908-6108', 1, '石岡鐵馬店', '{"number":"015872","shop":"\\u77f3\\u5ca1\\u9435\\u99ac\\u5e97","phone":"0425724292","address":"\\u8c50\\u52e2\\u8def\\uff11\\uff11\\uff10\\uff13\\u865f"}', '015872', 'quanjia', 'zh-tw', 1000),
(7992, 6108, '5908-6108', 1, '石岡登峰店', '{"number":"012163","shop":"\\u77f3\\u5ca1\\u767b\\u5cf0\\u5e97","phone":"0425724246","address":"\\u660e\\u5fb7\\u8def\\uff11\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '012163', 'quanjia', 'zh-tw', 1000),
(7993, 6109, '5908-6109', 1, '太平頭汴坑店', '{"number":"018637","shop":"\\u592a\\u5e73\\u982d\\u6c74\\u5751\\u5e97","phone":"0422756896","address":"\\u9577\\u9f8d\\u8def\\uff12\\u6bb5\\uff11\\u865f"}', '018637', 'quanjia', 'zh-tw', 1000),
(7994, 6109, '5908-6109', 1, '太平永益店', '{"number":"017277","shop":"\\u592a\\u5e73\\u6c38\\u76ca\\u5e97","phone":"0422774868","address":"\\u9577\\u5104\\u516d\\u8857\\uff15\\uff13\\u2014\\uff12\\uff17\\u865f"}', '017277', 'quanjia', 'zh-tw', 1000),
(7995, 6109, '5908-6109', 1, '太平金盛店', '{"number":"016651","shop":"\\u592a\\u5e73\\u91d1\\u76db\\u5e97","phone":"0422704717","address":"\\u6210\\u529f\\u6771\\u8def\\uff12\\uff16\\uff17\\u865f"}', '016651', 'quanjia', 'zh-tw', 1000),
(7996, 6109, '5908-6109', 1, '太平新興店', '{"number":"018216","shop":"\\u592a\\u5e73\\u65b0\\u8208\\u5e97","phone":"0423912018","address":"\\u5927\\u8208\\uff11\\uff11\\u8857\\uff12\\uff10\\uff17\\u865f"}', '018216', 'quanjia', 'zh-tw', 1000),
(7997, 6109, '5908-6109', 1, '太平普拉斯店', '{"number":"016920","shop":"\\u592a\\u5e73\\u666e\\u62c9\\u65af\\u5e97","phone":"0423937214","address":"\\u5927\\u8208\\u8def\\uff11\\uff12\\uff17\\u865f"}', '016920', 'quanjia', 'zh-tw', 1000),
(7998, 6109, '5908-6109', 1, '太平新豐年店', '{"number":"015410","shop":"\\u592a\\u5e73\\u65b0\\u8c50\\u5e74\\u5e97","phone":"0423936370","address":"\\u5927\\u6e90\\u5341\\u516b\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '015410', 'quanjia', 'zh-tw', 1000),
(7999, 6109, '5908-6109', 1, '太平東村店', '{"number":"018428","shop":"\\u592a\\u5e73\\u6771\\u6751\\u5e97","phone":"0422764188","address":"\\u6771\\u5e73\\u91cc\\uff11\\uff13\\u9130\\u6771\\u6751\\uff13\\u8857\\uff16\\u865f\\u3001\\uff18\\u865f"}', '018428', 'quanjia', 'zh-tw', 1000),
(8000, 6109, '5908-6109', 1, '太平光德店', '{"number":"017781","shop":"\\u592a\\u5e73\\u5149\\u5fb7\\u5e97","phone":"0422712683","address":"\\u5149\\u5fb7\\u8def\\uff11\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '017781', 'quanjia', 'zh-tw', 1000),
(8001, 6109, '5908-6109', 1, '太平光興店', '{"number":"016789","shop":"\\u592a\\u5e73\\u5149\\u8208\\u5e97","phone":"0422704228","address":"\\u5149\\u8208\\u8def\\uff11\\uff10\\uff17\\uff12\\u865f"}', '016789', 'quanjia', 'zh-tw', 1000),
(8002, 6109, '5908-6109', 1, '太平廣三店', '{"number":"016428","shop":"\\u592a\\u5e73\\u5ee3\\u4e09\\u5e97","phone":"0423955174","address":"\\u5ee3\\u4e09\\u8857\\uff13\\uff13\\u865f"}', '016428', 'quanjia', 'zh-tw', 1000),
(8003, 6109, '5908-6109', 1, '太平水悅店', '{"number":"018079","shop":"\\u592a\\u5e73\\u6c34\\u6085\\u5e97","phone":"0422360902","address":"\\u65f1\\u6eaa\\u897f\\u8def\\uff12\\u6bb5\\uff11\\uff18\\uff17\\u865f"}', '018079', 'quanjia', 'zh-tw', 1000),
(8004, 6109, '5908-6109', 1, '太平建興店', '{"number":"016368","shop":"\\u592a\\u5e73\\u5efa\\u8208\\u5e97","phone":"0422762588","address":"\\u5efa\\u8208\\u8def\\uff12\\uff16\\uff16\\uff0c\\uff12\\uff16\\uff18\\u865f"}', '016368', 'quanjia', 'zh-tw', 1000),
(8005, 6109, '5908-6109', 1, '太平金城店', '{"number":"016764","shop":"\\u592a\\u5e73\\u91d1\\u57ce\\u5e97","phone":"0423955137","address":"\\u6a39\\u5fb7\\u8def\\uff12\\uff17\\uff15\\u865f"}', '016764', 'quanjia', 'zh-tw', 1000),
(8006, 6109, '5908-6109', 1, '太平樹孝店', '{"number":"016309","shop":"\\u592a\\u5e73\\u6a39\\u5b5d\\u5e97","phone":"0423938633","address":"\\u6a39\\u5b5d\\u8def\\uff11\\uff10\\uff19\\u865f"}', '016309', 'quanjia', 'zh-tw', 1000),
(8007, 6109, '5908-6109', 1, '太平新福店', '{"number":"015473","shop":"\\u592a\\u5e73\\u65b0\\u798f\\u5e97","phone":"0423959213","address":"\\u65b0\\u798f\\u8def\\uff13\\uff10\\uff18\\u865f"}', '015473', 'quanjia', 'zh-tw', 1000),
(8008, 6109, '5908-6109', 1, '太平建昌店', '{"number":"017560","shop":"\\u592a\\u5e73\\u5efa\\u660c\\u5e97","phone":"0422737247","address":"\\u65b0\\u5e73\\u8def\\u4e8c\\u6bb5\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '017560', 'quanjia', 'zh-tw', 1000),
(8009, 6109, '5908-6109', 1, '太平育仁店', '{"number":"016958","shop":"\\u592a\\u5e73\\u80b2\\u4ec1\\u5e97","phone":"0423912587","address":"\\u65b0\\u5e73\\u8def\\u4e09\\u6bb5\\uff11\\uff14\\uff16\\u865f\\uff11\\uff14\\uff18\\u865f\\uff11\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '016958', 'quanjia', 'zh-tw', 1000),
(8010, 6109, '5908-6109', 1, '太平新平店', '{"number":"014476","shop":"\\u592a\\u5e73\\u65b0\\u5e73\\u5e97","phone":"0423913674","address":"\\u65b0\\u5e73\\u8def\\u4e09\\u6bb5\\uff13\\uff14\\uff17\\u865f"}', '014476', 'quanjia', 'zh-tw', 1000),
(8011, 6109, '5908-6109', 1, '太平新甲店', '{"number":"013888","shop":"\\u592a\\u5e73\\u65b0\\u7532\\u5e97","phone":"0422736455","address":"\\u65b0\\u4ec1\\u8def\\u4e00\\u6bb5\\uff14\\uff12\\u865f\\uff0c\\uff14\\uff14\\u5df7\\uff12\\u865f"}', '013888', 'quanjia', 'zh-tw', 1000),
(8012, 6109, '5908-6109', 1, '太平新永成店', '{"number":"018832","shop":"\\u592a\\u5e73\\u65b0\\u6c38\\u6210\\u5e97","phone":"0422767929","address":"\\u6c38\\u6210\\u5317\\u8def\\uff11\\uff16\\uff10\\u865f\\u4e00\\u6a13\\u81f3\\u56db\\u6a13\\u5168\\u90e8"}', '018832', 'quanjia', 'zh-tw', 1000),
(8013, 6109, '5908-6109', 1, '太平永豐店', '{"number":"011805","shop":"\\u592a\\u5e73\\u6c38\\u8c50\\u5e97","phone":"0422786202","address":"\\u6c38\\u8c50\\u8def\\uff18\\uff11\\u865f\\u3001\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '011805', 'quanjia', 'zh-tw', 1000),
(8014, 6109, '5908-6109', 1, '太平永平店', '{"number":"014109","shop":"\\u592a\\u5e73\\u6c38\\u5e73\\u5e97","phone":"0422732879","address":"\\u6c38\\u5e73\\u8def\\u4e00\\u6bb5\\uff16\\uff15\\u865f\\uff11\\u6a13"}', '014109', 'quanjia', 'zh-tw', 1000),
(8015, 6109, '5908-6109', 1, '太平新興中店', '{"number":"018062","shop":"\\u592a\\u5e73\\u65b0\\u8208\\u4e2d\\u5e97","phone":"0422703497","address":"\\u6c38\\u5e73\\u5357\\u8def\\uff11\\u865f"}', '018062', 'quanjia', 'zh-tw', 1000),
(8016, 6109, '5908-6109', 1, '太平育賢店', '{"number":"018013","shop":"\\u592a\\u5e73\\u80b2\\u8ce2\\u5e97","phone":"0423935507","address":"\\u80b2\\u8ce2\\u8def\\uff11\\uff15\\uff16\\u865f\\uff0e\\uff11\\uff15\\uff18\\u865f"}', '018013', 'quanjia', 'zh-tw', 1000),
(8017, 6109, '5908-6109', 1, '太平曙光店', '{"number":"017398","shop":"\\u592a\\u5e73\\u66d9\\u5149\\u5e97","phone":"0423910543","address":"\\u80b2\\u8ce2\\u8def\\uff13\\uff14\\uff18\\u865f"}', '017398', 'quanjia', 'zh-tw', 1000),
(8018, 6109, '5908-6109', 1, '太平再福店', '{"number":"015771","shop":"\\u592a\\u5e73\\u518d\\u798f\\u5e97","phone":"0423950290","address":"\\u632f\\u798f\\u8def\\uff14\\uff12\\uff17\\u865f\\uff0e\\uff14\\uff12\\uff19\\u865f\\uff0e\\uff14\\uff13\\uff11\\u865f"}', '015771', 'quanjia', 'zh-tw', 1000),
(8019, 6109, '5908-6109', 1, '太平新凱悅店', '{"number":"013422","shop":"\\u592a\\u5e73\\u65b0\\u51f1\\u6085\\u5e97","phone":"0422778617","address":"\\u4e2d\\u5e73\\u4e5d\\u8857\\uff11\\uff11\\uff17\\u865f"}', '013422', 'quanjia', 'zh-tw', 1000),
(8020, 6109, '5908-6109', 1, '太平水林店', '{"number":"016308","shop":"\\u592a\\u5e73\\u6c34\\u6797\\u5e97","phone":"0423915427","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff18\\u865f\\uff0c\\uff11\\uff11\\uff18\\u865f\\u4e4b\\uff11"}', '016308', 'quanjia', 'zh-tw', 1000),
(8021, 6109, '5908-6109', 1, '太平中華店', '{"number":"014896","shop":"\\u592a\\u5e73\\u4e2d\\u83ef\\u5e97","phone":"0423936935","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff14\\uff14\\uff11\\u865f"}', '014896', 'quanjia', 'zh-tw', 1000),
(8022, 6109, '5908-6109', 1, '太平勤利店', '{"number":"015768","shop":"\\u592a\\u5e73\\u52e4\\u5229\\u5e97","phone":"0423931412","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff12\\uff11\\uff15\\u5df7\\uff11\\uff19\\u865f"}', '015768', 'quanjia', 'zh-tw', 1000),
(8023, 6110, '5908-6110', 1, '潭子佳能店', '{"number":"018489","shop":"\\u6f6d\\u5b50\\u4f73\\u80fd\\u5e97","phone":"0425343199","address":"\\u5317\\u74b0\\u8def\\uff19\\u865f\\uff26\\u68df\\uff15\\u6a13"}', '018489', 'quanjia', 'zh-tw', 1000),
(8024, 6110, '5908-6110', 1, '潭子大豐店', '{"number":"013910","shop":"\\u6f6d\\u5b50\\u5927\\u8c50\\u5e97","phone":"0425324851","address":"\\u5927\\u8c50\\u91cc\\u5927\\u8c50\\u8def\\u4e09\\u6bb5\\uff11\\uff13\\uff16\\u865f"}', '013910', 'quanjia', 'zh-tw', 1000),
(8025, 6110, '5908-6110', 1, '潭子東寶店', '{"number":"016688","shop":"\\u6f6d\\u5b50\\u6771\\u5bf6\\u5e97","phone":"0425358981","address":"\\u5927\\u5bcc\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '016688', 'quanjia', 'zh-tw', 1000),
(8026, 6110, '5908-6110', 1, '潭子大茂店', '{"number":"015797","shop":"\\u6f6d\\u5b50\\u5927\\u8302\\u5e97","phone":"0425352409","address":"\\u6771\\u5bf6\\u91cc\\u96c5\\u8c50\\u8857\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '015797', 'quanjia', 'zh-tw', 1000),
(8027, 6110, '5908-6110', 1, '潭子真興店', '{"number":"016935","shop":"\\u6f6d\\u5b50\\u771f\\u8208\\u5e97","phone":"0425368963","address":"\\u5fa9\\u8208\\u8def\\u4e00\\u6bb5\\uff18\\u865f\\uff11\\uff10\\u865f\\uff11\\uff12\\u865f"}', '016935', 'quanjia', 'zh-tw', 1000),
(8028, 6110, '5908-6110', 1, '潭子佳能二店', '{"number":"018076","shop":"\\u6f6d\\u5b50\\u4f73\\u80fd\\u4e8c\\u5e97","phone":"0425310531","address":"\\u5efa\\u570b\\u8def\\uff11\\uff18\\u865f\\uff21\\u68df\\uff15\\u6a13\\uff0e\\uff2e\\u68df\\uff14\\u6a13"}', '018076', 'quanjia', 'zh-tw', 1000),
(8029, 6110, '5908-6110', 1, '潭子榮興店', '{"number":"017510","shop":"\\u6f6d\\u5b50\\u69ae\\u8208\\u5e97","phone":"0425351461","address":"\\u69ae\\u8208\\u8857\\uff15\\uff17\\u5df7\\uff11\\u865f"}', '017510', 'quanjia', 'zh-tw', 1000),
(8030, 6110, '5908-6110', 1, '潭子甘蔗店', '{"number":"017512","shop":"\\u6f6d\\u5b50\\u7518\\u8517\\u5e97","phone":"0425359637","address":"\\u52dd\\u5229\\u8def\\uff12\\uff18\\uff19\\u865f"}', '017512', 'quanjia', 'zh-tw', 1000),
(8031, 6110, '5908-6110', 1, '潭子新圓通店', '{"number":"012305","shop":"\\u6f6d\\u5b50\\u65b0\\u5713\\u901a\\u5e97","phone":"0425343731","address":"\\u52dd\\u5229\\u8def\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '012305', 'quanjia', 'zh-tw', 1000),
(8032, 6110, '5908-6110', 1, '潭子潭興店', '{"number":"015239","shop":"\\u6f6d\\u5b50\\u6f6d\\u8208\\u5e97","phone":"0425362175","address":"\\u6f6d\\u8208\\u8def\\u4e8c\\u6bb5\\uff14\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '015239', 'quanjia', 'zh-tw', 1000),
(8033, 6110, '5908-6110', 1, '潭子火車頭店', '{"number":"017848","shop":"\\u6f6d\\u5b50\\u706b\\u8eca\\u982d\\u5e97","phone":"0425360102","address":"\\u6f6d\\u967d\\u91cc\\uff12\\uff12\\u9130\\u4e2d\\u5c71\\u8def\\uff12\\u6bb5\\uff13\\uff15\\uff12\\u4e4b\\uff11\\u865f"}', '017848', 'quanjia', 'zh-tw', 1000),
(8034, 6110, '5908-6110', 1, '潭子頭家店', '{"number":"013891","shop":"\\u6f6d\\u5b50\\u982d\\u5bb6\\u5e97","phone":"0425348131","address":"\\u982d\\u5bb6\\u91cc\\u982d\\u5f35\\u8def\\uff12\\u6bb5\\uff11\\uff11\\uff12\\u865f"}', '013891', 'quanjia', 'zh-tw', 1000),
(8035, 6110, '5908-6110', 1, '潭子祥和店', '{"number":"016663","shop":"\\u6f6d\\u5b50\\u7965\\u548c\\u5e97","phone":"0425365465","address":"\\u7965\\u548c\\u8def\\uff16\\uff12\\u865f\\u3001\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '016663', 'quanjia', 'zh-tw', 1000),
(8036, 6110, '5908-6110', 1, '潭子金潭店', '{"number":"016716","shop":"\\u6f6d\\u5b50\\u91d1\\u6f6d\\u5e97","phone":"0425359975","address":"\\u8208\\u83ef\\u4e00\\u8def\\uff12\\uff16\\uff11\\u865f"}', '016716', 'quanjia', 'zh-tw', 1000),
(8037, 6110, '5908-6110', 1, '潭子摘星店', '{"number":"012304","shop":"\\u6f6d\\u5b50\\u6458\\u661f\\u5e97","phone":"0425343750","address":"\\u96c5\\u8c50\\u8857\\uff13\\uff12\\uff13\\u865f"}', '012304', 'quanjia', 'zh-tw', 1000),
(8038, 6110, '5908-6110', 1, '潭子金圓通店', '{"number":"015457","shop":"\\u6f6d\\u5b50\\u91d1\\u5713\\u901a\\u5e97","phone":"0425369309","address":"\\u5713\\u901a\\u5357\\u8def\\uff11\\uff14\\uff13\\u865f\\u4e00\\u6a13"}', '015457', 'quanjia', 'zh-tw', 1000),
(8039, 6111, '5908-6111', 1, '外埔國王店', '{"number":"018929","shop":"\\u5916\\u57d4\\u570b\\u738b\\u5e97","phone":"0426804324","address":"\\u5927\\u6771\\u91cc\\u7532\\u540e\\u8def\\uff17\\uff15\\uff17\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '018929', 'quanjia', 'zh-tw', 1000),
(8040, 6111, '5908-6111', 1, '外埔皇后店', '{"number":"017688","shop":"\\u5916\\u57d4\\u7687\\u540e\\u5e97","phone":"0426837583","address":"\\u5927\\u540c\\u91cc\\u516d\\u5206\\u8def\\uff12\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '017688', 'quanjia', 'zh-tw', 1000),
(8041, 6112, '5908-6112', 1, '烏日火車頭店', '{"number":"017684","shop":"\\u70cf\\u65e5\\u706b\\u8eca\\u982d\\u5e97","phone":"0423384126","address":"\\u9ad8\\u9435\\u6771\\u4e00\\u8def\\uff12\\uff16\\u865f\\uff12\\u6a13"}', '017684', 'quanjia', 'zh-tw', 1000),
(8042, 6112, '5908-6112', 1, '烏日快捷店', '{"number":"018028","shop":"\\u70cf\\u65e5\\u5feb\\u6377\\u5e97","phone":"0423360842","address":"\\u9ad8\\u9435\\u8def\\u4e00\\u6bb5\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '018028', 'quanjia', 'zh-tw', 1000),
(8043, 6112, '5908-6112', 1, '烏日光日店', '{"number":"017027","shop":"\\u70cf\\u65e5\\u5149\\u65e5\\u5e97","phone":"0423369013","address":"\\u516c\\u5712\\u8def\\uff13\\uff10\\uff16\\u865f"}', '017027', 'quanjia', 'zh-tw', 1000),
(8044, 6112, '5908-6112', 1, '烏日高鐵店', '{"number":"017070","shop":"\\u70cf\\u65e5\\u9ad8\\u9435\\u5e97","phone":"0423387882","address":"\\u5149\\u65e5\\u8def\\uff13\\uff15\\uff16\\u3001\\uff13\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '017070', 'quanjia', 'zh-tw', 1000),
(8045, 6112, '5908-6112', 1, '烏日林新店', '{"number":"016783","shop":"\\u70cf\\u65e5\\u6797\\u65b0\\u5e97","phone":"0423384645","address":"\\u5065\\u884c\\u8def\\uff11\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '016783', 'quanjia', 'zh-tw', 1000),
(8046, 6112, '5908-6112', 1, '烏日高捷店', '{"number":"018534","shop":"\\u70cf\\u65e5\\u9ad8\\u6377\\u5e97","phone":"0423367147","address":"\\u4e09\\u69ae\\u8def\\u4e8c\\u6bb5\\uff13\\uff15\\uff12\\u865f"}', '018534', 'quanjia', 'zh-tw', 1000),
(8047, 6112, '5908-6112', 1, '烏日金鴿店', '{"number":"018029","shop":"\\u70cf\\u65e5\\u91d1\\u9d3f\\u5e97","phone":"0423360452","address":"\\u4e94\\u5149\\u8def\\uff19\\uff15\\u4e4b\\uff11\\u865f"}', '018029', 'quanjia', 'zh-tw', 1000),
(8048, 6112, '5908-6112', 1, '烏日新溪南店', '{"number":"012320","shop":"\\u70cf\\u65e5\\u65b0\\u6eaa\\u5357\\u5e97","phone":"0423353211","address":"\\u6eaa\\u5357\\u8def\\u4e00\\u6bb5\\uff16\\uff15\\uff19\\u865f"}', '012320', 'quanjia', 'zh-tw', 1000),
(8049, 6112, '5908-6112', 1, '烏日新明道店', '{"number":"018215","shop":"\\u70cf\\u65e5\\u65b0\\u660e\\u9053\\u5e97","phone":"0423372835","address":"\\u4fe1\\u7fa9\\u8857\\uff11\\uff15\\uff17\\u865f"}', '018215', 'quanjia', 'zh-tw', 1000),
(8050, 6112, '5908-6112', 1, '烏日成嶺店', '{"number":"015279","shop":"\\u70cf\\u65e5\\u6210\\u5dba\\u5e97","phone":"0423383348","address":"\\u5b78\\u7530\\u8def\\uff17\\uff11\\uff19\\u865f"}', '015279', 'quanjia', 'zh-tw', 1000),
(8051, 6112, '5908-6112', 1, '台中高鐵店', '{"number":"018378","shop":"\\u53f0\\u4e2d\\u9ad8\\u9435\\u5e97","phone":"0436000076","address":"\\u7ad9\\u5340\\u4e8c\\u8def\\uff18\\u865f\\uff11\\u6a13"}', '018378', 'quanjia', 'zh-tw', 1000),
(8052, 6112, '5908-6112', 1, '台中新高鐵店', '{"number":"018387","shop":"\\u53f0\\u4e2d\\u65b0\\u9ad8\\u9435\\u5e97","phone":"0436000075","address":"\\u7ad9\\u5340\\u4e8c\\u8def\\uff18\\u865f\\uff12\\u6a13"}', '018387', 'quanjia', 'zh-tw', 1000),
(8053, 6112, '5908-6112', 1, '烏日新九德店', '{"number":"018881","shop":"\\u70cf\\u65e5\\u65b0\\u4e5d\\u5fb7\\u5e97","phone":"0423373214","address":"\\u4e2d\\u83ef\\u8def\\uff13\\uff12\\uff16\\u865f"}', '018881', 'quanjia', 'zh-tw', 1000),
(8054, 6112, '5908-6112', 1, '烏日三民店', '{"number":"016103","shop":"\\u70cf\\u65e5\\u4e09\\u6c11\\u5e97","phone":"0423382018","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\uff12\\uff10\\u865f\\uff0c\\u4e09\\u6c11\\u8857\\uff11\\uff13\\uff16\\u865f"}', '016103', 'quanjia', 'zh-tw', 1000),
(8055, 6112, '5908-6112', 1, '烏日成功店', '{"number":"012887","shop":"\\u70cf\\u65e5\\u6210\\u529f\\u5e97","phone":"0423365155","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff12\\uff14\\uff12\\uff0d\\uff11\\u865f\\u3001\\uff12\\uff14\\uff12\\uff0d\\uff12\\u865f"}', '012887', 'quanjia', 'zh-tw', 1000),
(8056, 6113, '5908-6113', 1, '梧棲海星星店', '{"number":"017943","shop":"\\u68a7\\u68f2\\u6d77\\u661f\\u661f\\u5e97","phone":"0426563386","address":"\\u516b\\u5fb7\\u8def\\uff11\\u6bb5\\uff12\\u865f"}', '017943', 'quanjia', 'zh-tw', 1000),
(8057, 6113, '5908-6113', 1, '梧棲大庄店', '{"number":"015176","shop":"\\u68a7\\u68f2\\u5927\\u5e84\\u5e97","phone":"0426564091","address":"\\u5927\\u5e84\\u91cc\\u53f0\\u7063\\u5927\\u9053\\uff18\\u6bb5\\uff15\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '015176', 'quanjia', 'zh-tw', 1000),
(8058, 6113, '5908-6113', 1, '梧棲港埠店', '{"number":"018058","shop":"\\u68a7\\u68f2\\u6e2f\\u57e0\\u5e97","phone":"0426584770","address":"\\u6e2f\\u57e0\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\u865f"}', '018058', 'quanjia', 'zh-tw', 1000),
(8059, 6113, '5908-6113', 1, '梧棲金泰店', '{"number":"014617","shop":"\\u68a7\\u68f2\\u91d1\\u6cf0\\u5e97","phone":"0426392326","address":"\\u81e8\\u6e2f\\u8def\\u4e09\\u6bb5\\uff19\\u865f"}', '014617', 'quanjia', 'zh-tw', 1000),
(8060, 6113, '5908-6113', 1, '梧棲正港店', '{"number":"018646","shop":"\\u68a7\\u68f2\\u6b63\\u6e2f\\u5e97","phone":"0426569265","address":"\\u6c11\\u751f\\u8857\\uff16\\uff11\\u865f\\u4e00\\u6a13"}', '018646', 'quanjia', 'zh-tw', 1000),
(8061, 6113, '5908-6113', 1, '梧棲海王子店', '{"number":"017200","shop":"\\u68a7\\u68f2\\u6d77\\u738b\\u5b50\\u5e97","phone":"0426580706","address":"\\u56db\\u7dad\\u8def\\uff11\\uff10\\uff14\\u865f"}', '017200', 'quanjia', 'zh-tw', 1000),
(8062, 6113, '5908-6113', 1, '梧棲新文華店', '{"number":"018635","shop":"\\u68a7\\u68f2\\u65b0\\u6587\\u83ef\\u5e97","phone":"0426580103","address":"\\u6587\\u83ef\\u8857\\uff12\\uff10\\uff11\\u865f"}', '018635', 'quanjia', 'zh-tw', 1000),
(8063, 6113, '5908-6113', 1, '梧棲中和店', '{"number":"018669","shop":"\\u68a7\\u68f2\\u4e2d\\u548c\\u5e97","phone":"0426568141","address":"\\u4e2d\\u548c\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '018669', 'quanjia', 'zh-tw', 1000),
(8064, 6113, '5908-6113', 1, '梧棲金牌店', '{"number":"017003","shop":"\\u68a7\\u68f2\\u91d1\\u724c\\u5e97","phone":"0426560358","address":"\\u4e2d\\u83ef\\u8def\\uff11\\u6bb5\\uff11\\uff10\\uff10\\uff11\\u865f"}', '017003', 'quanjia', 'zh-tw', 1000),
(8065, 6113, '5908-6113', 1, '梧棲自強店', '{"number":"015423","shop":"\\u68a7\\u68f2\\u81ea\\u5f37\\u5e97","phone":"0426392391","address":"\\u81ea\\u5f37\\u4e00\\u8857\\uff11\\uff13\\uff12\\u865f\\uff0e\\uff11\\uff13\\uff14\\u865f"}', '015423', 'quanjia', 'zh-tw', 1000),
(8066, 6114, '5908-6114', 1, '霧峰新振興店', '{"number":"015056","shop":"\\u9727\\u5cf0\\u65b0\\u632f\\u8208\\u5e97","phone":"0423303638","address":"\\u8349\\u6e56\\u8def\\uff14\\uff19\\u865f"}', '015056', 'quanjia', 'zh-tw', 1000),
(8067, 6114, '5908-6114', 1, '霧峰朝科大店', '{"number":"015035","shop":"\\u9727\\u5cf0\\u671d\\u79d1\\u5927\\u5e97","phone":"0423302271","address":"\\u5409\\u5cf0\\u6771\\u8def\\uff16\\uff12\\u865f"}', '015035', 'quanjia', 'zh-tw', 1000),
(8068, 6114, '5908-6114', 1, '霧峰新錦峰店', '{"number":"012672","shop":"\\u9727\\u5cf0\\u65b0\\u9326\\u5cf0\\u5e97","phone":"0423309776","address":"\\u9326\\u5dde\\u8def\\uff13\\uff13\\uff11\\u865f"}', '012672', 'quanjia', 'zh-tw', 1000),
(8069, 6114, '5908-6114', 1, '霧峰亞洲店', '{"number":"014062","shop":"\\u9727\\u5cf0\\u4e9e\\u6d32\\u5e97","phone":"0423391650","address":"\\u67f3\\u8c50\\u8def\\uff14\\uff16\\uff16\\uff0e\\uff14\\uff16\\uff18\\u865f"}', '014062', 'quanjia', 'zh-tw', 1000),
(8070, 6114, '5908-6114', 1, '霧峰五福店', '{"number":"014846","shop":"\\u9727\\u5cf0\\u4e94\\u798f\\u5e97","phone":"0423332687","address":"\\u516d\\u80a1\\u8def\\uff12\\uff19\\uff12\\u865f"}', '014846', 'quanjia', 'zh-tw', 1000),
(8071, 6114, '5908-6114', 1, '霧峰新六順店', '{"number":"011848","shop":"\\u9727\\u5cf0\\u65b0\\u516d\\u9806\\u5e97","phone":"0423391863","address":"\\u6c11\\u751f\\u8def\\uff12\\uff10\\uff11\\u865f"}', '011848', 'quanjia', 'zh-tw', 1000),
(8072, 6114, '5908-6114', 1, '霧峰吉峰店', '{"number":"013896","shop":"\\u9727\\u5cf0\\u5409\\u5cf0\\u5e97","phone":"0423396552","address":"\\u6c11\\u751f\\u8def\\uff13\\uff15\\uff13\\u865f"}', '013896', 'quanjia', 'zh-tw', 1000),
(8073, 6114, '5908-6114', 1, '霧峰金亞洲店', '{"number":"018332","shop":"\\u9727\\u5cf0\\u91d1\\u4e9e\\u6d32\\u5e97","phone":"0423309412","address":"\\u5357\\u67f3\\u6751\\u67f3\\u8c50\\u8def\\uff13\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '018332', 'quanjia', 'zh-tw', 1000),
(8074, 6114, '5908-6114', 1, '霧峰九德店', '{"number":"017451","shop":"\\u9727\\u5cf0\\u4e5d\\u5fb7\\u5e97","phone":"0423396632","address":"\\u56db\\u5fb7\\u8def\\uff12\\uff10\\uff14\\u865f"}', '017451', 'quanjia', 'zh-tw', 1000),
(8075, 6114, '5908-6114', 1, '霧峰金德店', '{"number":"011686","shop":"\\u9727\\u5cf0\\u91d1\\u5fb7\\u5e97","phone":"0423392762","address":"\\u56db\\u5fb7\\u8def\\uff15\\uff17\\uff16\\u865f"}', '011686', 'quanjia', 'zh-tw', 1000),
(8076, 6114, '5908-6114', 1, '霧峰中投店', '{"number":"017036","shop":"\\u9727\\u5cf0\\u4e2d\\u6295\\u5e97","phone":"0423306848","address":"\\u4e2d\\u6295\\u897f\\u8def\\u4e8c\\u6bb5\\uff14\\uff13\\uff10\\u865f"}', '017036', 'quanjia', 'zh-tw', 1000),
(8077, 6114, '5908-6114', 1, '霧峰金來店', '{"number":"017035","shop":"\\u9727\\u5cf0\\u91d1\\u4f86\\u5e97","phone":"0423397586","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff10\\uff13\\u865f\\u4e00\\u6a13"}', '017035', 'quanjia', 'zh-tw', 1000),
(8078, 6115, '5908-6115', 1, '台中科博館店', '{"number":"015380","shop":"\\u53f0\\u4e2d\\u79d1\\u535a\\u9928\\u5e97","phone":"0423297287","address":"\\u535a\\u9928\\u8def\\uff11\\uff11\\uff17\\u865f"}', '015380', 'quanjia', 'zh-tw', 1000),
(8079, 6115, '5908-6115', 1, '台中精誠店', '{"number":"017040","shop":"\\u53f0\\u4e2d\\u7cbe\\u8aa0\\u5e97","phone":"0423208160","address":"\\u5927\\u696d\\u8def\\uff11\\u865f"}', '017040', 'quanjia', 'zh-tw', 1000),
(8080, 6115, '5908-6115', 1, '台中篤行店', '{"number":"015932","shop":"\\u53f0\\u4e2d\\u7be4\\u884c\\u5e97","phone":"0422023520","address":"\\u7be4\\u884c\\u8def\\uff11\\uff18\\uff18\\u865f"}', '015932', 'quanjia', 'zh-tw', 1000),
(8081, 6115, '5908-6115', 1, '草悟道店', '{"number":"017495","shop":"\\u8349\\u609f\\u9053\\u5e97","phone":"0423210721","address":"\\u516c\\u76ca\\u8def\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '017495', 'quanjia', 'zh-tw', 1000),
(8082, 6115, '5908-6115', 1, '台中市民店', '{"number":"013737","shop":"\\u53f0\\u4e2d\\u5e02\\u6c11\\u5e97","phone":"0423014035","address":"\\u516c\\u6b63\\u8def\\uff11\\uff10\\uff13\\u865f"}', '013737', 'quanjia', 'zh-tw', 1000),
(8083, 6115, '5908-6115', 1, '台中後龍店', '{"number":"003244","shop":"\\u53f0\\u4e2d\\u5f8c\\u9f8d\\u5e97","phone":"0423012618","address":"\\u5f8c\\u9f8d\\u8857\\uff15\\uff18\\u865f\\u6c11\\u6b0a\\u8def\\uff13\\uff10\\uff12\\u865f"}', '003244', 'quanjia', 'zh-tw', 1000),
(8084, 6115, '5908-6115', 1, '台中高昇店', '{"number":"014313","shop":"\\u53f0\\u4e2d\\u9ad8\\u6607\\u5e97","phone":"0423015087","address":"\\u83ef\\u7f8e\\u8857\\uff11\\uff14\\uff19\\u4e4b\\uff11\\u865f"}', '014313', 'quanjia', 'zh-tw', 1000),
(8085, 6115, '5908-6115', 1, '台中綠園道店', '{"number":"016571","shop":"\\u53f0\\u4e2d\\u7da0\\u5712\\u9053\\u5e97","phone":"0423233938","address":"\\u5065\\u884c\\u8def\\uff11\\uff10\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '016571', 'quanjia', 'zh-tw', 1000),
(8086, 6115, '5908-6115', 1, '台中新美村店', '{"number":"018041","shop":"\\u53f0\\u4e2d\\u65b0\\u7f8e\\u6751\\u5e97","phone":"0423780607","address":"\\u7f8e\\u6751\\u8def\\uff11\\u6bb5\\uff16\\uff11\\uff10\\u865f"}', '018041', 'quanjia', 'zh-tw', 1000),
(8087, 6115, '5908-6115', 1, '台中鑫美店', '{"number":"015177","shop":"\\u53f0\\u4e2d\\u946b\\u7f8e\\u5e97","phone":"0423284015","address":"\\u7f8e\\u6751\\u8def\\u4e00\\u6bb5\\uff12\\uff12\\u865f"}', '015177', 'quanjia', 'zh-tw', 1000),
(8088, 6115, '5908-6115', 1, '台中師院店', '{"number":"013258","shop":"\\u53f0\\u4e2d\\u5e2b\\u9662\\u5e97","phone":"0422294029","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff18\\uff19\\u865f"}', '013258', 'quanjia', 'zh-tw', 1000),
(8089, 6115, '5908-6115', 1, '台中四維店', '{"number":"014267","shop":"\\u53f0\\u4e2d\\u56db\\u7dad\\u5e97","phone":"0422208900","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\uff11\\uff17\\uff12\\u2014\\uff15\\u3001\\uff11\\uff17\\uff12\\u2014\\uff16\\u865f"}', '014267', 'quanjia', 'zh-tw', 1000),
(8090, 6115, '5908-6115', 1, '台中署醫店', '{"number":"018118","shop":"\\u53f0\\u4e2d\\u7f72\\u91ab\\u5e97","phone":"0422294799","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\uff11\\uff19\\uff19\\u865f"}', '018118', 'quanjia', 'zh-tw', 1000),
(8091, 6115, '5908-6115', 1, '台中正點店', '{"number":"016852","shop":"\\u53f0\\u4e2d\\u6b63\\u9ede\\u5e97","phone":"0423760313","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\uff14\\uff16\\u865f\\u5168\\u90e8"}', '016852', 'quanjia', 'zh-tw', 1000),
(8092, 6115, '5908-6115', 1, '台中金五廊店', '{"number":"017600","shop":"\\u53f0\\u4e2d\\u91d1\\u4e94\\u5eca\\u5e97","phone":"0422249566","address":"\\u4e94\\u5eca\\u8857\\uff16\\u865f"}', '017600', 'quanjia', 'zh-tw', 1000),
(8093, 6115, '5908-6115', 1, '台中金可店', '{"number":"016973","shop":"\\u53f0\\u4e2d\\u91d1\\u53ef\\u5e97","phone":"0422061722","address":"\\u4e94\\u6b0a\\u8def\\uff12\\uff10\\uff15\\u865f"}', '016973', 'quanjia', 'zh-tw', 1000),
(8094, 6115, '5908-6115', 1, '台中五權五店', '{"number":"015582","shop":"\\u53f0\\u4e2d\\u4e94\\u6b0a\\u4e94\\u5e97","phone":"0423750622","address":"\\u4e94\\u6b0a\\u4e94\\u8857\\uff11\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '015582', 'quanjia', 'zh-tw', 1000),
(8095, 6115, '5908-6115', 1, '台中京華店', '{"number":"016649","shop":"\\u53f0\\u4e2d\\u4eac\\u83ef\\u5e97","phone":"0422022137","address":"\\u897f\\u5c6f\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff16\\u865f"}', '016649', 'quanjia', 'zh-tw', 1000),
(8096, 6115, '5908-6115', 1, '台中尚美店', '{"number":"012662","shop":"\\u53f0\\u4e2d\\u5c1a\\u7f8e\\u5e97","phone":"0423013816","address":"\\u5411\\u4e0a\\u5317\\u8def\\uff11\\uff19\\uff12\\u865f\\uff0e\\uff11\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '012662', 'quanjia', 'zh-tw', 1000),
(8097, 6115, '5908-6115', 1, '台中向上店', '{"number":"014243","shop":"\\u53f0\\u4e2d\\u5411\\u4e0a\\u5e97","phone":"0423017496","address":"\\u5411\\u4e0a\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\u865f"}', '014243', 'quanjia', 'zh-tw', 1000),
(8098, 6115, '5908-6115', 1, '台中樂群店', '{"number":"015548","shop":"\\u53f0\\u4e2d\\u6a02\\u7fa4\\u5e97","phone":"0423712316","address":"\\u6a02\\u7fa4\\u8857\\uff16\\uff11\\u4e4b\\uff14\\u865f"}', '015548', 'quanjia', 'zh-tw', 1000),
(8099, 6115, '5908-6115', 1, '台中全球店', '{"number":"018085","shop":"\\u53f0\\u4e2d\\u5168\\u7403\\u5e97","phone":"0422255085","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff11\\uff0d\\uff15\\uff19\\u865f\\uff08\\u5168\\u7403\\u5f71\\u57ce\\uff09"}', '018085', 'quanjia', 'zh-tw', 1000),
(8100, 6116, '5908-6116', 1, '台中七張犁店', '{"number":"018338","shop":"\\u53f0\\u4e2d\\u4e03\\u5f35\\u7281\\u5e97","phone":"0423590326","address":"\\u5b89\\u548c\\u8def\\uff11\\uff12\\uff10\\u4e4b\\uff11\\uff15\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '018338', 'quanjia', 'zh-tw', 1000),
(8101, 6116, '5908-6116', 1, '台中安和店', '{"number":"018260","shop":"\\u53f0\\u4e2d\\u5b89\\u548c\\u5e97","phone":"0423588123","address":"\\u5b89\\u548c\\u8def\\uff19\\uff19\\u4e4b\\uff13\\uff18\\u865f"}', '018260', 'quanjia', 'zh-tw', 1000),
(8102, 6116, '5908-6116', 1, '台中八寶店', '{"number":"016332","shop":"\\u53f0\\u4e2d\\u516b\\u5bf6\\u5e97","phone":"0424522224","address":"\\u5bf6\\u6176\\u8857\\uff14\\uff12\\u4e4b\\uff11\\u865f\\uff11\\u6a13\\u53ca\\u593e\\u5c64"}', '016332', 'quanjia', 'zh-tw', 1000),
(8103, 6116, '5908-6116', 1, '台中新大富店', '{"number":"013565","shop":"\\u53f0\\u4e2d\\u65b0\\u5927\\u5bcc\\u5e97","phone":"0422550091","address":"\\u671d\\u5bcc\\u8def\\uff11\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '013565', 'quanjia', 'zh-tw', 1000),
(8104, 6116, '5908-6116', 1, '台中世貿二店', '{"number":"015935","shop":"\\u53f0\\u4e2d\\u4e16\\u8cbf\\u4e8c\\u5e97","phone":"0422548942","address":"\\u671d\\u5bcc\\u8def\\uff11\\uff16\\u865f\\uff0e\\uff11\\uff18\\u865f"}', '015935', 'quanjia', 'zh-tw', 1000),
(8105, 6116, '5908-6116', 1, '台中朝富店', '{"number":"014972","shop":"\\u53f0\\u4e2d\\u671d\\u5bcc\\u5e97","phone":"0422547347","address":"\\u671d\\u5bcc\\u8def\\uff11\\uff17\\uff16\\u865f"}', '014972', 'quanjia', 'zh-tw', 1000),
(8106, 6116, '5908-6116', 1, '台中世貿店', '{"number":"013475","shop":"\\u53f0\\u4e2d\\u4e16\\u8cbf\\u5e97","phone":"0422541296","address":"\\u671d\\u5bcc\\u8def\\uff11\\uff18\\uff0d\\uff15\\u865f"}', '013475', 'quanjia', 'zh-tw', 1000),
(8107, 6116, '5908-6116', 1, '台中朝貴店', '{"number":"015389","shop":"\\u53f0\\u4e2d\\u671d\\u8cb4\\u5e97","phone":"0422511253","address":"\\u671d\\u99ac\\u8def\\uff11\\uff13\\uff19\\u865f\\u3001\\uff11\\uff14\\uff11\\u865f\\uff0c\\uff11\\uff14\\uff13\\u865f\\u4e00\\u6a13"}', '015389', 'quanjia', 'zh-tw', 1000),
(8108, 6116, '5908-6116', 1, '台中成長店', '{"number":"014828","shop":"\\u53f0\\u4e2d\\u6210\\u9577\\u5e97","phone":"0422969883","address":"\\u6210\\u90fd\\u8def\\uff13\\uff16\\uff18\\u865f"}', '014828', 'quanjia', 'zh-tw', 1000),
(8109, 6116, '5908-6116', 1, '台中樂活店', '{"number":"015281","shop":"\\u53f0\\u4e2d\\u6a02\\u6d3b\\u5e97","phone":"0423271767","address":"\\u5927\\u58a9\\uff11\\uff19\\u8857\\uff11\\uff18\\u865f\\u3001\\uff12\\uff10\\u865f\\u3001\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '015281', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(8110, 6116, '5908-6116', 1, '台中福揚店', '{"number":"016393","shop":"\\u53f0\\u4e2d\\u798f\\u63da\\u5e97","phone":"0423105615","address":"\\u5927\\u58a9\\u5341\\u4e5d\\u8857\\uff11\\uff18\\uff18\\u865f"}', '016393', 'quanjia', 'zh-tw', 1000),
(8111, 6116, '5908-6116', 1, '台中金航發店', '{"number":"016170","shop":"\\u53f0\\u4e2d\\u91d1\\u822a\\u767c\\u5e97","phone":"0424520722","address":"\\u9022\\u5927\\u8def\\uff15\\u865f"}', '016170', 'quanjia', 'zh-tw', 1000),
(8112, 6116, '5908-6116', 1, '台中福華店', '{"number":"014910","shop":"\\u53f0\\u4e2d\\u798f\\u83ef\\u5e97","phone":"0424635723","address":"\\u798f\\u5b89\\u8def\\uff15\\uff17\\u865f"}', '014910', 'quanjia', 'zh-tw', 1000),
(8113, 6116, '5908-6116', 1, '台中天保店', '{"number":"017265","shop":"\\u53f0\\u4e2d\\u5929\\u4fdd\\u5e97","phone":"0423587991","address":"\\u798f\\u548c\\u91cc\\u4e2d\\u5de5\\u4e09\\u8def\\uff12\\uff11\\uff14\\u4e4b\\uff11\\u865f\\u3001\\u4e4b\\uff12\\u865f\\uff11\\u6a13"}', '017265', 'quanjia', 'zh-tw', 1000),
(8114, 6116, '5908-6116', 1, '台中新福聯店', '{"number":"017528","shop":"\\u53f0\\u4e2d\\u65b0\\u798f\\u806f\\u5e97","phone":"0424621219","address":"\\u798f\\u806f\\u8857\\uff12\\uff13\\u865f"}', '017528', 'quanjia', 'zh-tw', 1000),
(8115, 6116, '5908-6116', 1, '台中澄清店', '{"number":"017126","shop":"\\u53f0\\u4e2d\\u6f84\\u6e05\\u5e97","phone":"0424636832","address":"\\u798f\\u6797\\u91cc\\u53f0\\u7063\\u5927\\u9053\\uff14\\u6bb5\\uff19\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017126', 'quanjia', 'zh-tw', 1000),
(8116, 6116, '5908-6116', 1, '台中新福瑞店', '{"number":"012123","shop":"\\u53f0\\u4e2d\\u65b0\\u798f\\u745e\\u5e97","phone":"0424620357","address":"\\u798f\\u745e\\u8857\\uff19\\uff12\\u865f"}', '012123', 'quanjia', 'zh-tw', 1000),
(8117, 6116, '5908-6116', 1, '台中福滿店', '{"number":"018797","shop":"\\u53f0\\u4e2d\\u798f\\u6eff\\u5e97","phone":"0424529228","address":"\\u798f\\u661f\\u8def\\uff13\\uff10\\uff11\\u865f"}', '018797', 'quanjia', 'zh-tw', 1000),
(8118, 6116, '5908-6116', 1, '台中好市店', '{"number":"015876","shop":"\\u53f0\\u4e2d\\u597d\\u5e02\\u5e97","phone":"0424528914","address":"\\u798f\\u661f\\u8def\\uff13\\uff13\\uff10\\u4e4b\\uff16\\u865f"}', '015876', 'quanjia', 'zh-tw', 1000),
(8119, 6116, '5908-6116', 1, '台中金福星店', '{"number":"016123","shop":"\\u53f0\\u4e2d\\u91d1\\u798f\\u661f\\u5e97","phone":"0424521858","address":"\\u798f\\u661f\\u8def\\uff16\\uff10\\uff11\\u865f"}', '016123', 'quanjia', 'zh-tw', 1000),
(8120, 6116, '5908-6116', 1, '台中福雅店', '{"number":"015933","shop":"\\u53f0\\u4e2d\\u798f\\u96c5\\u5e97","phone":"0424632785","address":"\\u798f\\u96c5\\u8def\\uff16\\uff19\\uff13\\u865f\\u4e00\\u6a13"}', '015933', 'quanjia', 'zh-tw', 1000),
(8121, 6116, '5908-6116', 1, '台中白金店', '{"number":"017913","shop":"\\u53f0\\u4e2d\\u767d\\u91d1\\u5e97","phone":"0423550103","address":"\\u5de5\\u696d\\u5340\\u4e00\\u8def\\uff17\\uff10\\u865f"}', '017913', 'quanjia', 'zh-tw', 1000),
(8122, 6116, '5908-6116', 1, '台中金工店', '{"number":"016125","shop":"\\u53f0\\u4e2d\\u91d1\\u5de5\\u5e97","phone":"0423598407","address":"\\u5de5\\u696d\\u5340\\u4e00\\u8def\\uff19\\uff18\\uff0d\\uff11\\uff13\\uff10\\u865f"}', '016125', 'quanjia', 'zh-tw', 1000),
(8123, 6116, '5908-6116', 1, '台中福和店', '{"number":"017168","shop":"\\u53f0\\u4e2d\\u798f\\u548c\\u5e97","phone":"0423595806","address":"\\u5de5\\u696d\\u4e09\\u5341\\u516b\\u8def\\uff13\\u865f"}', '017168', 'quanjia', 'zh-tw', 1000),
(8124, 6116, '5908-6116', 1, '台中國安一店', '{"number":"017609","shop":"\\u53f0\\u4e2d\\u570b\\u5b89\\u4e00\\u5e97","phone":"0424610062","address":"\\u570b\\u5b89\\u4e00\\u8def\\uff11\\uff16\\uff19\\u865f"}', '017609', 'quanjia', 'zh-tw', 1000),
(8125, 6116, '5908-6116', 1, '台中漢翔店', '{"number":"012049","shop":"\\u53f0\\u4e2d\\u6f22\\u7fd4\\u5e97","phone":"0424520234","address":"\\u6f22\\u7fd4\\u8def\\uff12\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '012049', 'quanjia', 'zh-tw', 1000),
(8126, 6116, '5908-6116', 1, '台中惠安店', '{"number":"017761","shop":"\\u53f0\\u4e2d\\u60e0\\u5b89\\u5e97","phone":"0423154623","address":"\\u4f55\\u5fb7\\u91cc\\u7518\\u8085\\u8def\\u4e00\\u6bb5\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '017761', 'quanjia', 'zh-tw', 1000),
(8127, 6116, '5908-6116', 1, '台中惠慶店', '{"number":"015493","shop":"\\u53f0\\u4e2d\\u60e0\\u6176\\u5e97","phone":"0424527462","address":"\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff11\\u5df7\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '015493', 'quanjia', 'zh-tw', 1000),
(8128, 6116, '5908-6116', 1, '台中河南店', '{"number":"016648","shop":"\\u53f0\\u4e2d\\u6cb3\\u5357\\u5e97","phone":"0427079502","address":"\\u6cb3\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff12\\uff15\\u865f"}', '016648', 'quanjia', 'zh-tw', 1000),
(8129, 6116, '5908-6116', 1, '台中民主店', '{"number":"016609","shop":"\\u53f0\\u4e2d\\u6c11\\u4e3b\\u5e97","phone":"0422518576","address":"\\u9ece\\u660e\\u8def\\u4e8c\\u6bb5\\uff17\\uff17\\uff19\\u865f"}', '016609', 'quanjia', 'zh-tw', 1000),
(8130, 6116, '5908-6116', 1, '台中儷晶店', '{"number":"008854","shop":"\\u53f0\\u4e2d\\u5137\\u6676\\u5e97","phone":"0424525281","address":"\\u9752\\u6d77\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff13\\u865f"}', '008854', 'quanjia', 'zh-tw', 1000),
(8131, 6116, '5908-6116', 1, '台中海派店', '{"number":"016627","shop":"\\u53f0\\u4e2d\\u6d77\\u6d3e\\u5e97","phone":"0424524792","address":"\\u9752\\u6d77\\u5357\\u8857\\uff11\\uff15\\uff17\\u865f"}', '016627', 'quanjia', 'zh-tw', 1000),
(8132, 6116, '5908-6116', 1, '台中上安店', '{"number":"016060","shop":"\\u53f0\\u4e2d\\u4e0a\\u5b89\\u5e97","phone":"0424524993","address":"\\u4e0a\\u5b89\\u8def\\uff11\\uff13\\uff16\\u865f\\u4e00\\u6a13"}', '016060', 'quanjia', 'zh-tw', 1000),
(8133, 6116, '5908-6116', 1, '台中鼎盛店', '{"number":"018821","shop":"\\u53f0\\u4e2d\\u9f0e\\u76db\\u5e97","phone":"0422581077","address":"\\u5e02\\u653f\\u5317\\u4e8c\\u8def\\uff12\\uff13\\uff12\\u865f\\uff12\\u6a13"}', '018821', 'quanjia', 'zh-tw', 1000),
(8134, 6116, '5908-6116', 1, '台中豐邑店', '{"number":"017573","shop":"\\u53f0\\u4e2d\\u8c50\\u9091\\u5e97","phone":"0422540607","address":"\\u5e02\\u653f\\u8def\\uff13\\uff19\\uff12\\u865f\\uff11\\u6a13\\u53ca\\u62db\\u724c"}', '017573', 'quanjia', 'zh-tw', 1000),
(8135, 6116, '5908-6116', 1, '台中新桂冠店', '{"number":"015931","shop":"\\u53f0\\u4e2d\\u65b0\\u6842\\u51a0\\u5e97","phone":"0423124958","address":"\\u56db\\u5ddd\\u8def\\uff16\\uff17\\u865f"}', '015931', 'quanjia', 'zh-tw', 1000),
(8136, 6116, '5908-6116', 1, '台中金豹店', '{"number":"012493","shop":"\\u53f0\\u4e2d\\u91d1\\u8c79\\u5e97","phone":"0423128382","address":"\\u56db\\u5ddd\\u4e00\\u8857\\uff12\\uff16\\u865f"}', '012493', 'quanjia', 'zh-tw', 1000),
(8137, 6116, '5908-6116', 1, '台中新榮總店', '{"number":"014967","shop":"\\u53f0\\u4e2d\\u65b0\\u69ae\\u7e3d\\u5e97","phone":"0423581973","address":"\\u53f0\\u7063\\u5927\\u9053\\u56db\\u6bb5\\uff11\\uff16\\uff15\\uff10\\u865f\\u7b2c\\u4e00\\u91ab\\u7642\\u5927\\u6a13\\uff11\\u6a13"}', '014967', 'quanjia', 'zh-tw', 1000),
(8138, 6116, '5908-6116', 1, '台中福氣店', '{"number":"015401","shop":"\\u53f0\\u4e2d\\u798f\\u6c23\\u5e97","phone":"0424520407","address":"\\u6587\\u83ef\\u8def\\uff11\\uff10\\uff15\\u4e4b\\uff11\\uff10\\u865f"}', '015401', 'quanjia', 'zh-tw', 1000),
(8139, 6116, '5908-6116', 1, '台中福大店', '{"number":"017559","shop":"\\u53f0\\u4e2d\\u798f\\u5927\\u5e97","phone":"0427068872","address":"\\u6587\\u83ef\\u8def\\uff12\\uff10\\uff10\\u865f\\u4e00\\u6a13"}', '017559', 'quanjia', 'zh-tw', 1000),
(8140, 6116, '5908-6116', 1, '台中文華店', '{"number":"017266","shop":"\\u53f0\\u4e2d\\u6587\\u83ef\\u5e97","phone":"0424514285","address":"\\u6587\\u83ef\\u8def\\uff13\\u4e4b\\uff13\\u865f"}', '017266', 'quanjia', 'zh-tw', 1000),
(8141, 6116, '5908-6116', 1, '台中福美店', '{"number":"013185","shop":"\\u53f0\\u4e2d\\u798f\\u7f8e\\u5e97","phone":"0427069053","address":"\\u897f\\u5b89\\u8857\\uff19\\uff11\\u865f\\uff0c\\u897f\\u5c6f\\u5340\\u70c8\\u7f8e\\u8857\\uff11\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '013185', 'quanjia', 'zh-tw', 1000),
(8142, 6116, '5908-6116', 1, '台中俊美店', '{"number":"018315","shop":"\\u53f0\\u4e2d\\u4fca\\u7f8e\\u5e97","phone":"0424525922","address":"\\u897f\\u5c6f\\u8def\\uff12\\u6bb5\\uff12\\uff19\\uff17\\u4e4b\\uff11\\uff16\\u865f\\uff11\\u6a13\\u5168\\u90e8"}', '018315', 'quanjia', 'zh-tw', 1000),
(8143, 6116, '5908-6116', 1, '台中豐盛店', '{"number":"014097","shop":"\\u53f0\\u4e2d\\u8c50\\u76db\\u5e97","phone":"0423179406","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff16\\uff0d\\uff11\\uff13\\u865f\\uff11\\uff12\\uff16\\uff0d\\uff11\\uff15\\u865f"}', '014097', 'quanjia', 'zh-tw', 1000),
(8144, 6116, '5908-6116', 1, '台中至尊店', '{"number":"013443","shop":"\\u53f0\\u4e2d\\u81f3\\u5c0a\\u5e97","phone":"0427087147","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff18\\uff0d\\uff11\\uff12\\uff0c\\uff11\\uff13\\u865f"}', '013443', 'quanjia', 'zh-tw', 1000),
(8145, 6116, '5908-6116', 1, '台中西屯店', '{"number":"017898","shop":"\\u53f0\\u4e2d\\u897f\\u5c6f\\u5e97","phone":"0423179256","address":"\\u897f\\u5c6f\\u8def\\u4e8c\\u6bb5\\uff19\\uff10\\u4e4b\\uff12\\uff12\\uff0c\\uff12\\uff13\\u865f"}', '017898', 'quanjia', 'zh-tw', 1000),
(8146, 6116, '5908-6116', 1, '台中福科店', '{"number":"018060","shop":"\\u53f0\\u4e2d\\u798f\\u79d1\\u5e97","phone":"0424615098","address":"\\u897f\\u5c6f\\u8def\\u4e09\\u6bb5\\uff11\\uff15\\uff19\\u4e4b\\uff18\\uff10\\u865f"}', '018060', 'quanjia', 'zh-tw', 1000),
(8147, 6116, '5908-6116', 1, '台中新惠來店', '{"number":"018798","shop":"\\u53f0\\u4e2d\\u65b0\\u60e0\\u4f86\\u5e97","phone":"0423155463","address":"\\u6afb\\u82b1\\u8def\\uff11\\uff12\\uff19\\u865f"}', '018798', 'quanjia', 'zh-tw', 1000),
(8148, 6116, '5908-6116', 1, '台中福鄰店', '{"number":"016778","shop":"\\u53f0\\u4e2d\\u798f\\u9130\\u5e97","phone":"0424616177","address":"\\u6c38\\u5b89\\u91cc\\u897f\\u5c6f\\u8def\\u4e09\\u6bb5\\uff11\\uff16\\uff16\\u4e4b\\uff12\\uff15\\u865f\\uff11\\u6a13"}', '016778', 'quanjia', 'zh-tw', 1000),
(8149, 6116, '5908-6116', 1, '台中新福樂店', '{"number":"018119","shop":"\\u53f0\\u4e2d\\u65b0\\u798f\\u6a02\\u5e97","phone":"0424633853","address":"\\u6c38\\u798f\\u8def\\uff11\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '018119', 'quanjia', 'zh-tw', 1000),
(8150, 6116, '5908-6116', 1, '台中登峰店', '{"number":"016003","shop":"\\u53f0\\u4e2d\\u767b\\u5cf0\\u5e97","phone":"0424523433","address":"\\u81f3\\u5584\\u91cc\\u53f0\\u7063\\u5927\\u9053\\uff13\\u6bb5\\uff16\\uff16\\uff10\\u865f"}', '016003', 'quanjia', 'zh-tw', 1000),
(8151, 6116, '5908-6116', 1, '台中光明店', '{"number":"014586","shop":"\\u53f0\\u4e2d\\u5149\\u660e\\u5e97","phone":"0427069670","address":"\\u81f3\\u5584\\u91cc\\u53f0\\u7063\\u5927\\u9053\\uff13\\u6bb5\\uff17\\uff13\\uff10\\u865f"}', '014586', 'quanjia', 'zh-tw', 1000),
(8152, 6116, '5908-6116', 1, '台中至善店', '{"number":"017039","shop":"\\u53f0\\u4e2d\\u81f3\\u5584\\u5e97","phone":"0427014306","address":"\\u81f3\\u5584\\u8def\\uff11\\uff10\\uff15\\u865f"}', '017039', 'quanjia', 'zh-tw', 1000),
(8153, 6116, '5908-6116', 1, '台中至真店', '{"number":"016608","shop":"\\u53f0\\u4e2d\\u81f3\\u771f\\u5e97","phone":"0424527522","address":"\\u81f3\\u5584\\u8def\\uff12\\uff13\\uff16\\u865f\\u3001\\uff12\\uff13\\uff18\\u865f\\u3001\\uff12\\uff13\\uff14\\u5df7\\uff11\\u865f"}', '016608', 'quanjia', 'zh-tw', 1000),
(8154, 6116, '5908-6116', 1, '台中工三店', '{"number":"017517","shop":"\\u53f0\\u4e2d\\u5de5\\u4e09\\u5e97","phone":"0423507237","address":"\\u4e2d\\u5de5\\u4e09\\u8def\\uff17\\uff15\\u865f\\u3001\\uff17\\uff17\\u865f"}', '017517', 'quanjia', 'zh-tw', 1000),
(8155, 6116, '5908-6116', 1, '台中真安店', '{"number":"014779","shop":"\\u53f0\\u4e2d\\u771f\\u5b89\\u5e97","phone":"0422994955","address":"\\u4e2d\\u6e05\\u897f\\u4e8c\\u8857\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '014779', 'quanjia', 'zh-tw', 1000),
(8156, 6117, '5908-6117', 1, '新社新中和店', '{"number":"018397","shop":"\\u65b0\\u793e\\u65b0\\u4e2d\\u548c\\u5e97","phone":"0425825185","address":"\\u6771\\u65b0\\u8def\\u4e8c\\u6bb5\\uff13\\uff15\\u865f"}', '018397', 'quanjia', 'zh-tw', 1000),
(8157, 6117, '5908-6117', 1, '新社興安店', '{"number":"011567","shop":"\\u65b0\\u793e\\u8208\\u5b89\\u5e97","phone":"0425823085","address":"\\u65b0\\u793e\\u91cc\\u8208\\u793e\\u8857\\u56db\\u6bb5\\uff12\\uff16\\u4e4b\\uff11\\u865f\\u4e00\\u6a13"}', '011567', 'quanjia', 'zh-tw', 1000),
(8158, 6118, '5908-6118', 1, '台中繼成店', '{"number":"017670","shop":"\\u53f0\\u4e2d\\u7e7c\\u6210\\u5e97","phone":"0422262519","address":"\\u6210\\u529f\\u8def\\uff11\\uff10\\uff16\\u865f\\uff0c\\uff11\\uff10\\uff18\\u865f\\u4e00\\u6a13"}', '017670', 'quanjia', 'zh-tw', 1000),
(8159, 6118, '5908-6118', 1, '台中成功店', '{"number":"018281","shop":"\\u53f0\\u4e2d\\u6210\\u529f\\u5e97","phone":"0422250379","address":"\\u6210\\u529f\\u8def\\uff16\\uff16\\u865f"}', '018281', 'quanjia', 'zh-tw', 1000),
(8160, 6118, '5908-6118', 1, '台中新公園店', '{"number":"017490","shop":"\\u53f0\\u4e2d\\u65b0\\u516c\\u5712\\u5e97","phone":"0422231801","address":"\\u516c\\u5712\\u8def\\uff11\\uff19\\uff0d\\uff12\\u865f\\u58f9\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '017490', 'quanjia', 'zh-tw', 1000),
(8161, 6118, '5908-6118', 1, '台中萬代福店', '{"number":"017816","shop":"\\u53f0\\u4e2d\\u842c\\u4ee3\\u798f\\u5e97","phone":"0422010133","address":"\\u516c\\u5712\\u8def\\uff14\\uff12\\u865f"}', '017816', 'quanjia', 'zh-tw', 1000),
(8162, 6118, '5908-6118', 1, '台中新興中店', '{"number":"018924","shop":"\\u53f0\\u4e2d\\u65b0\\u8208\\u4e2d\\u5e97","phone":"0422236602","address":"\\u516c\\u5712\\u8def\\uff18\\uff11\\u865f"}', '018924', 'quanjia', 'zh-tw', 1000),
(8163, 6118, '5908-6118', 1, '台中狀元店', '{"number":"015094","shop":"\\u53f0\\u4e2d\\u72c0\\u5143\\u5e97","phone":"0422299329","address":"\\u7da0\\u5ddd\\u91cc\\u4e2d\\u5c71\\u8def\\uff11\\uff19\\u865f\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '015094', 'quanjia', 'zh-tw', 1000),
(8164, 6118, '5908-6118', 1, '台中新市府店', '{"number":"017533","shop":"\\u53f0\\u4e2d\\u65b0\\u5e02\\u5e9c\\u5e97","phone":"0422291640","address":"\\u6c11\\u6b0a\\u8def\\uff18\\uff16\\u865f"}', '017533', 'quanjia', 'zh-tw', 1000),
(8165, 6118, '5908-6118', 1, '台中日日新店', '{"number":"013773","shop":"\\u53f0\\u4e2d\\u65e5\\u65e5\\u65b0\\u5e97","phone":"0422235772","address":"\\u6c11\\u65cf\\u8def\\uff12\\uff11\\uff16\\u865f"}', '013773', 'quanjia', 'zh-tw', 1000),
(8166, 6118, '5908-6118', 1, '台中建民店', '{"number":"016956","shop":"\\u53f0\\u4e2d\\u5efa\\u6c11\\u5e97","phone":"0422203630","address":"\\u6c11\\u65cf\\u8def\\uff19\\u865f\\uff0e\\uff11\\uff11\\u865f"}', '016956', 'quanjia', 'zh-tw', 1000),
(8167, 6118, '5908-6118', 1, '台中日新店', '{"number":"017160","shop":"\\u53f0\\u4e2d\\u65e5\\u65b0\\u5e97","phone":"0422244999","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff19\\u865f"}', '017160', 'quanjia', 'zh-tw', 1000),
(8168, 6118, '5908-6118', 1, '台中鑫華店', '{"number":"017182","shop":"\\u53f0\\u4e2d\\u946b\\u83ef\\u5e97","phone":"0422259116","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff12\\u865f"}', '017182', 'quanjia', 'zh-tw', 1000),
(8169, 6118, '5908-6118', 1, '台中鑫貴店', '{"number":"018426","shop":"\\u53f0\\u4e2d\\u946b\\u8cb4\\u5e97","phone":"0422232616","address":"\\u81ea\\u7531\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff13\\u865f\\u58f9\\u6a13"}', '018426', 'quanjia', 'zh-tw', 1000),
(8170, 6119, '5909-6119', 1, '八德櫻花店', '{"number":"014530","shop":"\\u516b\\u5fb7\\u6afb\\u82b1\\u5e97","phone":"033754001","address":"\\u9577\\u5b89\\u8857\\uff13\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '014530', 'quanjia', 'zh-tw', 1000),
(8171, 6119, '5909-6119', 1, '八德大和店', '{"number":"013962","shop":"\\u516b\\u5fb7\\u5927\\u548c\\u5e97","phone":"033749852","address":"\\u5927\\u548c\\u8def\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '013962', 'quanjia', 'zh-tw', 1000),
(8172, 6119, '5909-6119', 1, '八德桃鶯店', '{"number":"014128","shop":"\\u516b\\u5fb7\\u6843\\u9daf\\u5e97","phone":"033621084","address":"\\u5927\\u660e\\u91cc\\u6843\\u9daf\\u8def\\uff13\\uff14\\u865f"}', '014128', 'quanjia', 'zh-tw', 1000),
(8173, 6119, '5909-6119', 1, '八德廣豐店', '{"number":"018343","shop":"\\u516b\\u5fb7\\u5ee3\\u8c50\\u5e97","phone":"033616976","address":"\\u516c\\u5712\\u8def\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '018343', 'quanjia', 'zh-tw', 1000),
(8174, 6119, '5909-6119', 1, '八德大湳店', '{"number":"017373","shop":"\\u516b\\u5fb7\\u5927\\u6e73\\u5e97","phone":"033629260","address":"\\u5ee3\\u798f\\u8def\\uff14\\uff12\\u865f\\u4e00\\u6a13"}', '017373', 'quanjia', 'zh-tw', 1000),
(8175, 6119, '5909-6119', 1, '八德德富店', '{"number":"013872","shop":"\\u516b\\u5fb7\\u5fb7\\u5bcc\\u5e97","phone":"033756696","address":"\\u5ee3\\u798f\\u8def\\uff18\\uff10\\uff15\\u865f"}', '013872', 'quanjia', 'zh-tw', 1000),
(8176, 6119, '5909-6119', 1, '八德大愛店', '{"number":"018353","shop":"\\u516b\\u5fb7\\u5927\\u611b\\u5e97","phone":"033642251","address":"\\u548c\\u5e73\\u8def\\uff11\\uff19\\uff16\\u865f"}', '018353', 'quanjia', 'zh-tw', 1000),
(8177, 6119, '5909-6119', 1, '八德和平店', '{"number":"014908","shop":"\\u516b\\u5fb7\\u548c\\u5e73\\u5e97","phone":"033710180","address":"\\u548c\\u5e73\\u8def\\uff18\\uff11\\uff18\\u865f"}', '014908', 'quanjia', 'zh-tw', 1000),
(8178, 6119, '5909-6119', 1, '八德仁興店', '{"number":"015331","shop":"\\u516b\\u5fb7\\u4ec1\\u8208\\u5e97","phone":"033731041","address":"\\u5efa\\u570b\\u8def\\uff12\\uff14\\uff11\\u865f"}', '015331', 'quanjia', 'zh-tw', 1000),
(8179, 6119, '5909-6119', 1, '八德建興店', '{"number":"016723","shop":"\\u516b\\u5fb7\\u5efa\\u8208\\u5e97","phone":"033732907","address":"\\u5efa\\u570b\\u8def\\uff15\\uff19\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '016723', 'quanjia', 'zh-tw', 1000),
(8180, 6119, '5909-6119', 1, '八德建國店', '{"number":"014950","shop":"\\u516b\\u5fb7\\u5efa\\u570b\\u5e97","phone":"033713364","address":"\\u5efa\\u570b\\u8def\\uff16\\uff15\\uff17\\u865f\\u4e00\\u6a13\\u90e8\\u5206"}', '014950', 'quanjia', 'zh-tw', 1000),
(8181, 6119, '5909-6119', 1, '八德新富順店', '{"number":"013720","shop":"\\u516b\\u5fb7\\u65b0\\u5bcc\\u9806\\u5e97","phone":"033684036","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff11\\uff16\\u865f"}', '013720', 'quanjia', 'zh-tw', 1000),
(8182, 6119, '5909-6119', 1, '八德瑞祥店', '{"number":"013519","shop":"\\u516b\\u5fb7\\u745e\\u7965\\u5e97","phone":"033731140","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '013519', 'quanjia', 'zh-tw', 1000),
(8183, 6119, '5909-6119', 1, '八德貴族店', '{"number":"018304","shop":"\\u516b\\u5fb7\\u8cb4\\u65cf\\u5e97","phone":"033661473","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff19\\u865f"}', '018304', 'quanjia', 'zh-tw', 1000),
(8184, 6119, '5909-6119', 1, '八德瑞豐店', '{"number":"018461","shop":"\\u516b\\u5fb7\\u745e\\u8c50\\u5e97","phone":"033657530","address":"\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\uff17\\uff19\\uff10\\u865f\\u4e00\\u6a13"}', '018461', 'quanjia', 'zh-tw', 1000),
(8185, 6119, '5909-6119', 1, '八德福壽店', '{"number":"017887","shop":"\\u516b\\u5fb7\\u798f\\u58fd\\u5e97","phone":"033619253","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\uff13\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '017887', 'quanjia', 'zh-tw', 1000),
(8186, 6119, '5909-6119', 1, '八德介壽店', '{"number":"016898","shop":"\\u516b\\u5fb7\\u4ecb\\u58fd\\u5e97","phone":"033645872","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\uff16\\uff14\\uff13\\u865f"}', '016898', 'quanjia', 'zh-tw', 1000),
(8187, 6119, '5909-6119', 1, '八德大義店', '{"number":"014953","shop":"\\u516b\\u5fb7\\u5927\\u7fa9\\u5e97","phone":"033712776","address":"\\u4ecb\\u58fd\\u8def\\u4e00\\u6bb5\\uff17\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '014953', 'quanjia', 'zh-tw', 1000),
(8188, 6119, '5909-6119', 1, '八德茄苳店', '{"number":"013457","shop":"\\u516b\\u5fb7\\u8304\\u82f3\\u5e97","phone":"033715371","address":"\\u8304\\u82f3\\u8def\\uff18\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '013457', 'quanjia', 'zh-tw', 1000),
(8189, 6119, '5909-6119', 1, '八德瑞德店', '{"number":"018423","shop":"\\u516b\\u5fb7\\u745e\\u5fb7\\u5e97","phone":"033658715","address":"\\u745e\\u5fb7\\u91cc\\uff11\\uff13\\u9130\\u4ecb\\u58fd\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '018423', 'quanjia', 'zh-tw', 1000),
(8190, 6119, '5909-6119', 1, '八德豐吉店', '{"number":"015702","shop":"\\u516b\\u5fb7\\u8c50\\u5409\\u5e97","phone":"033683640","address":"\\u745e\\u8c50\\u91cc\\u8c50\\u7530\\u4e00\\u8def\\uff12\\u865f"}', '015702', 'quanjia', 'zh-tw', 1000),
(8191, 6119, '5909-6119', 1, '八德新興店', '{"number":"015097","shop":"\\u516b\\u5fb7\\u65b0\\u8208\\u5e97","phone":"033775940","address":"\\u65b0\\u8208\\u8def\\uff13\\uff10\\uff11\\u865f"}', '015097', 'quanjia', 'zh-tw', 1000),
(8192, 6119, '5909-6119', 1, '八德新市店', '{"number":"016169","shop":"\\u516b\\u5fb7\\u65b0\\u5e02\\u5e97","phone":"033680546","address":"\\u8208\\u8c50\\u8def\\uff14\\uff18\\uff15\\u865f"}', '016169', 'quanjia', 'zh-tw', 1000),
(8193, 6119, '5909-6119', 1, '八德忠勇店', '{"number":"016181","shop":"\\u516b\\u5fb7\\u5fe0\\u52c7\\u5e97","phone":"033677792","address":"\\u7fa9\\u52c7\\u8857\\uff11\\uff10\\uff15\\u865f\\uff08\\u516b\\u5fb7\\u6771\\u52c7\\u79fb\\u5e97\\uff09"}', '016181', 'quanjia', 'zh-tw', 1000),
(8194, 6119, '5909-6119', 1, '八德銀和店', '{"number":"017702","shop":"\\u516b\\u5fb7\\u9280\\u548c\\u5e97","phone":"033746651","address":"\\u9280\\u548c\\u8857\\uff12\\uff19\\uff06\\uff13\\uff11\\u865f"}', '017702', 'quanjia', 'zh-tw', 1000),
(8195, 6119, '5909-6119', 1, '八德金和店', '{"number":"017343","shop":"\\u516b\\u5fb7\\u91d1\\u548c\\u5e97","phone":"033744118","address":"\\u9280\\u548c\\u8857\\uff16\\uff13\\u865f\\u52a0\\u5730\\u4e0b\\u5ba4"}', '017343', 'quanjia', 'zh-tw', 1000),
(8196, 6119, '5909-6119', 1, '八德永福店', '{"number":"017409","shop":"\\u516b\\u5fb7\\u6c38\\u798f\\u5e97","phone":"033761401","address":"\\u6c38\\u798f\\u897f\\u8857\\uff13\\uff12\\u5df7\\uff11\\u865f"}', '017409', 'quanjia', 'zh-tw', 1000),
(8197, 6119, '5909-6119', 1, '八德桃華店', '{"number":"016803","shop":"\\u516b\\u5fb7\\u6843\\u83ef\\u5e97","phone":"032172762","address":"\\u4e2d\\u83ef\\u8def\\uff12\\uff16\\uff18\\uff0e\\uff12\\uff17\\uff10\\u865f"}', '016803', 'quanjia', 'zh-tw', 1000),
(8198, 6119, '5909-6119', 1, '八德忠誠店', '{"number":"017869","shop":"\\u516b\\u5fb7\\u5fe0\\u8aa0\\u5e97","phone":"033660842","address":"\\u5fe0\\u5b5d\\u8857\\uff11\\uff12\\u865f"}', '017869', 'quanjia', 'zh-tw', 1000),
(8199, 6120, '5909-6120', 1, '大溪慈湖店', '{"number":"015071","shop":"\\u5927\\u6eaa\\u6148\\u6e56\\u5e97","phone":"033885439","address":"\\u5fa9\\u8208\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '015071', 'quanjia', 'zh-tw', 1000),
(8200, 6120, '5909-6120', 1, '大溪崎頂店', '{"number":"014439","shop":"\\u5927\\u6eaa\\u5d0e\\u9802\\u5e97","phone":"033808479","address":"\\u4ecb\\u58fd\\u8def\\uff18\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '014439', 'quanjia', 'zh-tw', 1000),
(8201, 6120, '5909-6120', 1, '大溪仁和店', '{"number":"018511","shop":"\\u5927\\u6eaa\\u4ec1\\u548c\\u5e97","phone":"033900112","address":"\\u5357\\u8208\\u91cc\\u4ec1\\u548c\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\uff19\\u865f"}', '018511', 'quanjia', 'zh-tw', 1000),
(8202, 6120, '5909-6120', 1, '大溪埔頂店', '{"number":"017895","shop":"\\u5927\\u6eaa\\u57d4\\u9802\\u5e97","phone":"033907337","address":"\\u57d4\\u9802\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff18\\u865f"}', '017895', 'quanjia', 'zh-tw', 1000),
(8203, 6120, '5909-6120', 1, '大溪交流店', '{"number":"018132","shop":"\\u5927\\u6eaa\\u4ea4\\u6d41\\u5e97","phone":"033804491","address":"\\u4ec1\\u548c\\u91cc\\u54e1\\u6797\\u8def\\u4e00\\u6bb5\\uff14\\uff15\\uff11\\u865f"}', '018132', 'quanjia', 'zh-tw', 1000),
(8204, 6120, '5909-6120', 1, '大溪仁東店', '{"number":"017705","shop":"\\u5927\\u6eaa\\u4ec1\\u6771\\u5e97","phone":"033802401","address":"\\u4ec1\\u548c\\u4e03\\u8857\\uff15\\uff12\\u865f"}', '017705', 'quanjia', 'zh-tw', 1000),
(8205, 6120, '5909-6120', 1, '大溪三本店', '{"number":"017897","shop":"\\u5927\\u6eaa\\u4e09\\u672c\\u5e97","phone":"033804467","address":"\\u4ec1\\u5584\\u8857\\uff11\\uff18\\uff12\\u3001\\uff11\\uff18\\uff16\\u865f"}', '017897', 'quanjia', 'zh-tw', 1000),
(8206, 6120, '5909-6120', 1, '大溪松樹店', '{"number":"015358","shop":"\\u5927\\u6eaa\\u677e\\u6a39\\u5e97","phone":"033805861","address":"\\u4ec1\\u5584\\u91cc\\u677e\\u6a39\\uff12\\uff11\\u4e4b\\uff11\\u865f"}', '015358', 'quanjia', 'zh-tw', 1000),
(8207, 6120, '5909-6120', 1, '大溪永昌店', '{"number":"016744","shop":"\\u5927\\u6eaa\\u6c38\\u660c\\u5e97","phone":"033804394","address":"\\u6c38\\u660c\\u8def\\uff13\\uff15\\uff15\\u865f"}', '016744', 'quanjia', 'zh-tw', 1000),
(8208, 6120, '5909-6120', 1, '大溪員明店', '{"number":"014643","shop":"\\u5927\\u6eaa\\u54e1\\u660e\\u5e97","phone":"033807960","address":"\\u54e1\\u6797\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff15\\u865f\\uff11\\uff0d\\uff13\\u6a13"}', '014643', 'quanjia', 'zh-tw', 1000),
(8209, 6120, '5909-6120', 1, '大溪員林店', '{"number":"017180","shop":"\\u5927\\u6eaa\\u54e1\\u6797\\u5e97","phone":"033900461","address":"\\u54e1\\u6797\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\u865f"}', '017180', 'quanjia', 'zh-tw', 1000),
(8210, 6121, '5909-6121', 1, '大園果林店', '{"number":"018098","shop":"\\u5927\\u5712\\u679c\\u6797\\u5e97","phone":"033936443","address":"\\uff1f\\u6797\\u6751\\u62d4\\u5b50\\u6797\\uff12\\uff13\\u4e4b\\uff18\\uff13\\u865f"}', '018098', 'quanjia', 'zh-tw', 1000),
(8211, 6121, '5909-6121', 1, '大園蓮園店', '{"number":"012398","shop":"\\u5927\\u5712\\u84ee\\u5712\\u5e97","phone":"033858411","address":"\\u5927\\u89c0\\u8def\\uff16\\uff10\\uff12\\u865f"}', '012398', 'quanjia', 'zh-tw', 1000),
(8212, 6121, '5909-6121', 1, '大園華儲店', '{"number":"014016","shop":"\\u5927\\u5712\\u83ef\\u5132\\u5e97","phone":"033834223","address":"\\u822a\\u52e4\\u5317\\u8def\\uff11\\uff10\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '014016', 'quanjia', 'zh-tw', 1000),
(8213, 6121, '5909-6121', 1, '大園臨翔店', '{"number":"018737","shop":"\\u5927\\u5712\\u81e8\\u7fd4\\u5e97","phone":"033834132","address":"\\u822a\\u7ad9\\u5357\\u8def\\uff19\\u865f\\uff13\\u6a13\\uff08\\u5317\\u5074\\uff09"}', '018737', 'quanjia', 'zh-tw', 1000),
(8214, 6121, '5909-6121', 1, '大園仁德店', '{"number":"018736","shop":"\\u5927\\u5712\\u4ec1\\u5fb7\\u5e97","phone":"033854237","address":"\\u548c\\u5e73\\u897f\\u8def\\uff11\\uff10\\uff10\\u865f\\u58f9\\u6a13"}', '018736', 'quanjia', 'zh-tw', 1000),
(8215, 6121, '5909-6121', 1, '大園領航店', '{"number":"016059","shop":"\\u5927\\u5712\\u9818\\u822a\\u5e97","phone":"033819197","address":"\\u9818\\u822a\\u5317\\u8def\\u56db\\u6bb5\\uff13\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '016059', 'quanjia', 'zh-tw', 1000),
(8216, 6121, '5909-6121', 1, '大園田心店', '{"number":"017044","shop":"\\u5927\\u5712\\u7530\\u5fc3\\u5e97","phone":"033867231","address":"\\u65b0\\u8208\\u8def\\uff18\\uff15\\u865f"}', '017044', 'quanjia', 'zh-tw', 1000),
(8217, 6121, '5909-6121', 1, '大園華園店', '{"number":"018904","shop":"\\u5927\\u5712\\u83ef\\u5712\\u5e97","phone":"033854615","address":"\\u4e2d\\u83ef\\u8def\\uff16\\uff11\\u865f"}', '018904', 'quanjia', 'zh-tw', 1000),
(8218, 6121, '5909-6121', 1, '大園都心店', '{"number":"018779","shop":"\\u5927\\u5712\\u90fd\\u5fc3\\u5e97","phone":"033842104","address":"\\u4e2d\\u5c71\\u5317\\u8def\\uff13\\uff11\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '018779', 'quanjia', 'zh-tw', 1000),
(8219, 6121, '5909-6121', 1, '大園航園店', '{"number":"013969","shop":"\\u5927\\u5712\\u822a\\u5712\\u5e97","phone":"033865480","address":"\\u4e2d\\u6b63\\u6771\\u8def\\uff13\\uff13\\uff18\\u865f"}', '013969', 'quanjia', 'zh-tw', 1000),
(8220, 6122, '5909-6122', 1, '觀音大觀店', '{"number":"016971","shop":"\\u89c0\\u97f3\\u5927\\u89c0\\u5e97","phone":"034761360","address":"\\u4fdd\\u969c\\u6751\\u5927\\u89c0\\u8def\\u4e00\\u6bb5\\uff13\\uff14\\uff15\\u865f"}', '016971', 'quanjia', 'zh-tw', 1000),
(8221, 6122, '5909-6122', 1, '觀音草漯店', '{"number":"017348","shop":"\\u89c0\\u97f3\\u8349\\u6f2f\\u5e97","phone":"034830671","address":"\\u8349\\u6f2f\\u91cc\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\uff11\\uff19\\uff10\\uff0d\\uff17\\u865f"}', '017348', 'quanjia', 'zh-tw', 1000),
(8222, 6122, '5909-6122', 1, '觀音成功店', '{"number":"018462","shop":"\\u89c0\\u97f3\\u6210\\u529f\\u5e97","phone":"034831031","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\uff18\\uff12\\uff19\\u865f"}', '018462', 'quanjia', 'zh-tw', 1000),
(8223, 6122, '5909-6122', 1, '觀音敬業店', '{"number":"015490","shop":"\\u89c0\\u97f3\\u656c\\u696d\\u5e97","phone":"034160058","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\uff15\\uff15\\uff11\\uff0c\\uff15\\uff15\\uff13\\uff0c\\uff15\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '015490', 'quanjia', 'zh-tw', 1000),
(8224, 6122, '5909-6122', 1, '觀音商城店', '{"number":"016021","shop":"\\u89c0\\u97f3\\u5546\\u57ce\\u5e97","phone":"034834435","address":"\\u5efa\\u570b\\u8def\\uff11\\uff17\\uff12\\u865f"}', '016021', 'quanjia', 'zh-tw', 1000),
(8225, 6122, '5909-6122', 1, '觀音新坡店', '{"number":"015813","shop":"\\u89c0\\u97f3\\u65b0\\u5761\\u5e97","phone":"032825391","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff16\\uff17\\uff13\\u865f\\uff11\\uff06\\uff12\\u6a13"}', '015813', 'quanjia', 'zh-tw', 1000),
(8226, 6122, '5909-6122', 1, '觀音忠愛店', '{"number":"016286","shop":"\\u89c0\\u97f3\\u5fe0\\u611b\\u5e97","phone":"034989002","address":"\\u5fe0\\u611b\\u8def\\uff11\\u865f"}', '016286', 'quanjia', 'zh-tw', 1000),
(8227, 6123, '5909-6123', 1, '龜山大傳店', '{"number":"016847","shop":"\\u9f9c\\u5c71\\u5927\\u50b3\\u5e97","phone":"033492278","address":"\\u5927\\u540c\\u8def\\uff12\\uff13\\uff12\\u865f\\uff11\\u6a13\\uff0b\\uff12\\u6a13"}', '016847', 'quanjia', 'zh-tw', 1000),
(8228, 6123, '5909-6123', 1, '龜山德明店', '{"number":"017529","shop":"\\u9f9c\\u5c71\\u5fb7\\u660e\\u5e97","phone":"033509883","address":"\\u5fb7\\u660e\\u8def\\uff11\\uff10\\uff15\\u865f\\uff0c\\uff11\\uff10\\uff17\\u865f\\uff11\\u6a13"}', '017529', 'quanjia', 'zh-tw', 1000),
(8229, 6123, '5909-6123', 1, '龜山忠義店', '{"number":"018278","shop":"\\u9f9c\\u5c71\\u5fe0\\u7fa9\\u5e97","phone":"033494488","address":"\\u6953\\u6a39\\u6751\\u5fe0\\u7fa9\\u8def\\u4e00\\u6bb5\\uff15\\uff16\\u865f\\u4e00\\u6a13"}', '018278', 'quanjia', 'zh-tw', 1000),
(8230, 6123, '5909-6123', 1, '龜山雲蓮店', '{"number":"015691","shop":"\\u9f9c\\u5c71\\u96f2\\u84ee\\u5e97","phone":"033183365","address":"\\u5fa9\\u8208\\u8857\\uff13\\uff10\\uff12\\u865f"}', '015691', 'quanjia', 'zh-tw', 1000),
(8231, 6123, '5909-6123', 1, '龜山金石店', '{"number":"015811","shop":"\\u9f9c\\u5c71\\u91d1\\u77f3\\u5e97","phone":"033979040","address":"\\u5fa9\\u8208\\u4e00\\u8def\\uff11\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '015811', 'quanjia', 'zh-tw', 1000),
(8232, 6123, '5909-6123', 1, '龜山文欣店', '{"number":"015297","shop":"\\u9f9c\\u5c71\\u6587\\u6b23\\u5e97","phone":"033279270","address":"\\u5fa9\\u8208\\u4e00\\u8def\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '015297', 'quanjia', 'zh-tw', 1000),
(8233, 6123, '5909-6123', 1, '龜山環球店', '{"number":"018811","shop":"\\u9f9c\\u5c71\\u74b0\\u7403\\u5e97","phone":"033275621","address":"\\u5fa9\\u8208\\u4e00\\u8def\\uff18\\u865f\\uff12\\u6a13"}', '018811', 'quanjia', 'zh-tw', 1000),
(8234, 6123, '5909-6123', 1, '龜山光峰店', '{"number":"018241","shop":"\\u9f9c\\u5c71\\u5149\\u5cf0\\u5e97","phone":"033495020","address":"\\u5149\\u5cf0\\u8def\\uff11\\uff18\\uff15\\u865f"}', '018241', 'quanjia', 'zh-tw', 1000),
(8235, 6123, '5909-6123', 1, '龜山萬壽店', '{"number":"018395","shop":"\\u9f9c\\u5c71\\u842c\\u58fd\\u5e97","phone":"033501272","address":"\\u9f9c\\u5c71\\u6751\\u842c\\u58fd\\u8def\\u4e8c\\u6bb5\\uff16\\uff16\\uff12\\u865f\\uff16\\uff16\\uff12\\u4e4b\\uff11\\u865f\\u4e00"}', '018395', 'quanjia', 'zh-tw', 1000),
(8236, 6123, '5909-6123', 1, '龜山導航店', '{"number":"017546","shop":"\\u9f9c\\u5c71\\u5c0e\\u822a\\u5e97","phone":"033273147","address":"\\u83ef\\u4e9e\\u4e8c\\u8def\\uff12\\uff17\\uff10\\u865f\\uff22\\uff11\\u6a13"}', '017546', 'quanjia', 'zh-tw', 1000),
(8237, 6123, '5909-6123', 1, '龜山龍壽店', '{"number":"014287","shop":"\\u9f9c\\u5c71\\u9f8d\\u58fd\\u5e97","phone":"0282001091","address":"\\u9f8d\\u58fd\\u6751\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\uff19\\uff13\\u865f"}', '014287', 'quanjia', 'zh-tw', 1000),
(8238, 6123, '5909-6123', 1, '龜山陸光店', '{"number":"018514","shop":"\\u9f9c\\u5c71\\u9678\\u5149\\u5e97","phone":"032132197","address":"\\u9678\\u5149\\u8def\\uff19\\uff18\\u865f\\uff11\\u6a13"}', '018514', 'quanjia', 'zh-tw', 1000),
(8239, 6123, '5909-6123', 1, '蘆竹南祥店', '{"number":"017801","shop":"\\u8606\\u7af9\\u5357\\u7965\\u5e97","phone":"033216145","address":"\\u5357\\u4e0a\\u8def\\uff14\\uff13\\uff15\\u865f"}', '017801', 'quanjia', 'zh-tw', 1000),
(8240, 6123, '5909-6123', 1, '龜山頂興店', '{"number":"011725","shop":"\\u9f9c\\u5c71\\u9802\\u8208\\u5e97","phone":"033590358","address":"\\u5c71\\u798f\\u6751\\u9802\\u8208\\u8def\\uff13\\uff19\\u4e4b\\uff16\\u865f\\u4e00\\u6a13"}', '011725', 'quanjia', 'zh-tw', 1000),
(8241, 6123, '5909-6123', 1, '龜山山鶯店', '{"number":"017190","shop":"\\u9f9c\\u5c71\\u5c71\\u9daf\\u5e97","phone":"033595062","address":"\\u5c71\\u9daf\\u8def\\uff14\\uff11\\u865f"}', '017190', 'quanjia', 'zh-tw', 1000),
(8242, 6123, '5909-6123', 1, '龜山龍華店', '{"number":"018599","shop":"\\u9f9c\\u5c71\\u9f8d\\u83ef\\u5e97","phone":"0282092667","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff16\\u865f"}', '018599', 'quanjia', 'zh-tw', 1000),
(8243, 6123, '5909-6123', 1, '龜山光啟店', '{"number":"018864","shop":"\\u9f9c\\u5c71\\u5149\\u555f\\u5e97","phone":"0282001363","address":"\\u842c\\u58fd\\u8def\\u4e00\\u6bb5\\uff12\\uff16\\uff18\\u4e4b\\uff13\\u865f"}', '018864', 'quanjia', 'zh-tw', 1000),
(8244, 6123, '5909-6123', 1, '龜山文學店', '{"number":"015826","shop":"\\u9f9c\\u5c71\\u6587\\u5b78\\u5e97","phone":"033186557","address":"\\u6587\\u5316\\u4e8c\\u8def\\uff13\\uff14\\u5df7\\uff11\\uff14\\u5f04\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '015826', 'quanjia', 'zh-tw', 1000),
(8245, 6123, '5909-6123', 1, '龜山文銓店', '{"number":"018805","shop":"\\u9f9c\\u5c71\\u6587\\u9293\\u5e97","phone":"033284576","address":"\\u6587\\u5316\\u4e03\\u8def\\uff11\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '018805', 'quanjia', 'zh-tw', 1000),
(8246, 6123, '5909-6123', 1, '龜山樂高店', '{"number":"016360","shop":"\\u9f9c\\u5c71\\u6a02\\u9ad8\\u5e97","phone":"033186127","address":"\\u6587\\u5316\\u4e03\\u8def\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '016360', 'quanjia', 'zh-tw', 1000),
(8247, 6123, '5909-6123', 1, '龜山文華店', '{"number":"018726","shop":"\\u9f9c\\u5c71\\u6587\\u83ef\\u5e97","phone":"03","address":"\\u6587\\u5316\\u4e09\\u8def\\uff13\\uff19\\uff19\\u865f\\uff11\\u6a13\\uff06\\u593e\\u5c64"}', '018726', 'quanjia', 'zh-tw', 1000),
(8248, 6123, '5909-6123', 1, '龜山長明店', '{"number":"014193","shop":"\\u9f9c\\u5c71\\u9577\\u660e\\u5e97","phone":"032118463","address":"\\u6587\\u5316\\u4e00\\u8def\\uff12\\uff15\\uff19\\u865f"}', '014193', 'quanjia', 'zh-tw', 1000),
(8249, 6123, '5909-6123', 1, '龜山庚德店', '{"number":"018725","shop":"\\u9f9c\\u5c71\\u5e9a\\u5fb7\\u5e97","phone":"033270034","address":"\\u6587\\u5316\\u4e00\\u8def\\uff12\\uff15\\uff19\\u865f\\uff22\\uff11\\u6a13\\uff08\\u64da\\u5fb7\\u6a13\\u5bbf\\u820d\\uff09"}', '018725', 'quanjia', 'zh-tw', 1000),
(8250, 6123, '5909-6123', 1, '龜山庚勤店', '{"number":"018718","shop":"\\u9f9c\\u5c71\\u5e9a\\u52e4\\u5e97","phone":"032118033","address":"\\u6587\\u5316\\u4e00\\u8def\\uff12\\uff16\\uff11\\u865f\\u5e9a\\u52e4\\u6a13\\uff2c\\u68df\\uff15\\u6a13"}', '018718', 'quanjia', 'zh-tw', 1000),
(8251, 6123, '5909-6123', 1, '龜山新城店', '{"number":"016068","shop":"\\u9f9c\\u5c71\\u65b0\\u57ce\\u5e97","phone":"033183264","address":"\\u6587\\u9752\\u8def\\uff12\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '016068', 'quanjia', 'zh-tw', 1000),
(8252, 6123, '5909-6123', 1, '龜山新都店', '{"number":"017360","shop":"\\u9f9c\\u5c71\\u65b0\\u90fd\\u5e97","phone":"033974704","address":"\\u6587\\u9752\\u8def\\uff13\\uff15\\uff17\\u865f\\uff11\\uff06\\uff12\\u6a13"}', '017360', 'quanjia', 'zh-tw', 1000),
(8253, 6123, '5909-6123', 1, '龜山自強店', '{"number":"017530","shop":"\\u9f9c\\u5c71\\u81ea\\u5f37\\u5e97","phone":"033207774","address":"\\u65b0\\u8208\\u6751\\uff13\\uff18\\u9130\\u81ea\\u5f37\\u5357\\u8def\\uff17\\uff11\\u865f\\uff17\\uff13\\u865f\\uff11\\u6a13"}', '017530', 'quanjia', 'zh-tw', 1000),
(8254, 6123, '5909-6123', 1, '龜山幸福店', '{"number":"015228","shop":"\\u9f9c\\u5c71\\u5e78\\u798f\\u5e97","phone":"033196352","address":"\\u5e78\\u798f\\u4e00\\u8857\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '015228', 'quanjia', 'zh-tw', 1000),
(8255, 6123, '5909-6123', 1, '龜山幸美店', '{"number":"014069","shop":"\\u9f9c\\u5c71\\u5e78\\u7f8e\\u5e97","phone":"033197009","address":"\\u5e78\\u7f8e\\u4e5d\\u8857\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '014069', 'quanjia', 'zh-tw', 1000),
(8256, 6123, '5909-6123', 1, '龜山興龍店', '{"number":"014286","shop":"\\u9f9c\\u5c71\\u8208\\u9f8d\\u5e97","phone":"033597922","address":"\\u632f\\u8208\\u8def\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '014286', 'quanjia', 'zh-tw', 1000),
(8257, 6123, '5909-6123', 1, '龜山新明德店', '{"number":"014375","shop":"\\u9f9c\\u5c71\\u65b0\\u660e\\u5fb7\\u5e97","phone":"033490469","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff16\\u865f\\uff11\\u6a13\\u548c\\uff12\\u6a13"}', '014375', 'quanjia', 'zh-tw', 1000),
(8258, 6123, '5909-6123', 1, '龜山大湖店', '{"number":"016413","shop":"\\u9f9c\\u5c71\\u5927\\u6e56\\u5e97","phone":"033272353","address":"\\u5fe0\\u7fa9\\u8def\\u4e8c\\u6bb5\\uff16\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '016413', 'quanjia', 'zh-tw', 1000),
(8259, 6124, '5909-6124', 1, '龍潭百年店', '{"number":"018185","shop":"\\u9f8d\\u6f6d\\u767e\\u5e74\\u5e97","phone":"034097375","address":"\\u767e\\u5e74\\u8def\\uff11\\uff19\\u865f"}', '018185', 'quanjia', 'zh-tw', 1000),
(8260, 6124, '5909-6124', 1, '龍潭龍昌店', '{"number":"018099","shop":"\\u9f8d\\u6f6d\\u9f8d\\u660c\\u5e97","phone":"034797183","address":"\\u5927\\u660c\\u8def\\u4e8c\\u6bb5\\uff18\\uff10\\u865f"}', '018099', 'quanjia', 'zh-tw', 1000),
(8261, 6124, '5909-6124', 1, '龍潭龍聖店', '{"number":"012510","shop":"\\u9f8d\\u6f6d\\u9f8d\\u8056\\u5e97","phone":"034096182","address":"\\u6885\\u9f8d\\u8def\\uff11\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '012510', 'quanjia', 'zh-tw', 1000),
(8262, 6124, '5909-6124', 1, '龍潭兄弟店', '{"number":"012193","shop":"\\u9f8d\\u6f6d\\u5144\\u5f1f\\u5e97","phone":"034092818","address":"\\u6c11\\u751f\\u8def\\uff11\\uff10\\u865f"}', '012193', 'quanjia', 'zh-tw', 1000),
(8263, 6124, '5909-6124', 1, '龍潭中興店', '{"number":"012693","shop":"\\u9f8d\\u6f6d\\u4e2d\\u8208\\u5e97","phone":"034990684","address":"\\u4e2d\\u8208\\u6751\\u4e2d\\u8208\\u8def\\uff16\\uff15\\u865f\\uff11\\u6a13"}', '012693', 'quanjia', 'zh-tw', 1000),
(8264, 6124, '5909-6124', 1, '龍潭陸醫店', '{"number":"017181","shop":"\\u9f8d\\u6f6d\\u9678\\u91ab\\u5e97","phone":"034096642","address":"\\u4e2d\\u8208\\u8def\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '017181', 'quanjia', 'zh-tw', 1000),
(8265, 6124, '5909-6124', 1, '龍潭武漢店', '{"number":"012989","shop":"\\u9f8d\\u6f6d\\u6b66\\u6f22\\u5e97","phone":"034798052","address":"\\u4e2d\\u8208\\u8def\\uff13\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '012989', 'quanjia', 'zh-tw', 1000),
(8266, 6124, '5909-6124', 1, '龍潭高原店', '{"number":"018183","shop":"\\u9f8d\\u6f6d\\u9ad8\\u539f\\u5e97","phone":"034717489","address":"\\u4e2d\\u539f\\u8def\\u4e09\\u6bb5\\uff11\\uff15\\u865f"}', '018183', 'quanjia', 'zh-tw', 1000),
(8267, 6124, '5909-6124', 1, '龍潭興龍店', '{"number":"016098","shop":"\\u9f8d\\u6f6d\\u8208\\u9f8d\\u5e97","phone":"034809934","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff14\\uff18\\u865f"}', '016098', 'quanjia', 'zh-tw', 1000),
(8268, 6124, '5909-6124', 1, '龍潭五福店', '{"number":"015096","shop":"\\u9f8d\\u6f6d\\u4e94\\u798f\\u5e97","phone":"034807507","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff18\\uff17\\u4e4b\\uff19\\u865f"}', '015096', 'quanjia', 'zh-tw', 1000),
(8269, 6125, '5909-6125', 1, '蘆竹長壽店', '{"number":"015925","shop":"\\u8606\\u7af9\\u9577\\u58fd\\u5e97","phone":"033214825","address":"\\u9577\\u6625\\u8def\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '015925', 'quanjia', 'zh-tw', 1000),
(8270, 6125, '5909-6125', 1, '蘆竹大竹店', '{"number":"015233","shop":"\\u8606\\u7af9\\u5927\\u7af9\\u5e97","phone":"033237280","address":"\\u5927\\u7af9\\u8def\\uff14\\uff19\\uff12\\u865f"}', '015233', 'quanjia', 'zh-tw', 1000),
(8271, 6125, '5909-6125', 1, '蘆竹興福店', '{"number":"017703","shop":"\\u8606\\u7af9\\u8208\\u798f\\u5e97","phone":"033132705","address":"\\u5927\\u7af9\\u8def\\uff15\\uff13\\uff13\\u865f"}', '017703', 'quanjia', 'zh-tw', 1000),
(8272, 6125, '5909-6125', 1, '蘆竹奉順店', '{"number":"016285","shop":"\\u8606\\u7af9\\u5949\\u9806\\u5e97","phone":"032121391","address":"\\u5949\\u5316\\u8def\\uff11\\uff10\\uff16\\u865f"}', '016285', 'quanjia', 'zh-tw', 1000),
(8273, 6125, '5909-6125', 1, '蘆竹奉化店', '{"number":"014017","shop":"\\u8606\\u7af9\\u5949\\u5316\\u5e97","phone":"033211379","address":"\\u5949\\u5316\\u8def\\uff13\\uff16\\u865f\\u3001\\uff13\\uff18\\u865f\\u3001\\u5357\\u9806\\u4e00\\u8857\\uff16\\uff13\\u865f"}', '014017', 'quanjia', 'zh-tw', 1000),
(8274, 6125, '5909-6125', 1, '蘆竹海湖店', '{"number":"017578","shop":"\\u8606\\u7af9\\u6d77\\u6e56\\u5e97","phone":"033542342","address":"\\u6d77\\u5c71\\u8def\\u4e8c\\u6bb5\\uff17\\u3001\\uff19\\u865f\\u3001\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '017578', 'quanjia', 'zh-tw', 1000),
(8275, 6125, '5909-6125', 1, '蘆竹吉林店', '{"number":"017598","shop":"\\u8606\\u7af9\\u5409\\u6797\\u5e97","phone":"033127253","address":"\\u5409\\u6797\\u8def\\uff12\\u865f"}', '017598', 'quanjia', 'zh-tw', 1000),
(8276, 6125, '5909-6125', 1, '蘆竹吉川店', '{"number":"017666","shop":"\\u8606\\u7af9\\u5409\\u5ddd\\u5e97","phone":"033126604","address":"\\u5409\\u6797\\u8def\\uff19\\uff19\\u865f"}', '017666', 'quanjia', 'zh-tw', 1000),
(8277, 6125, '5909-6125', 1, '蘆竹鼎福店', '{"number":"011691","shop":"\\u8606\\u7af9\\u9f0e\\u798f\\u5e97","phone":"033216360","address":"\\u516d\\u798f\\u8def\\uff11\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '011691', 'quanjia', 'zh-tw', 1000),
(8278, 6125, '5909-6125', 1, '蘆竹南崁店', '{"number":"016712","shop":"\\u8606\\u7af9\\u5357\\u5d01\\u5e97","phone":"033528210","address":"\\u5357\\u5d01\\u8def\\uff12\\uff12\\uff18\\u865f"}', '016712', 'quanjia', 'zh-tw', 1000),
(8279, 6125, '5909-6125', 1, '蘆竹南工店', '{"number":"017345","shop":"\\u8606\\u7af9\\u5357\\u5de5\\u5e97","phone":"033229538","address":"\\u5357\\u5d01\\u8def\\u4e8c\\u6bb5\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '017345', 'quanjia', 'zh-tw', 1000),
(8280, 6125, '5909-6125', 1, '蘆竹南亞店', '{"number":"016552","shop":"\\u8606\\u7af9\\u5357\\u4e9e\\u5e97","phone":"033215704","address":"\\u5357\\u5d01\\u8def\\u4e00\\u6bb5\\uff13\\uff12\\uff12\\u865f"}', '016552', 'quanjia', 'zh-tw', 1000),
(8281, 6125, '5909-6125', 1, '蘆竹洛陽店', '{"number":"012307","shop":"\\u8606\\u7af9\\u6d1b\\u967d\\u5e97","phone":"033112515","address":"\\u5357\\u69ae\\u6751\\u5149\\u660e\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff19\\u865f\\uff11\\uff12\\uff11\\u865f\\u4e00\\u6a13"}', '012307', 'quanjia', 'zh-tw', 1000),
(8282, 6125, '5909-6125', 1, '蘆竹坑口店', '{"number":"017722","shop":"\\u8606\\u7af9\\u5751\\u53e3\\u5e97","phone":"033543954","address":"\\u5357\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff13\\uff19\\uff18\\u4e4b\\uff11\\u865f"}', '017722', 'quanjia', 'zh-tw', 1000),
(8283, 6125, '5909-6125', 1, '蘆竹山腳店', '{"number":"018233","shop":"\\u8606\\u7af9\\u5c71\\u8173\\u5e97","phone":"033244499","address":"\\u5357\\u5c71\\u8def\\u4e09\\u6bb5\\uff12\\uff17\\uff18\\u865f\\uff11\\u6a13\\uff08\\u524d\\u6bb5\\uff09"}', '018233', 'quanjia', 'zh-tw', 1000),
(8284, 6125, '5909-6125', 1, '蘆竹南山店', '{"number":"012776","shop":"\\u8606\\u7af9\\u5357\\u5c71\\u5e97","phone":"032121487","address":"\\u5357\\u5c71\\u8def\\u4e00\\u6bb5\\uff17\\uff15\\u865f\\u3001\\uff17\\uff17\\u865f"}', '012776', 'quanjia', 'zh-tw', 1000),
(8285, 6125, '5909-6125', 1, '蘆竹星光店', '{"number":"016222","shop":"\\u8606\\u7af9\\u661f\\u5149\\u5e97","phone":"032124840","address":"\\u5357\\u9806\\u516d\\u8857\\uff17\\uff12\\u865f"}', '016222', 'quanjia', 'zh-tw', 1000),
(8286, 6125, '5909-6125', 1, '蘆竹南興店', '{"number":"018210","shop":"\\u8606\\u7af9\\u5357\\u8208\\u5e97","phone":"033216536","address":"\\u5357\\u8208\\u6751\\u5949\\u5316\\u8def\\uff11\\uff18\\uff19\\u865f\\u4e00\\u6a13"}', '018210', 'quanjia', 'zh-tw', 1000),
(8287, 6125, '5909-6125', 1, '蘆竹明竹店', '{"number":"017410","shop":"\\u8606\\u7af9\\u660e\\u7af9\\u5e97","phone":"033126044","address":"\\u5357\\u7af9\\u8def\\u4e00\\u6bb5\\uff11\\uff13\\uff14\\u865f"}', '017410', 'quanjia', 'zh-tw', 1000),
(8288, 6125, '5909-6125', 1, '蘆竹南竹店', '{"number":"017832","shop":"\\u8606\\u7af9\\u5357\\u7af9\\u5e97","phone":"032124691","address":"\\u5357\\u7af9\\u8def\\u4e00\\u6bb5\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '017832', 'quanjia', 'zh-tw', 1000),
(8289, 6125, '5909-6125', 1, '蘆竹仁愛店', '{"number":"018115","shop":"\\u8606\\u7af9\\u4ec1\\u611b\\u5e97","phone":"033216480","address":"\\u4ec1\\u611b\\u8def\\u4e09\\u6bb5\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '018115', 'quanjia', 'zh-tw', 1000),
(8290, 6125, '5909-6125', 1, '蘆竹興仁店', '{"number":"018329","shop":"\\u8606\\u7af9\\u8208\\u4ec1\\u5e97","phone":"033234007","address":"\\u4e0a\\u8208\\u8def\\uff11\\uff19\\uff10\\u865f"}', '018329', 'quanjia', 'zh-tw', 1000),
(8291, 6125, '5909-6125', 1, '蘆竹上興店', '{"number":"014330","shop":"\\u8606\\u7af9\\u4e0a\\u8208\\u5e97","phone":"033134806","address":"\\u4e0a\\u8208\\u8def\\uff12\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '014330', 'quanjia', 'zh-tw', 1000),
(8292, 6125, '5909-6125', 1, '蘆竹五福店', '{"number":"017276","shop":"\\u8606\\u7af9\\u4e94\\u798f\\u5e97","phone":"032223953","address":"\\u4e94\\u798f\\u6751\\u4e94\\u798f\\u4e00\\u8def\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '017276', 'quanjia', 'zh-tw', 1000),
(8293, 6125, '5909-6125', 1, '蘆竹六福店', '{"number":"016553","shop":"\\u8606\\u7af9\\u516d\\u798f\\u5e97","phone":"032124152","address":"\\u4e94\\u798f\\u516d\\u8def\\uff14\\uff18\\u865f"}', '016553', 'quanjia', 'zh-tw', 1000),
(8294, 6125, '5909-6125', 1, '蘆竹開南店', '{"number":"014716","shop":"\\u8606\\u7af9\\u958b\\u5357\\u5e97","phone":"032161494","address":"\\u65b0\\u8208\\u8857\\uff11\\uff12\\uff10\\u865f"}', '014716', 'quanjia', 'zh-tw', 1000),
(8295, 6125, '5909-6125', 1, '蘆竹中福店', '{"number":"016208","shop":"\\u8606\\u7af9\\u4e2d\\u798f\\u5e97","phone":"033129091","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff12\\uff16\\u865f"}', '016208', 'quanjia', 'zh-tw', 1000),
(8296, 6125, '5909-6125', 1, '蘆竹中愛店', '{"number":"017706","shop":"\\u8606\\u7af9\\u4e2d\\u611b\\u5e97","phone":"033114647","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff18\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '017706', 'quanjia', 'zh-tw', 1000),
(8297, 6125, '5909-6125', 1, '蘆竹星馳店', '{"number":"017435","shop":"\\u8606\\u7af9\\u661f\\u99b3\\u5e97","phone":"033529579","address":"\\u5fe0\\u5b5d\\u897f\\u8def\\uff11\\uff16\\uff19\\u5df7\\uff12\\u865f"}', '017435', 'quanjia', 'zh-tw', 1000),
(8298, 6126, '5909-6126', 1, '平鎮振興店', '{"number":"016281","shop":"\\u5e73\\u93ae\\u632f\\u8208\\u5e97","phone":"034576430","address":"\\u5317\\u52e2\\u91cc\\u548c\\u5e73\\u8def\\uff12\\uff11\\uff16\\u865f"}', '016281', 'quanjia', 'zh-tw', 1000),
(8299, 6126, '5909-6126', 1, '平鎮義廣店', '{"number":"017260","shop":"\\u5e73\\u93ae\\u7fa9\\u5ee3\\u5e97","phone":"034931243","address":"\\u5ee3\\u660e\\u8def\\uff15\\uff19\\u865f"}', '017260', 'quanjia', 'zh-tw', 1000),
(8300, 6126, '5909-6126', 1, '平鎮廣泰店', '{"number":"016849","shop":"\\u5e73\\u93ae\\u5ee3\\u6cf0\\u5e97","phone":"034931983","address":"\\u5ee3\\u6cf0\\u8def\\uff11\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '016849', 'quanjia', 'zh-tw', 1000),
(8301, 6126, '5909-6126', 1, '平鎮廣南店', '{"number":"012916","shop":"\\u5e73\\u93ae\\u5ee3\\u5357\\u5e97","phone":"034024499","address":"\\u74b0\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '012916', 'quanjia', 'zh-tw', 1000),
(8302, 6126, '5909-6126', 1, '平鎮德育店', '{"number":"018649","shop":"\\u5e73\\u93ae\\u5fb7\\u80b2\\u5e97","phone":"034589131","address":"\\u74b0\\u5357\\u8def\\u4e09\\u6bb5\\uff19\\uff13\\u865f"}', '018649', 'quanjia', 'zh-tw', 1000),
(8303, 6126, '5909-6126', 1, '平鎮大仁店', '{"number":"013390","shop":"\\u5e73\\u93ae\\u5927\\u4ec1\\u5e97","phone":"034575027","address":"\\u91d1\\u9675\\u8def\\u4e09\\u6bb5\\uff16\\uff18\\u865f"}', '013390', 'quanjia', 'zh-tw', 1000),
(8304, 6126, '5909-6126', 1, '平鎮南勢店', '{"number":"013908","shop":"\\u5e73\\u93ae\\u5357\\u52e2\\u5e97","phone":"034396949","address":"\\u91d1\\u661f\\u91cc\\u4e2d\\u8c50\\u8def\\u5357\\u52e2\\u4e8c\\u6bb5\\uff12\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '013908', 'quanjia', 'zh-tw', 1000),
(8305, 6126, '5909-6126', 1, '平鎮中庸店', '{"number":"018776","shop":"\\u5e73\\u93ae\\u4e2d\\u5eb8\\u5e97","phone":"034397398","address":"\\u91d1\\u661f\\u91cc\\u4e2d\\u5eb8\\u8def\\uff11\\uff12\\uff16\\u865f\\uff11\\uff12\\uff18\\u865f\\u4e00\\u6a13"}', '018776', 'quanjia', 'zh-tw', 1000),
(8306, 6126, '5909-6126', 1, '平鎮新明店', '{"number":"017721","shop":"\\u5e73\\u93ae\\u65b0\\u660e\\u5e97","phone":"034952141","address":"\\u6c11\\u65cf\\u8def\\uff11\\uff13\\uff15\\u865f\\u58f9\\u6a13\\uff08\\u5982\\u9644\\u5716\\u6240\\u793a\\uff09"}', '017721', 'quanjia', 'zh-tw', 1000),
(8307, 6126, '5909-6126', 1, '平鎮民族店', '{"number":"016897","shop":"\\u5e73\\u93ae\\u6c11\\u65cf\\u5e97","phone":"034024798","address":"\\u6c11\\u65cf\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff19\\uff0c\\uff11\\uff19\\uff11\\u865f\\uff11\\u6a13"}', '016897', 'quanjia', 'zh-tw', 1000),
(8308, 6126, '5909-6126', 1, '平鎮金豐店', '{"number":"018512","shop":"\\u5e73\\u93ae\\u91d1\\u8c50\\u5e97","phone":"034396499","address":"\\u5357\\u5e73\\u8def\\uff11\\uff11\\uff19\\u865f"}', '018512', 'quanjia', 'zh-tw', 1000),
(8309, 6126, '5909-6126', 1, '平鎮平東店', '{"number":"017531","shop":"\\u5e73\\u93ae\\u5e73\\u6771\\u5e97","phone":"034501388","address":"\\u5e73\\u6771\\u8def\\uff15\\uff17\\uff11\\u865f\\uff11\\uff26"}', '017531', 'quanjia', 'zh-tw', 1000),
(8310, 6126, '5909-6126', 1, '平鎮富民店', '{"number":"015880","shop":"\\u5e73\\u93ae\\u5bcc\\u6c11\\u5e97","phone":"034952304","address":"\\u6587\\u5316\\u8857\\uff11\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '015880', 'quanjia', 'zh-tw', 1000),
(8311, 6126, '5909-6126', 1, '平鎮極光店', '{"number":"018713","shop":"\\u5e73\\u93ae\\u6975\\u5149\\u5e97","phone":"034013607","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\u865f"}', '018713', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(8312, 6126, '5909-6126', 1, '平鎮彩虹店', '{"number":"016156","shop":"\\u5e73\\u93ae\\u5f69\\u8679\\u5e97","phone":"034028491","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\uff13\\uff14\\uff11\\u865f\\u4e00\\u6a13\\uff08\\u524d\\u6bb5\\u7d04\\uff11\\uff18\\u576a\\uff09"}', '016156', 'quanjia', 'zh-tw', 1000),
(8313, 6126, '5909-6126', 1, '平鎮新義店', '{"number":"018510","shop":"\\u5e73\\u93ae\\u65b0\\u7fa9\\u5e97","phone":"034023615","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\uff14\\uff10\\uff10\\u5df7\\uff18\\u865f"}', '018510', 'quanjia', 'zh-tw', 1000),
(8314, 6126, '5909-6126', 1, '平鎮義興店', '{"number":"017461","shop":"\\u5e73\\u93ae\\u7fa9\\u8208\\u5e97","phone":"034931646","address":"\\u80b2\\u9054\\u8def\\uff17\\uff15\\u865f\\uff11\\uff26"}', '017461', 'quanjia', 'zh-tw', 1000),
(8315, 6126, '5909-6126', 1, '平鎮新德店', '{"number":"018234","shop":"\\u5e73\\u93ae\\u65b0\\u5fb7\\u5e97","phone":"034936884","address":"\\u632f\\u8208\\u897f\\u8def\\uff11\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '018234', 'quanjia', 'zh-tw', 1000),
(8316, 6126, '5909-6126', 1, '平鎮南東店', '{"number":"016562","shop":"\\u5e73\\u93ae\\u5357\\u6771\\u5e97","phone":"034397532","address":"\\u4e2d\\u8c50\\u8def\\u5357\\u52e2\\u4e8c\\u6bb5\\uff11\\u865f"}', '016562', 'quanjia', 'zh-tw', 1000),
(8317, 6126, '5909-6126', 1, '平鎮日星店', '{"number":"016899","shop":"\\u5e73\\u93ae\\u65e5\\u661f\\u5e97","phone":"034693600","address":"\\u4e2d\\u8c50\\u8def\\u5c71\\u9802\\u6bb5\\uff13\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '016899', 'quanjia', 'zh-tw', 1000),
(8318, 6127, '5909-6127', 1, '桃園御賞店', '{"number":"018007","shop":"\\u6843\\u5712\\u5fa1\\u8cde\\u5e97","phone":"032161611","address":"\\u5bf6\\u6176\\u91cc\\u5927\\u8208\\u897f\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '018007', 'quanjia', 'zh-tw', 1000),
(8319, 6127, '5909-6127', 1, '桃園金寶店', '{"number":"018974","shop":"\\u6843\\u5712\\u91d1\\u5bf6\\u5e97","phone":"033268325","address":"\\u5bf6\\u5c71\\u8857\\uff12\\uff16\\uff15\\u865f\\uff11\\u6a13"}', '018974', 'quanjia', 'zh-tw', 1000),
(8320, 6127, '5909-6127', 1, '桃園寶山店', '{"number":"018106","shop":"\\u6843\\u5712\\u5bf6\\u5c71\\u5e97","phone":"033579430","address":"\\u5bf6\\u5c71\\u8857\\uff13\\uff17\\uff15\\uff0e\\uff13\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '018106', 'quanjia', 'zh-tw', 1000),
(8321, 6127, '5909-6127', 1, '桃園長沙店', '{"number":"014955","shop":"\\u6843\\u5712\\u9577\\u6c99\\u5e97","phone":"033634586","address":"\\u9577\\u6c99\\u8857\\uff17\\uff12\\u865f"}', '014955', 'quanjia', 'zh-tw', 1000),
(8322, 6127, '5909-6127', 1, '桃園東陽店', '{"number":"014517","shop":"\\u6843\\u5712\\u6771\\u967d\\u5e97","phone":"033395478","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '014517', 'quanjia', 'zh-tw', 1000),
(8323, 6127, '5909-6127', 1, '桃園慈愛店', '{"number":"018775","shop":"\\u6843\\u5712\\u6148\\u611b\\u5e97","phone":"033576920","address":"\\u6148\\u5149\\u8857\\uff11\\uff11\\uff14\\u865f"}', '018775', 'quanjia', 'zh-tw', 1000),
(8324, 6127, '5909-6127', 1, '桃園大豐店', '{"number":"011772","shop":"\\u6843\\u5712\\u5927\\u8c50\\u5e97","phone":"033642026","address":"\\u5927\\u8c50\\u8def\\uff11\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '011772', 'quanjia', 'zh-tw', 1000),
(8325, 6127, '5909-6127', 1, '桃園大業店', '{"number":"015927","shop":"\\u6843\\u5712\\u5927\\u696d\\u5e97","phone":"033170925","address":"\\u5927\\u8208\\u91cc\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\uff11\\uff13\\uff17\\u3001\\uff11\\uff13\\uff19\\u865f"}', '015927', 'quanjia', 'zh-tw', 1000),
(8326, 6127, '5909-6127', 1, '桃園鶴岡店', '{"number":"018186","shop":"\\u6843\\u5712\\u9db4\\u5ca1\\u5e97","phone":"032160572","address":"\\u5927\\u8208\\u897f\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff19\\u5df7\\uff17\\uff17\\u865f"}', '018186', 'quanjia', 'zh-tw', 1000),
(8327, 6127, '5909-6127', 1, '桃園帝國店', '{"number":"018342","shop":"\\u6843\\u5712\\u5e1d\\u570b\\u5e97","phone":"033588900","address":"\\u5927\\u8208\\u897f\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\uff18\\u865f"}', '018342', 'quanjia', 'zh-tw', 1000),
(8328, 6127, '5909-6127', 1, '桃園元富店', '{"number":"013051","shop":"\\u6843\\u5712\\u5143\\u5bcc\\u5e97","phone":"033355731","address":"\\u5927\\u696d\\u8def\\u4e00\\u6bb5\\uff14\\uff16\\u865f\\u3001\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '013051', 'quanjia', 'zh-tw', 1000),
(8329, 6127, '5909-6127', 1, '桃園冠倫店', '{"number":"017411","shop":"\\u6843\\u5712\\u51a0\\u502b\\u5e97","phone":"033562892","address":"\\u5927\\u6709\\u8def\\uff15\\uff15\\uff14\\u865f"}', '017411', 'quanjia', 'zh-tw', 1000),
(8330, 6127, '5909-6127', 1, '桃園東埔店', '{"number":"015871","shop":"\\u6843\\u5712\\u6771\\u57d4\\u5e97","phone":"033357105","address":"\\u6771\\u57d4\\u91cc\\u4e2d\\u6b63\\u8def\\uff13\\uff17\\uff18\\u865f"}', '015871', 'quanjia', 'zh-tw', 1000),
(8331, 6127, '5909-6127', 1, '桃園客運店', '{"number":"017376","shop":"\\u6843\\u5712\\u5ba2\\u904b\\u5e97","phone":"033336196","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '017376', 'quanjia', 'zh-tw', 1000),
(8332, 6127, '5909-6127', 1, '桃園玉山店', '{"number":"015047","shop":"\\u6843\\u5712\\u7389\\u5c71\\u5e97","phone":"033331571","address":"\\u5fa9\\u8208\\u8def\\uff13\\uff18\\uff17\\u865f"}', '015047', 'quanjia', 'zh-tw', 1000),
(8333, 6127, '5909-6127', 1, '桃園鼎聖店', '{"number":"012630","shop":"\\u6843\\u5712\\u9f0e\\u8056\\u5e97","phone":"033922199","address":"\\u570b\\u9f0e\\u4e00\\u8857\\uff12\\uff18\\u865f"}', '012630', 'quanjia', 'zh-tw', 1000),
(8334, 6127, '5909-6127', 1, '桃園國強店', '{"number":"018548","shop":"\\u6843\\u5712\\u570b\\u5f37\\u5e97","phone":"033708336","address":"\\u570b\\u5f37\\u4e00\\u8857\\uff12\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018548', 'quanjia', 'zh-tw', 1000),
(8335, 6127, '5909-6127', 1, '桃園後站店', '{"number":"017375","shop":"\\u6843\\u5712\\u5f8c\\u7ad9\\u5e97","phone":"033642526","address":"\\u5efa\\u570b\\u91cc\\u5927\\u6797\\u8def\\uff17\\uff11\\u865f\\uff11\\uff26"}', '017375', 'quanjia', 'zh-tw', 1000),
(8336, 6127, '5909-6127', 1, '桃園愛國店', '{"number":"018352","shop":"\\u6843\\u5712\\u611b\\u570b\\u5e97","phone":"033767528","address":"\\u5efa\\u570b\\u8def\\uff14\\uff10\\u865f"}', '018352', 'quanjia', 'zh-tw', 1000),
(8337, 6127, '5909-6127', 1, '桃園建新店', '{"number":"016182","shop":"\\u6843\\u5712\\u5efa\\u65b0\\u5e97","phone":"033751735","address":"\\u5efa\\u65b0\\u8857\\uff18\\uff18\\u865f"}', '016182', 'quanjia', 'zh-tw', 1000),
(8338, 6127, '5909-6127', 1, '桃園龍昇店', '{"number":"016563","shop":"\\u6843\\u5712\\u9f8d\\u6607\\u5e97","phone":"032184602","address":"\\u4ecb\\u58fd\\u8def\\uff11\\uff17\\u865f\\u4e00\\u6a13"}', '016563', 'quanjia', 'zh-tw', 1000),
(8339, 6127, '5909-6127', 1, '桃園德壽店', '{"number":"012629","shop":"\\u6843\\u5712\\u5fb7\\u58fd\\u5e97","phone":"033768427","address":"\\u4ecb\\u58fd\\u8def\\uff14\\uff11\\uff12\\u865f"}', '012629', 'quanjia', 'zh-tw', 1000),
(8340, 6127, '5909-6127', 1, '桃園大盛店', '{"number":"017166","shop":"\\u6843\\u5712\\u5927\\u76db\\u5e97","phone":"033586001","address":"\\u7d93\\u570b\\u8def\\uff11\\uff14\\uff12\\u865f"}', '017166', 'quanjia', 'zh-tw', 1000),
(8341, 6127, '5909-6127', 1, '桃園麗品店', '{"number":"018280","shop":"\\u6843\\u5712\\u9e97\\u54c1\\u5e97","phone":"033469068","address":"\\u7d93\\u570b\\u8def\\uff12\\uff12\\uff13\\u865f\\uff11\\uff26"}', '018280', 'quanjia', 'zh-tw', 1000),
(8342, 6127, '5909-6127', 1, '桃園天祥店', '{"number":"017831","shop":"\\u6843\\u5712\\u5929\\u7965\\u5e97","phone":"033562389","address":"\\u7d93\\u570b\\u8def\\uff14\\uff15\\uff11\\u865f\\u4e00\\u6a13"}', '017831', 'quanjia', 'zh-tw', 1000),
(8343, 6127, '5909-6127', 1, '桃園榮運店', '{"number":"015911","shop":"\\u6843\\u5712\\u69ae\\u904b\\u5e97","phone":"033586466","address":"\\u7d93\\u570b\\u8def\\uff18\\uff19\\uff19\\u865f\\u4e00\\u6a13\\u623f\\u5c4b"}', '015911', 'quanjia', 'zh-tw', 1000),
(8344, 6127, '5909-6127', 1, '桃園力行店', '{"number":"016946","shop":"\\u6843\\u5712\\u529b\\u884c\\u5e97","phone":"033321461","address":"\\u529b\\u884c\\u8def\\uff11\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '016946', 'quanjia', 'zh-tw', 1000),
(8345, 6127, '5909-6127', 1, '桃園向陽店', '{"number":"018763","shop":"\\u6843\\u5712\\u5411\\u967d\\u5e97","phone":"033388086","address":"\\u529b\\u884c\\u8def\\uff13\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '018763', 'quanjia', 'zh-tw', 1000),
(8346, 6127, '5909-6127', 1, '桃園龍安店', '{"number":"018351","shop":"\\u6843\\u5712\\u9f8d\\u5b89\\u5e97","phone":"032172781","address":"\\u9f8d\\u5b89\\u8857\\uff11\\uff16\\uff19\\u4e4b\\uff13\\u865f\\uff0c\\u570b\\u5f37\\u5341\\u4e00\\u8857\\uff17\\uff11\\u865f"}', '018351', 'quanjia', 'zh-tw', 1000),
(8347, 6127, '5909-6127', 1, '桃園縣安店', '{"number":"014309","shop":"\\u6843\\u5712\\u7e23\\u5b89\\u5e97","phone":"033335813","address":"\\u6c11\\u5b89\\u8def\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '014309', 'quanjia', 'zh-tw', 1000),
(8348, 6127, '5909-6127', 1, '桃園民光店', '{"number":"016478","shop":"\\u6843\\u5712\\u6c11\\u5149\\u5e97","phone":"033588972","address":"\\u6c11\\u5149\\u6771\\u8def\\uff11\\uff12\\uff10\\u865f"}', '016478', 'quanjia', 'zh-tw', 1000),
(8349, 6127, '5909-6127', 1, '桃園民樂店', '{"number":"015881","shop":"\\u6843\\u5712\\u6c11\\u6a02\\u5e97","phone":"033368935","address":"\\u6c11\\u65cf\\u8def\\uff11\\uff18\\uff17\\u865f"}', '015881', 'quanjia', 'zh-tw', 1000),
(8350, 6127, '5909-6127', 1, '桃園南平店', '{"number":"016594","shop":"\\u6843\\u5712\\u5357\\u5e73\\u5e97","phone":"033463509","address":"\\u5357\\u5e73\\u8def\\uff11\\uff19\\uff14\\uff0e\\uff11\\uff19\\uff16\\u865f"}', '016594', 'quanjia', 'zh-tw', 1000),
(8351, 6127, '5909-6127', 1, '桃園同安店', '{"number":"014949","shop":"\\u6843\\u5712\\u540c\\u5b89\\u5e97","phone":"033586804","address":"\\u5357\\u5e73\\u8def\\uff12\\uff11\\uff11\\u865f"}', '014949', 'quanjia', 'zh-tw', 1000),
(8352, 6127, '5909-6127', 1, '桃園壽星店', '{"number":"013961","shop":"\\u6843\\u5712\\u58fd\\u661f\\u5e97","phone":"033795374","address":"\\u4ec1\\u611b\\u8def\\uff16\\uff10\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '013961', 'quanjia', 'zh-tw', 1000),
(8353, 6127, '5909-6127', 1, '桃園宏海店', '{"number":"018777","shop":"\\u6843\\u5712\\u5b8f\\u6d77\\u5e97","phone":"032173319","address":"\\u4e0a\\u6d77\\u8def\\uff11\\uff10\\uff10\\u865f"}', '018777', 'quanjia', 'zh-tw', 1000),
(8354, 6127, '5909-6127', 1, '桃園桃都店', '{"number":"016289","shop":"\\u6843\\u5712\\u6843\\u90fd\\u5e97","phone":"033716791","address":"\\u6843\\u9daf\\u8def\\uff13\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '016289', 'quanjia', 'zh-tw', 1000),
(8355, 6127, '5909-6127', 1, '桃園中埔店', '{"number":"015128","shop":"\\u6843\\u5712\\u4e2d\\u57d4\\u5e97","phone":"033414897","address":"\\u540c\\u5fb7\\u5341\\u8857\\uff13\\uff15\\u865f\\u3001\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '015128', 'quanjia', 'zh-tw', 1000),
(8356, 6127, '5909-6127', 1, '桃園新天地店', '{"number":"018603","shop":"\\u6843\\u5712\\u65b0\\u5929\\u5730\\u5e97","phone":"033462225","address":"\\u540c\\u5fb7\\u4e94\\u8857\\uff19\\uff18\\u865f\\uff11\\u6a13"}', '018603', 'quanjia', 'zh-tw', 1000),
(8357, 6127, '5909-6127', 1, '桃園民安店', '{"number":"014162","shop":"\\u6843\\u5712\\u6c11\\u5b89\\u5e97","phone":"033397059","address":"\\u6b66\\u9675\\u91cc\\u6c11\\u751f\\u8def\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '014162', 'quanjia', 'zh-tw', 1000),
(8358, 6127, '5909-6127', 1, '桃園市府店', '{"number":"016538","shop":"\\u6843\\u5712\\u5e02\\u5e9c\\u5e97","phone":"033946139","address":"\\u7e23\\u5e9c\\u8def\\uff11\\u865f"}', '016538', 'quanjia', 'zh-tw', 1000),
(8359, 6127, '5909-6127', 1, '桃園縣政店', '{"number":"014129","shop":"\\u6843\\u5712\\u7e23\\u653f\\u5e97","phone":"033384179","address":"\\u7e23\\u5e9c\\u8def\\uff18\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13\\uff0e\\uff12\\u6a13"}', '014129', 'quanjia', 'zh-tw', 1000),
(8360, 6127, '5909-6127', 1, '桃園建國店', '{"number":"015711","shop":"\\u6843\\u5712\\u5efa\\u570b\\u5e97","phone":"033766328","address":"\\u5ef6\\u5e73\\u8def\\uff11\\uff13\\uff15\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '015711', 'quanjia', 'zh-tw', 1000),
(8361, 6127, '5909-6127', 1, '桃園龍彩店', '{"number":"017316","shop":"\\u6843\\u5712\\u9f8d\\u5f69\\u5e97","phone":"033171967","address":"\\u6c38\\u5b89\\u5317\\u8def\\uff14\\uff12\\uff14\\u865f\\uff11\\u6a13\\u4e4b\\uff11"}', '017316', 'quanjia', 'zh-tw', 1000),
(8362, 6127, '5909-6127', 1, '桃園永安店', '{"number":"016365","shop":"\\u6843\\u5712\\u6c38\\u5b89\\u5e97","phone":"033395404","address":"\\u6c38\\u5b89\\u8def\\uff12\\uff11\\uff19\\u865f"}', '016365', 'quanjia', 'zh-tw', 1000),
(8363, 6127, '5909-6127', 1, '桃園早稻田店', '{"number":"015033","shop":"\\u6843\\u5712\\u65e9\\u7a3b\\u7530\\u5e97","phone":"033465031","address":"\\u6b63\\u5eb7\\u4e09\\u8857\\uff11\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '015033', 'quanjia', 'zh-tw', 1000),
(8364, 6127, '5909-6127', 1, '桃園明德店', '{"number":"015715","shop":"\\u6843\\u5712\\u660e\\u5fb7\\u5e97","phone":"033362313","address":"\\u4e2d\\u83ef\\u8def\\u4e09\\u865f\\u4e00\\u6a13\\u4e4b\\u4e5d\\uff0c\\u4e09\\u865f\\u4e00\\u6a13\\u4e4b\\u5341"}', '015715', 'quanjia', 'zh-tw', 1000),
(8365, 6127, '5909-6127', 1, '桃園吉昌店', '{"number":"017579","shop":"\\u6843\\u5712\\u5409\\u660c\\u5e97","phone":"032207751","address":"\\u4e2d\\u5e73\\u8def\\uff13\\uff12\\u865f"}', '017579', 'quanjia', 'zh-tw', 1000),
(8366, 6127, '5909-6127', 1, '桃園南中店', '{"number":"016819","shop":"\\u6843\\u5712\\u5357\\u4e2d\\u5e97","phone":"033466658","address":"\\u4e2d\\u57d4\\u516d\\u8857\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '016819', 'quanjia', 'zh-tw', 1000),
(8367, 6127, '5909-6127', 1, '桃園朝陽店', '{"number":"013799","shop":"\\u6843\\u5712\\u671d\\u967d\\u5e97","phone":"033381667","address":"\\u4e2d\\u5c71\\u6771\\u8def\\uff11\\uff17\\u865f"}', '013799', 'quanjia', 'zh-tw', 1000),
(8368, 6127, '5909-6127', 1, '桃園國陽店', '{"number":"014546","shop":"\\u6843\\u5712\\u570b\\u967d\\u5e97","phone":"033377356","address":"\\u4e2d\\u5c71\\u6771\\u8def\\uff13\\uff12\\u4e4b\\uff12\\uff11\\u865f\\uff11\\u6a13\\uff0e\\uff22\\uff11"}', '014546', 'quanjia', 'zh-tw', 1000),
(8369, 6127, '5909-6127', 1, '桃園中山店', '{"number":"012707","shop":"\\u6843\\u5712\\u4e2d\\u5c71\\u5e97","phone":"033334800","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff10\\uff15\\u865f\\uff11\\uff26"}', '012707', 'quanjia', 'zh-tw', 1000),
(8370, 6127, '5909-6127', 1, '桃園中聖店', '{"number":"017259","shop":"\\u6843\\u5712\\u4e2d\\u8056\\u5e97","phone":"033708946","address":"\\u4e2d\\u5c71\\u8def\\uff18\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '017259', 'quanjia', 'zh-tw', 1000),
(8371, 6127, '5909-6127', 1, '桃園世貿店', '{"number":"015048","shop":"\\u6843\\u5712\\u4e16\\u8cbf\\u5e97","phone":"033577571","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff10\\uff16\\uff19\\u865f"}', '015048', 'quanjia', 'zh-tw', 1000),
(8372, 6127, '5909-6127', 1, '桃園中寧店', '{"number":"012837","shop":"\\u6843\\u5712\\u4e2d\\u5be7\\u5e97","phone":"033589158","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff11\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '012837', 'quanjia', 'zh-tw', 1000),
(8373, 6127, '5909-6127', 1, '桃園站前店', '{"number":"013929","shop":"\\u6843\\u5712\\u7ad9\\u524d\\u5e97","phone":"033367478","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff13\\uff0c\\uff11\\uff15\\uff0c\\uff11\\uff17\\u865f"}', '013929', 'quanjia', 'zh-tw', 1000),
(8374, 6127, '5909-6127', 1, '桃園大正店', '{"number":"013535","shop":"\\u6843\\u5712\\u5927\\u6b63\\u5e97","phone":"033344775","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '013535', 'quanjia', 'zh-tw', 1000),
(8375, 6127, '5909-6127', 1, '桃園和信店', '{"number":"013496","shop":"\\u6843\\u5712\\u548c\\u4fe1\\u5e97","phone":"033366772","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff18\\u5df7\\uff11\\uff16\\u865f"}', '013496', 'quanjia', 'zh-tw', 1000),
(8376, 6127, '5909-6127', 1, '桃園北埔店', '{"number":"015828","shop":"\\u6843\\u5712\\u5317\\u57d4\\u5e97","phone":"033315307","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff11\\uff11\\u865f"}', '015828', 'quanjia', 'zh-tw', 1000),
(8377, 6127, '5909-6127', 1, '桃園統領店', '{"number":"017625","shop":"\\u6843\\u5712\\u7d71\\u9818\\u5e97","phone":"033327673","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff11\\u865f"}', '017625', 'quanjia', 'zh-tw', 1000),
(8378, 6127, '5909-6127', 1, '桃園中璦店', '{"number":"015593","shop":"\\u6843\\u5712\\u4e2d\\u74a6\\u5e97","phone":"033264880","address":"\\u4e2d\\u6b63\\u4e09\\u8857\\uff14\\uff11\\uff11\\u865f"}', '015593', 'quanjia', 'zh-tw', 1000),
(8379, 6127, '5909-6127', 1, '桃園中州店', '{"number":"018116","shop":"\\u6843\\u5712\\u4e2d\\u5dde\\u5e97","phone":"032288471","address":"\\u4e2d\\u5dde\\u8857\\uff15\\uff17\\u865f"}', '018116', 'quanjia', 'zh-tw', 1000),
(8380, 6127, '5909-6127', 1, '桃園同德店', '{"number":"016425","shop":"\\u6843\\u5712\\u540c\\u5fb7\\u5e97","phone":"033588136","address":"\\u838a\\u656c\\u91cc\\u4e2d\\u6b63\\u8def\\uff11\\uff13\\uff11\\uff16\\u865f\\uff0c\\uff11\\uff13\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '016425', 'quanjia', 'zh-tw', 1000),
(8381, 6127, '5909-6127', 1, '桃園莊園店', '{"number":"015146","shop":"\\u6843\\u5712\\u838a\\u5712\\u5e97","phone":"032160387","address":"\\u838a\\u656c\\u8def\\u4e8c\\u6bb5\\uff12\\uff14\\uff13\\u4e4b\\uff11\\u865f"}', '015146', 'quanjia', 'zh-tw', 1000),
(8382, 6127, '5909-6127', 1, '桃園大郡店', '{"number":"018240","shop":"\\u6843\\u5712\\u5927\\u90e1\\u5e97","phone":"033460250","address":"\\u838a\\u656c\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\uff14\\u865f\\uff11\\u6a13\\u53ca\\uff22\\uff11"}', '018240', 'quanjia', 'zh-tw', 1000),
(8383, 6127, '5909-6127', 1, '桃園莊敬店', '{"number":"017532","shop":"\\u6843\\u5712\\u838a\\u656c\\u5e97","phone":"033585850","address":"\\u838a\\u656c\\u8def\\u4e00\\u6bb5\\uff13\\uff17\\uff16\\u865f\\uff0c\\u4e2d\\u6b63\\u8def\\uff11\\uff14\\uff11\\uff16\\u865f"}', '017532', 'quanjia', 'zh-tw', 1000),
(8384, 6128, '5909-6128', 1, '新屋醫院店', '{"number":"018735","shop":"\\u65b0\\u5c4b\\u91ab\\u9662\\u5e97","phone":"034770939","address":"\\u65b0\\u798f\\u4e8c\\u8def\\uff16\\u865f\\uff11\\u6a13"}', '018735', 'quanjia', 'zh-tw', 1000),
(8385, 6128, '5909-6128', 1, '新屋富榮店', '{"number":"013354","shop":"\\u65b0\\u5c4b\\u5bcc\\u69ae\\u5e97","phone":"034904523","address":"\\u65b0\\u69ae\\u8def\\uff12\\uff10\\uff16\\u865f"}', '013354', 'quanjia', 'zh-tw', 1000),
(8386, 6128, '5909-6128', 1, '新屋清華店', '{"number":"016827","shop":"\\u65b0\\u5c4b\\u6e05\\u83ef\\u5e97","phone":"034970524","address":"\\u4e2d\\u83ef\\u8def\\uff16\\uff11\\uff14\\u865f"}', '016827', 'quanjia', 'zh-tw', 1000),
(8387, 6128, '5909-6128', 1, '新屋車站店', '{"number":"014342","shop":"\\u65b0\\u5c4b\\u8eca\\u7ad9\\u5e97","phone":"034770006","address":"\\u4e2d\\u5c71\\u8def\\uff13\\uff16\\uff11\\u865f\\uff11\\u6a13"}', '014342', 'quanjia', 'zh-tw', 1000),
(8388, 6129, '5909-6129', 1, '楊梅三民店', '{"number":"014582","shop":"\\u694a\\u6885\\u4e09\\u6c11\\u5e97","phone":"034314516","address":"\\u91d1\\u6eaa\\u91cc\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff19\\uff16\\u5df7\\uff12\\u865f\\u4e00\\u6a13"}', '014582', 'quanjia', 'zh-tw', 1000),
(8389, 6129, '5909-6129', 1, '楊梅瑞平店', '{"number":"012628","shop":"\\u694a\\u6885\\u745e\\u5e73\\u5e97","phone":"034317536","address":"\\u6885\\u7345\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '012628', 'quanjia', 'zh-tw', 1000),
(8390, 6129, '5909-6129', 1, '楊梅瑞梅店', '{"number":"010315","shop":"\\u694a\\u6885\\u745e\\u6885\\u5e97","phone":"034312535","address":"\\u6885\\u7345\\u8def\\u4e8c\\u6bb5\\uff16\\uff19\\u4e4b\\uff11\\u865f"}', '010315', 'quanjia', 'zh-tw', 1000),
(8391, 6129, '5909-6129', 1, '楊梅埔心店', '{"number":"014777","shop":"\\u694a\\u6885\\u57d4\\u5fc3\\u5e97","phone":"034315180","address":"\\u57d4\\u5fc3\\u91cc\\u6c38\\u7f8e\\u8def\\uff12\\uff11\\uff10\\u865f"}', '014777', 'quanjia', 'zh-tw', 1000),
(8392, 6129, '5909-6129', 1, '楊梅青城店', '{"number":"016079","shop":"\\u694a\\u6885\\u9752\\u57ce\\u5e97","phone":"034963453","address":"\\u9752\\u5c71\\u4e94\\u8857\\uff12\\uff16\\u865f\\uff11\\u6a13\\u8207\\u5730\\u4e0b\\uff11\\u6a13"}', '016079', 'quanjia', 'zh-tw', 1000),
(8393, 6129, '5909-6129', 1, '楊梅瑞溪店', '{"number":"018083","shop":"\\u694a\\u6885\\u745e\\u6eaa\\u5e97","phone":"034313895","address":"\\u745e\\u6eaa\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\uff19\\u865f"}', '018083', 'quanjia', 'zh-tw', 1000),
(8394, 6129, '5909-6129', 1, '楊梅幼獅店', '{"number":"011621","shop":"\\u694a\\u6885\\u5e7c\\u7345\\u5e97","phone":"034965695","address":"\\u7345\\u4e00\\u8def\\uff11\\u4e4b\\uff16\\u865f"}', '011621', 'quanjia', 'zh-tw', 1000),
(8395, 6129, '5909-6129', 1, '楊梅四維店', '{"number":"018209","shop":"\\u694a\\u6885\\u56db\\u7dad\\u5e97","phone":"034828986","address":"\\u6587\\u5316\\u8857\\uff12\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '018209', 'quanjia', 'zh-tw', 1000),
(8396, 6129, '5909-6129', 1, '楊梅新成店', '{"number":"014650","shop":"\\u694a\\u6885\\u65b0\\u6210\\u5e97","phone":"034855816","address":"\\u65b0\\u6210\\u8def\\uff11\\uff17\\uff11\\u865f"}', '014650', 'quanjia', 'zh-tw', 1000),
(8397, 6129, '5909-6129', 1, '楊梅金山店', '{"number":"016197","shop":"\\u694a\\u6885\\u91d1\\u5c71\\u5e97","phone":"034750721","address":"\\u65b0\\u8fb2\\u8857\\uff16\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '016197', 'quanjia', 'zh-tw', 1000),
(8398, 6129, '5909-6129', 1, '楊梅民族店', '{"number":"011883","shop":"\\u694a\\u6885\\u6c11\\u65cf\\u5e97","phone":"034207805","address":"\\u65b0\\u69ae\\u91cc\\u96fb\\u7814\\u8def\\uff12\\uff15\\uff10\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '011883', 'quanjia', 'zh-tw', 1000),
(8399, 6129, '5909-6129', 1, '楊梅車站店', '{"number":"018623","shop":"\\u694a\\u6885\\u8eca\\u7ad9\\u5e97","phone":"034757495","address":"\\u694a\\u65b0\\u8def\\uff16\\uff15\\u865f\\u58f9\\u6a13"}', '018623', 'quanjia', 'zh-tw', 1000),
(8400, 6129, '5909-6129', 1, '楊梅永美店', '{"number":"016096","shop":"\\u694a\\u6885\\u6c38\\u7f8e\\u5e97","phone":"034825087","address":"\\u6c38\\u7f8e\\u8def\\uff13\\uff19\\uff13\\uff0d\\uff11\\u865f\\uff11\\uff26"}', '016096', 'quanjia', 'zh-tw', 1000),
(8401, 6129, '5909-6129', 1, '楊梅北都店', '{"number":"011759","shop":"\\u694a\\u6885\\u5317\\u90fd\\u5e97","phone":"034314050","address":"\\u88d5\\u6210\\u91cc\\u88d5\\u6210\\u5357\\u8def\\uff13\\uff13\\uff12\\u865f\\u4e00\\u6a13"}', '011759', 'quanjia', 'zh-tw', 1000),
(8402, 6129, '5909-6129', 1, '楊梅楊光店', '{"number":"014343","shop":"\\u694a\\u6885\\u694a\\u5149\\u5e97","phone":"034827453","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff14\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '014343', 'quanjia', 'zh-tw', 1000),
(8403, 6129, '5909-6129', 1, '楊梅晟熙店', '{"number":"018541","shop":"\\u694a\\u6885\\u665f\\u7199\\u5e97","phone":"034311570","address":"\\u4e2d\\u8208\\u8def\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '018541', 'quanjia', 'zh-tw', 1000),
(8404, 6129, '5909-6129', 1, '楊梅富岡店', '{"number":"016713","shop":"\\u694a\\u6885\\u5bcc\\u5ca1\\u5e97","phone":"032821711","address":"\\u4e2d\\u6b63\\u8def\\uff19\\uff15\\u3001\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '016713', 'quanjia', 'zh-tw', 1000),
(8405, 6130, '5909-6130', 1, '中壢城章店', '{"number":"016377","shop":"\\u4e2d\\u58e2\\u57ce\\u7ae0\\u5e97","phone":"034625435","address":"\\u6210\\u7ae0\\u4e00\\u8857\\uff11\\uff15\\uff16\\u865f"}', '016377', 'quanjia', 'zh-tw', 1000),
(8406, 6130, '5909-6130', 1, '中壢市代店', '{"number":"015642","shop":"\\u4e2d\\u58e2\\u5e02\\u4ee3\\u5e97","phone":"034228332","address":"\\u6148\\u60e0\\u4e09\\u8857\\uff11\\uff15\\uff15\\u865f"}', '015642', 'quanjia', 'zh-tw', 1000),
(8407, 6130, '5909-6130', 1, '中壢原大店', '{"number":"015070","shop":"\\u4e2d\\u58e2\\u539f\\u5927\\u5e97","phone":"034379511","address":"\\u5927\\u4ec1\\u4e8c\\u8857\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '015070', 'quanjia', 'zh-tw', 1000),
(8408, 6130, '5909-6130', 1, '中壢新仁店', '{"number":"017802","shop":"\\u4e2d\\u58e2\\u65b0\\u4ec1\\u5e97","phone":"034659758","address":"\\u5927\\u4ec1\\u56db\\u8857\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '017802', 'quanjia', 'zh-tw', 1000),
(8409, 6130, '5909-6130', 1, '中壢大福店', '{"number":"016539","shop":"\\u4e2d\\u58e2\\u5927\\u798f\\u5e97","phone":"034535514","address":"\\u798f\\u5dde\\u4e8c\\u8857\\uff14\\uff15\\uff17\\u865f"}', '016539', 'quanjia', 'zh-tw', 1000),
(8410, 6130, '5909-6130', 1, '中壢福爵店', '{"number":"018547","shop":"\\u4e2d\\u58e2\\u798f\\u7235\\u5e97","phone":"034616552","address":"\\u798f\\u5dde\\u4e8c\\u8857\\uff15\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '018547', 'quanjia', 'zh-tw', 1000),
(8411, 6130, '5909-6130', 1, '中壢復華店', '{"number":"017912","shop":"\\u4e2d\\u58e2\\u5fa9\\u83ef\\u5e97","phone":"034341338","address":"\\u5fa9\\u83ef\\u91cc\\u81ea\\u5f37\\u56db\\u8def\\uff18\\uff18\\u865f\\u4e00\\u6a13"}', '017912', 'quanjia', 'zh-tw', 1000),
(8412, 6130, '5909-6130', 1, '中壢十里店', '{"number":"014892","shop":"\\u4e2d\\u58e2\\u5341\\u91cc\\u5e97","phone":"034272590","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff16\\uff11\\u865f"}', '014892', 'quanjia', 'zh-tw', 1000),
(8413, 6130, '5909-6130', 1, '中壢復興店', '{"number":"017258","shop":"\\u4e2d\\u58e2\\u5fa9\\u8208\\u5e97","phone":"034259562","address":"\\u5fa9\\u8208\\u8def\\uff11\\u865f\\uff11\\u6a13"}', '017258', 'quanjia', 'zh-tw', 1000),
(8414, 6130, '5909-6130', 1, '中壢中美店', '{"number":"015672","shop":"\\u4e2d\\u58e2\\u4e2d\\u7f8e\\u5e97","phone":"034269866","address":"\\u5149\\u5fa9\\u8857\\uff11\\uff13\\u865f"}', '015672', 'quanjia', 'zh-tw', 1000),
(8415, 6130, '5909-6130', 1, '中壢弘志店', '{"number":"015509","shop":"\\u4e2d\\u58e2\\u5f18\\u5fd7\\u5e97","phone":"034658967","address":"\\u5f18\\u63da\\u8def\\uff12\\uff19\\u865f"}', '015509', 'quanjia', 'zh-tw', 1000),
(8416, 6130, '5909-6130', 1, '中壢弘福店', '{"number":"018009","shop":"\\u4e2d\\u58e2\\u5f18\\u798f\\u5e97","phone":"034384005","address":"\\u5f18\\u63da\\u8def\\uff19\\uff10\\u865f\\uff11\\uff26\\uff0b\\uff22\\uff11"}', '018009', 'quanjia', 'zh-tw', 1000),
(8417, 6130, '5909-6130', 1, '中壢環西店', '{"number":"017346","shop":"\\u4e2d\\u58e2\\u74b0\\u897f\\u5e97","phone":"034944757","address":"\\u74b0\\u897f\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff12\\u865f\\uff11\\u6a13\\u3001\\uff12\\u6a13"}', '017346', 'quanjia', 'zh-tw', 1000),
(8418, 6130, '5909-6130', 1, '中壢環中店', '{"number":"012940","shop":"\\u4e2d\\u58e2\\u74b0\\u4e2d\\u5e97","phone":"032853547","address":"\\u74b0\\u4e2d\\u6771\\u8def\\uff12\\uff10\\uff18\\u865f\\u3001\\uff12\\uff10\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '012940', 'quanjia', 'zh-tw', 1000),
(8419, 6130, '5909-6130', 1, '中壢環東店', '{"number":"017257","shop":"\\u4e2d\\u58e2\\u74b0\\u6771\\u5e97","phone":"034518150","address":"\\u74b0\\u4e2d\\u6771\\u8def\\uff12\\uff13\\uff15\\uff0d\\uff11\\u865f"}', '017257', 'quanjia', 'zh-tw', 1000),
(8420, 6130, '5909-6130', 1, '中壢吉林店', '{"number":"016565","shop":"\\u4e2d\\u58e2\\u5409\\u6797\\u5e97","phone":"034514926","address":"\\u5409\\u6797\\u4e8c\\u8def\\uff17\\uff19\\u5df7\\uff12\\u865f"}', '016565', 'quanjia', 'zh-tw', 1000),
(8421, 6130, '5909-6130', 1, '中壢吉園店', '{"number":"014612","shop":"\\u4e2d\\u58e2\\u5409\\u5712\\u5e97","phone":"034610309","address":"\\u5409\\u6797\\u8def\\uff16\\uff18\\u4e4b\\uff11\\u865f"}', '014612', 'quanjia', 'zh-tw', 1000),
(8422, 6130, '5909-6130', 1, '中壢清英店', '{"number":"018235","shop":"\\u4e2d\\u58e2\\u6e05\\u82f1\\u5e97","phone":"034280454","address":"\\u5065\\u884c\\u8def\\uff12\\uff12\\uff19\\u865f\\u3000"}', '018235', 'quanjia', 'zh-tw', 1000),
(8423, 6130, '5909-6130', 1, '中壢後站店', '{"number":"018888","shop":"\\u4e2d\\u58e2\\u5f8c\\u7ad9\\u5e97","phone":"034593622","address":"\\u5065\\u884c\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '018888', 'quanjia', 'zh-tw', 1000),
(8424, 6130, '5909-6130', 1, '中壢新埔店', '{"number":"018236","shop":"\\u4e2d\\u58e2\\u65b0\\u57d4\\u5e97","phone":"032873962","address":"\\u9818\\u822a\\u5357\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff11\\u865f\\uff11\\u6a13\\u5982\\u9644\\u5716"}', '018236', 'quanjia', 'zh-tw', 1000),
(8425, 6130, '5909-6130', 1, '中壢六合店', '{"number":"013495","shop":"\\u4e2d\\u58e2\\u516d\\u5408\\u5e97","phone":"034255260","address":"\\u516d\\u548c\\u8def\\uff14\\uff18\\u865f"}', '013495', 'quanjia', 'zh-tw', 1000),
(8426, 6130, '5909-6130', 1, '中壢龍川店', '{"number":"013579","shop":"\\u4e2d\\u58e2\\u9f8d\\u5ddd\\u5e97","phone":"034371941","address":"\\u9f8d\\u5ddd\\u8857\\uff13\\u865f\\uff11\\u6a13\\uff0e\\uff12\\u6a13\\u7d04\\uff15\\u576a"}', '013579', 'quanjia', 'zh-tw', 1000),
(8427, 6130, '5909-6130', 1, '中壢龍東店', '{"number":"015299","shop":"\\u4e2d\\u58e2\\u9f8d\\u6771\\u5e97","phone":"034668249","address":"\\u9f8d\\u6771\\u8def\\uff11\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '015299', 'quanjia', 'zh-tw', 1000),
(8428, 6130, '5909-6130', 1, '中壢龍樹店', '{"number":"016493","shop":"\\u4e2d\\u58e2\\u9f8d\\u6a39\\u5e97","phone":"034381941","address":"\\u9f8d\\u6771\\u8def\\uff12\\uff10\\uff15\\u865f\\uff11\\u6a13\\u3001\\uff12\\u6a13"}', '016493', 'quanjia', 'zh-tw', 1000),
(8429, 6130, '5909-6130', 1, '中壢米干店', '{"number":"016097","shop":"\\u4e2d\\u58e2\\u7c73\\u5e72\\u5e97","phone":"034384109","address":"\\u9f8d\\u6771\\u8def\\uff12\\uff16\\uff10\\u865f"}', '016097', 'quanjia', 'zh-tw', 1000),
(8430, 6130, '5909-6130', 1, '中壢龍岡店', '{"number":"016180","shop":"\\u4e2d\\u58e2\\u9f8d\\u5ca1\\u5e97","phone":"034578429","address":"\\u9f8d\\u5ca1\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff15\\u865f"}', '016180', 'quanjia', 'zh-tw', 1000),
(8431, 6130, '5909-6130', 1, '中壢龍興店', '{"number":"018661","shop":"\\u4e2d\\u58e2\\u9f8d\\u8208\\u5e97","phone":"032841406","address":"\\u9f8d\\u5ca1\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff17\\uff0e\\uff13\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '018661', 'quanjia', 'zh-tw', 1000),
(8432, 6130, '5909-6130', 1, '中壢玉龍店', '{"number":"018605","shop":"\\u4e2d\\u58e2\\u7389\\u9f8d\\u5e97","phone":"034280179","address":"\\u9f8d\\u5ca1\\u8def\\u4e09\\u6bb5\\uff11\\uff11\\uff17\\u865f"}', '018605', 'quanjia', 'zh-tw', 1000),
(8433, 6130, '5909-6130', 1, '中壢龍慈店', '{"number":"017228","shop":"\\u4e2d\\u58e2\\u9f8d\\u6148\\u5e97","phone":"034687862","address":"\\u9f8d\\u5ca1\\u8def\\u4e09\\u6bb5\\uff12\\uff17\\uff15\\u865f\\uff11\\uff26"}', '017228', 'quanjia', 'zh-tw', 1000),
(8434, 6130, '5909-6130', 1, '中壢龍門店', '{"number":"015111","shop":"\\u4e2d\\u58e2\\u9f8d\\u9580\\u5e97","phone":"034507940","address":"\\u9f8d\\u5ca1\\u8def\\u4e09\\u6bb5\\uff16\\uff11\\uff16\\u865f"}', '015111', 'quanjia', 'zh-tw', 1000),
(8435, 6130, '5909-6130', 1, '中壢龍航店', '{"number":"014221","shop":"\\u4e2d\\u58e2\\u9f8d\\u822a\\u5e97","phone":"034670906","address":"\\u9f8d\\u5ca1\\u8def\\u4e00\\u6bb5\\uff12\\uff10\\uff14\\u865f"}', '014221', 'quanjia', 'zh-tw', 1000),
(8436, 6130, '5909-6130', 1, '中壢元權店', '{"number":"014491","shop":"\\u4e2d\\u58e2\\u5143\\u6b0a\\u5e97","phone":"034951945","address":"\\u6c11\\u6b0a\\u8def\\uff13\\uff14\\uff10\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '014491', 'quanjia', 'zh-tw', 1000),
(8437, 6130, '5909-6130', 1, '中壢高嶺店', '{"number":"016883","shop":"\\u4e2d\\u58e2\\u9ad8\\u5dba\\u5e97","phone":"034207529","address":"\\u6c11\\u65cf\\u8def\\u4e94\\u6bb5\\uff13\\uff12\\uff16\\u4e4b\\uff12\\u865f"}', '016883', 'quanjia', 'zh-tw', 1000),
(8438, 6130, '5909-6130', 1, '中壢雙榮店', '{"number":"018441","shop":"\\u4e2d\\u58e2\\u96d9\\u69ae\\u5e97","phone":"034200497","address":"\\u6c11\\u65cf\\u8def\\u4e94\\u6bb5\\uff16\\u865f\\uff11\\u6a13"}', '018441', 'quanjia', 'zh-tw', 1000),
(8439, 6130, '5909-6130', 1, '中壢金園店', '{"number":"013733","shop":"\\u4e2d\\u58e2\\u91d1\\u5712\\u5e97","phone":"034536048","address":"\\u5357\\u5712\\u4e8c\\u8def\\uff13\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '013733', 'quanjia', 'zh-tw', 1000),
(8440, 6130, '5909-6130', 1, '中壢青埔店', '{"number":"017522","shop":"\\u4e2d\\u58e2\\u9752\\u57d4\\u5e97","phone":"032873133","address":"\\u6d3d\\u6eaa\\u91cc\\uff17\\u9130\\u9818\\u822a\\u5317\\u8def\\u4e8c\\u6bb5\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017522', 'quanjia', 'zh-tw', 1000),
(8441, 6130, '5909-6130', 1, '中壢日新店', '{"number":"016850","shop":"\\u4e2d\\u58e2\\u65e5\\u65b0\\u5e97","phone":"034361235","address":"\\u65e5\\u65b0\\u8def\\uff12\\uff14\\u865f"}', '016850', 'quanjia', 'zh-tw', 1000),
(8442, 6130, '5909-6130', 1, '中壢三和店', '{"number":"014717","shop":"\\u4e2d\\u58e2\\u4e09\\u548c\\u5e97","phone":"034654605","address":"\\u65e5\\u65b0\\u8def\\uff18\\uff10\\u865f"}', '014717', 'quanjia', 'zh-tw', 1000),
(8443, 6130, '5909-6130', 1, '中壢榮安店', '{"number":"016896","shop":"\\u4e2d\\u58e2\\u69ae\\u5b89\\u5e97","phone":"032850697","address":"\\u69ae\\u5b89\\u5341\\u4e09\\u8857\\uff12\\uff10\\uff15\\u865f"}', '016896', 'quanjia', 'zh-tw', 1000),
(8444, 6130, '5909-6130', 1, '中壢榮光店', '{"number":"014359","shop":"\\u4e2d\\u58e2\\u69ae\\u5149\\u5e97","phone":"034610427","address":"\\u69ae\\u5b89\\u5341\\u4e09\\u8857\\uff12\\uff16\\uff12\\u865f"}', '014359', 'quanjia', 'zh-tw', 1000),
(8445, 6130, '5909-6130', 1, '中壢站前店', '{"number":"017317","shop":"\\u4e2d\\u58e2\\u7ad9\\u524d\\u5e97","phone":"034265615","address":"\\u77f3\\u982d\\u91cc\\uff15\\u9130\\u4e2d\\u5e73\\u8def\\uff11\\u3001\\uff13\\u865f\\uff11\\u6a13"}', '017317', 'quanjia', 'zh-tw', 1000),
(8446, 6130, '5909-6130', 1, '中壢柏德店', '{"number":"012079","shop":"\\u4e2d\\u58e2\\u67cf\\u5fb7\\u5e97","phone":"034382027","address":"\\u5be6\\u8e10\\u8def\\uff12\\uff12\\uff11\\u865f"}', '012079', 'quanjia', 'zh-tw', 1000),
(8447, 6130, '5909-6130', 1, '中壢過嶺店', '{"number":"018197","shop":"\\u4e2d\\u58e2\\u904e\\u5dba\\u5e97","phone":"034906791","address":"\\u677e\\u7fa9\\u8def\\uff11\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '018197', 'quanjia', 'zh-tw', 1000),
(8448, 6130, '5909-6130', 1, '中壢元生店', '{"number":"015207","shop":"\\u4e2d\\u58e2\\u5143\\u751f\\u5e97","phone":"034341827","address":"\\u6587\\u5316\\u4e8c\\u8def\\uff12\\uff15\\uff12\\u865f\\uff12\\uff15\\uff16\\u865f"}', '015207', 'quanjia', 'zh-tw', 1000),
(8449, 6130, '5909-6130', 1, '中壢文忠店', '{"number":"016383","shop":"\\u4e2d\\u58e2\\u6587\\u5fe0\\u5e97","phone":"034332555","address":"\\u6587\\u4e2d\\u8def\\u4e8c\\u6bb5\\uff15\\uff11\\uff0d\\uff19\\u865f"}', '016383', 'quanjia', 'zh-tw', 1000),
(8450, 6130, '5909-6130', 1, '中壢工業店', '{"number":"015372","shop":"\\u4e2d\\u58e2\\u5de5\\u696d\\u5e97","phone":"034612181","address":"\\u897f\\u5712\\u8def\\uff11\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '015372', 'quanjia', 'zh-tw', 1000),
(8451, 6130, '5909-6130', 1, '中壢環北店', '{"number":"016443","shop":"\\u4e2d\\u58e2\\u74b0\\u5317\\u5e97","phone":"034345363","address":"\\u65b0\\u751f\\u8def\\uff14\\uff10\\uff12\\u865f\\uff1b\\u74b0\\u5317\\u8def\\uff13\\uff10\\uff13\\u865f\\uff13\\uff10\\uff15\\u865f"}', '016443', 'quanjia', 'zh-tw', 1000),
(8452, 6130, '5909-6130', 1, '中壢新美店', '{"number":"018650","shop":"\\u4e2d\\u58e2\\u65b0\\u7f8e\\u5e97","phone":"032806386","address":"\\u65b0\\u751f\\u8def\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '018650', 'quanjia', 'zh-tw', 1000),
(8453, 6130, '5909-6130', 1, '中壢新中原店', '{"number":"018847","shop":"\\u4e2d\\u58e2\\u65b0\\u4e2d\\u539f\\u5e97","phone":"034657833","address":"\\u65b0\\u4e2d\\u5317\\u8def\\uff12\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '018847', 'quanjia', 'zh-tw', 1000),
(8454, 6130, '5909-6130', 1, '中壢禾凱店', '{"number":"018232","shop":"\\u4e2d\\u58e2\\u79be\\u51f1\\u5e97","phone":"034355908","address":"\\u65b0\\u4e2d\\u5317\\u8def\\uff13\\uff18\\uff10\\u865f"}', '018232', 'quanjia', 'zh-tw', 1000),
(8455, 6130, '5909-6130', 1, '中壢興廣店', '{"number":"013557","shop":"\\u4e2d\\u58e2\\u8208\\u5ee3\\u5e97","phone":"034536026","address":"\\u65b0\\u4e2d\\u5317\\u8def\\u4e8c\\u6bb5\\uff14\\uff18\\uff19\\u865f"}', '013557', 'quanjia', 'zh-tw', 1000),
(8456, 6130, '5909-6130', 1, '中壢忠孝店', '{"number":"014161","shop":"\\u4e2d\\u58e2\\u5fe0\\u5b5d\\u5e97","phone":"034519387","address":"\\u4fe1\\u7fa9\\u8def\\uff17\\uff16\\u865f"}', '014161', 'quanjia', 'zh-tw', 1000),
(8457, 6130, '5909-6130', 1, '中壢海華店', '{"number":"016442","shop":"\\u4e2d\\u58e2\\u6d77\\u83ef\\u5e97","phone":"032807841","address":"\\u8208\\u5357\\u91cc\\u5143\\u5316\\u8def\\uff12\\uff18\\uff12\\uff0e\\uff12\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '016442', 'quanjia', 'zh-tw', 1000),
(8458, 6130, '5909-6130', 1, '中壢元智店', '{"number":"014841","shop":"\\u4e2d\\u58e2\\u5143\\u667a\\u5e97","phone":"034358772","address":"\\u8208\\u4ec1\\u91cc\\u8208\\u4ec1\\u8def\\u4e8c\\u6bb5\\uff16\\uff13\\u865f"}', '014841', 'quanjia', 'zh-tw', 1000),
(8459, 6130, '5909-6130', 1, '中壢興榮店', '{"number":"016288","shop":"\\u4e2d\\u58e2\\u8208\\u69ae\\u5e97","phone":"032854760","address":"\\u8208\\u4ec1\\u8def\\u4e8c\\u6bb5\\uff12\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '016288', 'quanjia', 'zh-tw', 1000),
(8460, 6130, '5909-6130', 1, '中壢天晟店', '{"number":"018008","shop":"\\u4e2d\\u58e2\\u5929\\u665f\\u5e97","phone":"034343442","address":"\\u5ef6\\u5e73\\u8def\\uff11\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '018008', 'quanjia', 'zh-tw', 1000),
(8461, 6130, '5909-6130', 1, '中壢西園店', '{"number":"012980","shop":"\\u4e2d\\u58e2\\u897f\\u5712\\u5e97","phone":"034552182","address":"\\u6c38\\u798f\\u91cc\\u5357\\u5712\\u4e8c\\u8def\\uff11\\uff12\\u865f\\uff11\\uff14\\u865f\\u4e00\\u6a13"}', '012980', 'quanjia', 'zh-tw', 1000),
(8462, 6130, '5909-6130', 1, '中壢富裕店', '{"number":"016972","shop":"\\u4e2d\\u58e2\\u5bcc\\u88d5\\u5e97","phone":"034523403","address":"\\u6c38\\u5f37\\u8857\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '016972', 'quanjia', 'zh-tw', 1000),
(8463, 6130, '5909-6130', 1, '中壢元大二店', '{"number":"013736","shop":"\\u4e2d\\u58e2\\u5143\\u5927\\u4e8c\\u5e97","phone":"034357993","address":"\\u9060\\u6771\\u8def\\uff11\\uff13\\uff15\\u865f\\uff08\\u5143\\u667a\\u5927\\u5b78\\u5716\\u66f8\\u9928\\uff09"}', '013736', 'quanjia', 'zh-tw', 1000),
(8464, 6130, '5909-6130', 1, '中壢元大一店', '{"number":"014600","shop":"\\u4e2d\\u58e2\\u5143\\u5927\\u4e00\\u5e97","phone":"034358022","address":"\\u9060\\u6771\\u8def\\uff11\\uff13\\uff15\\u865f\\uff08\\u5143\\u667a\\u5927\\u5b78\\u5bbf\\u820d\\u5340\\uff09"}', '014600', 'quanjia', 'zh-tw', 1000),
(8465, 6130, '5909-6130', 1, '中壢中北店', '{"number":"014093","shop":"\\u4e2d\\u58e2\\u4e2d\\u5317\\u5e97","phone":"034364237","address":"\\u4e2d\\u5317\\u8def\\uff13\\uff11\\u865f"}', '014093', 'quanjia', 'zh-tw', 1000),
(8466, 6130, '5909-6130', 1, '中壢中央二店', '{"number":"013833","shop":"\\u4e2d\\u58e2\\u4e2d\\u592e\\u4e8c\\u5e97","phone":"034265685","address":"\\u4e2d\\u5927\\u8def\\uff13\\uff10\\uff10\\u865f\\uff08\\u7537\\u4e5d\\u820d\\uff09"}', '013833', 'quanjia', 'zh-tw', 1000),
(8467, 6130, '5909-6130', 1, '中壢中央一店', '{"number":"013520","shop":"\\u4e2d\\u58e2\\u4e2d\\u592e\\u4e00\\u5e97","phone":"034206551","address":"\\u4e2d\\u5927\\u8def\\uff13\\uff10\\uff10\\u865f\\uff08\\u677e\\u679c\\u9910\\u5ef3\\uff09"}', '013520', 'quanjia', 'zh-tw', 1000),
(8468, 6130, '5909-6130', 1, '中壢中央三店', '{"number":"017558","shop":"\\u4e2d\\u58e2\\u4e2d\\u592e\\u4e09\\u5e97","phone":"034205531","address":"\\u4e2d\\u5927\\u8def\\uff13\\uff10\\uff10\\u865f\\u677e\\u82d1\\u9910\\u5ef3\\uff11\\u6a13"}', '017558', 'quanjia', 'zh-tw', 1000),
(8469, 6130, '5909-6130', 1, '中壢環華店', '{"number":"017564","shop":"\\u4e2d\\u58e2\\u74b0\\u83ef\\u5e97","phone":"034516327","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff12\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '017564', 'quanjia', 'zh-tw', 1000),
(8470, 6130, '5909-6130', 1, '中壢源興店', '{"number":"015926","shop":"\\u4e2d\\u58e2\\u6e90\\u8208\\u5e97","phone":"032807380","address":"\\u4e2d\\u5e73\\u8def\\uff18\\uff16\\uff0d\\uff11\\u865f\\uff08\\u8208\\u4e2d\\u79fb\\uff09"}', '015926', 'quanjia', 'zh-tw', 1000),
(8471, 6130, '5909-6130', 1, '中壢新仁美店', '{"number":"017202","shop":"\\u4e2d\\u58e2\\u65b0\\u4ec1\\u7f8e\\u5e97","phone":"034565503","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e09\\u6bb5\\uff12\\uff11\\uff11\\u4e4b\\uff11\\u865f"}', '017202', 'quanjia', 'zh-tw', 1000),
(8472, 6130, '5909-6130', 1, '中壢太子店', '{"number":"014471","shop":"\\u4e2d\\u58e2\\u592a\\u5b50\\u5e97","phone":"034665494","address":"\\u4e2d\\u5c71\\u6771\\u8def\\u4e09\\u6bb5\\uff15\\uff11\\u865f"}', '014471', 'quanjia', 'zh-tw', 1000),
(8473, 6130, '5909-6130', 1, '中壢金央店', '{"number":"014340","shop":"\\u4e2d\\u58e2\\u91d1\\u592e\\u5e97","phone":"034254651","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff10\\uff10\\u865f\\uff11\\uff26"}', '014340', 'quanjia', 'zh-tw', 1000),
(8474, 6130, '5909-6130', 1, '中壢龍凱店', '{"number":"018328","shop":"\\u4e2d\\u58e2\\u9f8d\\u51f1\\u5e97","phone":"034207322","address":"\\u4e2d\\u592e\\u8def\\uff12\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018328', 'quanjia', 'zh-tw', 1000),
(8475, 6130, '5909-6130', 1, '中壢龍園店', '{"number":"016287","shop":"\\u4e2d\\u58e2\\u9f8d\\u5712\\u5e97","phone":"034629416","address":"\\u4e2d\\u5712\\u8def\\uff11\\uff15\\u865f"}', '016287', 'quanjia', 'zh-tw', 1000),
(8476, 6130, '5909-6130', 1, '中壢宏大店', '{"number":"014262","shop":"\\u4e2d\\u58e2\\u5b8f\\u5927\\u5e97","phone":"034535014","address":"\\u4e2d\\u5712\\u8def\\uff11\\uff19\\uff12\\uff0d\\uff12\\u865f"}', '014262', 'quanjia', 'zh-tw', 1000),
(8477, 6130, '5909-6130', 1, '中壢萬能店', '{"number":"014537","shop":"\\u4e2d\\u58e2\\u842c\\u80fd\\u5e97","phone":"034620757","address":"\\u4e2d\\u5712\\u8def\\u4e8c\\u6bb5\\uff19\\uff11\\u865f"}', '014537', 'quanjia', 'zh-tw', 1000),
(8478, 6130, '5909-6130', 1, '中壢龍正店', '{"number":"018377","shop":"\\u4e2d\\u58e2\\u9f8d\\u6b63\\u5e97","phone":"034268507","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '018377', 'quanjia', 'zh-tw', 1000),
(8479, 6130, '5909-6130', 1, '中壢自立店', '{"number":"016302","shop":"\\u4e2d\\u58e2\\u81ea\\u7acb\\u5e97","phone":"034612172","address":"\\u838a\\u656c\\u8def\\uff18\\uff12\\uff13\\u865f"}', '016302', 'quanjia', 'zh-tw', 1000),
(8480, 6131, '5910-6131', 1, '中壢農會店', '{"number":"013676","shop":"\\u4e2d\\u58e2\\u8fb2\\u6703\\u5e97","phone":"034222900","address":"\\u77f3\\u982d\\u91cc\\u4e2d\\u5c71\\u8def\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '013676', 'quanjia', 'zh-tw', 1000),
(8481, 6132, '5911-6132', 1, '八里船頭店', '{"number":"013618","shop":"\\u516b\\u91cc\\u8239\\u982d\\u5e97","phone":"0286304308","address":"\\u6e21\\u8239\\u982d\\u8857\\uff11\\u865f"}', '013618', 'quanjia', 'zh-tw', 1000),
(8482, 6132, '5911-6132', 1, '八里龍米店', '{"number":"014921","shop":"\\u516b\\u91cc\\u9f8d\\u7c73\\u5e97","phone":"0226187522","address":"\\u9f8d\\u7c73\\u8def\\u4e00\\u6bb5\\uff12\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '014921', 'quanjia', 'zh-tw', 1000),
(8483, 6132, '5911-6132', 1, '八里富塘店', '{"number":"015166","shop":"\\u516b\\u91cc\\u5bcc\\u5858\\u5e97","phone":"0286303914","address":"\\u8a0a\\u5858\\u8def\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '015166', 'quanjia', 'zh-tw', 1000),
(8484, 6132, '5911-6132', 1, '八里廖添丁店', '{"number":"017641","shop":"\\u516b\\u91cc\\u5ed6\\u6dfb\\u4e01\\u5e97","phone":"0226101005","address":"\\u4e2d\\u83ef\\u8def\\uff13\\u6bb5\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '017641', 'quanjia', 'zh-tw', 1000),
(8485, 6132, '5911-6132', 1, '八里華城店', '{"number":"017885","shop":"\\u516b\\u91cc\\u83ef\\u57ce\\u5e97","phone":"0286304933","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '017885', 'quanjia', 'zh-tw', 1000),
(8486, 6132, '5911-6132', 1, '八里中華店', '{"number":"016467","shop":"\\u516b\\u91cc\\u4e2d\\u83ef\\u5e97","phone":"0286303476","address":"\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff14\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '016467', 'quanjia', 'zh-tw', 1000),
(8487, 6132, '5911-6132', 1, '八里龍王店', '{"number":"017646","shop":"\\u516b\\u91cc\\u9f8d\\u738b\\u5e97","phone":"0226101008","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '017646', 'quanjia', 'zh-tw', 1000),
(8488, 6133, '5911-6133', 1, '板橋板長店', '{"number":"016440","shop":"\\u677f\\u6a4b\\u677f\\u9577\\u5e97","phone":"0229545602","address":"\\u677f\\u65b0\\u8def\\uff19\\uff17\\uff06\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '016440', 'quanjia', 'zh-tw', 1000),
(8489, 6133, '5911-6133', 1, '板橋安東店', '{"number":"016505","shop":"\\u677f\\u6a4b\\u5b89\\u6771\\u5e97","phone":"0229514997","address":"\\u9577\\u5b89\\u8857\\uff11\\uff13\\uff18\\u5df7\\uff11\\u5f04\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '016505', 'quanjia', 'zh-tw', 1000),
(8490, 6133, '5911-6133', 1, '板橋西安店', '{"number":"014045","shop":"\\u677f\\u6a4b\\u897f\\u5b89\\u5e97","phone":"0229513527","address":"\\u9577\\u5b89\\u8857\\uff12\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '014045', 'quanjia', 'zh-tw', 1000),
(8491, 6133, '5911-6133', 1, '板橋永安店', '{"number":"016536","shop":"\\u677f\\u6a4b\\u6c38\\u5b89\\u5e97","phone":"0229645603","address":"\\u9577\\u5b89\\u8857\\uff13\\uff13\\uff11\\u5df7\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '016536', 'quanjia', 'zh-tw', 1000),
(8492, 6133, '5911-6133', 1, '板橋漢江店', '{"number":"016640","shop":"\\u677f\\u6a4b\\u6f22\\u6c5f\\u5e97","phone":"0222593499","address":"\\u9577\\u6c5f\\u8def\\u4e8c\\u6bb5\\uff11\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '016640', 'quanjia', 'zh-tw', 1000),
(8493, 6133, '5911-6133', 1, '板橋富安店', '{"number":"013294","shop":"\\u677f\\u6a4b\\u5bcc\\u5b89\\u5e97","phone":"0282571724","address":"\\u9577\\u6c5f\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '013294', 'quanjia', 'zh-tw', 1000),
(8494, 6133, '5911-6133', 1, '板橋金鑽店', '{"number":"011788","shop":"\\u677f\\u6a4b\\u91d1\\u947d\\u5e97","phone":"0226750923","address":"\\u6210\\u548c\\u91cc\\u91d1\\u9580\\u8857\\uff12\\uff19\\u865f"}', '011788', 'quanjia', 'zh-tw', 1000),
(8495, 6133, '5911-6133', 1, '板橋浮州店', '{"number":"018498","shop":"\\u677f\\u6a4b\\u6d6e\\u5dde\\u5e97","phone":"0222755855","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff15\\u5df7\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '018498', 'quanjia', 'zh-tw', 1000),
(8496, 6133, '5911-6133', 1, '板橋興安店', '{"number":"013555","shop":"\\u677f\\u6a4b\\u8208\\u5b89\\u5e97","phone":"0229672852","address":"\\u5927\\u89c0\\u8def\\u4e8c\\u6bb5\\uff13\\uff17\\u5df7\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '013555', 'quanjia', 'zh-tw', 1000),
(8497, 6133, '5911-6133', 1, '板橋大仁店', '{"number":"013601","shop":"\\u677f\\u6a4b\\u5927\\u4ec1\\u5e97","phone":"0229670947","address":"\\u5927\\u4ec1\\u8857\\uff11\\uff10\\uff18\\u4e4b\\uff11\\u865f"}', '013601', 'quanjia', 'zh-tw', 1000),
(8498, 6133, '5911-6133', 1, '板橋堂春店', '{"number":"013691","shop":"\\u677f\\u6a4b\\u5802\\u6625\\u5e97","phone":"0226835266","address":"\\u7be4\\u884c\\u8def\\u4e09\\u6bb5\\uff11\\u865f\\uff11\\u6a13"}', '013691', 'quanjia', 'zh-tw', 1000),
(8499, 6133, '5911-6133', 1, '板橋大隆店', '{"number":"018096","shop":"\\u677f\\u6a4b\\u5927\\u9686\\u5e97","phone":"0229533231","address":"\\u798f\\u661f\\u91cc\\u5fe0\\u5b5d\\u8def\\uff15\\uff10\\u865f\\u4e00\\u6a13"}', '018096', 'quanjia', 'zh-tw', 1000),
(8500, 6133, '5911-6133', 1, '板橋大東店', '{"number":"014811","shop":"\\u677f\\u6a4b\\u5927\\u6771\\u5e97","phone":"0289698004","address":"\\u5e9c\\u4e2d\\u8def\\uff11\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '014811', 'quanjia', 'zh-tw', 1000),
(8501, 6133, '5911-6133', 1, '板橋板農店', '{"number":"002816","shop":"\\u677f\\u6a4b\\u677f\\u8fb2\\u5e97","phone":"0222723346","address":"\\u5e9c\\u4e2d\\u8def\\uff12\\uff19\\u2014\\uff11\\u865f\\uff11\\u6a13"}', '002816', 'quanjia', 'zh-tw', 1000),
(8502, 6133, '5911-6133', 1, '板橋館西店', '{"number":"013552","shop":"\\u677f\\u6a4b\\u9928\\u897f\\u5e97","phone":"0229655570","address":"\\u9928\\u524d\\u897f\\u8def\\uff11\\uff12\\uff18\\u865f"}', '013552', 'quanjia', 'zh-tw', 1000),
(8503, 6133, '5911-6133', 1, '板橋聚星店', '{"number":"018525","shop":"\\u677f\\u6a4b\\u805a\\u661f\\u5e97","phone":"0229539549","address":"\\u9928\\u524d\\u897f\\u8def\\uff14\\u865f\\u3001\\uff14\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018525', 'quanjia', 'zh-tw', 1000),
(8504, 6133, '5911-6133', 1, '板橋聯翠店', '{"number":"016221","shop":"\\u677f\\u6a4b\\u806f\\u7fe0\\u5e97","phone":"0222559113","address":"\\u5149\\u6b66\\u8857\\uff12\\uff12\\u865f\\u58f9\\u6a13"}', '016221', 'quanjia', 'zh-tw', 1000),
(8505, 6133, '5911-6133', 1, '板橋廣和店', '{"number":"018279","shop":"\\u677f\\u6a4b\\u5ee3\\u548c\\u5e97","phone":"0289518657","address":"\\u5ee3\\u798f\\u91cc\\u5ee3\\u548c\\u8857\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '018279', 'quanjia', 'zh-tw', 1000),
(8506, 6133, '5911-6133', 1, '板橋貴興店', '{"number":"018555","shop":"\\u677f\\u6a4b\\u8cb4\\u8208\\u5e97","phone":"0229597811","address":"\\u8cb4\\u8208\\u8def\\uff14\\uff19\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018555', 'quanjia', 'zh-tw', 1000),
(8507, 6133, '5911-6133', 1, '板橋國泰店', '{"number":"016122","shop":"\\u677f\\u6a4b\\u570b\\u6cf0\\u5e97","phone":"0229596571","address":"\\u570b\\u6cf0\\u8857\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '016122', 'quanjia', 'zh-tw', 1000),
(8508, 6133, '5911-6133', 1, '板橋運山店', '{"number":"015143","shop":"\\u677f\\u6a4b\\u904b\\u5c71\\u5e97","phone":"0289647745","address":"\\u6d77\\u5c71\\u8def\\uff13\\uff13\\u865f"}', '015143', 'quanjia', 'zh-tw', 1000),
(8509, 6133, '5911-6133', 1, '板橋新都店', '{"number":"015357","shop":"\\u677f\\u6a4b\\u65b0\\u90fd\\u5e97","phone":"0229649535","address":"\\u6f22\\u751f\\u6771\\u8def\\uff11\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '015357', 'quanjia', 'zh-tw', 1000),
(8510, 6133, '5911-6133', 1, '板橋富陽店', '{"number":"012976","shop":"\\u677f\\u6a4b\\u5bcc\\u967d\\u5e97","phone":"0229689648","address":"\\u6f22\\u751f\\u91cc\\u5fa9\\u8208\\u8857\\uff11\\uff13\\uff10\\u865f\\u4e00\\u6a13"}', '012976', 'quanjia', 'zh-tw', 1000),
(8511, 6133, '5911-6133', 1, '板橋宜宅店', '{"number":"017479","shop":"\\u677f\\u6a4b\\u5b9c\\u5b85\\u5e97","phone":"0229600030","address":"\\u5408\\u5b9c\\u8def\\uff11\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '017479', 'quanjia', 'zh-tw', 1000),
(8512, 6133, '5911-6133', 1, '板橋和平店', '{"number":"016441","shop":"\\u677f\\u6a4b\\u548c\\u5e73\\u5e97","phone":"0229535609","address":"\\u548c\\u5e73\\u8def\\uff11\\uff10\\uff10\\u865f"}', '016441', 'quanjia', 'zh-tw', 1000),
(8513, 6133, '5911-6133', 1, '板橋華興店', '{"number":"017432","shop":"\\u677f\\u6a4b\\u83ef\\u8208\\u5e97","phone":"0229524563","address":"\\u83ef\\u8208\\u8857\\uff14\\uff11\\uff0e\\uff14\\uff13\\u865f"}', '017432', 'quanjia', 'zh-tw', 1000),
(8514, 6133, '5911-6133', 1, '板橋華雅店', '{"number":"016537","shop":"\\u677f\\u6a4b\\u83ef\\u96c5\\u5e97","phone":"0229551279","address":"\\u83ef\\u8208\\u8857\\uff19\\uff10\\u865f"}', '016537', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(8515, 6133, '5911-6133', 1, '板橋江翠店', '{"number":"017065","shop":"\\u677f\\u6a4b\\u6c5f\\u7fe0\\u5e97","phone":"0222525104","address":"\\u61f7\\u5fb7\\u8857\\uff11\\uff12\\uff17\\u5df7\\uff11\\u865f\\u53ca\\uff13\\u865f\\uff11\\uff26"}', '017065', 'quanjia', 'zh-tw', 1000),
(8516, 6133, '5911-6133', 1, '板橋新翠店', '{"number":"018350","shop":"\\u677f\\u6a4b\\u65b0\\u7fe0\\u5e97","phone":"0222544470","address":"\\u61f7\\u5fb7\\u8857\\uff11\\uff12\\uff17\\u5df7\\uff12\\uff13\\u5f04\\uff17\\u865f\\uff11\\u6a13"}', '018350', 'quanjia', 'zh-tw', 1000),
(8517, 6133, '5911-6133', 1, '板橋懷聖店', '{"number":"016423","shop":"\\u677f\\u6a4b\\u61f7\\u8056\\u5e97","phone":"0222505214","address":"\\u61f7\\u5fb7\\u8857\\uff12\\uff10\\uff11\\u5df7\\uff12\\u865f"}', '016423', 'quanjia', 'zh-tw', 1000),
(8518, 6133, '5911-6133', 1, '板橋新壽店', '{"number":"016326","shop":"\\u677f\\u6a4b\\u65b0\\u58fd\\u5e97","phone":"0222554220","address":"\\u4ecb\\u58fd\\u8857\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '016326', 'quanjia', 'zh-tw', 1000),
(8519, 6133, '5911-6133', 1, '板橋美華店', '{"number":"017911","shop":"\\u677f\\u6a4b\\u7f8e\\u83ef\\u5e97","phone":"0229657713","address":"\\u91d1\\u83ef\\u8857\\uff11\\uff10\\u5df7\\uff14\\uff18\\u5f04\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '017911', 'quanjia', 'zh-tw', 1000),
(8520, 6133, '5911-6133', 1, '板橋公園店', '{"number":"014085","shop":"\\u677f\\u6a4b\\u516c\\u5712\\u5e97","phone":"0226753572","address":"\\u91d1\\u9580\\u8857\\uff12\\uff10\\uff16\\uff06\\uff12\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '014085', 'quanjia', 'zh-tw', 1000),
(8521, 6133, '5911-6133', 1, '板橋金成店', '{"number":"015351","shop":"\\u677f\\u6a4b\\u91d1\\u6210\\u5e97","phone":"0226855676","address":"\\u91d1\\u9580\\u8857\\uff13\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '015351', 'quanjia', 'zh-tw', 1000),
(8522, 6133, '5911-6133', 1, '板橋白金店', '{"number":"017849","shop":"\\u677f\\u6a4b\\u767d\\u91d1\\u5e97","phone":"0226855960","address":"\\u91d1\\u9580\\u8857\\uff13\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017849', 'quanjia', 'zh-tw', 1000),
(8523, 6133, '5911-6133', 1, '板橋莒安店', '{"number":"012836","shop":"\\u677f\\u6a4b\\u8392\\u5b89\\u5e97","phone":"0282536711","address":"\\u8392\\u5149\\u8def\\uff11\\uff13\\uff11\\u865f"}', '012836', 'quanjia', 'zh-tw', 1000),
(8524, 6133, '5911-6133', 1, '板橋莒光店', '{"number":"013712","shop":"\\u677f\\u6a4b\\u8392\\u5149\\u5e97","phone":"0222593060","address":"\\u8392\\u5149\\u8def\\uff12\\uff12\\uff15\\uff0c\\uff12\\uff12\\uff17\\u865f"}', '013712', 'quanjia', 'zh-tw', 1000),
(8525, 6133, '5911-6133', 1, '板橋益豐店', '{"number":"017225","shop":"\\u677f\\u6a4b\\u76ca\\u8c50\\u5e97","phone":"0222577224","address":"\\u8392\\u5149\\u8def\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '017225', 'quanjia', 'zh-tw', 1000),
(8526, 6133, '5911-6133', 1, '板橋中勝店', '{"number":"015125","shop":"\\u677f\\u6a4b\\u4e2d\\u52dd\\u5e97","phone":"0222724924","address":"\\u6797\\u5712\\u8857\\uff12\\u865f"}', '015125', 'quanjia', 'zh-tw', 1000),
(8527, 6133, '5911-6133', 1, '板橋新泉店', '{"number":"015271","shop":"\\u677f\\u6a4b\\u65b0\\u6cc9\\u5e97","phone":"0282573744","address":"\\u9f8d\\u6cc9\\u8857\\uff11\\uff12\\uff16\\u865f"}', '015271', 'quanjia', 'zh-tw', 1000),
(8528, 6133, '5911-6133', 1, '板橋美堤店', '{"number":"017227","shop":"\\u677f\\u6a4b\\u7f8e\\u5824\\u5e97","phone":"0229682151","address":"\\u9f8d\\u8208\\u8857\\uff17\\uff11\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '017227', 'quanjia', 'zh-tw', 1000),
(8529, 6133, '5911-6133', 1, '板橋民安店', '{"number":"016928","shop":"\\u677f\\u6a4b\\u6c11\\u5b89\\u5e97","phone":"0229667664","address":"\\u6c11\\u6b0a\\u8def\\uff12\\uff10\\uff12\\u5df7\\uff17\\u5f04\\uff12\\uff0d\\uff14\\u865f\\uff11\\u6a13"}', '016928', 'quanjia', 'zh-tw', 1000),
(8530, 6133, '5911-6133', 1, '板橋金典店', '{"number":"015869","shop":"\\u677f\\u6a4b\\u91d1\\u5178\\u5e97","phone":"0229642035","address":"\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\u4e4b\\uff11\\u865f\\uff11\\u6a13\\uff06\\u593e\\u5c64"}', '015869', 'quanjia', 'zh-tw', 1000),
(8531, 6133, '5911-6133', 1, '板橋文興店', '{"number":"012688","shop":"\\u677f\\u6a4b\\u6587\\u8208\\u5e97","phone":"0222579434","address":"\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\uff12\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '012688', 'quanjia', 'zh-tw', 1000),
(8532, 6133, '5911-6133', 1, '板橋金巨蛋店', '{"number":"010379","shop":"\\u677f\\u6a4b\\u91d1\\u5de8\\u86cb\\u5e97","phone":"0222573505","address":"\\u6c11\\u751f\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\uff10\\u865f\\uff11\\u6a13\\u53ca\\uff42\\uff11"}', '010379', 'quanjia', 'zh-tw', 1000),
(8533, 6133, '5911-6133', 1, '板橋金富店', '{"number":"015700","shop":"\\u677f\\u6a4b\\u91d1\\u5bcc\\u5e97","phone":"0222541621","address":"\\u6c11\\u751f\\u8def\\u4e09\\u6bb5\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '015700', 'quanjia', 'zh-tw', 1000),
(8534, 6133, '5911-6133', 1, '板橋廣隆店', '{"number":"016032","shop":"\\u677f\\u6a4b\\u5ee3\\u9686\\u5e97","phone":"0229577130","address":"\\u6c11\\u751f\\u8def\\u4e00\\u6bb5\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '016032', 'quanjia', 'zh-tw', 1000),
(8535, 6133, '5911-6133', 1, '板橋懷治店', '{"number":"017791","shop":"\\u677f\\u6a4b\\u61f7\\u6cbb\\u5e97","phone":"0282529989","address":"\\u6c11\\u6cbb\\u8857\\uff11\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '017791', 'quanjia', 'zh-tw', 1000),
(8536, 6133, '5911-6133', 1, '板橋民族店', '{"number":"018267","shop":"\\u677f\\u6a4b\\u6c11\\u65cf\\u5e97","phone":"0289510850","address":"\\u6c11\\u65cf\\u8def\\uff16\\uff11\\u865f"}', '018267', 'quanjia', 'zh-tw', 1000),
(8537, 6133, '5911-6133', 1, '板橋新雅店', '{"number":"015046","shop":"\\u677f\\u6a4b\\u65b0\\u96c5\\u5e97","phone":"0229655750","address":"\\u5357\\u96c5\\u6771\\u8def\\uff18\\u865f\\uff08\\u4ee3\\u8868\\u865f\\uff09\\uff11\\u6a13"}', '015046', 'quanjia', 'zh-tw', 1000),
(8538, 6133, '5911-6133', 1, '板橋大雅店', '{"number":"017478","shop":"\\u677f\\u6a4b\\u5927\\u96c5\\u5e97","phone":"0229649724","address":"\\u5357\\u96c5\\u5357\\u8def\\u4e8c\\u6bb5\\uff15\\u865f\\uff11\\u6a13"}', '017478', 'quanjia', 'zh-tw', 1000),
(8539, 6133, '5911-6133', 1, '板橋僑二店', '{"number":"013816","shop":"\\u677f\\u6a4b\\u50d1\\u4e8c\\u5e97","phone":"0289699174","address":"\\u50d1\\u4e2d\\u4e8c\\u8857\\uff11\\uff11\\uff16\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '013816', 'quanjia', 'zh-tw', 1000),
(8540, 6133, '5911-6133', 1, '板橋僑一店', '{"number":"017023","shop":"\\u677f\\u6a4b\\u50d1\\u4e00\\u5e97","phone":"0229679685","address":"\\u50d1\\u4e2d\\u4e00\\u8857\\uff11\\uff12\\uff14\\u5df7\\uff19\\u5f04\\uff11\\u865f"}', '017023', 'quanjia', 'zh-tw', 1000),
(8541, 6133, '5911-6133', 1, '板橋興僑店', '{"number":"016422","shop":"\\u677f\\u6a4b\\u8208\\u50d1\\u5e97","phone":"0289697997","address":"\\u50d1\\u4e2d\\u4e00\\u8857\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '016422', 'quanjia', 'zh-tw', 1000),
(8542, 6133, '5911-6133', 1, '板橋勝文店', '{"number":"016053","shop":"\\u677f\\u6a4b\\u52dd\\u6587\\u5e97","phone":"0282528693","address":"\\u4ec1\\u5316\\u8857\\uff14\\uff16\\u865f\\u53ca\\uff14\\uff16\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016053', 'quanjia', 'zh-tw', 1000),
(8543, 6133, '5911-6133', 1, '板橋天和店', '{"number":"016086","shop":"\\u677f\\u6a4b\\u5929\\u548c\\u5e97","phone":"0229556108","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '016086', 'quanjia', 'zh-tw', 1000),
(8544, 6133, '5911-6133', 1, '板橋長民店', '{"number":"017062","shop":"\\u677f\\u6a4b\\u9577\\u6c11\\u5e97","phone":"0229558365","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff13\\u5df7\\uff11\\uff0d\\uff13\\u865f\\uff11\\u6a13\\uff06\\uff22\\uff11"}', '017062', 'quanjia', 'zh-tw', 1000),
(8545, 6133, '5911-6133', 1, '板橋三民店', '{"number":"013905","shop":"\\u677f\\u6a4b\\u4e09\\u6c11\\u5e97","phone":"0229629497","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff12\\uff10\\uff13\\u4e4b\\uff19\\u865f"}', '013905', 'quanjia', 'zh-tw', 1000),
(8546, 6133, '5911-6133', 1, '板橋樂福店', '{"number":"013653","shop":"\\u677f\\u6a4b\\u6a02\\u798f\\u5e97","phone":"0229636100","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\u5df7\\uff16\\u865f\\uff11\\u6a13"}', '013653', 'quanjia', 'zh-tw', 1000),
(8547, 6133, '5911-6133', 1, '板橋長壽店', '{"number":"018719","shop":"\\u677f\\u6a4b\\u9577\\u58fd\\u5e97","phone":"0229572584","address":"\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\uff18\\uff13\\u865f"}', '018719', 'quanjia', 'zh-tw', 1000),
(8548, 6133, '5911-6133', 1, '板橋振興店', '{"number":"011950","shop":"\\u677f\\u6a4b\\u632f\\u8208\\u5e97","phone":"0289612085","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\uff13\\uff11\\u5df7\\uff18\\uff19\\u5f04\\uff13\\u865f"}', '011950', 'quanjia', 'zh-tw', 1000),
(8549, 6133, '5911-6133', 1, '板橋富山店', '{"number":"018862","shop":"\\u677f\\u6a4b\\u5bcc\\u5c71\\u5e97","phone":"0289641541","address":"\\u4e09\\u6c11\\u8def\\u4e00\\u6bb5\\uff19\\uff14\\u865f\\uff0c\\uff19\\uff16\\u865f"}', '018862', 'quanjia', 'zh-tw', 1000),
(8550, 6133, '5911-6133', 1, '板橋國民店', '{"number":"014543","shop":"\\u677f\\u6a4b\\u570b\\u6c11\\u5e97","phone":"0229572609","address":"\\u5be6\\u8e10\\u8def\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '014543', 'quanjia', 'zh-tw', 1000),
(8551, 6133, '5911-6133', 1, '板橋雙十店', '{"number":"013385","shop":"\\u677f\\u6a4b\\u96d9\\u5341\\u5e97","phone":"0222546231","address":"\\u96d9\\u5341\\u8def\\u4e8c\\u6bb5\\uff16\\u2014\\uff18\\u865f\\uff0c\\uff16\\u2014\\uff19\\u865f\\uff0c\\uff16\\u2014\\uff11\\uff10"}', '013385', 'quanjia', 'zh-tw', 1000),
(8552, 6133, '5911-6133', 1, '板橋華江店', '{"number":"012072","shop":"\\u677f\\u6a4b\\u83ef\\u6c5f\\u5e97","phone":"0222554256","address":"\\u96d9\\u5341\\u8def\\u4e09\\u6bb5\\uff15\\uff14\\u865f"}', '012072', 'quanjia', 'zh-tw', 1000),
(8553, 6133, '5911-6133', 1, '板橋板川店', '{"number":"015962","shop":"\\u677f\\u6a4b\\u677f\\u5ddd\\u5e97","phone":"0289674495","address":"\\u56db\\u5ddd\\u8def\\u4e8c\\u6bb5\\uff12\\uff14\\uff15\\u5df7\\uff17\\u865f\\uff11\\u6a13"}', '015962', 'quanjia', 'zh-tw', 1000),
(8554, 6133, '5911-6133', 1, '板橋華德店', '{"number":"014123","shop":"\\u677f\\u6a4b\\u83ef\\u5fb7\\u5e97","phone":"0289676847","address":"\\u56db\\u5ddd\\u8def\\u4e8c\\u6bb5\\uff14\\uff17\\u5df7\\uff13\\u5f04\\uff14\\u865f\\uff11\\u6a13"}', '014123', 'quanjia', 'zh-tw', 1000),
(8555, 6133, '5911-6133', 1, '板橋新遠店', '{"number":"015272","shop":"\\u677f\\u6a4b\\u65b0\\u9060\\u5e97","phone":"0289539873","address":"\\u56db\\u5ddd\\u8def\\u4e00\\u6bb5\\uff13\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '015272', 'quanjia', 'zh-tw', 1000),
(8556, 6133, '5911-6133', 1, '板橋宏翠店', '{"number":"014578","shop":"\\u677f\\u6a4b\\u5b8f\\u7fe0\\u5e97","phone":"0282572973","address":"\\u56db\\u7dad\\u8def\\uff11\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '014578', 'quanjia', 'zh-tw', 1000),
(8557, 6133, '5911-6133', 1, '板橋四維店', '{"number":"014502","shop":"\\u677f\\u6a4b\\u56db\\u7dad\\u5e97","phone":"0222542469","address":"\\u56db\\u7dad\\u8def\\uff11\\uff18\\uff10\\u865f"}', '014502', 'quanjia', 'zh-tw', 1000),
(8558, 6133, '5911-6133', 1, '板橋互維店', '{"number":"016945","shop":"\\u677f\\u6a4b\\u4e92\\u7dad\\u5e97","phone":"0222586320","address":"\\u56db\\u7dad\\u8def\\uff12\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '016945', 'quanjia', 'zh-tw', 1000),
(8559, 6133, '5911-6133', 1, '板橋勝維店', '{"number":"017236","shop":"\\u677f\\u6a4b\\u52dd\\u7dad\\u5e97","phone":"0282570329","address":"\\u56db\\u7dad\\u8def\\uff13\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '017236', 'quanjia', 'zh-tw', 1000),
(8560, 6133, '5911-6133', 1, '板橋松柏店', '{"number":"015142","shop":"\\u677f\\u6a4b\\u677e\\u67cf\\u5e97","phone":"0282520901","address":"\\u677e\\u67cf\\u8857\\uff11\\uff13\\u865f"}', '015142', 'quanjia', 'zh-tw', 1000),
(8561, 6133, '5911-6133', 1, '板橋龍江店', '{"number":"016502","shop":"\\u677f\\u6a4b\\u9f8d\\u6c5f\\u5e97","phone":"0282535436","address":"\\u6587\\u5316\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff12\\u5df7\\uff13\\u5f04\\uff19\\uff11\\uff0c\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '016502', 'quanjia', 'zh-tw', 1000),
(8562, 6133, '5911-6133', 1, '板橋立都店', '{"number":"017459","shop":"\\u677f\\u6a4b\\u7acb\\u90fd\\u5e97","phone":"0222559171","address":"\\u6587\\u5316\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '017459', 'quanjia', 'zh-tw', 1000),
(8563, 6133, '5911-6133', 1, '板橋新民店', '{"number":"018251","shop":"\\u677f\\u6a4b\\u65b0\\u6c11\\u5e97","phone":"0222570742","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\uff11\\uff18\\uff18\\u5df7\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '018251', 'quanjia', 'zh-tw', 1000),
(8564, 6133, '5911-6133', 1, '板橋傑仕堡店', '{"number":"018349","shop":"\\u677f\\u6a4b\\u5091\\u4ed5\\u5821\\u5e97","phone":"0222540391","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\uff11\\uff18\\uff18\\u5df7\\uff15\\uff17\\u865f\\uff11\\u6a13\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018349', 'quanjia', 'zh-tw', 1000),
(8565, 6133, '5911-6133', 1, '板橋文化店', '{"number":"014167","shop":"\\u677f\\u6a4b\\u6587\\u5316\\u5e97","phone":"0222544632","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\uff12\\uff18\\uff10\\u865f"}', '014167', 'quanjia', 'zh-tw', 1000),
(8566, 6133, '5911-6133', 1, '板橋致科店', '{"number":"015455","shop":"\\u677f\\u6a4b\\u81f4\\u79d1\\u5e97","phone":"0222569453","address":"\\u6587\\u5316\\u8def\\u4e00\\u6bb5\\uff13\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '015455', 'quanjia', 'zh-tw', 1000),
(8567, 6133, '5911-6133', 1, '板橋興盛店', '{"number":"018414","shop":"\\u677f\\u6a4b\\u8208\\u76db\\u5e97","phone":"0282589625","address":"\\u6587\\u8056\\u8857\\uff11\\uff16\\uff11\\u865f\\uff11\\u6a13"}', '018414', 'quanjia', 'zh-tw', 1000),
(8568, 6133, '5911-6133', 1, '板橋祝山店', '{"number":"017800","shop":"\\u677f\\u6a4b\\u795d\\u5c71\\u5e97","phone":"0222554105","address":"\\u5433\\u9cf3\\u8def\\uff12\\uff11\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '017800', 'quanjia', 'zh-tw', 1000),
(8569, 6133, '5911-6133', 1, '板橋千甲店', '{"number":"014425","shop":"\\u677f\\u6a4b\\u5343\\u7532\\u5e97","phone":"0226758509","address":"\\u6eaa\\u5317\\u91cc\\u6eaa\\u5d11\\u4e8c\\u8857\\uff12\\uff16\\u865f\\u4e00\\u6a13"}', '014425', 'quanjia', 'zh-tw', 1000),
(8570, 6133, '5911-6133', 1, '板橋溪崑店', '{"number":"014890","shop":"\\u677f\\u6a4b\\u6eaa\\u5d11\\u5e97","phone":"0226876563","address":"\\u6eaa\\u5d11\\u4e8c\\u8857\\uff11\\uff13\\uff14\\u3001\\uff11\\uff13\\uff16\\u3001\\uff11\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '014890', 'quanjia', 'zh-tw', 1000),
(8571, 6133, '5911-6133', 1, '板橋雙城店', '{"number":"018268","shop":"\\u677f\\u6a4b\\u96d9\\u57ce\\u5e97","phone":"0229544584","address":"\\u7e23\\u6c11\\u5927\\u9053\\u4e8c\\u6bb5\\uff11\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '018268', 'quanjia', 'zh-tw', 1000),
(8572, 6133, '5911-6133', 1, '板橋雙子店', '{"number":"017113","shop":"\\u677f\\u6a4b\\u96d9\\u5b50\\u5e97","phone":"0229649816","address":"\\u7e23\\u6c11\\u5927\\u9053\\u4e8c\\u6bb5\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017113', 'quanjia', 'zh-tw', 1000),
(8573, 6133, '5911-6133', 1, '板橋新農店', '{"number":"018863","shop":"\\u677f\\u6a4b\\u65b0\\u8fb2\\u5e97","phone":"0222538884","address":"\\u65b0\\u6d77\\u8def\\uff13\\uff12\\uff18\\uff0c\\uff13\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '018863', 'quanjia', 'zh-tw', 1000),
(8574, 6133, '5911-6133', 1, '板橋富貴店', '{"number":"014783","shop":"\\u677f\\u6a4b\\u5bcc\\u8cb4\\u5e97","phone":"0222599157","address":"\\u65b0\\u6d77\\u8def\\uff14\\uff16\\uff12\\uff0c\\uff14\\uff16\\uff14\\uff0c\\uff14\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '014783', 'quanjia', 'zh-tw', 1000),
(8575, 6133, '5911-6133', 1, '板橋板民店', '{"number":"015440","shop":"\\u677f\\u6a4b\\u677f\\u6c11\\u5e97","phone":"0229545946","address":"\\u65b0\\u6c11\\u8857\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '015440', 'quanjia', 'zh-tw', 1000),
(8576, 6133, '5911-6133', 1, '板橋甫華店', '{"number":"015612","shop":"\\u677f\\u6a4b\\u752b\\u83ef\\u5e97","phone":"0289659345","address":"\\u65b0\\u751f\\u8857\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '015612', 'quanjia', 'zh-tw', 1000),
(8577, 6133, '5911-6133', 1, '板橋欣興店', '{"number":"018715","shop":"\\u677f\\u6a4b\\u6b23\\u8208\\u5e97","phone":"0229654269","address":"\\u65b0\\u8208\\u8def\\uff11\\u865f\\uff11\\u6a13"}', '018715', 'quanjia', 'zh-tw', 1000),
(8578, 6133, '5911-6133', 1, '板橋信陽店', '{"number":"012606","shop":"\\u677f\\u6a4b\\u4fe1\\u967d\\u5e97","phone":"0229506920","address":"\\u4fe1\\u7fa9\\u91cc\\u4fe1\\u7fa9\\u8def\\uff17\\uff12\\u865f\\u4e00\\u6a13"}', '012606', 'quanjia', 'zh-tw', 1000),
(8579, 6133, '5911-6133', 1, '板橋干城店', '{"number":"017935","shop":"\\u677f\\u6a4b\\u5e72\\u57ce\\u5e97","phone":"0229644958","address":"\\u4fe1\\u7fa9\\u8def\\uff12\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '017935', 'quanjia', 'zh-tw', 1000),
(8580, 6133, '5911-6133', 1, '板橋信義店', '{"number":"018838","shop":"\\u677f\\u6a4b\\u4fe1\\u7fa9\\u5e97","phone":"0229536686","address":"\\u4fe1\\u7fa9\\u8def\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '018838', 'quanjia', 'zh-tw', 1000),
(8581, 6133, '5911-6133', 1, '板橋華陽店', '{"number":"018488","shop":"\\u677f\\u6a4b\\u83ef\\u967d\\u5e97","phone":"0222585156","address":"\\u967d\\u660e\\u91cc\\u967d\\u660e\\u8857\\uff18\\uff18\\u3001\\uff19\\uff10\\u865f\\u4e00\\u6a13"}', '018488', 'quanjia', 'zh-tw', 1000),
(8582, 6133, '5911-6133', 1, '板橋英仕店', '{"number":"015909","shop":"\\u677f\\u6a4b\\u82f1\\u4ed5\\u5e97","phone":"0222599823","address":"\\u82f1\\u58eb\\u8def\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '015909', 'quanjia', 'zh-tw', 1000),
(8583, 6133, '5911-6133', 1, '板橋富裕店', '{"number":"017950","shop":"\\u677f\\u6a4b\\u5bcc\\u88d5\\u5e97","phone":"0282529995","address":"\\u88d5\\u6c11\\u8857\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '017950', 'quanjia', 'zh-tw', 1000),
(8584, 6133, '5911-6133', 1, '板橋裕盛店', '{"number":"013673","shop":"\\u677f\\u6a4b\\u88d5\\u76db\\u5e97","phone":"0222567681","address":"\\u88d5\\u6c11\\u8857\\uff19\\uff15\\u865f"}', '013673', 'quanjia', 'zh-tw', 1000),
(8585, 6133, '5911-6133', 1, '板橋宜居店', '{"number":"017951","shop":"\\u677f\\u6a4b\\u5b9c\\u5c45\\u5e97","phone":"0289697435","address":"\\u6a02\\u7fa4\\u8def\\uff11\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '017951', 'quanjia', 'zh-tw', 1000),
(8586, 6133, '5911-6133', 1, '板橋正隆店', '{"number":"017313","shop":"\\u677f\\u6a4b\\u6b63\\u9686\\u5e97","phone":"0229578305","address":"\\u6b63\\u6cf0\\u91cc\\u4e09\\u6c11\\u8def\\u4e8c\\u6bb5\\u6b63\\u9686\\u5df7\\uff13\\uff14\\u865f\\u4e00\\u6a13"}', '017313', 'quanjia', 'zh-tw', 1000),
(8587, 6133, '5911-6133', 1, '板橋新光仁店', '{"number":"014633","shop":"\\u677f\\u6a4b\\u65b0\\u5149\\u4ec1\\u5e97","phone":"0289539335","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\u865f\\uff11\\uff0d\\uff15\\u6a13"}', '014633', 'quanjia', 'zh-tw', 1000),
(8588, 6133, '5911-6133', 1, '板橋光復店', '{"number":"018887","shop":"\\u677f\\u6a4b\\u5149\\u5fa9\\u5e97","phone":"0229643847","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff15\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '018887', 'quanjia', 'zh-tw', 1000),
(8589, 6133, '5911-6133', 1, '板橋新光店', '{"number":"016230","shop":"\\u677f\\u6a4b\\u65b0\\u5149\\u5e97","phone":"0229550932","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff14\\uff11\\uff0d\\uff12\\u865f\\uff11\\u6a13"}', '016230', 'quanjia', 'zh-tw', 1000),
(8590, 6133, '5911-6133', 1, '板橋新站店', '{"number":"018877","shop":"\\u677f\\u6a4b\\u65b0\\u7ad9\\u5e97","phone":"0229638358","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff10\\u865f"}', '018877', 'quanjia', 'zh-tw', 1000),
(8591, 6133, '5911-6133', 1, '板橋市府店', '{"number":"013827","shop":"\\u677f\\u6a4b\\u5e02\\u5e9c\\u5e97","phone":"0229646019","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff11\\u865f\\uff22\\uff11"}', '013827', 'quanjia', 'zh-tw', 1000),
(8592, 6133, '5911-6133', 1, '板橋大庭店', '{"number":"017125","shop":"\\u677f\\u6a4b\\u5927\\u5ead\\u5e97","phone":"0229670325","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff19\\uff11\\u865f"}', '017125', 'quanjia', 'zh-tw', 1000),
(8593, 6133, '5911-6133', 1, '板橋美庭店', '{"number":"015275","shop":"\\u677f\\u6a4b\\u7f8e\\u5ead\\u5e97","phone":"0229607413","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff11\\uff16\\u5df7\\uff12\\uff11\\u865f\\u3001\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '015275', 'quanjia', 'zh-tw', 1000),
(8594, 6133, '5911-6133', 1, '板橋瑞安店', '{"number":"017177","shop":"\\u677f\\u6a4b\\u745e\\u5b89\\u5e97","phone":"0229677282","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '017177', 'quanjia', 'zh-tw', 1000),
(8595, 6133, '5911-6133', 1, '板橋花園店', '{"number":"016042","shop":"\\u677f\\u6a4b\\u82b1\\u5712\\u5e97","phone":"0229679720","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u5df7\\uff11\\uff14\\u865f\\uff11\\u6a13"}', '016042', 'quanjia', 'zh-tw', 1000),
(8596, 6133, '5911-6133', 1, '板橋擎天店', '{"number":"018220","shop":"\\u677f\\u6a4b\\u64ce\\u5929\\u5e97","phone":"0229558982","address":"\\u91cd\\u6176\\u8def\\uff12\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '018220', 'quanjia', 'zh-tw', 1000),
(8597, 6133, '5911-6133', 1, '板橋慶豐店', '{"number":"014925","shop":"\\u677f\\u6a4b\\u6176\\u8c50\\u5e97","phone":"0289535147","address":"\\u91cd\\u6176\\u8def\\uff12\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '014925', 'quanjia', 'zh-tw', 1000),
(8598, 6133, '5911-6133', 1, '板橋板慶店', '{"number":"017433","shop":"\\u677f\\u6a4b\\u677f\\u6176\\u5e97","phone":"0289539805","address":"\\u91cd\\u6176\\u8def\\uff12\\uff19\\uff10\\u5df7\\uff13\\u865f\\uff11\\u6a13"}', '017433', 'quanjia', 'zh-tw', 1000),
(8599, 6133, '5911-6133', 1, '板橋新慶店', '{"number":"014306","shop":"\\u677f\\u6a4b\\u65b0\\u6176\\u5e97","phone":"0229511914","address":"\\u91cd\\u6176\\u8def\\uff16\\uff10\\uff0d\\uff11\\u865f\\uff11\\u6a13\\uff06\\u5730\\u4e0b\\u5ba4"}', '014306', 'quanjia', 'zh-tw', 1000),
(8600, 6133, '5911-6133', 1, '板橋萬板店', '{"number":"015192","shop":"\\u677f\\u6a4b\\u842c\\u677f\\u5e97","phone":"0222546290","address":"\\u838a\\u656c\\u8def\\uff12\\uff12\\uff10\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '015192', 'quanjia', 'zh-tw', 1000),
(8601, 6134, '5911-6134', 1, '淡水紅林店', '{"number":"017105","shop":"\\u6de1\\u6c34\\u7d05\\u6797\\u5e97","phone":"0228092016","address":"\\u516b\\u52e2\\u91cc\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '017105', 'quanjia', 'zh-tw', 1000),
(8602, 6134, '5911-6134', 1, '淡水新旭店', '{"number":"017606","shop":"\\u6de1\\u6c34\\u65b0\\u65ed\\u5e97","phone":"0226253827","address":"\\u5317\\u65b0\\u8def\\uff11\\uff16\\uff19\\u5df7\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '017606', 'quanjia', 'zh-tw', 1000),
(8603, 6134, '5911-6134', 1, '淡水學城店', '{"number":"014259","shop":"\\u6de1\\u6c34\\u5b78\\u57ce\\u5e97","phone":"0226299127","address":"\\u5317\\u65b0\\u8def\\uff11\\uff18\\uff12\\u5df7\\uff12\\uff11\\u5f04\\uff11\\uff0d\\uff11\\u865f"}', '014259', 'quanjia', 'zh-tw', 1000),
(8604, 6134, '5911-6134', 1, '淡水濱海店', '{"number":"018540","shop":"\\u6de1\\u6c34\\u6ff1\\u6d77\\u5e97","phone":"0226228293","address":"\\u6ff1\\u6d77\\u8def\\u4e00\\u6bb5\\uff13\\uff10\\uff18\\u865f"}', '018540', 'quanjia', 'zh-tw', 1000),
(8605, 6134, '5911-6134', 1, '淡水淡水店', '{"number":"015199","shop":"\\u6de1\\u6c34\\u6de1\\u6c34\\u5e97","phone":"0226237472","address":"\\u535a\\u611b\\u8857\\uff11\\uff14\\u865f"}', '015199', 'quanjia', 'zh-tw', 1000),
(8606, 6134, '5911-6134', 1, '淡水新崙店', '{"number":"018705","shop":"\\u6de1\\u6c34\\u65b0\\u5d19\\u5e97","phone":"0228053641","address":"\\u6de1\\u6d77\\u8def\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '018705', 'quanjia', 'zh-tw', 1000),
(8607, 6134, '5911-6134', 1, '淡水摩洛哥店', '{"number":"016029","shop":"\\u6de1\\u6c34\\u6469\\u6d1b\\u54e5\\u5e97","phone":"0286268106","address":"\\u6de1\\u91d1\\u8def\\uff13\\uff18\\u5df7\\uff17\\uff10\\u865f"}', '016029', 'quanjia', 'zh-tw', 1000),
(8608, 6134, '5911-6134', 1, '淡水新莊店', '{"number":"014945","shop":"\\u6de1\\u6c34\\u65b0\\u838a\\u5e97","phone":"0226227867","address":"\\u6de1\\u91d1\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff16\\u865f"}', '014945', 'quanjia', 'zh-tw', 1000),
(8609, 6134, '5911-6134', 1, '淡水鄧公店', '{"number":"016387","shop":"\\u6de1\\u6c34\\u9127\\u516c\\u5e97","phone":"0226282840","address":"\\u9127\\u516c\\u8def\\uff13\\uff12\\u5df7\\uff11\\u865f"}', '016387', 'quanjia', 'zh-tw', 1000),
(8610, 6134, '5911-6134', 1, '淡水正中店', '{"number":"015699","shop":"\\u6de1\\u6c34\\u6b63\\u4e2d\\u5e97","phone":"0226282285","address":"\\u7aff\\u84c1\\u91cc\\u4e2d\\u6b63\\u6771\\u8def\\u4e00\\u6bb5\\uff17\\uff17\\u865f\\uff17\\uff19\\u865f"}', '015699', 'quanjia', 'zh-tw', 1000),
(8611, 6134, '5911-6134', 1, '淡水加州店', '{"number":"017883","shop":"\\u6de1\\u6c34\\u52a0\\u5dde\\u5e97","phone":"0288093432","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff19\\u865f"}', '017883', 'quanjia', 'zh-tw', 1000),
(8612, 6134, '5911-6134', 1, '淡水竹圍店', '{"number":"018319","shop":"\\u6de1\\u6c34\\u7af9\\u570d\\u5e97","phone":"0228099936","address":"\\u6c11\\u751f\\u8def\\uff15\\uff18\\u865f"}', '018319', 'quanjia', 'zh-tw', 1000),
(8613, 6134, '5911-6134', 1, '淡水竹勝店', '{"number":"016892","shop":"\\u6de1\\u6c34\\u7af9\\u52dd\\u5e97","phone":"0228082083","address":"\\u6c11\\u65cf\\u8def\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '016892', 'quanjia', 'zh-tw', 1000),
(8614, 6134, '5911-6134', 1, '淡水青水店', '{"number":"017729","shop":"\\u6de1\\u6c34\\u9752\\u6c34\\u5e97","phone":"0226209862","address":"\\u6e05\\u6c34\\u8857\\uff19\\uff0d\\uff15\\u865f\\u4e00\\u6a13"}', '017729', 'quanjia', 'zh-tw', 1000),
(8615, 6134, '5911-6134', 1, '淡水沙崙店', '{"number":"014991","shop":"\\u6de1\\u6c34\\u6c99\\u5d19\\u5e97","phone":"0228050829","address":"\\u6c99\\u5d19\\u91cc\\u6c99\\u5d19\\u8def\\uff11\\uff14\\uff19\\u865f"}', '014991', 'quanjia', 'zh-tw', 1000),
(8616, 6134, '5911-6134', 1, '淡水興忠店', '{"number":"017189","shop":"\\u6de1\\u6c34\\u8208\\u5fe0\\u5e97","phone":"0226263386","address":"\\u6c34\\u7893\\u91cc\\uff11\\uff11\\u9130\\u5927\\u5fe0\\u8857\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '017189', 'quanjia', 'zh-tw', 1000),
(8617, 6134, '5911-6134', 1, '淡水富山店', '{"number":"012237","shop":"\\u6de1\\u6c34\\u5bcc\\u5c71\\u5e97","phone":"0226239971","address":"\\u6c34\\u6e90\\u8857\\u4e8c\\u6bb5\\uff11\\uff17\\uff17\\u5df7\\uff16\\uff17\\u865f"}', '012237', 'quanjia', 'zh-tw', 1000),
(8618, 6134, '5911-6134', 1, '淡水水源店', '{"number":"014623","shop":"\\u6de1\\u6c34\\u6c34\\u6e90\\u5e97","phone":"0226291496","address":"\\u6c34\\u6e90\\u8857\\u4e00\\u6bb5\\uff11\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '014623', 'quanjia', 'zh-tw', 1000),
(8619, 6134, '5911-6134', 1, '淡水源德店', '{"number":"018321","shop":"\\u6de1\\u6c34\\u6e90\\u5fb7\\u5e97","phone":"0226264758","address":"\\u6c34\\u6e90\\u8857\\u4e00\\u6bb5\\uff11\\u865f"}', '018321', 'quanjia', 'zh-tw', 1000),
(8620, 6134, '5911-6134', 1, '淡水新摩天店', '{"number":"015976","shop":"\\u6de1\\u6c34\\u65b0\\u6469\\u5929\\u5e97","phone":"0226255587","address":"\\u65b0\\u6625\\u8857\\uff11\\uff18\\uff14\\u865f"}', '015976', 'quanjia', 'zh-tw', 1000),
(8621, 6134, '5911-6134', 1, '淡水新民店', '{"number":"017429","shop":"\\u6de1\\u6c34\\u65b0\\u6c11\\u5e97","phone":"0226223099","address":"\\u65b0\\u6c11\\u8857\\uff11\\uff18\\uff10\\u4e4b\\uff16\\u865f"}', '017429', 'quanjia', 'zh-tw', 1000),
(8622, 6134, '5911-6134', 1, '淡水新園店', '{"number":"017882","shop":"\\u6de1\\u6c34\\u65b0\\u5712\\u5e97","phone":"0226218918","address":"\\u65b0\\u6c11\\u8857\\uff17\\uff18\\u865f"}', '017882', 'quanjia', 'zh-tw', 1000),
(8623, 6134, '5911-6134', 1, '淡水新頂店', '{"number":"018573","shop":"\\u6de1\\u6c34\\u65b0\\u9802\\u5e97","phone":"0228059891","address":"\\u65b0\\u5e02\\u4e94\\u8def\\uff12\\u6bb5\\uff13\\u865f\\uff11\\u6a13"}', '018573', 'quanjia', 'zh-tw', 1000),
(8624, 6134, '5911-6134', 1, '淡水海都店', '{"number":"018299","shop":"\\u6de1\\u6c34\\u6d77\\u90fd\\u5e97","phone":"0226238741","address":"\\u65b0\\u5e02\\u4e94\\u8def\\u4e09\\u6bb5\\uff13\\uff11\\uff12\\u865f"}', '018299', 'quanjia', 'zh-tw', 1000),
(8625, 6134, '5911-6134', 1, '淡水義山店', '{"number":"015058","shop":"\\u6de1\\u6c34\\u7fa9\\u5c71\\u5e97","phone":"0226258537","address":"\\u65b0\\u5e02\\u4e00\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '015058', 'quanjia', 'zh-tw', 1000),
(8626, 6134, '5911-6134', 1, '淡水新興店', '{"number":"017100","shop":"\\u6de1\\u6c34\\u65b0\\u8208\\u5e97","phone":"0226230631","address":"\\u65b0\\u8208\\u8857\\uff16\\uff14\\u865f"}', '017100', 'quanjia', 'zh-tw', 1000),
(8627, 6134, '5911-6134', 1, '淡水新生店', '{"number":"015480","shop":"\\u6de1\\u6c34\\u65b0\\u751f\\u5e97","phone":"0226224332","address":"\\u65b0\\u8208\\u91cc\\u5927\\u7fa9\\u8857\\uff11\\uff11\\u865f"}', '015480', 'quanjia', 'zh-tw', 1000),
(8628, 6134, '5911-6134', 1, '淡水福春店', '{"number":"014190","shop":"\\u6de1\\u6c34\\u798f\\u6625\\u5e97","phone":"0226281994","address":"\\u65b0\\u8208\\u91cc\\u65b0\\u6625\\u8857\\uff12\\u865f\\u4e00\\u6a13"}', '014190', 'quanjia', 'zh-tw', 1000),
(8629, 6134, '5911-6134', 1, '淡水旭陞店', '{"number":"012355","shop":"\\u6de1\\u6c34\\u65ed\\u965e\\u5e97","phone":"0226217371","address":"\\u65b0\\u8208\\u91cc\\u65b0\\u751f\\u8857\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '012355', 'quanjia', 'zh-tw', 1000),
(8630, 6134, '5911-6134', 1, '淡水財庫店', '{"number":"016825","shop":"\\u6de1\\u6c34\\u8ca1\\u5eab\\u5e97","phone":"0286319663","address":"\\u5b78\\u5e9c\\u8def\\uff11\\uff13\\uff16\\u5df7\\uff14\\uff16\\u865f\\u4e00\\u6a13"}', '016825', 'quanjia', 'zh-tw', 1000),
(8631, 6134, '5911-6134', 1, '淡水麗景店', '{"number":"012586","shop":"\\u6de1\\u6c34\\u9e97\\u666f\\u5e97","phone":"0226252260","address":"\\u5b78\\u5e9c\\u8def\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '012586', 'quanjia', 'zh-tw', 1000),
(8632, 6134, '5911-6134', 1, '淡水大學店', '{"number":"015160","shop":"\\u6de1\\u6c34\\u5927\\u5b78\\u5e97","phone":"0226226380","address":"\\u82f1\\u5c08\\u8def\\uff11\\uff15\\uff11\\u865f"}', '015160', 'quanjia', 'zh-tw', 1000),
(8633, 6134, '5911-6134', 1, '淡水校園店', '{"number":"016529","shop":"\\u6de1\\u6c34\\u6821\\u5712\\u5e97","phone":"0226209881","address":"\\u82f1\\u5c08\\u8def\\uff11\\uff15\\uff11\\u865f\\u3008\\u6de1\\u5927\\u7f8e\\u98df\\u5ee3\\u5834\\uff22\\uff11\\u90e8\\u5206\\u3009"}', '016529', 'quanjia', 'zh-tw', 1000),
(8634, 6134, '5911-6134', 1, '淡水市鎮店', '{"number":"017796","shop":"\\u6de1\\u6c34\\u5e02\\u93ae\\u5e97","phone":"0226236102","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '017796', 'quanjia', 'zh-tw', 1000),
(8635, 6134, '5911-6134', 1, '淡水新江店', '{"number":"012464","shop":"\\u6de1\\u6c34\\u65b0\\u6c5f\\u5e97","phone":"0226227391","address":"\\u4e2d\\u5c71\\u5317\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff18\\u5df7\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '012464', 'quanjia', 'zh-tw', 1000),
(8636, 6134, '5911-6134', 1, '淡水登峰店', '{"number":"002353","shop":"\\u6de1\\u6c34\\u767b\\u5cf0\\u5e97","phone":"0228085461","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\u865f\\uff12\\u6a13"}', '002353', 'quanjia', 'zh-tw', 1000),
(8637, 6134, '5911-6134', 1, '淡水新天闊店', '{"number":"014800","shop":"\\u6de1\\u6c34\\u65b0\\u5929\\u95ca\\u5e97","phone":"0228084041","address":"\\u4e2d\\u6b63\\u6771\\u8def\\u4e8c\\u6bb5\\uff13\\uff13\\u865f"}', '014800', 'quanjia', 'zh-tw', 1000),
(8638, 6134, '5911-6134', 1, '淡水捷運站店', '{"number":"018453","shop":"\\u6de1\\u6c34\\u6377\\u904b\\u7ad9\\u5e97","phone":"0226269599","address":"\\u4e2d\\u6b63\\u8def\\uff11\\u865f\\uff08\\u6de1\\u6c34\\u7ad9\\uff15\\u865f\\u8ca9\\u8ce3\\u5e97\\u90e8\\u5206\\uff09"}', '018453', 'quanjia', 'zh-tw', 1000),
(8639, 6134, '5911-6134', 1, '淡水淡海店', '{"number":"018703","shop":"\\u6de1\\u6c34\\u6de1\\u6d77\\u5e97","phone":"0228050241","address":"\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\uff16\\uff12\\u5df7\\uff12\\u865f"}', '018703', 'quanjia', 'zh-tw', 1000),
(8640, 6134, '5911-6134', 1, '淡水自強店', '{"number":"018455","shop":"\\u6de1\\u6c34\\u81ea\\u5f37\\u5e97","phone":"0228080360","address":"\\u81ea\\u5f37\\u8def\\uff18\\uff12\\u865f\\u3001\\uff18\\uff14\\u865f"}', '018455', 'quanjia', 'zh-tw', 1000),
(8641, 6135, '5911-6135', 1, '貢寮澳底一店', '{"number":"018537","shop":"\\u8ca2\\u5bee\\u6fb3\\u5e95\\u4e00\\u5e97","phone":"0224903521","address":"\\u5927\\u6fb3\\u8857\\uff11\\u4e4b\\uff11\\u3001\\uff13\\u865f\\uff11\\u6a13"}', '018537', 'quanjia', 'zh-tw', 1000),
(8642, 6135, '5911-6135', 1, '鑫福隆店', '{"number":"018411","shop":"\\u946b\\u798f\\u9686\\u5e97","phone":"0224992209","address":"\\u8208\\u9686\\u8857\\uff12\\uff12\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '018411', 'quanjia', 'zh-tw', 1000),
(8643, 6136, '5911-6136', 1, '金山金中店', '{"number":"018503","shop":"\\u91d1\\u5c71\\u91d1\\u4e2d\\u5e97","phone":"0224081427","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff10\\uff11\\u865f"}', '018503', 'quanjia', 'zh-tw', 1000),
(8644, 6136, '5911-6136', 1, '金山中山店', '{"number":"018792","shop":"\\u91d1\\u5c71\\u4e2d\\u5c71\\u5e97","phone":"0224081325","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff10\\uff15\\u865f"}', '018792', 'quanjia', 'zh-tw', 1000),
(8645, 6136, '5911-6136', 1, '金山金美店', '{"number":"015029","shop":"\\u91d1\\u5c71\\u91d1\\u7f8e\\u5e97","phone":"0224081821","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff15\\uff12\\u865f"}', '015029', 'quanjia', 'zh-tw', 1000),
(8646, 6137, '5911-6137', 1, '林口醒吾店', '{"number":"017967","shop":"\\u6797\\u53e3\\u9192\\u543e\\u5e97","phone":"0226031858","address":"\\u6771\\u6797\\u6751\\u7c89\\u5bee\\u8def\\uff11\\u6bb5\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017967', 'quanjia', 'zh-tw', 1000),
(8647, 6137, '5911-6137', 1, '林口工六店', '{"number":"018322","shop":"\\u6797\\u53e3\\u5de5\\u516d\\u5e97","phone":"0226016951","address":"\\u6771\\u6797\\u91cc\\u5de5\\u516d\\u8def\\uff17\\uff18\\u865f"}', '018322', 'quanjia', 'zh-tw', 1000),
(8648, 6137, '5911-6137', 1, '林口文園店', '{"number":"014946","shop":"\\u6797\\u53e3\\u6587\\u5712\\u5e97","phone":"0226090261","address":"\\u516c\\u5712\\u8def\\uff11\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '014946', 'quanjia', 'zh-tw', 1000),
(8649, 6137, '5911-6137', 1, '林口文義店', '{"number":"015091","shop":"\\u6797\\u53e3\\u6587\\u7fa9\\u5e97","phone":"0226090866","address":"\\u6e56\\u5357\\u91cc\\u4fe1\\u7fa9\\u8def\\uff12\\uff18\\uff19\\u865f"}', '015091', 'quanjia', 'zh-tw', 1000),
(8650, 6137, '5911-6137', 1, '林口國宅店', '{"number":"011619","shop":"\\u6797\\u53e3\\u570b\\u5b85\\u5e97","phone":"0226081140","address":"\\u9e97\\u5712\\u4e00\\u8857\\uff14\\u5df7\\uff11\\u865f\\uff11\\u4e4b\\uff14"}', '011619', 'quanjia', 'zh-tw', 1000),
(8651, 6137, '5911-6137', 1, '林口竹林店', '{"number":"012288","shop":"\\u6797\\u53e3\\u7af9\\u6797\\u5e97","phone":"0226024731","address":"\\u6797\\u53e3\\u8def\\uff11\\uff12\\uff16\\u865f\\uff11\\uff26"}', '012288', 'quanjia', 'zh-tw', 1000),
(8652, 6137, '5911-6137', 1, '林口南勢店', '{"number":"016617","shop":"\\u6797\\u53e3\\u5357\\u52e2\\u5e97","phone":"0226007216","address":"\\u5357\\u52e2\\u8857\\uff12\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '016617', 'quanjia', 'zh-tw', 1000),
(8653, 6137, '5911-6137', 1, '林口新高中店', '{"number":"015436","shop":"\\u6797\\u53e3\\u65b0\\u9ad8\\u4e2d\\u5e97","phone":"0286012624","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '015436', 'quanjia', 'zh-tw', 1000),
(8654, 6137, '5911-6137', 1, '林口守護店', '{"number":"018446","shop":"\\u6797\\u53e3\\u5b88\\u8b77\\u5e97","phone":"0286018134","address":"\\u4ec1\\u611b\\u8def\\u4e8c\\u6bb5\\uff12\\uff10\\uff16\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '018446', 'quanjia', 'zh-tw', 1000),
(8655, 6137, '5911-6137', 1, '林口菁埔店', '{"number":"016401","shop":"\\u6797\\u53e3\\u83c1\\u57d4\\u5e97","phone":"0226017544","address":"\\u4ec1\\u611b\\u8def\\u4e00\\u6bb5\\uff12\\uff19\\uff12\\u865f"}', '016401', 'quanjia', 'zh-tw', 1000),
(8656, 6137, '5911-6137', 1, '林口樂活店', '{"number":"016942","shop":"\\u6797\\u53e3\\u6a02\\u6d3b\\u5e97","phone":"0226089613","address":"\\u6587\\u5316\\u4e8c\\u8def\\uff11\\u6bb5\\uff12\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '016942', 'quanjia', 'zh-tw', 1000),
(8657, 6137, '5911-6137', 1, '林口隆林店', '{"number":"013770","shop":"\\u6797\\u53e3\\u9686\\u6797\\u5e97","phone":"0226022405","address":"\\u6587\\u5316\\u4e8c\\u8def\\u4e8c\\u6bb5\\uff19\\uff10\\uff0e\\uff19\\uff12\\u865f"}', '013770', 'quanjia', 'zh-tw', 1000),
(8658, 6137, '5911-6137', 1, '林口菁英店', '{"number":"017041","shop":"\\u6797\\u53e3\\u83c1\\u82f1\\u5e97","phone":"0226089574","address":"\\u6587\\u5316\\u4e09\\u8def\\uff11\\u6bb5\\uff11\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '017041', 'quanjia', 'zh-tw', 1000),
(8659, 6137, '5911-6137', 1, '林口廣場店', '{"number":"015437","shop":"\\u6797\\u53e3\\u5ee3\\u5834\\u5e97","phone":"0226069860","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\uff12\\uff12\\uff13\\u865f\\u4e00\\u6a13"}', '015437', 'quanjia', 'zh-tw', 1000),
(8660, 6137, '5911-6137', 1, '林口環球店', '{"number":"018622","shop":"\\u6797\\u53e3\\u74b0\\u7403\\u5e97","phone":"0226083394","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\uff12\\u865f\\uff11\\u6a13"}', '018622', 'quanjia', 'zh-tw', 1000),
(8661, 6137, '5911-6137', 1, '林口幸福店', '{"number":"016842","shop":"\\u6797\\u53e3\\u5e78\\u798f\\u5e97","phone":"0226098325","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '016842', 'quanjia', 'zh-tw', 1000),
(8662, 6137, '5911-6137', 1, '林口影城店', '{"number":"018230","shop":"\\u6797\\u53e3\\u5f71\\u57ce\\u5e97","phone":"0226090534","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\uff14\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '018230', 'quanjia', 'zh-tw', 1000),
(8663, 6137, '5911-6137', 1, '林口新都店', '{"number":"014068","shop":"\\u6797\\u53e3\\u65b0\\u90fd\\u5e97","phone":"0226009183","address":"\\u6587\\u5316\\u4e09\\u8def\\u4e00\\u6bb5\\uff15\\uff15\\uff17\\u865f\\uff0e\\uff15\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '014068', 'quanjia', 'zh-tw', 1000),
(8664, 6137, '5911-6137', 1, '林口住都店', '{"number":"018447","shop":"\\u6797\\u53e3\\u4f4f\\u90fd\\u5e97","phone":"0226068053","address":"\\u6587\\u5316\\u4e00\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff16\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018447', 'quanjia', 'zh-tw', 1000),
(8665, 6137, '5911-6137', 1, '林口洪福店', '{"number":"018483","shop":"\\u6797\\u53e3\\u6d2a\\u798f\\u5e97","phone":"0226061202","address":"\\u4e0b\\u798f\\u91cc\\uff11\\uff11\\u9130\\uff11\\uff14\\uff17\\u865f\\u4e4b\\uff11"}', '018483', 'quanjia', 'zh-tw', 1000),
(8666, 6137, '5911-6137', 1, '林口麗林店', '{"number":"015407","shop":"\\u6797\\u53e3\\u9e97\\u6797\\u5e97","phone":"0226024790","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '015407', 'quanjia', 'zh-tw', 1000),
(8667, 6137, '5911-6137', 1, '林口南林店', '{"number":"015867","shop":"\\u6797\\u53e3\\u5357\\u6797\\u5e97","phone":"0226010881","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff15\\uff15\\u865f"}', '015867', 'quanjia', 'zh-tw', 1000),
(8668, 6137, '5911-6137', 1, '林口中正店', '{"number":"016361","shop":"\\u6797\\u53e3\\u4e2d\\u6b63\\u5e97","phone":"0226015562","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff16\\uff16\\u865f"}', '016361', 'quanjia', 'zh-tw', 1000),
(8669, 6137, '5911-6137', 1, '林口新僑大店', '{"number":"015550","shop":"\\u6797\\u53e3\\u65b0\\u50d1\\u5927\\u5e97","phone":"0226014016","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '015550', 'quanjia', 'zh-tw', 1000),
(8670, 6137, '5911-6137', 1, '林口忠孝店', '{"number":"012028","shop":"\\u6797\\u53e3\\u5fe0\\u5b5d\\u5e97","phone":"0226085421","address":"\\u5fe0\\u5b5d\\u8def\\uff16\\uff10\\uff11\\u865f"}', '012028', 'quanjia', 'zh-tw', 1000),
(8671, 6138, '5911-6138', 1, '蘆洲長發店', '{"number":"016987","shop":"\\u8606\\u6d32\\u9577\\u767c\\u5e97","phone":"0282860503","address":"\\u9577\\u5b89\\u8857\\uff11\\uff11\\u865f\\uff11\\u6a13\\uff06\\uff22\\uff11"}', '016987', 'quanjia', 'zh-tw', 1000),
(8672, 6138, '5911-6138', 1, '蘆洲長興店', '{"number":"017112","shop":"\\u8606\\u6d32\\u9577\\u8208\\u5e97","phone":"0228481192","address":"\\u9577\\u5b89\\u8857\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '017112', 'quanjia', 'zh-tw', 1000),
(8673, 6138, '5911-6138', 1, '蘆洲成功店', '{"number":"016551","shop":"\\u8606\\u6d32\\u6210\\u529f\\u5e97","phone":"0282831373","address":"\\u9577\\u5b89\\u8857\\uff12\\uff14\\uff18\\u865f"}', '016551', 'quanjia', 'zh-tw', 1000),
(8674, 6138, '5911-6138', 1, '蘆洲新安店', '{"number":"015866","shop":"\\u8606\\u6d32\\u65b0\\u5b89\\u5e97","phone":"0282868249","address":"\\u9577\\u5b89\\u8857\\uff13\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '015866', 'quanjia', 'zh-tw', 1000),
(8675, 6138, '5911-6138', 1, '蘆洲安宅店', '{"number":"017770","shop":"\\u8606\\u6d32\\u5b89\\u5b85\\u5e97","phone":"0228481650","address":"\\u9577\\u5b89\\u8857\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '017770', 'quanjia', 'zh-tw', 1000),
(8676, 6138, '5911-6138', 1, '蘆洲長樂店', '{"number":"018407","shop":"\\u8606\\u6d32\\u9577\\u6a02\\u5e97","phone":"0222880271","address":"\\u9577\\u6a02\\u8def\\uff11\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '018407', 'quanjia', 'zh-tw', 1000),
(8677, 6138, '5911-6138', 1, '蘆洲永成店', '{"number":"018325","shop":"\\u8606\\u6d32\\u6c38\\u6210\\u5e97","phone":"0228487328","address":"\\u6210\\u529f\\u91cc\\u6c38\\u6a02\\u8857\\uff18\\uff13\\u865f\\u4e00\\u6a13"}', '018325', 'quanjia', 'zh-tw', 1000),
(8678, 6138, '5911-6138', 1, '蘆洲復興店', '{"number":"016986","shop":"\\u8606\\u6d32\\u5fa9\\u8208\\u5e97","phone":"0282852663","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '016986', 'quanjia', 'zh-tw', 1000),
(8679, 6138, '5911-6138', 1, '蘆洲復江店', '{"number":"018485","shop":"\\u8606\\u6d32\\u5fa9\\u6c5f\\u5e97","phone":"0222881963","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff15\\uff10\\uff0e\\uff11\\uff15\\uff12\\u865f\\u4e00\\u6a13"}', '018485', 'quanjia', 'zh-tw', 1000),
(8680, 6138, '5911-6138', 1, '蘆洲光華店', '{"number":"017060","shop":"\\u8606\\u6d32\\u5149\\u83ef\\u5e97","phone":"0282823555","address":"\\u5149\\u83ef\\u8def\\uff11\\uff13\\uff12\\u5df7\\uff11\\u865f\\uff0c\\uff11\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '017060', 'quanjia', 'zh-tw', 1000),
(8681, 6138, '5911-6138', 1, '蘆洲金華店', '{"number":"018368","shop":"\\u8606\\u6d32\\u91d1\\u83ef\\u5e97","phone":"0222827493","address":"\\u5149\\u83ef\\u8def\\uff11\\uff15\\uff10\\u5df7\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '018368', 'quanjia', 'zh-tw', 1000),
(8682, 6138, '5911-6138', 1, '蘆洲中華店', '{"number":"017993","shop":"\\u8606\\u6d32\\u4e2d\\u83ef\\u5e97","phone":"0282814768","address":"\\u548c\\u5e73\\u8def\\uff11\\uff12\\uff12\\uff0c\\uff11\\uff12\\uff14\\u865f"}', '017993', 'quanjia', 'zh-tw', 1000),
(8683, 6138, '5911-6138', 1, '蘆洲集賢店', '{"number":"018486","shop":"\\u8606\\u6d32\\u96c6\\u8ce2\\u5e97","phone":"0222897841","address":"\\u96c6\\u8ce2\\u8def\\uff12\\uff13\\uff17\\u865f"}', '018486', 'quanjia', 'zh-tw', 1000),
(8684, 6138, '5911-6138', 1, '蘆洲花園店', '{"number":"017425","shop":"\\u8606\\u6d32\\u82b1\\u5712\\u5e97","phone":"0282863423","address":"\\u96c6\\u8ce2\\u8def\\uff12\\uff16\\uff19\\u5df7\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '017425', 'quanjia', 'zh-tw', 1000),
(8685, 6138, '5911-6138', 1, '蘆洲九蘆店', '{"number":"016437","shop":"\\u8606\\u6d32\\u4e5d\\u8606\\u5e97","phone":"0228482350","address":"\\u4e5d\\u828e\\u8857\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '016437', 'quanjia', 'zh-tw', 1000),
(8686, 6138, '5911-6138', 1, '蘆洲新鷺江店', '{"number":"018023","shop":"\\u8606\\u6d32\\u65b0\\u9dfa\\u6c5f\\u5e97","phone":"0282851197","address":"\\u6c11\\u6b0a\\u8def\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '018023', 'quanjia', 'zh-tw', 1000),
(8687, 6138, '5911-6138', 1, '蘆洲福安店', '{"number":"017369","shop":"\\u8606\\u6d32\\u798f\\u5b89\\u5e97","phone":"0282854511","address":"\\u6c11\\u6b0a\\u8def\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '017369', 'quanjia', 'zh-tw', 1000),
(8688, 6138, '5911-6138', 1, '蘆洲新民生店', '{"number":"018208","shop":"\\u8606\\u6d32\\u65b0\\u6c11\\u751f\\u5e97","phone":"0222852487","address":"\\u6c11\\u751f\\u8857\\uff11\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '018208', 'quanjia', 'zh-tw', 1000),
(8689, 6138, '5911-6138', 1, '蘆洲新虹展店', '{"number":"017557","shop":"\\u8606\\u6d32\\u65b0\\u8679\\u5c55\\u5e97","phone":"0282862521","address":"\\u6c11\\u7fa9\\u8857\\uff12\\uff12\\u5df7\\uff11\\uff18\\u865f"}', '017557', 'quanjia', 'zh-tw', 1000),
(8690, 6138, '5911-6138', 1, '蘆洲義興店', '{"number":"014807","shop":"\\u8606\\u6d32\\u7fa9\\u8208\\u5e97","phone":"0228484834","address":"\\u6c11\\u7fa9\\u8857\\uff16\\uff18\\u5df7\\uff12\\u3001\\uff16\\u865f\\uff11\\u6a13"}', '014807', 'quanjia', 'zh-tw', 1000),
(8691, 6138, '5911-6138', 1, '蘆洲玉清店', '{"number":"013986","shop":"\\u8606\\u6d32\\u7389\\u6e05\\u5e97","phone":"0282822002","address":"\\u6c11\\u65cf\\u8def\\uff11\\uff17\\uff18\\u865f\\uff0c\\uff11\\uff18\\uff10\\u865f\\u4e00\\u6a13"}', '013986', 'quanjia', 'zh-tw', 1000),
(8692, 6138, '5911-6138', 1, '蘆洲名族店', '{"number":"016020","shop":"\\u8606\\u6d32\\u540d\\u65cf\\u5e97","phone":"0282852406","address":"\\u6c11\\u65cf\\u8def\\uff12\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '016020', 'quanjia', 'zh-tw', 1000),
(8693, 6138, '5911-6138', 1, '蘆洲保新店', '{"number":"016151","shop":"\\u8606\\u6d32\\u4fdd\\u65b0\\u5e97","phone":"0282860534","address":"\\u6c11\\u65cf\\u8def\\uff13\\uff18\\uff17\\u865f"}', '016151', 'quanjia', 'zh-tw', 1000),
(8694, 6138, '5911-6138', 1, '蘆洲民華店', '{"number":"013473","shop":"\\u8606\\u6d32\\u6c11\\u83ef\\u5e97","phone":"0282831441","address":"\\u6c11\\u65cf\\u8def\\uff14\\uff12\\uff12\\u5df7\\uff18\\uff12\\u5f04\\uff11\\uff14\\uff0c\\uff11\\uff16\\u865f"}', '013473', 'quanjia', 'zh-tw', 1000),
(8695, 6138, '5911-6138', 1, '蘆洲保佑店', '{"number":"016499","shop":"\\u8606\\u6d32\\u4fdd\\u4f51\\u5e97","phone":"0282855113","address":"\\u6c11\\u65cf\\u8def\\uff14\\uff12\\uff13\\u865f"}', '016499', 'quanjia', 'zh-tw', 1000),
(8696, 6138, '5911-6138', 1, '蘆洲民星店', '{"number":"013541","shop":"\\u8606\\u6d32\\u6c11\\u661f\\u5e97","phone":"0228472257","address":"\\u6c11\\u65cf\\u8def\\uff14\\uff12\\uff14\\uff0c\\uff14\\uff12\\uff14\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '013541', 'quanjia', 'zh-tw', 1000),
(8697, 6138, '5911-6138', 1, '蘆洲民仁店', '{"number":"017018","shop":"\\u8606\\u6d32\\u6c11\\u4ec1\\u5e97","phone":"0282835024","address":"\\u6c11\\u65cf\\u8def\\uff14\\uff14\\uff18\\u865f"}', '017018', 'quanjia', 'zh-tw', 1000),
(8698, 6138, '5911-6138', 1, '蘆洲仁德店', '{"number":"017021","shop":"\\u8606\\u6d32\\u4ec1\\u5fb7\\u5e97","phone":"0282812279","address":"\\u6c11\\u65cf\\u8def\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '017021', 'quanjia', 'zh-tw', 1000),
(8699, 6138, '5911-6138', 1, '蘆洲新民愛店', '{"number":"015267","shop":"\\u8606\\u6d32\\u65b0\\u6c11\\u611b\\u5e97","phone":"0228470046","address":"\\u4ec1\\u611b\\u8857\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '015267', 'quanjia', 'zh-tw', 1000),
(8700, 6138, '5911-6138', 1, '蘆洲中央店', '{"number":"016044","shop":"\\u8606\\u6d32\\u4e2d\\u592e\\u5e97","phone":"0282850698","address":"\\u4ec1\\u5fa9\\u91cc\\uff15\\u9130\\u4e2d\\u592e\\u8def\\uff15\\uff16\\u865f"}', '016044', 'quanjia', 'zh-tw', 1000),
(8701, 6138, '5911-6138', 1, '蘆洲恆德店', '{"number":"015465","shop":"\\u8606\\u6d32\\u6046\\u5fb7\\u5e97","phone":"0282814638","address":"\\u4e09\\u6c11\\u8def\\uff12\\uff16\\u5df7\\uff12\\uff12\\u865f\\uff0c\\uff12\\uff14\\u865f"}', '015465', 'quanjia', 'zh-tw', 1000),
(8702, 6138, '5911-6138', 1, '蘆洲希望店', '{"number":"017042","shop":"\\u8606\\u6d32\\u5e0c\\u671b\\u5e97","phone":"0282866754","address":"\\u4e09\\u6c11\\u8def\\uff13\\uff17\\uff18\\u4e4b\\uff13\\u865f\\uff11\\u6a13"}', '017042', 'quanjia', 'zh-tw', 1000),
(8703, 6138, '5911-6138', 1, '蘆洲信義店', '{"number":"018746","shop":"\\u8606\\u6d32\\u4fe1\\u7fa9\\u5e97","phone":"0282854161","address":"\\u4fe1\\u7fa9\\u8def\\uff12\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '018746', 'quanjia', 'zh-tw', 1000),
(8704, 6138, '5911-6138', 1, '蘆洲永樂店', '{"number":"012039","shop":"\\u8606\\u6d32\\u6c38\\u6a02\\u5e97","phone":"0228470014","address":"\\u6c38\\u6a02\\u8857\\uff13\\uff18\\u5df7\\uff15\\uff17\\u5f04\\uff11\\u865f\\uff11\\uff26"}', '012039', 'quanjia', 'zh-tw', 1000),
(8705, 6138, '5911-6138', 1, '蘆洲華安店', '{"number":"016176","shop":"\\u8606\\u6d32\\u83ef\\u5b89\\u5e97","phone":"0228488839","address":"\\u4e2d\\u83ef\\u8857\\uff16\\u5df7\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '016176', 'quanjia', 'zh-tw', 1000),
(8706, 6138, '5911-6138', 1, '蘆洲徐匯店', '{"number":"018448","shop":"\\u8606\\u6d32\\u5f90\\u532f\\u5e97","phone":"0282811345","address":"\\u4e2d\\u5c71\\u4e00\\u8def\\uff12\\uff15\\u865f\\uff11\\u6a13"}', '018448', 'quanjia', 'zh-tw', 1000),
(8707, 6138, '5911-6138', 1, '蘆洲興賢店', '{"number":"015640","shop":"\\u8606\\u6d32\\u8208\\u8ce2\\u5e97","phone":"0282866445","address":"\\u4e2d\\u8208\\u8857\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '015640', 'quanjia', 'zh-tw', 1000),
(8708, 6138, '5911-6138', 1, '蘆洲新福原店', '{"number":"013983","shop":"\\u8606\\u6d32\\u65b0\\u798f\\u539f\\u5e97","phone":"0222892264","address":"\\u4e2d\\u539f\\u8def\\uff17\\uff10\\u865f"}', '013983', 'quanjia', 'zh-tw', 1000),
(8709, 6138, '5911-6138', 1, '蘆洲保正店', '{"number":"018590","shop":"\\u8606\\u6d32\\u4fdd\\u6b63\\u5e97","phone":"0282811438","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff18\\uff11\\uff0d\\uff11\\u865f\\u90e8\\u4efd\\u53ca\\uff12\\u6a13\\u5168\\u90e8"}', '018590', 'quanjia', 'zh-tw', 1000),
(8710, 6138, '5911-6138', 1, '蘆洲正原店', '{"number":"016475","shop":"\\u8606\\u6d32\\u6b63\\u539f\\u5e97","phone":"0222892773","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff18\\uff15\\u5df7\\uff11\\uff19\\u865f"}', '016475', 'quanjia', 'zh-tw', 1000),
(8711, 6139, '5911-6139', 1, '平溪十分店', '{"number":"018372","shop":"\\u5e73\\u6eaa\\u5341\\u5206\\u5e97","phone":"0224959087","address":"\\u975c\\u5b89\\u8def\\u4e09\\u6bb5\\uff13\\uff13\\uff11\\u865f"}', '018372', 'quanjia', 'zh-tw', 1000),
(8712, 6139, '5911-6139', 1, '平溪平安店', '{"number":"016320","shop":"\\u5e73\\u6eaa\\u5e73\\u5b89\\u5e97","phone":"0224951706","address":"\\u77f3\\u5e95\\u8857\\uff15\\uff13\\u865f"}', '016320', 'quanjia', 'zh-tw', 1000),
(8713, 6140, '5911-6140', 1, '坪林順益店', '{"number":"016050","shop":"\\u576a\\u6797\\u9806\\u76ca\\u5e97","phone":"0226657521","address":"\\u6c34\\u67f3\\u8173\\u8def\\uff11\\uff13\\uff13\\u865f"}', '016050', 'quanjia', 'zh-tw', 1000),
(8714, 6141, '5911-6141', 1, '瑞芳傑魚坑店', '{"number":"017772","shop":"\\u745e\\u82b3\\u5091\\u9b5a\\u5751\\u5e97","phone":"0224969517","address":"\\u5091\\u9b5a\\u5751\\u8def\\uff16\\uff12\\u865f"}', '017772', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(8715, 6141, '5911-6141', 1, '九份觀景店', '{"number":"013604","shop":"\\u4e5d\\u4efd\\u89c0\\u666f\\u5e97","phone":"0224969045","address":"\\u8f15\\u4fbf\\u8def\\uff14\\uff13\\u865f\\uff14\\u6a13"}', '013604', 'quanjia', 'zh-tw', 1000),
(8716, 6141, '5911-6141', 1, '瑞芳龍川店', '{"number":"014515","shop":"\\u745e\\u82b3\\u9f8d\\u5ddd\\u5e97","phone":"0224061884","address":"\\u4e00\\u5751\\u8def\\uff11\\uff11\\u4e4b\\uff11\\u865f"}', '014515', 'quanjia', 'zh-tw', 1000),
(8717, 6142, '5911-6142', 1, '三峽大德店', '{"number":"015439","shop":"\\u4e09\\u5cfd\\u5927\\u5fb7\\u5e97","phone":"0235012620","address":"\\u5927\\u5fb7\\u8def\\uff14\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '015439', 'quanjia', 'zh-tw', 1000),
(8718, 6142, '5911-6142', 1, '三峽觀成店', '{"number":"017063","shop":"\\u4e09\\u5cfd\\u89c0\\u6210\\u5e97","phone":"0286723040","address":"\\u5927\\u89c0\\u8def\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '017063', 'quanjia', 'zh-tw', 1000),
(8719, 6142, '5911-6142', 1, '三峽金同店', '{"number":"016389","shop":"\\u4e09\\u5cfd\\u91d1\\u540c\\u5e97","phone":"0286721784","address":"\\u5927\\u540c\\u8def\\uff11\\uff19\\uff16\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016389', 'quanjia', 'zh-tw', 1000),
(8720, 6142, '5911-6142', 1, '三峽同發店', '{"number":"016206","shop":"\\u4e09\\u5cfd\\u540c\\u767c\\u5e97","phone":"0286714604","address":"\\u5927\\u540c\\u8def\\uff13\\uff0d\\uff11\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5c64\\u5168\\u90e8"}', '016206', 'quanjia', 'zh-tw', 1000),
(8721, 6142, '5911-6142', 1, '三峽北苑店', '{"number":"016069","shop":"\\u4e09\\u5cfd\\u5317\\u82d1\\u5e97","phone":"0286714877","address":"\\u5927\\u5b78\\u8def\\uff11\\uff15\\uff11\\u865f\\uff11\\u6a13\\uff08\\u5546\\u5b78\\u9662\\uff09"}', '016069', 'quanjia', 'zh-tw', 1000),
(8722, 6142, '5911-6142', 1, '三峽福容店', '{"number":"017026","shop":"\\u4e09\\u5cfd\\u798f\\u5bb9\\u5e97","phone":"0226728452","address":"\\u5927\\u5b78\\u8def\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '017026', 'quanjia', 'zh-tw', 1000),
(8723, 6142, '5911-6142', 1, '三峽新莉雅店', '{"number":"016930","shop":"\\u4e09\\u5cfd\\u65b0\\u8389\\u96c5\\u5e97","phone":"0226741580","address":"\\u4e8c\\u9b2e\\u8def\\uff15\\uff19\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016930', 'quanjia', 'zh-tw', 1000),
(8724, 6142, '5911-6142', 1, '三峽和平店', '{"number":"016033","shop":"\\u4e09\\u5cfd\\u548c\\u5e73\\u5e97","phone":"0226735218","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '016033', 'quanjia', 'zh-tw', 1000),
(8725, 6142, '5911-6142', 1, '三峽恩主店', '{"number":"016929","shop":"\\u4e09\\u5cfd\\u6069\\u4e3b\\u5e97","phone":"0226714305","address":"\\u5fa9\\u8208\\u8def\\uff13\\uff17\\uff13\\u3001\\uff13\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '016929', 'quanjia', 'zh-tw', 1000),
(8726, 6142, '5911-6142', 1, '三峽復興店', '{"number":"013675","shop":"\\u4e09\\u5cfd\\u5fa9\\u8208\\u5e97","phone":"0226714174","address":"\\u5fa9\\u8208\\u8def\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '013675', 'quanjia', 'zh-tw', 1000),
(8727, 6142, '5911-6142', 1, '三峽大同店', '{"number":"015009","shop":"\\u4e09\\u5cfd\\u5927\\u540c\\u5e97","phone":"0286742229","address":"\\u5149\\u660e\\u8def\\uff11\\uff10\\uff10\\u4e4b\\uff16\\u865f"}', '015009', 'quanjia', 'zh-tw', 1000),
(8728, 6142, '5911-6142', 1, '三峽光明店', '{"number":"016152","shop":"\\u4e09\\u5cfd\\u5149\\u660e\\u5e97","phone":"0226749014","address":"\\u5149\\u660e\\u8def\\uff16\\u865f\\uff0c\\uff18\\u865f\\uff11\\u6a13"}', '016152', 'quanjia', 'zh-tw', 1000),
(8729, 6142, '5911-6142', 1, '三峽錦隆店', '{"number":"015145","shop":"\\u4e09\\u5cfd\\u9326\\u9686\\u5e97","phone":"0286717821","address":"\\u570b\\u5149\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '015145', 'quanjia', 'zh-tw', 1000),
(8730, 6142, '5911-6142', 1, '三峽國寧店', '{"number":"014195","shop":"\\u4e09\\u5cfd\\u570b\\u5be7\\u5e97","phone":"0286721143","address":"\\u570b\\u5b78\\u8857\\uff13\\uff11\\uff0e\\uff13\\uff13\\u865f"}', '014195', 'quanjia', 'zh-tw', 1000),
(8731, 6142, '5911-6142', 1, '三峽新介壽店', '{"number":"013562","shop":"\\u4e09\\u5cfd\\u65b0\\u4ecb\\u58fd\\u5e97","phone":"0286766209","address":"\\u4ecb\\u58fd\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '013562', 'quanjia', 'zh-tw', 1000),
(8732, 6142, '5911-6142', 1, '三峽三樹店', '{"number":"016501","shop":"\\u4e09\\u5cfd\\u4e09\\u6a39\\u5e97","phone":"0226739736","address":"\\u9f8d\\u57d4\\u91cc\\u4e09\\u6a39\\u8def\\uff12\\uff15\\uff17\\u865f\\uff12\\uff15\\uff19\\u865f\\u4e00\\u6a13"}', '016501', 'quanjia', 'zh-tw', 1000),
(8733, 6142, '5911-6142', 1, '三峽民權店', '{"number":"016818","shop":"\\u4e09\\u5cfd\\u6c11\\u6b0a\\u5e97","phone":"0286711532","address":"\\u6c11\\u6b0a\\u8857\\uff12\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '016818', 'quanjia', 'zh-tw', 1000),
(8734, 6142, '5911-6142', 1, '三峽文化店', '{"number":"018434","shop":"\\u4e09\\u5cfd\\u6587\\u5316\\u5e97","phone":"0226728908","address":"\\u6587\\u5316\\u8def\\uff11\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '018434', 'quanjia', 'zh-tw', 1000),
(8735, 6142, '5911-6142', 1, '三峽大勇店', '{"number":"016661","shop":"\\u4e09\\u5cfd\\u5927\\u52c7\\u5e97","phone":"0226734590","address":"\\u6587\\u5316\\u8def\\uff12\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '016661', 'quanjia', 'zh-tw', 1000),
(8736, 6142, '5911-6142', 1, '三峽學勝店', '{"number":"018728","shop":"\\u4e09\\u5cfd\\u5b78\\u52dd\\u5e97","phone":"0286716146","address":"\\u5b78\\u52e4\\u8def\\uff11\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '018728', 'quanjia', 'zh-tw', 1000),
(8737, 6142, '5911-6142', 1, '三峽峇里店', '{"number":"016002","shop":"\\u4e09\\u5cfd\\u5cc7\\u91cc\\u5e97","phone":"0226736076","address":"\\u9cf6\\u5c71\\u91cc\\u4e2d\\u5c71\\u8def\\uff13\\uff10\\uff13\\u865f\\u4e00\\u6a13"}', '016002', 'quanjia', 'zh-tw', 1000),
(8738, 6142, '5911-6142', 1, '三峽金寶店', '{"number":"017460","shop":"\\u4e09\\u5cfd\\u91d1\\u5bf6\\u5e97","phone":"0286714922","address":"\\u4e2d\\u5c71\\u8def\\uff12\\uff14\\uff10\\u865f"}', '017460', 'quanjia', 'zh-tw', 1000),
(8739, 6143, '5911-6143', 1, '三芝吉祥店', '{"number":"015037","shop":"\\u4e09\\u829d\\u5409\\u7965\\u5e97","phone":"0226361917","address":"\\u6de1\\u91d1\\u8def\\u4e00\\u6bb5\\uff17\\uff13\\uff0c\\uff17\\uff15\\uff0c\\uff17\\uff17\\u865f"}', '015037', 'quanjia', 'zh-tw', 1000),
(8740, 6144, '5911-6144', 1, '三重頂崁店', '{"number":"017619","shop":"\\u4e09\\u91cd\\u9802\\u5d01\\u5e97","phone":"0229809001","address":"\\u535a\\u611b\\u91cc\\uff12\\uff12\\u9130\\u9802\\u5d01\\u8857\\uff12\\uff11\\uff10\\u5df7\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '017619', 'quanjia', 'zh-tw', 1000),
(8741, 6144, '5911-6144', 1, '三重新光榮店', '{"number":"016115","shop":"\\u4e09\\u91cd\\u65b0\\u5149\\u69ae\\u5e97","phone":"0229767953","address":"\\u9577\\u8208\\u8857\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '016115', 'quanjia', 'zh-tw', 1000),
(8742, 6144, '5911-6144', 1, '三重車路頭店', '{"number":"014376","shop":"\\u4e09\\u91cd\\u8eca\\u8def\\u982d\\u5e97","phone":"0282839334","address":"\\u8eca\\u8def\\u982d\\u8857\\uff11\\uff14\\uff10\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '014376', 'quanjia', 'zh-tw', 1000),
(8743, 6144, '5911-6144', 1, '三重環北店', '{"number":"015551","shop":"\\u4e09\\u91cd\\u74b0\\u5317\\u5e97","phone":"0229736779","address":"\\u6210\\u529f\\u91cc\\u74b0\\u6cb3\\u5357\\u8def\\uff12\\uff15\\uff13\\u865f\\u4e00\\u6a13"}', '015551', 'quanjia', 'zh-tw', 1000),
(8744, 6144, '5911-6144', 1, '三重環南店', '{"number":"014810","shop":"\\u4e09\\u91cd\\u74b0\\u5357\\u5e97","phone":"0229743620","address":"\\u6210\\u529f\\u8def\\uff15\\uff12\\u865f\\uff0c\\uff15\\uff14\\u865f\\uff0c\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '014810', 'quanjia', 'zh-tw', 1000),
(8745, 6144, '5911-6144', 1, '三重大同店', '{"number":"015671","shop":"\\u4e09\\u91cd\\u5927\\u540c\\u5e97","phone":"0229841445","address":"\\u5927\\u540c\\u5317\\u8def\\uff16\\u865f\\uff11\\u6a13"}', '015671', 'quanjia', 'zh-tw', 1000),
(8746, 6144, '5911-6144', 1, '三重車勇店', '{"number":"016941","shop":"\\u4e09\\u91cd\\u8eca\\u52c7\\u5e97","phone":"0229868439","address":"\\u5927\\u52c7\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '016941', 'quanjia', 'zh-tw', 1000),
(8747, 6144, '5911-6144', 1, '三重致學店', '{"number":"018741","shop":"\\u4e09\\u91cd\\u81f4\\u5b78\\u5e97","phone":"0229869646","address":"\\u5927\\u667a\\u8857\\uff11\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '018741', 'quanjia', 'zh-tw', 1000),
(8748, 6144, '5911-6144', 1, '三重大智店', '{"number":"015269","shop":"\\u4e09\\u91cd\\u5927\\u667a\\u5e97","phone":"0229807923","address":"\\u5927\\u667a\\u8857\\uff19\\uff14\\u865f"}', '015269', 'quanjia', 'zh-tw', 1000),
(8749, 6144, '5911-6144', 1, '三重街口店', '{"number":"016766","shop":"\\u4e09\\u91cd\\u8857\\u53e3\\u5e97","phone":"0229875620","address":"\\u9802\\u5d01\\u8857\\uff12\\uff11\\uff10\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '016766', 'quanjia', 'zh-tw', 1000),
(8750, 6144, '5911-6144', 1, '三重成功店', '{"number":"012550","shop":"\\u4e09\\u91cd\\u6210\\u529f\\u5e97","phone":"0229742342","address":"\\u798f\\u5fb7\\u91cc\\u6210\\u529f\\u8def\\uff11\\uff14\\uff15\\u5df7\\uff14\\uff15\\u865f\\uff14\\uff17\\u865f\\u4e00\\u6a13"}', '012550', 'quanjia', 'zh-tw', 1000),
(8751, 6144, '5911-6144', 1, '三重群光店', '{"number":"015533","shop":"\\u4e09\\u91cd\\u7fa4\\u5149\\u5e97","phone":"0229999287","address":"\\u5149\\u5fa9\\u8def\\u4e8c\\u6bb5\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '015533', 'quanjia', 'zh-tw', 1000),
(8752, 6144, '5911-6144', 1, '三重興富店', '{"number":"016773","shop":"\\u4e09\\u91cd\\u8208\\u5bcc\\u5e97","phone":"0285124587","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '016773', 'quanjia', 'zh-tw', 1000),
(8753, 6144, '5911-6144', 1, '三重過圳店', '{"number":"015003","shop":"\\u4e09\\u91cd\\u904e\\u5733\\u5e97","phone":"0229868554","address":"\\u904e\\u5733\\u8857\\uff13\\u865f\\uff11\\u6a13"}', '015003', 'quanjia', 'zh-tw', 1000),
(8754, 6144, '5911-6144', 1, '三重集成店', '{"number":"011558","shop":"\\u4e09\\u91cd\\u96c6\\u6210\\u5e97","phone":"0229757564","address":"\\u74b0\\u6cb3\\u5357\\u8def\\uff12\\uff15\\uff14\\u5df7\\uff14\\uff13\\u865f\\u4e4b\\uff11\\u3001\\uff12\\u865f"}', '011558', 'quanjia', 'zh-tw', 1000),
(8755, 6144, '5911-6144', 1, '三重集明店', '{"number":"013493","shop":"\\u4e09\\u91cd\\u96c6\\u660e\\u5e97","phone":"0229738074","address":"\\u96c6\\u7f8e\\u8857\\uff11\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '013493', 'quanjia', 'zh-tw', 1000),
(8756, 6144, '5911-6144', 1, '三重集美店', '{"number":"013022","shop":"\\u4e09\\u91cd\\u96c6\\u7f8e\\u5e97","phone":"0229742761","address":"\\u96c6\\u7f8e\\u8857\\uff11\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '013022', 'quanjia', 'zh-tw', 1000),
(8757, 6144, '5911-6144', 1, '三重集勇店', '{"number":"017543","shop":"\\u4e09\\u91cd\\u96c6\\u52c7\\u5e97","phone":"0228570741","address":"\\u96c6\\u52c7\\u8857\\uff11\\uff19\\u865f"}', '017543', 'quanjia', 'zh-tw', 1000),
(8758, 6144, '5911-6144', 1, '三重新運店', '{"number":"017255","shop":"\\u4e09\\u91cd\\u65b0\\u904b\\u5e97","phone":"0229879457","address":"\\u6377\\u904b\\u8def\\uff11\\uff19\\u5df7\\uff16\\u5f04\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '017255', 'quanjia', 'zh-tw', 1000),
(8759, 6144, '5911-6144', 1, '三重力行店', '{"number":"013389","shop":"\\u4e09\\u91cd\\u529b\\u884c\\u5e97","phone":"0229808615","address":"\\u529b\\u884c\\u8def\\u4e00\\u6bb5\\uff14\\uff10\\u865f"}', '013389', 'quanjia', 'zh-tw', 1000),
(8760, 6144, '5911-6144', 1, '三重龍美店', '{"number":"015733","shop":"\\u4e09\\u91cd\\u9f8d\\u7f8e\\u5e97","phone":"0229785611","address":"\\u9f8d\\u6ff1\\u8def\\uff11\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '015733', 'quanjia', 'zh-tw', 1000),
(8761, 6144, '5911-6144', 1, '三重龍明店', '{"number":"016875","shop":"\\u4e09\\u91cd\\u9f8d\\u660e\\u5e97","phone":"0229781104","address":"\\u9f8d\\u6ff1\\u8def\\uff11\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '016875', 'quanjia', 'zh-tw', 1000),
(8762, 6144, '5911-6144', 1, '三重龍門店', '{"number":"013598","shop":"\\u4e09\\u91cd\\u9f8d\\u9580\\u5e97","phone":"0229723089","address":"\\u9f8d\\u9580\\u8def\\uff12\\uff17\\uff16\\u865f"}', '013598', 'quanjia', 'zh-tw', 1000),
(8763, 6144, '5911-6144', 1, '三重民生店', '{"number":"018507","shop":"\\u4e09\\u91cd\\u6c11\\u751f\\u5e97","phone":"0229809320","address":"\\u6c11\\u751f\\u6771\\u8857\\uff12\\u865f"}', '018507', 'quanjia', 'zh-tw', 1000),
(8764, 6144, '5911-6144', 1, '三重仁美店', '{"number":"013640","shop":"\\u4e09\\u91cd\\u4ec1\\u7f8e\\u5e97","phone":"0282879284","address":"\\u4ec1\\u7f8e\\u8857\\uff11\\uff10\\uff14\\u865f"}', '013640', 'quanjia', 'zh-tw', 1000),
(8765, 6144, '5911-6144', 1, '三重新仁義店', '{"number":"018326","shop":"\\u4e09\\u91cd\\u65b0\\u4ec1\\u7fa9\\u5e97","phone":"0289859488","address":"\\u4ec1\\u7fa9\\u8857\\uff11\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '018326', 'quanjia', 'zh-tw', 1000),
(8766, 6144, '5911-6144', 1, '三重華義店', '{"number":"018684","shop":"\\u4e09\\u91cd\\u83ef\\u7fa9\\u5e97","phone":"0289859180","address":"\\u4ec1\\u7fa9\\u8857\\uff12\\uff14\\uff14\\u865f\\u3001\\u5bcc\\u83ef\\u8857\\uff11\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '018684', 'quanjia', 'zh-tw', 1000),
(8767, 6144, '5911-6144', 1, '三重通華店', '{"number":"017123","shop":"\\u4e09\\u91cd\\u901a\\u83ef\\u5e97","phone":"0282875919","address":"\\u4ec1\\u7fa9\\u8857\\uff13\\uff11\\uff17\\u865f"}', '017123', 'quanjia', 'zh-tw', 1000),
(8768, 6144, '5911-6144', 1, '三重厚德店', '{"number":"015592","shop":"\\u4e09\\u91cd\\u539a\\u5fb7\\u5e97","phone":"0229815241","address":"\\u4e09\\u548c\\u8def\\u4e09\\u6bb5\\uff11\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '015592', 'quanjia', 'zh-tw', 1000),
(8769, 6144, '5911-6144', 1, '三重三安店', '{"number":"018323","shop":"\\u4e09\\u91cd\\u4e09\\u5b89\\u5e97","phone":"0229819584","address":"\\u4e09\\u548c\\u8def\\u4e09\\u6bb5\\uff14\\uff10\\u865f"}', '018323', 'quanjia', 'zh-tw', 1000),
(8770, 6144, '5911-6144', 1, '三重龍和店', '{"number":"018393","shop":"\\u4e09\\u91cd\\u9f8d\\u548c\\u5e97","phone":"0229762428","address":"\\u4e09\\u548c\\u8def\\u4e09\\u6bb5\\uff15\\uff19\\u865f"}', '018393', 'quanjia', 'zh-tw', 1000),
(8771, 6144, '5911-6144', 1, '三重福運店', '{"number":"016177","shop":"\\u4e09\\u91cd\\u798f\\u904b\\u5e97","phone":"0222863881","address":"\\u4e09\\u548c\\u8def\\u56db\\u6bb5\\uff12\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '016177', 'quanjia', 'zh-tw', 1000),
(8772, 6144, '5911-6144', 1, '三重銀和店', '{"number":"018854","shop":"\\u4e09\\u91cd\\u9280\\u548c\\u5e97","phone":"0222870339","address":"\\u4e09\\u548c\\u8def\\u56db\\u6bb5\\uff13\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '018854', 'quanjia', 'zh-tw', 1000),
(8773, 6144, '5911-6144', 1, '三重三民店', '{"number":"016031","shop":"\\u4e09\\u91cd\\u4e09\\u6c11\\u5e97","phone":"0229843629","address":"\\u4e09\\u6c11\\u8857\\uff11\\uff11\\uff12\\u865f"}', '016031', 'quanjia', 'zh-tw', 1000),
(8774, 6144, '5911-6144', 1, '三重新福田店', '{"number":"014700","shop":"\\u4e09\\u91cd\\u65b0\\u798f\\u7530\\u5e97","phone":"0229823712","address":"\\u4e09\\u6c11\\u8857\\uff12\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '014700', 'quanjia', 'zh-tw', 1000),
(8775, 6144, '5911-6144', 1, '三重富貴店', '{"number":"014746","shop":"\\u4e09\\u91cd\\u5bcc\\u8cb4\\u5e97","phone":"0282876954","address":"\\u4e09\\u8ce2\\u8857\\uff12\\uff10\\uff11\\u865f"}', '014746', 'quanjia', 'zh-tw', 1000),
(8776, 6144, '5911-6144', 1, '三重新三陽店', '{"number":"016269","shop":"\\u4e09\\u91cd\\u65b0\\u4e09\\u967d\\u5e97","phone":"0229718178","address":"\\u4e09\\u967d\\u8def\\uff11\\uff13\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '016269', 'quanjia', 'zh-tw', 1000),
(8777, 6144, '5911-6144', 1, '三重長壽店', '{"number":"017724","shop":"\\u4e09\\u91cd\\u9577\\u58fd\\u5e97","phone":"0289827026","address":"\\u96d9\\u5712\\u91cc\\u9577\\u58fd\\u897f\\u8857\\uff11\\u865f"}', '017724', 'quanjia', 'zh-tw', 1000),
(8778, 6144, '5911-6144', 1, '三重田心店', '{"number":"017909","shop":"\\u4e09\\u91cd\\u7530\\u5fc3\\u5e97","phone":"0229844120","address":"\\u7530\\u5fc3\\u91cc\\u5fe0\\u5b5d\\u8def\\u4e09\\u6bb5\\uff15\\uff10\\u5df7\\uff18\\uff12\\u865f\\u4e00\\u6a13"}', '017909', 'quanjia', 'zh-tw', 1000),
(8779, 6144, '5911-6144', 1, '三重大榮店', '{"number":"018198","shop":"\\u4e09\\u91cd\\u5927\\u69ae\\u5e97","phone":"0229761842","address":"\\u6587\\u5316\\u5317\\u8def\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '018198', 'quanjia', 'zh-tw', 1000),
(8780, 6144, '5911-6144', 1, '三重文化店', '{"number":"017855","shop":"\\u4e09\\u91cd\\u6587\\u5316\\u5e97","phone":"0229766209","address":"\\u6587\\u5316\\u5357\\u8def\\uff18\\u4e4b\\uff14\\u865f\\uff11\\u6a13"}', '017855', 'quanjia', 'zh-tw', 1000),
(8781, 6144, '5911-6144', 1, '三重新三信店', '{"number":"015089","shop":"\\u4e09\\u91cd\\u65b0\\u4e09\\u4fe1\\u5e97","phone":"0228559623","address":"\\u4e94\\u83ef\\u8857\\uff12\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '015089', 'quanjia', 'zh-tw', 1000),
(8782, 6144, '5911-6144', 1, '三重華興店', '{"number":"015088","shop":"\\u4e09\\u91cd\\u83ef\\u8208\\u5e97","phone":"0229876468","address":"\\u4e94\\u83ef\\u8857\\uff14\\uff15\\u865f\\uff0e\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '015088', 'quanjia', 'zh-tw', 1000),
(8783, 6144, '5911-6144', 1, '三重五華店', '{"number":"017059","shop":"\\u4e09\\u91cd\\u4e94\\u83ef\\u5e97","phone":"0289822418","address":"\\u4e94\\u83ef\\u8857\\uff18\\uff19\\u865f"}', '017059', 'quanjia', 'zh-tw', 1000),
(8784, 6144, '5911-6144', 1, '三重溪尾店', '{"number":"018438","shop":"\\u4e09\\u91cd\\u6eaa\\u5c3e\\u5e97","phone":"0222867450","address":"\\u6eaa\\u5c3e\\u8857\\uff11\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '018438', 'quanjia', 'zh-tw', 1000),
(8785, 6144, '5911-6144', 1, '三重福溪店', '{"number":"015958","shop":"\\u4e09\\u91cd\\u798f\\u6eaa\\u5e97","phone":"0282873066","address":"\\u6eaa\\u5c3e\\u8857\\uff15\\uff16\\u865f"}', '015958', 'quanjia', 'zh-tw', 1000),
(8786, 6144, '5911-6144', 1, '三重興德店', '{"number":"011589","shop":"\\u4e09\\u91cd\\u8208\\u5fb7\\u5e97","phone":"0285124015","address":"\\u8208\\u5fb7\\u8def\\uff11\\uff12\\uff13\\u865f"}', '011589', 'quanjia', 'zh-tw', 1000),
(8787, 6144, '5911-6144', 1, '三重永安店', '{"number":"015519","shop":"\\u4e09\\u91cd\\u6c38\\u5b89\\u5e97","phone":"0228579121","address":"\\u6c38\\u5b89\\u5317\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '015519', 'quanjia', 'zh-tw', 1000),
(8788, 6144, '5911-6144', 1, '三重大勇店', '{"number":"011856","shop":"\\u4e09\\u91cd\\u5927\\u52c7\\u5e97","phone":"0229829253","address":"\\u6c38\\u767c\\u91cc\\u529b\\u884c\\u8def\\u4e8c\\u6bb5\\uff12\\u865f\\u4e00\\u6a13"}', '011856', 'quanjia', 'zh-tw', 1000),
(8789, 6144, '5911-6144', 1, '三重福旺店', '{"number":"015923","shop":"\\u4e09\\u91cd\\u798f\\u65fa\\u5e97","phone":"0222863796","address":"\\u6c38\\u798f\\u8857\\uff11\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '015923', 'quanjia', 'zh-tw', 1000),
(8790, 6144, '5911-6144', 1, '三重永福店', '{"number":"017886","shop":"\\u4e09\\u91cd\\u6c38\\u798f\\u5e97","phone":"0222801075","address":"\\u6c38\\u798f\\u8857\\uff11\\uff12\\uff14\\u865f"}', '017886', 'quanjia', 'zh-tw', 1000),
(8791, 6144, '5911-6144', 1, '三重華山店', '{"number":"017456","shop":"\\u4e09\\u91cd\\u83ef\\u5c71\\u5e97","phone":"0229879931","address":"\\u4e2d\\u83ef\\u8def\\uff12\\uff18\\u865f"}', '017456', 'quanjia', 'zh-tw', 1000),
(8792, 6144, '5911-6144', 1, '三重華泰店', '{"number":"017371","shop":"\\u4e09\\u91cd\\u83ef\\u6cf0\\u5e97","phone":"0229874587","address":"\\u4e2d\\u83ef\\u8def\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '017371', 'quanjia', 'zh-tw', 1000),
(8793, 6144, '5911-6144', 1, '三重三佾店', '{"number":"013411","shop":"\\u4e09\\u91cd\\u4e09\\u4f7e\\u5e97","phone":"0229784888","address":"\\u4e2d\\u592e\\u5317\\u8def\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '013411', 'quanjia', 'zh-tw', 1000),
(8794, 6144, '5911-6144', 1, '三重中央店', '{"number":"016577","shop":"\\u4e09\\u91cd\\u4e2d\\u592e\\u5e97","phone":"0229744057","address":"\\u4e2d\\u592e\\u5357\\u8def\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '016577', 'quanjia', 'zh-tw', 1000),
(8795, 6144, '5911-6144', 1, '三重興南店', '{"number":"017732","shop":"\\u4e09\\u91cd\\u8208\\u5357\\u5e97","phone":"0229742923","address":"\\u4e2d\\u592e\\u5357\\u8def\\uff18\\u865f\\uff11\\u6a13"}', '017732', 'quanjia', 'zh-tw', 1000),
(8796, 6144, '5911-6144', 1, '三重金勇店', '{"number":"018688","shop":"\\u4e09\\u91cd\\u91d1\\u52c7\\u5e97","phone":"0229850689","address":"\\u4e2d\\u6b63\\u5317\\u8def\\uff13\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '018688', 'quanjia', 'zh-tw', 1000),
(8797, 6144, '5911-6144', 1, '三重新正店', '{"number":"015946","shop":"\\u4e09\\u91cd\\u65b0\\u6b63\\u5e97","phone":"0229720095","address":"\\u4e2d\\u6b63\\u5357\\u8def\\uff11\\uff18\\uff14\\u865f\\uff11\\u6a13"}', '015946', 'quanjia', 'zh-tw', 1000),
(8798, 6144, '5911-6144', 1, '三重公園店', '{"number":"017457","shop":"\\u4e09\\u91cd\\u516c\\u5712\\u5e97","phone":"0229836585","address":"\\u5fe0\\u5b5d\\u8def\\u4e8c\\u6bb5\\uff13\\uff14\\u865f"}', '017457', 'quanjia', 'zh-tw', 1000),
(8799, 6144, '5911-6144', 1, '三重湯城店', '{"number":"013907","shop":"\\u4e09\\u91cd\\u6e6f\\u57ce\\u5e97","phone":"0229992495","address":"\\u91cd\\u65b0\\u8def\\uff15\\u6bb5\\uff16\\uff10\\uff19\\u5df7\\uff11\\uff14\\u865f\\u4e4b\\uff17\\uff06\\u4e4b\\uff18"}', '013907', 'quanjia', 'zh-tw', 1000),
(8800, 6144, '5911-6144', 1, '三重天台店', '{"number":"017212","shop":"\\u4e09\\u91cd\\u5929\\u53f0\\u5e97","phone":"0229744755","address":"\\u91cd\\u65b0\\u8def\\u4e8c\\u6bb5\\uff17\\uff18\\u865f"}', '017212', 'quanjia', 'zh-tw', 1000),
(8801, 6144, '5911-6144', 1, '三重菜寮店', '{"number":"012257","shop":"\\u4e09\\u91cd\\u83dc\\u5bee\\u5e97","phone":"0229749493","address":"\\u91cd\\u65b0\\u8def\\u4e09\\u6bb5\\uff11\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '012257', 'quanjia', 'zh-tw', 1000),
(8802, 6144, '5911-6144', 1, '三重重光店', '{"number":"014776","shop":"\\u4e09\\u91cd\\u91cd\\u5149\\u5e97","phone":"0229746074","address":"\\u91cd\\u65b0\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '014776', 'quanjia', 'zh-tw', 1000),
(8803, 6144, '5911-6144', 1, '三重國泰店', '{"number":"018822","shop":"\\u4e09\\u91cd\\u570b\\u6cf0\\u5e97","phone":"0229720115","address":"\\u91cd\\u65b0\\u8def\\u56db\\u6bb5\\uff18\\uff19\\u865f\\u91cd\\u65b0\\u7b2c\\u4e8c\\u5927\\u6a13\\uff11\\u6a13"}', '018822', 'quanjia', 'zh-tw', 1000),
(8804, 6144, '5911-6144', 1, '三重中興店', '{"number":"018729","shop":"\\u4e09\\u91cd\\u4e2d\\u8208\\u5e97","phone":"0229992889","address":"\\u91cd\\u65b0\\u8def\\u4e94\\u6bb5\\uff15\\uff19\\uff15\\uff0c\\uff15\\uff19\\uff17\\u865f"}', '018729', 'quanjia', 'zh-tw', 1000),
(8805, 6144, '5911-6144', 1, '三重九陽店', '{"number":"018042","shop":"\\u4e09\\u91cd\\u4e5d\\u967d\\u5e97","phone":"0229845805","address":"\\u91cd\\u967d\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '018042', 'quanjia', 'zh-tw', 1000),
(8806, 6144, '5911-6144', 1, '三重重仁店', '{"number":"016550","shop":"\\u4e09\\u91cd\\u91cd\\u4ec1\\u5e97","phone":"0289883651","address":"\\u91cd\\u967d\\u8def\\u4e09\\u6bb5\\uff15\\u5df7\\uff13\\uff10\\u865f"}', '016550', 'quanjia', 'zh-tw', 1000),
(8807, 6144, '5911-6144', 1, '三重信安店', '{"number":"017797","shop":"\\u4e09\\u91cd\\u4fe1\\u5b89\\u5e97","phone":"0229878001","address":"\\u91cd\\u967d\\u8def\\u56db\\u6bb5\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '017797', 'quanjia', 'zh-tw', 1000),
(8808, 6144, '5911-6144', 1, '三重重陽店', '{"number":"018418","shop":"\\u4e09\\u91cd\\u91cd\\u967d\\u5e97","phone":"0289810631","address":"\\u91cd\\u967d\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff19\\u865f\\u3001\\uff11\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '018418', 'quanjia', 'zh-tw', 1000),
(8809, 6144, '5911-6144', 1, '三重欣田店', '{"number":"013850","shop":"\\u4e09\\u91cd\\u6b23\\u7530\\u5e97","phone":"0289837451","address":"\\u81ea\\u5f37\\u8def\\u4e8c\\u6bb5\\uff12\\uff14\\u865f"}', '013850', 'quanjia', 'zh-tw', 1000),
(8810, 6144, '5911-6144', 1, '三重自強店', '{"number":"018420","shop":"\\u4e09\\u91cd\\u81ea\\u5f37\\u5e97","phone":"0289832068","address":"\\u81ea\\u5f37\\u8def\\u4e09\\u6bb5\\uff11\\uff16\\u865f"}', '018420', 'quanjia', 'zh-tw', 1000),
(8811, 6145, '5911-6145', 1, '深坑金典店', '{"number":"018104","shop":"\\u6df1\\u5751\\u91d1\\u5178\\u5e97","phone":"0226624307","address":"\\u5317\\u6df1\\u8def\\u4e8c\\u6bb5\\uff17\\uff17\\u865f"}', '018104', 'quanjia', 'zh-tw', 1000),
(8812, 6145, '5911-6145', 1, '深坑北深店', '{"number":"014888","shop":"\\u6df1\\u5751\\u5317\\u6df1\\u5e97","phone":"0226644845","address":"\\u5317\\u6df1\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff19\\u865f"}', '014888', 'quanjia', 'zh-tw', 1000),
(8813, 6145, '5911-6145', 1, '深坑北福店', '{"number":"015531","shop":"\\u6df1\\u5751\\u5317\\u798f\\u5e97","phone":"0226629753","address":"\\u5317\\u6df1\\u8def\\u4e09\\u6bb5\\uff12\\uff13\\uff19\\u865f"}', '015531', 'quanjia', 'zh-tw', 1000),
(8814, 6145, '5911-6145', 1, '深坑埔新店', '{"number":"016992","shop":"\\u6df1\\u5751\\u57d4\\u65b0\\u5e97","phone":"0226641876","address":"\\u57d4\\u65b0\\u91cc\\u57d4\\u65b0\\u8857\\uff19\\uff13\\u865f\\uff11\\u6a13"}', '016992', 'quanjia', 'zh-tw', 1000),
(8815, 6146, '5911-6146', 1, '石碇雙溪店', '{"number":"017288","shop":"\\u77f3\\u7887\\u96d9\\u6eaa\\u5e97","phone":"0226633324","address":"\\u9686\\u76db\\u91cc\\u96d9\\u6eaa\\uff15\\uff18\\u865f"}', '017288', 'quanjia', 'zh-tw', 1000),
(8816, 6146, '5911-6146', 1, '石碇國道店', '{"number":"018146","shop":"\\u77f3\\u7887\\u570b\\u9053\\u5e97","phone":"0226633428","address":"\\u6587\\u5c71\\u8def\\u4e00\\u6bb5\\uff16\\u865f"}', '018146', 'quanjia', 'zh-tw', 1000),
(8817, 6147, '5911-6147', 1, '石門粽香店', '{"number":"015742","shop":"\\u77f3\\u9580\\u7cbd\\u9999\\u5e97","phone":"0226382011","address":"\\u4e2d\\u592e\\u8def\\uff12\\uff14\\u865f"}', '015742', 'quanjia', 'zh-tw', 1000),
(8818, 6148, '5911-6148', 1, '樹林德園店', '{"number":"017830","shop":"\\u6a39\\u6797\\u5fb7\\u5712\\u5e97","phone":"0226807279","address":"\\u516b\\u5fb7\\u8857\\uff16\\uff10\\uff10\\u53ca\\uff16\\uff10\\uff12\\u865f"}', '017830', 'quanjia', 'zh-tw', 1000),
(8819, 6148, '5911-6148', 1, '樹林新保安店', '{"number":"018339","shop":"\\u6a39\\u6797\\u65b0\\u4fdd\\u5b89\\u5e97","phone":"0226886257","address":"\\u4fdd\\u5b89\\u8857\\u4e8c\\u6bb5\\uff12\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '018339', 'quanjia', 'zh-tw', 1000),
(8820, 6148, '5911-6148', 1, '樹林博愛店', '{"number":"018422","shop":"\\u6a39\\u6797\\u535a\\u611b\\u5e97","phone":"0286755840","address":"\\u535a\\u611b\\u8857\\uff11\\uff15\\uff18\\u865f\\uff11\\u6a13"}', '018422', 'quanjia', 'zh-tw', 1000),
(8821, 6148, '5911-6148', 1, '樹林佳瑪店', '{"number":"016205","shop":"\\u6a39\\u6797\\u4f73\\u746a\\u5e97","phone":"0226878166","address":"\\u535a\\u611b\\u8857\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '016205', 'quanjia', 'zh-tw', 1000),
(8822, 6148, '5911-6148', 1, '樹林大安店', '{"number":"018129","shop":"\\u6a39\\u6797\\u5927\\u5b89\\u5e97","phone":"0226877960","address":"\\u5927\\u5b89\\u8def\\uff15\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '018129', 'quanjia', 'zh-tw', 1000),
(8823, 6148, '5911-6148', 1, '樹林金安店', '{"number":"017798","shop":"\\u6a39\\u6797\\u91d1\\u5b89\\u5e97","phone":"0226875845","address":"\\u5927\\u5b89\\u8def\\uff15\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '017798', 'quanjia', 'zh-tw', 1000),
(8824, 6148, '5911-6148', 1, '樹林藝術店', '{"number":"016070","shop":"\\u6a39\\u6797\\u85dd\\u8853\\u5e97","phone":"0226687483","address":"\\u5927\\u96c5\\u8def\\uff12\\uff18\\uff17\\u865f\\uff11\\u6a13"}', '016070', 'quanjia', 'zh-tw', 1000),
(8825, 6148, '5911-6148', 1, '樹林學誠店', '{"number":"016095","shop":"\\u6a39\\u6797\\u5b78\\u8aa0\\u5e97","phone":"0235017864","address":"\\u5927\\u7fa9\\u8def\\uff11\\uff19\\uff16\\uff06\\uff11\\uff19\\uff18\\u865f"}', '016095', 'quanjia', 'zh-tw', 1000),
(8826, 6148, '5911-6148', 1, '樹林欣榮店', '{"number":"016153","shop":"\\u6a39\\u6797\\u6b23\\u69ae\\u5e97","phone":"0286857876","address":"\\u6771\\u69ae\\u8857\\uff11\\uff10\\uff17\\u865f\\uff11\\u6a13"}', '016153', 'quanjia', 'zh-tw', 1000),
(8827, 6148, '5911-6148', 1, '樹林東興店', '{"number":"018223","shop":"\\u6a39\\u6797\\u6771\\u8208\\u5e97","phone":"0286847363","address":"\\u6771\\u8208\\u8857\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '018223', 'quanjia', 'zh-tw', 1000),
(8828, 6148, '5911-6148', 1, '樹林復興店', '{"number":"018421","shop":"\\u6a39\\u6797\\u5fa9\\u8208\\u5e97","phone":"0226873547","address":"\\u5fa9\\u8208\\u8def\\uff12\\uff17\\uff12\\u865f\\uff0c\\uff12\\uff17\\uff14\\u865f"}', '018421', 'quanjia', 'zh-tw', 1000),
(8829, 6148, '5911-6148', 1, '樹林新柑園店', '{"number":"018252","shop":"\\u6a39\\u6797\\u65b0\\u67d1\\u5712\\u5e97","phone":"0226684823","address":"\\u67d1\\u5712\\u8857\\u4e00\\u6bb5\\uff13\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '018252', 'quanjia', 'zh-tw', 1000),
(8830, 6148, '5911-6148', 1, '樹林國凱店', '{"number":"018166","shop":"\\u6a39\\u6797\\u570b\\u51f1\\u5e97","phone":"0286860727","address":"\\u570b\\u51f1\\u8857\\uff18\\uff12\\u865f"}', '018166', 'quanjia', 'zh-tw', 1000),
(8831, 6148, '5911-6148', 1, '樹林車站店', '{"number":"013950","shop":"\\u6a39\\u6797\\u8eca\\u7ad9\\u5e97","phone":"0226813492","address":"\\u5f8c\\u7ad9\\u8857\\uff18\\u865f"}', '013950', 'quanjia', 'zh-tw', 1000),
(8832, 6148, '5911-6148', 1, '樹林育園店', '{"number":"014701","shop":"\\u6a39\\u6797\\u80b2\\u5712\\u5e97","phone":"0226684376","address":"\\u4f73\\u5712\\u8def\\u4e00\\u6bb5\\uff14\\uff13\\u865f"}', '014701', 'quanjia', 'zh-tw', 1000),
(8833, 6148, '5911-6148', 1, '樹林俊英店', '{"number":"017506","shop":"\\u6a39\\u6797\\u4fca\\u82f1\\u5e97","phone":"0226899787","address":"\\u4fca\\u82f1\\u8857\\uff11\\uff11\\uff13\\u865f"}', '017506', 'quanjia', 'zh-tw', 1000),
(8834, 6148, '5911-6148', 1, '樹林俊信店', '{"number":"013700","shop":"\\u6a39\\u6797\\u4fca\\u4fe1\\u5e97","phone":"0226758782","address":"\\u4fca\\u82f1\\u8857\\uff11\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '013700', 'quanjia', 'zh-tw', 1000),
(8835, 6148, '5911-6148', 1, '樹林俊霖店', '{"number":"013556","shop":"\\u6a39\\u6797\\u4fca\\u9716\\u5e97","phone":"0226765503","address":"\\u4fca\\u82f1\\u8857\\uff11\\uff15\\uff15\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '013556', 'quanjia', 'zh-tw', 1000),
(8836, 6148, '5911-6148', 1, '樹林龍興店', '{"number":"013985","shop":"\\u6a39\\u6797\\u9f8d\\u8208\\u5e97","phone":"0226889613","address":"\\u9f8d\\u8208\\u8857\\uff11\\uff15\\u865f"}', '013985', 'quanjia', 'zh-tw', 1000),
(8837, 6148, '5911-6148', 1, '樹林凱旋店', '{"number":"015870","shop":"\\u6a39\\u6797\\u51f1\\u65cb\\u5e97","phone":"0289700748","address":"\\u5357\\u5712\\u91cc\\u5927\\u6210\\u8def\\uff11\\uff10\\u865f\\uff11\\u6a13\\uff08\\u5149\\u7e96\\uff09\\u4e09\\u5cfd\\u93ae"}', '015870', 'quanjia', 'zh-tw', 1000),
(8838, 6148, '5911-6148', 1, '樹林日新店', '{"number":"018546","shop":"\\u6a39\\u6797\\u65e5\\u65b0\\u5e97","phone":"0226876139","address":"\\u65e5\\u65b0\\u8857\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '018546', 'quanjia', 'zh-tw', 1000),
(8839, 6148, '5911-6148', 1, '樹林俊興店', '{"number":"014329","shop":"\\u6a39\\u6797\\u4fca\\u8208\\u5e97","phone":"0226887701","address":"\\u4e09\\u4fca\\u8857\\uff11\\uff12\\uff17\\u865f\\uff11\\uff26"}', '014329', 'quanjia', 'zh-tw', 1000),
(8840, 6148, '5911-6148', 1, '樹林太平店', '{"number":"018097","shop":"\\u6a39\\u6797\\u592a\\u5e73\\u5e97","phone":"0286845773","address":"\\u592a\\u5143\\u8857\\uff15\\uff18\\u865f"}', '018097', 'quanjia', 'zh-tw', 1000),
(8841, 6148, '5911-6148', 1, '樹林潭興店', '{"number":"015007","shop":"\\u6a39\\u6797\\u6f6d\\u8208\\u5e97","phone":"0226829851","address":"\\u6f6d\\u8208\\u8857\\uff12\\uff12\\u865f\\uff11\\u6a13\\u3001\\u5730\\u4e0b\\u5ba4"}', '015007', 'quanjia', 'zh-tw', 1000),
(8842, 6148, '5911-6148', 1, '樹林仁醫店', '{"number":"017547","shop":"\\u6a39\\u6797\\u4ec1\\u91ab\\u5e97","phone":"0226842900","address":"\\u6587\\u5316\\u8857\\uff11\\uff14\\u865f\\uff11\\u6a13"}', '017547', 'quanjia', 'zh-tw', 1000),
(8843, 6148, '5911-6148', 1, '樹林學園店', '{"number":"015005","shop":"\\u6a39\\u6797\\u5b78\\u5712\\u5e97","phone":"0235019721","address":"\\u5b78\\u6210\\u8def\\uff16\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '015005', 'quanjia', 'zh-tw', 1000),
(8844, 6148, '5911-6148', 1, '樹林學勤店', '{"number":"016052","shop":"\\u6a39\\u6797\\u5b78\\u52e4\\u5e97","phone":"0289705219","address":"\\u5b78\\u52e4\\u8def\\uff15\\uff15\\uff10\\uff0e\\uff15\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '016052', 'quanjia', 'zh-tw', 1000),
(8845, 6148, '5911-6148', 1, '樹林新育店', '{"number":"017301","shop":"\\u6a39\\u6797\\u65b0\\u80b2\\u5e97","phone":"0226860566","address":"\\u80b2\\u82f1\\u8857\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '017301', 'quanjia', 'zh-tw', 1000),
(8846, 6148, '5911-6148', 1, '樹林中華店', '{"number":"013987","shop":"\\u6a39\\u6797\\u4e2d\\u83ef\\u5e97","phone":"0286867009","address":"\\u4e2d\\u83ef\\u8def\\uff11\\uff18\\uff13\\uff0e\\uff11\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '013987', 'quanjia', 'zh-tw', 1000),
(8847, 6148, '5911-6148', 1, '樹林新全球店', '{"number":"016645","shop":"\\u6a39\\u6797\\u65b0\\u5168\\u7403\\u5e97","phone":"0286862215","address":"\\u4e2d\\u83ef\\u8def\\uff12\\uff19\\uff11\\u865f"}', '016645', 'quanjia', 'zh-tw', 1000),
(8848, 6148, '5911-6148', 1, '樹林新中店', '{"number":"011655","shop":"\\u6a39\\u6797\\u65b0\\u4e2d\\u5e97","phone":"0226685755","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\uff17\\u865f\\u53ca\\uff11\\uff10\\uff17\\uff0d\\uff11\\u865f"}', '011655', 'quanjia', 'zh-tw', 1000),
(8849, 6148, '5911-6148', 1, '樹林三德店', '{"number":"017289","shop":"\\u6a39\\u6797\\u4e09\\u5fb7\\u5e97","phone":"0226763033","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '017289', 'quanjia', 'zh-tw', 1000),
(8850, 6148, '5911-6148', 1, '樹林五圓店', '{"number":"013692","shop":"\\u6a39\\u6797\\u4e94\\u5713\\u5e97","phone":"0286850375","address":"\\u5fe0\\u5b5d\\u8857\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '013692', 'quanjia', 'zh-tw', 1000),
(8851, 6149, '5911-6149', 1, '泰山新貴子店', '{"number":"013058","shop":"\\u6cf0\\u5c71\\u65b0\\u8cb4\\u5b50\\u5e97","phone":"0229036660","address":"\\u8cb4\\u5b50\\u8def\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '013058', 'quanjia', 'zh-tw', 1000),
(8852, 6149, '5911-6149', 1, '泰山輔醫店', '{"number":"016639","shop":"\\u6cf0\\u5c71\\u8f14\\u91ab\\u5e97","phone":"0229014162","address":"\\u8cb4\\u5b50\\u8def\\uff16\\uff19\\u865f\\uff22\\uff11"}', '016639', 'quanjia', 'zh-tw', 1000),
(8853, 6149, '5911-6149', 1, '泰山民權店', '{"number":"015408","shop":"\\u6cf0\\u5c71\\u6c11\\u6b0a\\u5e97","phone":"0222968230","address":"\\u6c11\\u6b0a\\u8def\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '015408', 'quanjia', 'zh-tw', 1000),
(8854, 6149, '5911-6149', 1, '泰山明豐店', '{"number":"015991","shop":"\\u6cf0\\u5c71\\u660e\\u8c50\\u5e97","phone":"0229048829","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\uff13\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '015991', 'quanjia', 'zh-tw', 1000),
(8855, 6149, '5911-6149', 1, '泰山義學店', '{"number":"018367","shop":"\\u6cf0\\u5c71\\u7fa9\\u5b78\\u5e97","phone":"0229001245","address":"\\u660e\\u5fd7\\u8def\\u4e8c\\u6bb5\\uff14\\uff17\\u865f"}', '018367', 'quanjia', 'zh-tw', 1000),
(8856, 6149, '5911-6149', 1, '泰山工專店', '{"number":"017682","shop":"\\u6cf0\\u5c71\\u5de5\\u5c08\\u5e97","phone":"0229046856","address":"\\u660e\\u5fd7\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff10\\u865f"}', '017682', 'quanjia', 'zh-tw', 1000),
(8857, 6149, '5911-6149', 1, '泰山辭修店', '{"number":"016363","shop":"\\u6cf0\\u5c71\\u8fad\\u4fee\\u5e97","phone":"0222971269","address":"\\u660e\\u5fd7\\u8def\\u4e00\\u6bb5\\uff13\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '016363', 'quanjia', 'zh-tw', 1000),
(8858, 6149, '5911-6149', 1, '泰山白金店', '{"number":"015463","shop":"\\u6cf0\\u5c71\\u767d\\u91d1\\u5e97","phone":"0222979409","address":"\\u4ec1\\u611b\\u8def\\uff11\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '015463', 'quanjia', 'zh-tw', 1000),
(8859, 6149, '5911-6149', 1, '泰山同興店', '{"number":"016581","shop":"\\u6cf0\\u5c71\\u540c\\u8208\\u5e97","phone":"0229007443","address":"\\u4ec1\\u7fa9\\u8def\\uff12\\uff12\\uff10\\u5df7\\uff12\\u865f\\u3001\\uff18\\u865f\\uff11\\u6a13"}', '016581', 'quanjia', 'zh-tw', 1000),
(8860, 6149, '5911-6149', 1, '泰山憲訓店', '{"number":"018803","shop":"\\u6cf0\\u5c71\\u61b2\\u8a13\\u5e97","phone":"0229005487","address":"\\u6cf0\\u6797\\u8def\\uff12\\u6bb5\\uff13\\uff16\\uff14\\u865f\\uff11\\u6a13"}', '018803', 'quanjia', 'zh-tw', 1000),
(8861, 6149, '5911-6149', 1, '泰山新泰林店', '{"number":"014432","shop":"\\u6cf0\\u5c71\\u65b0\\u6cf0\\u6797\\u5e97","phone":"0229000777","address":"\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff17\\u865f\\uff11\\u6a13"}', '014432', 'quanjia', 'zh-tw', 1000),
(8862, 6149, '5911-6149', 1, '泰山麗池店', '{"number":"012416","shop":"\\u6cf0\\u5c71\\u9e97\\u6c60\\u5e97","phone":"0229007046","address":"\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\uff15\\uff11\\uff18\\u865f"}', '012416', 'quanjia', 'zh-tw', 1000),
(8863, 6149, '5911-6149', 1, '泰山黎明店', '{"number":"014458","shop":"\\u6cf0\\u5c71\\u9ece\\u660e\\u5e97","phone":"0222979445","address":"\\u6cf0\\u6797\\u8def\\u4e8c\\u6bb5\\uff15\\uff17\\uff15\\u865f\\u3001\\uff15\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '014458', 'quanjia', 'zh-tw', 1000),
(8864, 6149, '5911-6149', 1, '泰山福興店', '{"number":"017828","shop":"\\u6cf0\\u5c71\\u798f\\u8208\\u5e97","phone":"0285311767","address":"\\u540c\\u8208\\u91cc\\u798f\\u8208\\u4e00\\u8857\\uff16\\uff10\\u865f\\u4e00\\u6a13"}', '017828', 'quanjia', 'zh-tw', 1000),
(8865, 6150, '5911-6150', 1, '土城金福店', '{"number":"014336","shop":"\\u571f\\u57ce\\u91d1\\u798f\\u5e97","phone":"0222695639","address":"\\u798f\\u5b89\\u8857\\uff11\\u865f\\uff11\\uff0d\\uff13\\u6a13\\u5168\\u68df"}', '014336', 'quanjia', 'zh-tw', 1000),
(8866, 6150, '5911-6150', 1, '土城城堡店', '{"number":"018330","shop":"\\u571f\\u57ce\\u57ce\\u5821\\u5e97","phone":"0222743213","address":"\\u798f\\u4ec1\\u8857\\uff15\\uff10\\u5df7\\uff11\\u865f"}', '018330', 'quanjia', 'zh-tw', 1000),
(8867, 6150, '5911-6150', 1, '土城福祥店', '{"number":"014748","shop":"\\u571f\\u57ce\\u798f\\u7965\\u5e97","phone":"0282615458","address":"\\u798f\\u7965\\u8857\\uff14\\uff16\\u865f\\u4e00\\u6a13"}', '014748', 'quanjia', 'zh-tw', 1000),
(8868, 6150, '5911-6150', 1, '土城廣明店', '{"number":"017179","shop":"\\u571f\\u57ce\\u5ee3\\u660e\\u5e97","phone":"0289674909","address":"\\u5ee3\\u660e\\u8857\\uff14\\uff15\\u865f\\uff1f\\uff14\\uff17\\u865f"}', '017179', 'quanjia', 'zh-tw', 1000),
(8869, 6150, '5911-6150', 1, '土城廣興店', '{"number":"016503","shop":"\\u571f\\u57ce\\u5ee3\\u8208\\u5e97","phone":"0222647450","address":"\\u5ee3\\u8208\\u91cc\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff10\\u865f"}', '016503', 'quanjia', 'zh-tw', 1000),
(8870, 6150, '5911-6150', 1, '土城行政店', '{"number":"017949","shop":"\\u571f\\u57ce\\u884c\\u653f\\u5e97","phone":"0282618798","address":"\\u548c\\u5e73\\u8def\\uff11\\uff10\\uff0d\\uff12\\u865f\\uff11\\u6a13"}', '017949', 'quanjia', 'zh-tw', 1000),
(8871, 6150, '5911-6150', 1, '土城立雲店', '{"number":"017025","shop":"\\u571f\\u57ce\\u7acb\\u96f2\\u5e97","phone":"0222643909","address":"\\u91d1\\u57ce\\u8def\\u4e8c\\u6bb5\\uff12\\uff15\\uff18\\u4e4b\\uff15\\u865f"}', '017025', 'quanjia', 'zh-tw', 1000),
(8872, 6150, '5911-6150', 1, '土城香榭店', '{"number":"018165","shop":"\\u571f\\u57ce\\u9999\\u69ad\\u5e97","phone":"0222645031","address":"\\u91d1\\u57ce\\u8def\\u4e09\\u6bb5\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '018165', 'quanjia', 'zh-tw', 1000),
(8873, 6150, '5911-6150', 1, '土城大城店', '{"number":"016301","shop":"\\u571f\\u57ce\\u5927\\u57ce\\u5e97","phone":"0282620927","address":"\\u91d1\\u57ce\\u8def\\u4e09\\u6bb5\\uff11\\uff14\\uff11\\u865f\\uff11\\u6a13\\uff06\\u5730\\u4e0b\\u4e00\\u6a13"}', '016301', 'quanjia', 'zh-tw', 1000),
(8874, 6150, '5911-6150', 1, '土城德清店', '{"number":"014611","shop":"\\u571f\\u57ce\\u5fb7\\u6e05\\u5e97","phone":"0222628154","address":"\\u660e\\u5fb7\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '014611', 'quanjia', 'zh-tw', 1000),
(8875, 6150, '5911-6150', 1, '土城義鴻店', '{"number":"015765","shop":"\\u571f\\u57ce\\u7fa9\\u9d3b\\u5e97","phone":"0222733196","address":"\\u660e\\u5fb7\\u8def\\u4e00\\u6bb5\\uff13\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '015765', 'quanjia', 'zh-tw', 1000),
(8876, 6150, '5911-6150', 1, '土城青水店', '{"number":"017002","shop":"\\u571f\\u57ce\\u9752\\u6c34\\u5e97","phone":"0222707634","address":"\\u9752\\u4ec1\\u8def\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '017002', 'quanjia', 'zh-tw', 1000),
(8877, 6150, '5911-6150', 1, '土城雲陽店', '{"number":"015868","shop":"\\u571f\\u57ce\\u96f2\\u967d\\u5e97","phone":"0222740328","address":"\\u9752\\u96f2\\u8def\\uff11\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '015868', 'quanjia', 'zh-tw', 1000),
(8878, 6150, '5911-6150', 1, '土城青雲店', '{"number":"016646","shop":"\\u571f\\u57ce\\u9752\\u96f2\\u5e97","phone":"0222743769","address":"\\u9752\\u96f2\\u8def\\uff14\\uff12\\u865f\\uff0c\\uff14\\uff14\\u865f"}', '016646', 'quanjia', 'zh-tw', 1000),
(8879, 6150, '5911-6150', 1, '土城寬樺店', '{"number":"018608","shop":"\\u571f\\u57ce\\u5bec\\u6a3a\\u5e97","phone":"0282733720","address":"\\u6e05\\u548c\\u91cc\\u9752\\u96f2\\u8def\\uff13\\uff18\\uff12\\u865f\\u3001\\uff13\\uff18\\uff14\\u865f"}', '018608', 'quanjia', 'zh-tw', 1000),
(8880, 6150, '5911-6150', 1, '土城仁愛店', '{"number":"015069","shop":"\\u571f\\u57ce\\u4ec1\\u611b\\u5e97","phone":"0222611306","address":"\\u6e05\\u6c34\\u8def\\uff11\\uff16\\uff16\\u865f"}', '015069', 'quanjia', 'zh-tw', 1000),
(8881, 6150, '5911-6150', 1, '土城學林店', '{"number":"016846","shop":"\\u571f\\u57ce\\u5b78\\u6797\\u5e97","phone":"0282620694","address":"\\u5b78\\u6210\\u8def\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '016846', 'quanjia', 'zh-tw', 1000),
(8882, 6150, '5911-6150', 1, '土城美仁店', '{"number":"016755","shop":"\\u571f\\u57ce\\u7f8e\\u4ec1\\u5e97","phone":"0282614954","address":"\\u5b78\\u5e9c\\u8def\\uff12\\u6bb5\\uff12\\uff11\\u865f\\uff11\\u6a13"}', '016755', 'quanjia', 'zh-tw', 1000),
(8883, 6150, '5911-6150', 1, '土城廣福店', '{"number":"018842","shop":"\\u571f\\u57ce\\u5ee3\\u798f\\u5e97","phone":"0222738441","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff12\\u865f"}', '018842', 'quanjia', 'zh-tw', 1000),
(8884, 6150, '5911-6150', 1, '土城新學店', '{"number":"011462","shop":"\\u571f\\u57ce\\u65b0\\u5b78\\u5e97","phone":"0282624507","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\uff11\\uff18\\uff17\\u865f\\uff11\\u6a13"}', '011462', 'quanjia', 'zh-tw', 1000),
(8885, 6150, '5911-6150', 1, '土城海山店', '{"number":"015127","shop":"\\u571f\\u57ce\\u6d77\\u5c71\\u5e97","phone":"0222647851","address":"\\u5b78\\u5e9c\\u8def\\u4e00\\u6bb5\\uff12\\uff19\\uff14\\u865f"}', '015127', 'quanjia', 'zh-tw', 1000),
(8886, 6150, '5911-6150', 1, '土城新亞店', '{"number":"013871","shop":"\\u571f\\u57ce\\u65b0\\u4e9e\\u5e97","phone":"0222697840","address":"\\u4e9e\\u6d32\\u8def\\uff15\\uff17\\u865f"}', '013871', 'quanjia', 'zh-tw', 1000),
(8887, 6150, '5911-6150', 1, '土城冠延店', '{"number":"012590","shop":"\\u571f\\u57ce\\u51a0\\u5ef6\\u5e97","phone":"0222622680","address":"\\u5ef6\\u548c\\u8def\\uff11\\uff11\\uff11\\u865f"}', '012590', 'quanjia', 'zh-tw', 1000),
(8888, 6150, '5911-6150', 1, '土城新延店', '{"number":"014347","shop":"\\u571f\\u57ce\\u65b0\\u5ef6\\u5e97","phone":"0222628742","address":"\\u5ef6\\u548c\\u8def\\uff12\\uff10\\uff17\\u865f\\uff11\\u6a13"}', '014347', 'quanjia', 'zh-tw', 1000),
(8889, 6150, '5911-6150', 1, '土城峰吉店', '{"number":"012914","shop":"\\u571f\\u57ce\\u5cf0\\u5409\\u5e97","phone":"0222628864","address":"\\u5ef6\\u5409\\u8857\\uff11\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '012914', 'quanjia', 'zh-tw', 1000),
(8890, 6150, '5911-6150', 1, '土城吉美店', '{"number":"017621","shop":"\\u571f\\u57ce\\u5409\\u7f8e\\u5e97","phone":"0222602720","address":"\\u5ef6\\u5409\\u8857\\uff12\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '017621', 'quanjia', 'zh-tw', 1000),
(8891, 6150, '5911-6150', 1, '土城延豐店', '{"number":"018095","shop":"\\u571f\\u57ce\\u5ef6\\u8c50\\u5e97","phone":"0222746691","address":"\\u5ef6\\u5409\\u8857\\uff12\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '018095', 'quanjia', 'zh-tw', 1000),
(8892, 6150, '5911-6150', 1, '土城學富店', '{"number":"015735","shop":"\\u571f\\u57ce\\u5b78\\u5bcc\\u5e97","phone":"0222641614","address":"\\u88d5\\u6c11\\u8def\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '015735', 'quanjia', 'zh-tw', 1000),
(8893, 6150, '5911-6150', 1, '土城海裕店', '{"number":"013713","shop":"\\u571f\\u57ce\\u6d77\\u88d5\\u5e97","phone":"0222622604","address":"\\u88d5\\u6c11\\u8def\\uff19\\uff12\\u5df7\\uff12\\uff12\\u5f04\\uff13\\u865f\\uff11\\u6a13"}', '013713', 'quanjia', 'zh-tw', 1000),
(8894, 6150, '5911-6150', 1, '土城御昇店', '{"number":"016000","shop":"\\u571f\\u57ce\\u5fa1\\u6607\\u5e97","phone":"0222629626","address":"\\u88d5\\u751f\\u8def\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '016000', 'quanjia', 'zh-tw', 1000),
(8895, 6150, '5911-6150', 1, '土城裕勝店', '{"number":"018340","shop":"\\u571f\\u57ce\\u88d5\\u52dd\\u5e97","phone":"0222623307","address":"\\u88d5\\u751f\\u8def\\uff15\\uff17\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '018340', 'quanjia', 'zh-tw', 1000),
(8896, 6150, '5911-6150', 1, '土城中央店', '{"number":"017431","shop":"\\u571f\\u57ce\\u4e2d\\u592e\\u5e97","phone":"0222741563","address":"\\u54e1\\u6797\\u91cc\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff18\\uff19\\u865f"}', '017431', 'quanjia', 'zh-tw', 1000),
(8897, 6150, '5911-6150', 1, '土城大道店', '{"number":"018572","shop":"\\u571f\\u57ce\\u5927\\u9053\\u5e97","phone":"0222616909","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff13\\uff11\\u865f"}', '018572', 'quanjia', 'zh-tw', 1000),
(8898, 6150, '5911-6150', 1, '土城工業店', '{"number":"017045","shop":"\\u571f\\u57ce\\u5de5\\u696d\\u5e97","phone":"0222678853","address":"\\u4e2d\\u5c71\\u8def\\uff16\\uff11\\u865f\\uff11\\u6a13"}', '017045', 'quanjia', 'zh-tw', 1000),
(8899, 6150, '5911-6150', 1, '土城恆山店', '{"number":"011902","shop":"\\u571f\\u57ce\\u6046\\u5c71\\u5e97","phone":"0222684232","address":"\\u4e2d\\u592e\\u8def\\uff14\\u6bb5\\uff12\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '011902', 'quanjia', 'zh-tw', 1000),
(8900, 6150, '5911-6150', 1, '土城順風店', '{"number":"013000","shop":"\\u571f\\u57ce\\u9806\\u98a8\\u5e97","phone":"0282612108","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff14\\u865f"}', '013000', 'quanjia', 'zh-tw', 1000),
(8901, 6150, '5911-6150', 1, '土城中源店', '{"number":"018783","shop":"\\u571f\\u57ce\\u4e2d\\u6e90\\u5e97","phone":"0282623623","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff12\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '018783', 'quanjia', 'zh-tw', 1000),
(8902, 6150, '5911-6150', 1, '土城員仁店', '{"number":"014627","shop":"\\u571f\\u57ce\\u54e1\\u4ec1\\u5e97","phone":"0282623135","address":"\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff18\\u865f"}', '014627', 'quanjia', 'zh-tw', 1000),
(8903, 6150, '5911-6150', 1, '土城大安店', '{"number":"016643","shop":"\\u571f\\u57ce\\u5927\\u5b89\\u5e97","phone":"0222690923","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff11\\uff18\\uff17\\u865f"}', '016643', 'quanjia', 'zh-tw', 1000),
(8904, 6150, '5911-6150', 1, '土城欣隆店', '{"number":"014891","shop":"\\u571f\\u57ce\\u6b23\\u9686\\u5e97","phone":"0222683967","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff12\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '014891', 'quanjia', 'zh-tw', 1000),
(8905, 6150, '5911-6150', 1, '土城永寧店', '{"number":"015205","shop":"\\u571f\\u57ce\\u6c38\\u5be7\\u5e97","phone":"0222694365","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff17\\uff14\\uff0d\\uff11\\u865f\\uff06\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '015205', 'quanjia', 'zh-tw', 1000),
(8906, 6150, '5911-6150', 1, '土城頂埔店', '{"number":"017799","shop":"\\u571f\\u57ce\\u9802\\u57d4\\u5e97","phone":"0222674416","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\uff12\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '017799', 'quanjia', 'zh-tw', 1000),
(8907, 6150, '5911-6150', 1, '土城頂運店', '{"number":"014307","shop":"\\u571f\\u57ce\\u9802\\u904b\\u5e97","phone":"0222671054","address":"\\u4e2d\\u592e\\u8def\\u56db\\u6bb5\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '014307', 'quanjia', 'zh-tw', 1000),
(8908, 6150, '5911-6150', 1, '土城新德店', '{"number":"017226","shop":"\\u571f\\u57ce\\u65b0\\u5fb7\\u5e97","phone":"0222644631","address":"\\u4e2d\\u592e\\u8def\\u4e00\\u6bb5\\uff12\\uff14\\uff18\\u4e4b\\uff12\\u865f"}', '017226', 'quanjia', 'zh-tw', 1000),
(8909, 6150, '5911-6150', 1, '土城鴻海店', '{"number":"018720","shop":"\\u571f\\u57ce\\u9d3b\\u6d77\\u5e97","phone":"0222695054","address":"\\u81ea\\u7531\\u8857\\uff12\\u865f\\uff15\\u6a13"}', '018720', 'quanjia', 'zh-tw', 1000),
(8910, 6151, '5911-6151', 1, '萬里頂社店', '{"number":"017753","shop":"\\u842c\\u91cc\\u9802\\u793e\\u5e97","phone":"0224081473","address":"\\u5927\\u9d6c\\u91cc\\u9802\\u793e\\uff11\\u865f"}', '017753', 'quanjia', 'zh-tw', 1000),
(8911, 6151, '5911-6151', 1, '野柳新港口店', '{"number":"018093","shop":"\\u91ce\\u67f3\\u65b0\\u6e2f\\u53e3\\u5e97","phone":"0224927310","address":"\\u6e2f\\u6771\\u8def\\uff16\\uff18\\u865f"}', '018093', 'quanjia', 'zh-tw', 1000),
(8912, 6152, '5911-6152', 1, '烏來烏萊店', '{"number":"014579","shop":"\\u70cf\\u4f86\\u70cf\\u840a\\u5e97","phone":"0226617682","address":"\\u74b0\\u5c71\\u8def\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '014579', 'quanjia', 'zh-tw', 1000),
(8913, 6152, '5911-6152', 1, '烏來溫泉店', '{"number":"015637","shop":"\\u70cf\\u4f86\\u6eab\\u6cc9\\u5e97","phone":"0226618084","address":"\\u70cf\\u4f86\\u8857\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '015637', 'quanjia', 'zh-tw', 1000),
(8914, 6153, '5911-6153', 1, '五股成泰店', '{"number":"016476","shop":"\\u4e94\\u80a1\\u6210\\u6cf0\\u5e97","phone":"0222931703","address":"\\u6210\\u6cf0\\u8def\\u4e09\\u6bb5\\uff15\\uff17\\uff17\\u5df7\\uff11\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '016476', 'quanjia', 'zh-tw', 1000),
(8915, 6153, '5911-6153', 1, '五股青水店', '{"number":"016466","shop":"\\u4e94\\u80a1\\u9752\\u6c34\\u5e97","phone":"0282923238","address":"\\u6210\\u6cf0\\u8def\\u56db\\u6bb5\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '016466', 'quanjia', 'zh-tw', 1000),
(8916, 6153, '5911-6153', 1, '五股蓬萊店', '{"number":"017783","shop":"\\u4e94\\u80a1\\u84ec\\u840a\\u5e97","phone":"0282921512","address":"\\u6210\\u6cf0\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff15\\uff0d\\uff11\\uff11\\u865f\\uff11\\u6a13\\u53ca\\uff22\\uff11"}', '017783', 'quanjia', 'zh-tw', 1000),
(8917, 6153, '5911-6153', 1, '五股水碓店', '{"number":"013597","shop":"\\u4e94\\u80a1\\u6c34\\u7893\\u5e97","phone":"0222977124","address":"\\u6210\\u6cf0\\u8def\\u4e00\\u6bb5\\uff17\\u5df7\\uff12\\uff11\\u865f\\u3001\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '013597', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(8918, 6153, '5911-6153', 1, '五股登科店', '{"number":"015853","shop":"\\u4e94\\u80a1\\u767b\\u79d1\\u5e97","phone":"0222931643","address":"\\u767b\\u6797\\u8def\\uff17\\uff16\\u4e4b\\uff19\\u865f\\uff11\\u6a13"}', '015853', 'quanjia', 'zh-tw', 1000),
(8919, 6153, '5911-6153', 1, '五股芳洲店', '{"number":"017243","shop":"\\u4e94\\u80a1\\u82b3\\u6d32\\u5e97","phone":"0222953094","address":"\\u82b3\\u6d32\\u4e00\\u8def\\uff13\\uff18\\u865f\\uff11\\u6a13\\uff06\\uff12\\u6a13"}', '017243', 'quanjia', 'zh-tw', 1000),
(8920, 6153, '5911-6153', 1, '五股凌雲店', '{"number":"013066","shop":"\\u4e94\\u80a1\\u51cc\\u96f2\\u5e97","phone":"0222941821","address":"\\u51cc\\u96f2\\u8def\\u4e00\\u6bb5\\uff18\\uff11\\u865f"}', '013066', 'quanjia', 'zh-tw', 1000),
(8921, 6153, '5911-6153', 1, '五股民義店', '{"number":"014640","shop":"\\u4e94\\u80a1\\u6c11\\u7fa9\\u5e97","phone":"0222942736","address":"\\u6c11\\u7fa9\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '014640', 'quanjia', 'zh-tw', 1000),
(8922, 6153, '5911-6153', 1, '五股新五義店', '{"number":"012113","shop":"\\u4e94\\u80a1\\u65b0\\u4e94\\u7fa9\\u5e97","phone":"0222939726","address":"\\u6c11\\u7fa9\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff19\\u865f\\uff11\\u6a13"}', '012113', 'quanjia', 'zh-tw', 1000),
(8923, 6153, '5911-6153', 1, '五股維興店', '{"number":"018855","shop":"\\u4e94\\u80a1\\u7dad\\u8208\\u5e97","phone":"0289813796","address":"\\u56db\\u7dad\\u8def\\uff17\\uff18\\u865f\\uff0e\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '018855', 'quanjia', 'zh-tw', 1000),
(8924, 6153, '5911-6153', 1, '五股五福店', '{"number":"013819","shop":"\\u4e94\\u80a1\\u4e94\\u798f\\u5e97","phone":"0282957618","address":"\\u4e94\\u798f\\u91cc\\u4e94\\u798f\\u8def\\uff12\\uff14\\u865f"}', '013819', 'quanjia', 'zh-tw', 1000),
(8925, 6153, '5911-6153', 1, '五股六福店', '{"number":"017211","shop":"\\u4e94\\u80a1\\u516d\\u798f\\u5e97","phone":"0222931649","address":"\\u4e94\\u798f\\u8def\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '017211', 'quanjia', 'zh-tw', 1000),
(8926, 6153, '5911-6153', 1, '五股五權店', '{"number":"016477","shop":"\\u4e94\\u80a1\\u4e94\\u6b0a\\u5e97","phone":"0222984246","address":"\\u4e94\\u5de5\\u4e94\\u8def\\uff13\\uff14\\u865f"}', '016477', 'quanjia', 'zh-tw', 1000),
(8927, 6153, '5911-6153', 1, '五股工商店', '{"number":"018113","shop":"\\u4e94\\u80a1\\u5de5\\u5546\\u5e97","phone":"0222933482","address":"\\u4e94\\u80a1\\u91cc\\u5de5\\u5546\\u8def\\uff18\\uff11\\u865f\\u53ca\\uff18\\uff13\\u865f"}', '018113', 'quanjia', 'zh-tw', 1000),
(8928, 6153, '5911-6153', 1, '五股金雲店', '{"number":"016943","shop":"\\u4e94\\u80a1\\u91d1\\u96f2\\u5e97","phone":"0222952906","address":"\\u897f\\u96f2\\u8def\\uff12\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '016943', 'quanjia', 'zh-tw', 1000),
(8929, 6153, '5911-6153', 1, '五股御雲店', '{"number":"016438","shop":"\\u4e94\\u80a1\\u5fa1\\u96f2\\u5e97","phone":"0222931757","address":"\\u897f\\u96f2\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '016438', 'quanjia', 'zh-tw', 1000),
(8930, 6153, '5911-6153', 1, '五股洲子洋店', '{"number":"016882","shop":"\\u4e94\\u80a1\\u6d32\\u5b50\\u6d0b\\u5e97","phone":"0222953856","address":"\\u65b0\\u57ce\\u516b\\u8def\\uff17\\uff12\\u865f\\uff11\\u6a13"}', '016882', 'quanjia', 'zh-tw', 1000),
(8931, 6153, '5911-6153', 1, '五股新五店', '{"number":"017853","shop":"\\u4e94\\u80a1\\u65b0\\u4e94\\u5e97","phone":"0222953177","address":"\\u65b0\\u4e94\\u8def\\u4e09\\u6bb5\\uff12\\uff15\\u865f\\uff11\\u6a13\\u90e8\\u4efd"}', '017853', 'quanjia', 'zh-tw', 1000),
(8932, 6153, '5911-6153', 1, '五股高亞店', '{"number":"016985","shop":"\\u4e94\\u80a1\\u9ad8\\u4e9e\\u5e97","phone":"0229844397","address":"\\u8208\\u73cd\\u91cc\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\uff14\\uff12\\u865f\\uff11\\uff14\\uff12\\u4e4b\\uff11\\u865f\\u4e00"}', '016985', 'quanjia', 'zh-tw', 1000),
(8933, 6153, '5911-6153', 1, '五股貿商店', '{"number":"015001","shop":"\\u4e94\\u80a1\\u8cbf\\u5546\\u5e97","phone":"0222936597","address":"\\u81ea\\u5f37\\u8def\\uff11\\uff15\\uff14\\u865f\\uff11\\u6a13"}', '015001', 'quanjia', 'zh-tw', 1000),
(8934, 6153, '5911-6153', 1, '五股自強店', '{"number":"013386","shop":"\\u4e94\\u80a1\\u81ea\\u5f37\\u5e97","phone":"0282921942","address":"\\u81ea\\u5f37\\u8def\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '013386', 'quanjia', 'zh-tw', 1000),
(8935, 6154, '5911-6154', 1, '汐止保興店', '{"number":"018582","shop":"\\u6c50\\u6b62\\u4fdd\\u8208\\u5e97","phone":"0286489793","address":"\\u4fdd\\u4e00\\u8857\\uff13\\uff19\\u865f"}', '018582', 'quanjia', 'zh-tw', 1000),
(8936, 6154, '5911-6154', 1, '汐止伯爵店', '{"number":"016528","shop":"\\u6c50\\u6b62\\u4f2f\\u7235\\u5e97","phone":"0226474757","address":"\\u4f2f\\u7235\\u8857\\uff15\\uff12\\u5df7\\uff11\\u865f\\u58f9\\u6a13\\u90e8\\u4efd"}', '016528', 'quanjia', 'zh-tw', 1000),
(8937, 6154, '5911-6154', 1, '汐止宏國店', '{"number":"015955","shop":"\\u6c50\\u6b62\\u5b8f\\u570b\\u5e97","phone":"0286923110","address":"\\u5927\\u540c\\u8def\\uff12\\u6bb5\\uff12\\uff18\\uff13\\u865f"}', '015955', 'quanjia', 'zh-tw', 1000),
(8938, 6154, '5911-6154', 1, '汐止龍安店', '{"number":"016735","shop":"\\u6c50\\u6b62\\u9f8d\\u5b89\\u5e97","phone":"0226490723","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\uff11\\uff18\\uff14\\u5df7\\uff11\\uff11\\u865f"}', '016735', 'quanjia', 'zh-tw', 1000),
(8939, 6154, '5911-6154', 1, '汐止智興店', '{"number":"016460","shop":"\\u6c50\\u6b62\\u667a\\u8208\\u5e97","phone":"0226490742","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\uff12\\uff10\\uff10\\u865f"}', '016460', 'quanjia', 'zh-tw', 1000),
(8940, 6154, '5911-6154', 1, '汐止經貿店', '{"number":"018247","shop":"\\u6c50\\u6b62\\u7d93\\u8cbf\\u5e97","phone":"0286473139","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\uff11\\uff19\\uff10\\u865f\\u58f9\\u6a13\\u90e8\\u4efd"}', '018247', 'quanjia', 'zh-tw', 1000),
(8941, 6154, '5911-6154', 1, '汐止大同店', '{"number":"014301","shop":"\\u6c50\\u6b62\\u5927\\u540c\\u5e97","phone":"0286486545","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\uff12\\uff16\\uff19\\uff0c\\uff12\\uff17\\uff11\\u865f"}', '014301', 'quanjia', 'zh-tw', 1000),
(8942, 6154, '5911-6154', 1, '汐止摩天店', '{"number":"018145","shop":"\\u6c50\\u6b62\\u6469\\u5929\\u5e97","phone":"0226905548","address":"\\u5927\\u540c\\u8def\\u4e09\\u6bb5\\uff16\\uff11\\uff11\\u4e4b\\uff13\\u865f\\u58f9\\u6a13"}', '018145', 'quanjia', 'zh-tw', 1000),
(8943, 6154, '5911-6154', 1, '汐止茂盛店', '{"number":"017139","shop":"\\u6c50\\u6b62\\u8302\\u76db\\u5e97","phone":"0226413633","address":"\\u5927\\u540c\\u8def\\u4e00\\u6bb5\\uff12\\uff12\\uff15\\u865f\\u58f9\\u6a13"}', '017139', 'quanjia', 'zh-tw', 1000),
(8944, 6154, '5911-6154', 1, '汐止興福店', '{"number":"018203","shop":"\\u6c50\\u6b62\\u8208\\u798f\\u5e97","phone":"0286932048","address":"\\u798f\\u5fb7\\u4e8c\\u8def\\uff11\\uff13\\uff14\\u865f"}', '018203', 'quanjia', 'zh-tw', 1000),
(8945, 6154, '5911-6154', 1, '汐止長虹店', '{"number":"016025","shop":"\\u6c50\\u6b62\\u9577\\u8679\\u5e97","phone":"0226948906","address":"\\u798f\\u5fb7\\u4e8c\\u8def\\uff18\\uff11\\uff0d\\uff11\\u865f"}', '016025', 'quanjia', 'zh-tw', 1000),
(8946, 6154, '5911-6154', 1, '汐止福旺店', '{"number":"017788","shop":"\\u6c50\\u6b62\\u798f\\u65fa\\u5e97","phone":"0286933934","address":"\\u798f\\u5fb7\\u4e00\\u8def\\uff11\\uff10\\uff19\\u865f"}', '017788', 'quanjia', 'zh-tw', 1000),
(8947, 6154, '5911-6154', 1, '汐止和平店', '{"number":"018090","shop":"\\u6c50\\u6b62\\u548c\\u5e73\\u5e97","phone":"0226439807","address":"\\u548c\\u5e73\\u8857\\uff14\\uff18\\u865f"}', '018090', 'quanjia', 'zh-tw', 1000),
(8948, 6154, '5911-6154', 1, '汐止新水蓮店', '{"number":"016217","shop":"\\u6c50\\u6b62\\u65b0\\u6c34\\u84ee\\u5e97","phone":"0226909465","address":"\\u6e56\\u524d\\u8857\\uff11\\uff11\\uff10\\u5df7\\uff19\\uff17\\u5f04\\uff12\\uff14\\u865f\\uff22\\uff11\\u4e4b\\uff11\\u4e4b\\uff12"}', '016217', 'quanjia', 'zh-tw', 1000),
(8949, 6154, '5911-6154', 1, '汐止建泰店', '{"number":"018392","shop":"\\u6c50\\u6b62\\u5efa\\u6cf0\\u5e97","phone":"0226902115","address":"\\u5efa\\u6210\\u8def\\uff15\\uff19\\u5df7\\uff12\\u865f\\uff08\\u570b\\u6cf0\\u91ab\\u9662\\u6c50\\u6b62\\u9662\\u5340\\uff09"}', '018392', 'quanjia', 'zh-tw', 1000),
(8950, 6154, '5911-6154', 1, '汐止建安店', '{"number":"015041","shop":"\\u6c50\\u6b62\\u5efa\\u5b89\\u5e97","phone":"0226418761","address":"\\u5efa\\u6210\\u8def\\uff15\\uff19\\u5df7\\uff19\\u865f\\uff0e\\uff11\\uff15\\u865f"}', '015041', 'quanjia', 'zh-tw', 1000),
(8951, 6154, '5911-6154', 1, '汐止鑫湖店', '{"number":"018035","shop":"\\u6c50\\u6b62\\u946b\\u6e56\\u5e97","phone":"0226922499","address":"\\u5eb7\\u5be7\\u8857\\uff11\\uff14\\uff11\\u5df7\\uff11\\uff18\\u865f\\u3000"}', '018035', 'quanjia', 'zh-tw', 1000),
(8952, 6154, '5911-6154', 1, '汐止康寧店', '{"number":"010629","shop":"\\u6c50\\u6b62\\u5eb7\\u5be7\\u5e97","phone":"0226959946","address":"\\u5eb7\\u5be7\\u8857\\uff11\\uff16\\uff19\\u5df7\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '010629', 'quanjia', 'zh-tw', 1000),
(8953, 6154, '5911-6154', 1, '汐止日月光店', '{"number":"018859","shop":"\\u6c50\\u6b62\\u65e5\\u6708\\u5149\\u5e97","phone":"0226486322","address":"\\u5eb7\\u5be7\\u8857\\uff17\\uff14\\uff17\\u865f\\uff0e\\uff17\\uff14\\uff19\\u865f"}', '018859', 'quanjia', 'zh-tw', 1000),
(8954, 6154, '5911-6154', 1, '汐止力行店', '{"number":"012879","shop":"\\u6c50\\u6b62\\u529b\\u884c\\u5e97","phone":"0226401386","address":"\\u529b\\u884c\\u8857\\uff11\\u865f"}', '012879', 'quanjia', 'zh-tw', 1000),
(8955, 6154, '5911-6154', 1, '汐止鑫峰店', '{"number":"018143","shop":"\\u6c50\\u6b62\\u946b\\u5cf0\\u5e97","phone":"0226953467","address":"\\u660e\\u5cf0\\u8857\\uff11\\uff16\\uff12\\u865f"}', '018143', 'quanjia', 'zh-tw', 1000),
(8956, 6154, '5911-6154', 1, '汐止站前店', '{"number":"014205","shop":"\\u6c50\\u6b62\\u7ad9\\u524d\\u5e97","phone":"0286923096","address":"\\u5357\\u660c\\u8857\\uff11\\uff16\\u865f"}', '014205', 'quanjia', 'zh-tw', 1000),
(8957, 6154, '5911-6154', 1, '汐止福全店', '{"number":"014806","shop":"\\u6c50\\u6b62\\u798f\\u5168\\u5e97","phone":"0226479466","address":"\\u4ec1\\u611b\\u8def\\uff11\\uff14\\uff19\\u865f"}', '014806', 'quanjia', 'zh-tw', 1000),
(8958, 6154, '5911-6154', 1, '汐止桂冠店', '{"number":"012878","shop":"\\u6c50\\u6b62\\u6842\\u51a0\\u5e97","phone":"0226474855","address":"\\u6c34\\u6e90\\u8def\\u4e8c\\u6bb5\\uff13\\uff14\\u865f"}', '012878', 'quanjia', 'zh-tw', 1000),
(8959, 6154, '5911-6154', 1, '汐止汐旺店', '{"number":"017961","shop":"\\u6c50\\u6b62\\u6c50\\u65fa\\u5e97","phone":"0226464086","address":"\\u6c50\\u842c\\u8def\\u4e00\\u6bb5\\uff13\\uff14\\uff13\\u5df7\\uff13\\uff13\\u865f"}', '017961', 'quanjia', 'zh-tw', 1000),
(8960, 6154, '5911-6154', 1, '汐止鄉長店', '{"number":"016026","shop":"\\u6c50\\u6b62\\u9109\\u9577\\u5e97","phone":"0226919409","address":"\\u9109\\u9577\\u8def\\u4e00\\u6bb5\\uff12\\uff17\\u865f\\u58f9\\u6a13\\u53ca\\u8cb3\\u6a13"}', '016026', 'quanjia', 'zh-tw', 1000),
(8961, 6154, '5911-6154', 1, '汐止祥雲店', '{"number":"014105","shop":"\\u6c50\\u6b62\\u7965\\u96f2\\u5e97","phone":"0226462022","address":"\\u7965\\u96f2\\u8857\\uff11\\u865f\\u58f9\\u6a13\\u90e8\\u4efd"}', '014105', 'quanjia', 'zh-tw', 1000),
(8962, 6154, '5911-6154', 1, '汐止連新店', '{"number":"018092","shop":"\\u6c50\\u6b62\\u9023\\u65b0\\u5e97","phone":"0226919772","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff11\\u865f\\u58f9\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '018092', 'quanjia', 'zh-tw', 1000),
(8963, 6154, '5911-6154', 1, '汐止青山店', '{"number":"018583","shop":"\\u6c50\\u6b62\\u9752\\u5c71\\u5e97","phone":"0226489817","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff12\\uff11\\uff12\\u865f\\uff1b\\uff12\\uff11\\uff12\\u4e4b\\uff11\\u865f"}', '018583', 'quanjia', 'zh-tw', 1000),
(8964, 6154, '5911-6154', 1, '汐止亞太二店', '{"number":"012413","shop":"\\u6c50\\u6b62\\u4e9e\\u592a\\u4e8c\\u5e97","phone":"0226960486","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff18\\uff12\\u81f3\\uff11\\uff11\\uff16\\u865f\\u3001\\uff24\\uff18\\u2014\\uff12\\u865f"}', '012413', 'quanjia', 'zh-tw', 1000),
(8965, 6154, '5911-6154', 1, '汐止遠雄店', '{"number":"013826","shop":"\\u6c50\\u6b62\\u9060\\u96c4\\u5e97","phone":"0226971106","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff19\\uff13\\u865f\\uff22\\uff11\\u6a13\\uff22\\uff11\\uff11\\uff13\\uff10\\uff10\\u865f"}', '013826', 'quanjia', 'zh-tw', 1000),
(8966, 6154, '5911-6154', 1, '汐止亞太店', '{"number":"012998","shop":"\\u6c50\\u6b62\\u4e9e\\u592a\\u5e97","phone":"0226969769","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff19\\uff16\\u865f\\uff23\\u68df"}', '012998', 'quanjia', 'zh-tw', 1000),
(8967, 6154, '5911-6154', 1, '汐止遠雄二店', '{"number":"018335","shop":"\\u6c50\\u6b62\\u9060\\u96c4\\u4e8c\\u5e97","phone":"0226975513","address":"\\u65b0\\u53f0\\u4e94\\u8def\\u4e00\\u6bb5\\uff19\\uff19\\u865f\\uff22\\uff11\\u6a13"}', '018335', 'quanjia', 'zh-tw', 1000),
(8968, 6154, '5911-6154', 1, '汐止新興店', '{"number":"014220","shop":"\\u6c50\\u6b62\\u65b0\\u8208\\u5e97","phone":"0226919264","address":"\\u65b0\\u8208\\u8def\\uff12\\uff11\\u53ca\\uff12\\uff13\\u865f"}', '014220', 'quanjia', 'zh-tw', 1000),
(8969, 6154, '5911-6154', 1, '汐止宜興店', '{"number":"018362","shop":"\\u6c50\\u6b62\\u5b9c\\u8208\\u5e97","phone":"0226606803","address":"\\u5b9c\\u8208\\u8857\\uff11\\uff12\\u865f"}', '018362', 'quanjia', 'zh-tw', 1000),
(8970, 6154, '5911-6154', 1, '汐止新樹店', '{"number":"015754","shop":"\\u6c50\\u6b62\\u65b0\\u6a39\\u5e97","phone":"0226487704","address":"\\u6a1f\\u6a39\\u4e8c\\u8def\\uff12\\uff17\\uff13\\u865f"}', '015754', 'quanjia', 'zh-tw', 1000),
(8971, 6154, '5911-6154', 1, '汐止樟中店', '{"number":"013502","shop":"\\u6c50\\u6b62\\u6a1f\\u4e2d\\u5e97","phone":"0286425058","address":"\\u6a1f\\u6a39\\u4e00\\u8def\\uff11\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '013502', 'quanjia', 'zh-tw', 1000),
(8972, 6154, '5911-6154', 1, '汐止樟興店', '{"number":"017988","shop":"\\u6c50\\u6b62\\u6a1f\\u8208\\u5e97","phone":"0226904033","address":"\\u6a1f\\u6a39\\u4e00\\u8def\\uff11\\uff16\\u865f\\uff0c\\uff11\\uff18\\u865f"}', '017988', 'quanjia', 'zh-tw', 1000),
(8973, 6154, '5911-6154', 1, '汐止樟福店', '{"number":"018614","shop":"\\u6c50\\u6b62\\u6a1f\\u798f\\u5e97","phone":"0286923181","address":"\\u6a1f\\u6a39\\u4e00\\u8def\\uff12\\uff12\\uff10\\u865f"}', '018614', 'quanjia', 'zh-tw', 1000),
(8974, 6154, '5911-6154', 1, '汐止興中店', '{"number":"013935","shop":"\\u6c50\\u6b62\\u8208\\u4e2d\\u5e97","phone":"0286933681","address":"\\u4e2d\\u8208\\u8def\\uff11\\uff15\\uff18\\u865f"}', '013935', 'quanjia', 'zh-tw', 1000),
(8975, 6154, '5911-6154', 1, '汐止農會店', '{"number":"017700","shop":"\\u6c50\\u6b62\\u8fb2\\u6703\\u5e97","phone":"0286916715","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '017700', 'quanjia', 'zh-tw', 1000),
(8976, 6154, '5911-6154', 1, '汐止秀峰店', '{"number":"018246","shop":"\\u6c50\\u6b62\\u79c0\\u5cf0\\u5e97","phone":"0226919425","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\uff12\\uff12\\uff18\\u865f"}', '018246', 'quanjia', 'zh-tw', 1000),
(8977, 6154, '5911-6154', 1, '汐止新忠孝店', '{"number":"016496","shop":"\\u6c50\\u6b62\\u65b0\\u5fe0\\u5b5d\\u5e97","phone":"0226919701","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\uff12\\uff15\\uff18\\u865f"}', '016496', 'quanjia', 'zh-tw', 1000),
(8978, 6154, '5911-6154', 1, '汐止橋東店', '{"number":"016049","shop":"\\u6c50\\u6b62\\u6a4b\\u6771\\u5e97","phone":"0286475279","address":"\\u5fe0\\u5b5d\\u6771\\u8def\\uff14\\uff10\\uff12\\u865f"}', '016049', 'quanjia', 'zh-tw', 1000),
(8979, 6154, '5911-6154', 1, '汐止莊敬店', '{"number":"018479","shop":"\\u6c50\\u6b62\\u838a\\u656c\\u5e97","phone":"0226435764","address":"\\u838a\\u656c\\u8857\\uff11\\uff13\\uff19\\u865f"}', '018479', 'quanjia', 'zh-tw', 1000),
(8980, 6154, '5911-6154', 1, '汐止興莊店', '{"number":"015249","shop":"\\u6c50\\u6b62\\u8208\\u838a\\u5e97","phone":"0286424336","address":"\\u838a\\u656c\\u8857\\uff13\\uff12\\u865f\\u58f9\\u6a13\\u5168\\u90e8"}', '015249', 'quanjia', 'zh-tw', 1000),
(8981, 6155, '5911-6155', 1, '新店德順店', '{"number":"018022","shop":"\\u65b0\\u5e97\\u5fb7\\u9806\\u5e97","phone":"0222121692","address":"\\u5b89\\u5fb7\\u8857\\uff11\\uff12\\uff10\\u5df7\\uff16\\u865f"}', '018022', 'quanjia', 'zh-tw', 1000),
(8982, 6155, '5911-6155', 1, '新店康德店', '{"number":"017527","shop":"\\u65b0\\u5e97\\u5eb7\\u5fb7\\u5e97","phone":"0222121574","address":"\\u5b89\\u5fb7\\u8857\\uff17\\uff11\\u5df7\\uff12\\u865f\\u3001\\uff14\\u865f\\uff11\\u6a13"}', '017527', 'quanjia', 'zh-tw', 1000),
(8983, 6155, '5911-6155', 1, '新店康橋店', '{"number":"017396","shop":"\\u65b0\\u5e97\\u5eb7\\u6a4b\\u5e97","phone":"0222140466","address":"\\u5b89\\u5eb7\\u8def\\uff13\\u6bb5\\uff17\\uff13\\uff18\\u865f\\u3001\\uff17\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '017396', 'quanjia', 'zh-tw', 1000),
(8984, 6155, '5911-6155', 1, '新店永安店', '{"number":"017930","shop":"\\u65b0\\u5e97\\u6c38\\u5b89\\u5e97","phone":"0286661942","address":"\\u5b89\\u5eb7\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff17\\u865f"}', '017930', 'quanjia', 'zh-tw', 1000),
(8985, 6155, '5911-6155', 1, '新店德安店', '{"number":"017097","shop":"\\u65b0\\u5e97\\u5fb7\\u5b89\\u5e97","phone":"0286663307","address":"\\u5b89\\u5eb7\\u8def\\u4e8c\\u6bb5\\uff13\\uff10\\uff13\\u865f"}', '017097', 'quanjia', 'zh-tw', 1000),
(8986, 6155, '5911-6155', 1, '新店城泰店', '{"number":"016027","shop":"\\u65b0\\u5e97\\u57ce\\u6cf0\\u5e97","phone":"0222143601","address":"\\u5b89\\u5eb7\\u8def\\u4e09\\u6bb5\\uff13\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '016027', 'quanjia', 'zh-tw', 1000),
(8987, 6155, '5911-6155', 1, '新店安順店', '{"number":"016968","shop":"\\u65b0\\u5e97\\u5b89\\u9806\\u5e97","phone":"0222121274","address":"\\u5b89\\u6c11\\u8857\\uff11\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '016968', 'quanjia', 'zh-tw', 1000),
(8988, 6155, '5911-6155', 1, '新店安民店', '{"number":"016629","shop":"\\u65b0\\u5e97\\u5b89\\u6c11\\u5e97","phone":"0286662484","address":"\\u5b89\\u6c11\\u8857\\uff11\\u865f\\uff11\\u6a13"}', '016629', 'quanjia', 'zh-tw', 1000),
(8989, 6155, '5911-6155', 1, '新店襄陽店', '{"number":"016835","shop":"\\u65b0\\u5e97\\u8944\\u967d\\u5e97","phone":"0282151522","address":"\\u5b89\\u7965\\u8def\\uff11\\uff10\\uff14\\uff0d\\uff11\\uff10\\u865f"}', '016835', 'quanjia', 'zh-tw', 1000),
(8990, 6155, '5911-6155', 1, '新店香坡店', '{"number":"018502","shop":"\\u65b0\\u5e97\\u9999\\u5761\\u5e97","phone":"0222005350","address":"\\u5b89\\u7965\\u8def\\uff11\\uff11\\uff13\\u865f\\uff0c\\uff11\\uff11\\uff15\\u865f"}', '018502', 'quanjia', 'zh-tw', 1000),
(8991, 6155, '5911-6155', 1, '新店陽光店', '{"number":"016527","shop":"\\u65b0\\u5e97\\u967d\\u5149\\u5e97","phone":"0286665549","address":"\\u5b89\\u5fe0\\u8def\\uff15\\uff17\\u5df7\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '016527', 'quanjia', 'zh-tw', 1000),
(8992, 6155, '5911-6155', 1, '新店景大店', '{"number":"017650","shop":"\\u65b0\\u5e97\\u666f\\u5927\\u5e97","phone":"0222123186","address":"\\u5b89\\u5fe0\\u8def\\uff19\\uff19\\u865f\\uff22\\uff12"}', '017650', 'quanjia', 'zh-tw', 1000),
(8993, 6155, '5911-6155', 1, '新店寶興店', '{"number":"015085","shop":"\\u65b0\\u5e97\\u5bf6\\u8208\\u5e97","phone":"0286654892","address":"\\u5bf6\\u6a4b\\u91cc\\u5bf6\\u6a4b\\u8def\\uff18\\uff10\\u865f\\u4e00\\u6a13"}', '015085', 'quanjia', 'zh-tw', 1000),
(8994, 6155, '5911-6155', 1, '新店富橋店', '{"number":"017926","shop":"\\u65b0\\u5e97\\u5bcc\\u6a4b\\u5e97","phone":"0229116281","address":"\\u5bf6\\u6a4b\\u8def\\uff11\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '017926', 'quanjia', 'zh-tw', 1000),
(8995, 6155, '5911-6155', 1, '新店橋興店', '{"number":"015043","shop":"\\u65b0\\u5e97\\u6a4b\\u8208\\u5e97","phone":"0289192388","address":"\\u5bf6\\u6a4b\\u8def\\uff12\\uff13\\uff15\\u5df7\\uff11\\uff12\\uff19\\u865f"}', '015043', 'quanjia', 'zh-tw', 1000),
(8996, 6155, '5911-6155', 1, '新店新寶工店', '{"number":"015825","shop":"\\u65b0\\u5e97\\u65b0\\u5bf6\\u5de5\\u5e97","phone":"0289145941","address":"\\u5bf6\\u6a4b\\u8def\\uff12\\uff13\\uff15\\u5df7\\uff18\\u865f"}', '015825', 'quanjia', 'zh-tw', 1000),
(8997, 6155, '5911-6155', 1, '新店新寶橋店', '{"number":"016969","shop":"\\u65b0\\u5e97\\u65b0\\u5bf6\\u6a4b\\u5e97","phone":"0229122431","address":"\\u5bf6\\u6a4b\\u8def\\uff15\\uff11\\u865f\\uff11\\uff0c\\uff12\\u6a13"}', '016969', 'quanjia', 'zh-tw', 1000),
(8998, 6155, '5911-6155', 1, '新店福興店', '{"number":"017173","shop":"\\u65b0\\u5e97\\u798f\\u8208\\u5e97","phone":"0229184961","address":"\\u5bf6\\u8208\\u8def\\uff14\\uff13\\u865f"}', '017173', 'quanjia', 'zh-tw', 1000),
(8999, 6155, '5911-6155', 1, '新店統寶店', '{"number":"015188","shop":"\\u65b0\\u5e97\\u7d71\\u5bf6\\u5e97","phone":"0289147339","address":"\\u5bf6\\u8208\\u8def\\uff14\\uff17\\u865f"}', '015188', 'quanjia', 'zh-tw', 1000),
(9000, 6155, '5911-6155', 1, '新店寶中店', '{"number":"017775","shop":"\\u65b0\\u5e97\\u5bf6\\u4e2d\\u5e97","phone":"0229117614","address":"\\u5bf6\\u4e2d\\u8def\\uff17\\uff17\\u865f"}', '017775', 'quanjia', 'zh-tw', 1000),
(9001, 6155, '5911-6155', 1, '新店七張站店', '{"number":"017307","shop":"\\u65b0\\u5e97\\u4e03\\u5f35\\u7ad9\\u5e97","phone":"0286657572","address":"\\u5317\\u65b0\\u8def\\uff12\\u6bb5\\uff11\\uff15\\uff10\\uff0d\\uff11\\u865f"}', '017307', 'quanjia', 'zh-tw', 1000),
(9002, 6155, '5911-6155', 1, '新店金采店', '{"number":"011778","shop":"\\u65b0\\u5e97\\u91d1\\u91c7\\u5e97","phone":"0289146548","address":"\\u5317\\u65b0\\u8def\\uff13\\u6bb5\\uff12\\uff11\\uff13\\u865f\\u65c1\\u58f9\\u6a13\\u90e8\\u4efd\\uff08\\u5982\\u9644\\u5716\\uff09"}', '011778', 'quanjia', 'zh-tw', 1000),
(9003, 6155, '5911-6155', 1, '新店忠誠店', '{"number":"014840","shop":"\\u65b0\\u5e97\\u5fe0\\u8aa0\\u5e97","phone":"0229158815","address":"\\u5317\\u65b0\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '014840', 'quanjia', 'zh-tw', 1000),
(9004, 6155, '5911-6155', 1, '新店長春店', '{"number":"015893","shop":"\\u65b0\\u5e97\\u9577\\u6625\\u5e97","phone":"0282171585","address":"\\u5317\\u5b9c\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '015893', 'quanjia', 'zh-tw', 1000),
(9005, 6155, '5911-6155', 1, '新店美譚店', '{"number":"018770","shop":"\\u65b0\\u5e97\\u7f8e\\u8b5a\\u5e97","phone":"0222171398","address":"\\u5317\\u5b9c\\u8def\\u4e8c\\u6bb5\\uff14\\uff11\\uff19\\u865f"}', '018770', 'quanjia', 'zh-tw', 1000),
(9006, 6155, '5911-6155', 1, '新店站前店', '{"number":"015727","shop":"\\u65b0\\u5e97\\u7ad9\\u524d\\u5e97","phone":"0229147259","address":"\\u5317\\u5b9c\\u8def\\u4e00\\u6bb5\\uff16\\u865f"}', '015727', 'quanjia', 'zh-tw', 1000),
(9007, 6155, '5911-6155', 1, '新店新陽店', '{"number":"012473","shop":"\\u65b0\\u5e97\\u65b0\\u967d\\u5e97","phone":"0226669640","address":"\\u7c97\\u5751\\u91cc\\u82b1\\u5712\\u4e00\\u8def\\u4e00\\u6bb5\\uff12\\u865f\\u4e00\\u6a13"}', '012473', 'quanjia', 'zh-tw', 1000),
(9008, 6155, '5911-6155', 1, '新店德正店', '{"number":"013151","shop":"\\u65b0\\u5e97\\u5fb7\\u6b63\\u5e97","phone":"0229126411","address":"\\u5fb7\\u6b63\\u8857\\uff12\\uff17\\u5df7\\uff11\\u865f"}', '013151', 'quanjia', 'zh-tw', 1000),
(9009, 6155, '5911-6155', 1, '新店慶民店', '{"number":"015483","shop":"\\u65b0\\u5e97\\u6176\\u6c11\\u5e97","phone":"0289193666","address":"\\u4e8c\\u5341\\u5f35\\u8def\\uff13\\u865f"}', '015483', 'quanjia', 'zh-tw', 1000),
(9010, 6155, '5911-6155', 1, '新店光盛店', '{"number":"017925","shop":"\\u65b0\\u5e97\\u5149\\u76db\\u5e97","phone":"0289147282","address":"\\u5149\\u660e\\u8857\\uff11\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '017925', 'quanjia', 'zh-tw', 1000),
(9011, 6155, '5911-6155', 1, '新店光明店', '{"number":"015565","shop":"\\u65b0\\u5e97\\u5149\\u660e\\u5e97","phone":"0286654542","address":"\\u5ee3\\u660e\\u91cc\\uff17\\u9130\\u5149\\u660e\\u8857\\uff11\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '015565', 'quanjia', 'zh-tw', 1000),
(9012, 6155, '5911-6155', 1, '新店江陵店', '{"number":"016583","shop":"\\u65b0\\u5e97\\u6c5f\\u9675\\u5e97","phone":"0222190529","address":"\\u5efa\\u570b\\u8def\\uff12\\uff11\\uff19\\u865f"}', '016583', 'quanjia', 'zh-tw', 1000),
(9013, 6155, '5911-6155', 1, '新店慈濟店', '{"number":"017776","shop":"\\u65b0\\u5e97\\u6148\\u6fdf\\u5e97","phone":"0282192878","address":"\\u5efa\\u570b\\u8def\\uff12\\uff18\\uff19\\u865f\\uff22\\uff11\\u6148\\u6fdf\\u91ab\\u9662\\u5927\\u611b\\u7f8e\\u98df\\u574a"}', '017776', 'quanjia', 'zh-tw', 1000),
(9014, 6155, '5911-6155', 1, '新店玫瑰店', '{"number":"013159","shop":"\\u65b0\\u5e97\\u73ab\\u7470\\u5e97","phone":"0222103956","address":"\\u73ab\\u7470\\u8def\\uff15\\uff18\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '013159', 'quanjia', 'zh-tw', 1000),
(9015, 6155, '5911-6155', 1, '新店民權店', '{"number":"015042","shop":"\\u65b0\\u5e97\\u6c11\\u6b0a\\u5e97","phone":"0286673437","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff10\\uff15\\u865f\\uff11\\u6a13"}', '015042', 'quanjia', 'zh-tw', 1000),
(9016, 6155, '5911-6155', 1, '新店復興店', '{"number":"018336","shop":"\\u65b0\\u5e97\\u5fa9\\u8208\\u5e97","phone":"0222184982","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '018336', 'quanjia', 'zh-tw', 1000),
(9017, 6155, '5911-6155', 1, '新店寶元店', '{"number":"018645","shop":"\\u65b0\\u5e97\\u5bf6\\u5143\\u5e97","phone":"0229156106","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff19\\u865f"}', '018645', 'quanjia', 'zh-tw', 1000),
(9018, 6155, '5911-6155', 1, '新店民佳店', '{"number":"015726","shop":"\\u65b0\\u5e97\\u6c11\\u4f73\\u5e97","phone":"0286658005","address":"\\u6c11\\u6b0a\\u8def\\uff17\\uff12\\u865f"}', '015726', 'quanjia', 'zh-tw', 1000),
(9019, 6155, '5911-6155', 1, '新店民德店', '{"number":"010926","shop":"\\u65b0\\u5e97\\u6c11\\u5fb7\\u5e97","phone":"0289113923","address":"\\u6c11\\u65cf\\u8def\\uff16\\u865f"}', '010926', 'quanjia', 'zh-tw', 1000),
(9020, 6155, '5911-6155', 1, '新店新民族店', '{"number":"016232","shop":"\\u65b0\\u5e97\\u65b0\\u6c11\\u65cf\\u5e97","phone":"0229137896","address":"\\u6c11\\u65cf\\u8def\\uff19\\uff17\\u865f\\uff11\\u6a13\\uff0b\\u5730\\u4e0b\\u5ba4"}', '016232', 'quanjia', 'zh-tw', 1000),
(9021, 6155, '5911-6155', 1, '新店健民店', '{"number":"014698","shop":"\\u65b0\\u5e97\\u5065\\u6c11\\u5e97","phone":"0229162699","address":"\\u660e\\u5fb7\\u8def\\uff16\\uff19\\u5df7\\uff12\\uff18\\u865f"}', '014698', 'quanjia', 'zh-tw', 1000),
(9022, 6155, '5911-6155', 1, '新店僑信店', '{"number":"017862","shop":"\\u65b0\\u5e97\\u50d1\\u4fe1\\u5e97","phone":"0222143950","address":"\\u50d1\\u4fe1\\u8def\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '017862', 'quanjia', 'zh-tw', 1000),
(9023, 6155, '5911-6155', 1, '新店如意店', '{"number":"014071","shop":"\\u65b0\\u5e97\\u5982\\u610f\\u5e97","phone":"0222101261","address":"\\u5982\\u610f\\u8857\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '014071', 'quanjia', 'zh-tw', 1000),
(9024, 6155, '5911-6155', 1, '新店三福店', '{"number":"013815","shop":"\\u65b0\\u5e97\\u4e09\\u798f\\u5e97","phone":"0229188975","address":"\\u4e09\\u6c11\\u8def\\uff17\\uff17\\u865f"}', '013815', 'quanjia', 'zh-tw', 1000),
(9025, 6155, '5911-6155', 1, '新店新文強店', '{"number":"016113","shop":"\\u65b0\\u5e97\\u65b0\\u6587\\u5f37\\u5e97","phone":"0229107458","address":"\\u6587\\u5316\\u8def\\uff11\\uff17\\u865f"}', '016113', 'quanjia', 'zh-tw', 1000),
(9026, 6155, '5911-6155', 1, '新店鑫泉店', '{"number":"015316","shop":"\\u65b0\\u5e97\\u946b\\u6cc9\\u5e97","phone":"0286677615","address":"\\u6eaa\\u5712\\u8def\\uff14\\uff10\\uff11\\u865f"}', '015316', 'quanjia', 'zh-tw', 1000),
(9027, 6155, '5911-6155', 1, '新店龜山店', '{"number":"012835","shop":"\\u65b0\\u5e97\\u9f9c\\u5c71\\u5e97","phone":"0226666253","address":"\\u65b0\\u70cf\\u8def\\u4e09\\u6bb5\\uff11\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '012835', 'quanjia', 'zh-tw', 1000),
(9028, 6155, '5911-6155', 1, '新店新和店', '{"number":"012128","shop":"\\u65b0\\u5e97\\u65b0\\u548c\\u5e97","phone":"0229413706","address":"\\u6c38\\u5b89\\u8857\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '012128', 'quanjia', 'zh-tw', 1000),
(9029, 6155, '5911-6155', 1, '新店安和店', '{"number":"015562","shop":"\\u65b0\\u5e97\\u5b89\\u548c\\u5e97","phone":"0229475039","address":"\\u6c38\\u5e73\\u8857\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '015562', 'quanjia', 'zh-tw', 1000),
(9030, 6155, '5911-6155', 1, '新店皇家店', '{"number":"015890","shop":"\\u65b0\\u5e97\\u7687\\u5bb6\\u5e97","phone":"0229499704","address":"\\u6c38\\u5e73\\u91cc\\u6c38\\u5e73\\u8857\\uff12\\uff17\\u865f\\u4e00\\u6a13"}', '015890', 'quanjia', 'zh-tw', 1000),
(9031, 6155, '5911-6155', 1, '新店永業店', '{"number":"017701","shop":"\\u65b0\\u5e97\\u6c38\\u696d\\u5e97","phone":"0229131378","address":"\\u6c38\\u696d\\u8def\\uff18\\uff11\\u5df7\\uff11\\u5f04\\uff11\\u865f"}', '017701', 'quanjia', 'zh-tw', 1000),
(9032, 6155, '5911-6155', 1, '新店中華店', '{"number":"015122","shop":"\\u65b0\\u5e97\\u4e2d\\u83ef\\u5e97","phone":"0286658913","address":"\\u4e2d\\u83ef\\u8def\\uff15\\uff10\\u865f"}', '015122', 'quanjia', 'zh-tw', 1000),
(9033, 6155, '5911-6155', 1, '新店溪園店', '{"number":"014692","shop":"\\u65b0\\u5e97\\u6eaa\\u5712\\u5e97","phone":"0282189189","address":"\\u4e2d\\u5c71\\u91cc\\u6eaa\\u5712\\u8def\\uff13\\uff18\\uff19\\u865f\\u4e00\\u6a13"}', '014692', 'quanjia', 'zh-tw', 1000),
(9034, 6155, '5911-6155', 1, '新店富強店', '{"number":"013061","shop":"\\u65b0\\u5e97\\u5bcc\\u5f37\\u5e97","phone":"0289145943","address":"\\u4e2d\\u8208\\u8def\\uff13\\u6bb5\\uff11\\uff15\\uff16\\u865f"}', '013061', 'quanjia', 'zh-tw', 1000),
(9035, 6155, '5911-6155', 1, '新店新寶安店', '{"number":"018051","shop":"\\u65b0\\u5e97\\u65b0\\u5bf6\\u5b89\\u5e97","phone":"0229157211","address":"\\u4e2d\\u8208\\u8def\\u4e09\\u6bb5\\uff12\\uff10\\uff19\\u865f"}', '018051', 'quanjia', 'zh-tw', 1000),
(9036, 6155, '5911-6155', 1, '新店福民店', '{"number":"013020","shop":"\\u65b0\\u5e97\\u798f\\u6c11\\u5e97","phone":"0222194351","address":"\\u4e2d\\u592e\\u8def\\uff11\\uff14\\uff15\\u865f"}', '013020', 'quanjia', 'zh-tw', 1000),
(9037, 6155, '5911-6155', 1, '新店新中央店', '{"number":"017773","shop":"\\u65b0\\u5e97\\u65b0\\u4e2d\\u592e\\u5e97","phone":"0222197580","address":"\\u4e2d\\u592e\\u8def\\uff16\\uff13\\u865f"}', '017773', 'quanjia', 'zh-tw', 1000),
(9038, 6155, '5911-6155', 1, '新店正民店', '{"number":"018839","shop":"\\u65b0\\u5e97\\u6b63\\u6c11\\u5e97","phone":"0229137185","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff12\\uff14\\u865f"}', '018839', 'quanjia', 'zh-tw', 1000),
(9039, 6155, '5911-6155', 1, '新店正中店', '{"number":"018091","shop":"\\u65b0\\u5e97\\u6b63\\u4e2d\\u5e97","phone":"0222195702","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff16\\uff16\\u865f"}', '018091', 'quanjia', 'zh-tw', 1000),
(9040, 6155, '5911-6155', 1, '新店中欣店', '{"number":"013251","shop":"\\u65b0\\u5e97\\u4e2d\\u6b23\\u5e97","phone":"0229156887","address":"\\u4e2d\\u6b63\\u8def\\uff13\\u865f"}', '013251', 'quanjia', 'zh-tw', 1000),
(9041, 6155, '5911-6155', 1, '新店新百合店', '{"number":"015406","shop":"\\u65b0\\u5e97\\u65b0\\u767e\\u5408\\u5e97","phone":"0222199017","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff10\\uff14\\u865f"}', '015406', 'quanjia', 'zh-tw', 1000),
(9042, 6155, '5911-6155', 1, '新店中盛店', '{"number":"017303","shop":"\\u65b0\\u5e97\\u4e2d\\u76db\\u5e97","phone":"0286673532","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff19\\uff13\\uff0d\\uff12\\u865f\\uff11\\u6a13"}', '017303', 'quanjia', 'zh-tw', 1000),
(9043, 6155, '5911-6155', 1, '新店莊敬店', '{"number":"014690","shop":"\\u65b0\\u5e97\\u838a\\u656c\\u5e97","phone":"0282193280","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff12\\uff13\\u865f"}', '014690', 'quanjia', 'zh-tw', 1000),
(9044, 6155, '5911-6155', 1, '新店五豐店', '{"number":"016352","shop":"\\u65b0\\u5e97\\u4e94\\u8c50\\u5e97","phone":"0289145746","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff19\\u865f"}', '016352', 'quanjia', 'zh-tw', 1000),
(9045, 6155, '5911-6155', 1, '新店大鵬店', '{"number":"012877","shop":"\\u65b0\\u5e97\\u5927\\u9d6c\\u5e97","phone":"0222184729","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff19\\uff18\\u865f"}', '012877', 'quanjia', 'zh-tw', 1000),
(9046, 6156, '5911-6156', 1, '新莊新德勝店', '{"number":"017019","shop":"\\u65b0\\u838a\\u65b0\\u5fb7\\u52dd\\u5e97","phone":"0222014708","address":"\\u516b\\u5fb7\\u8857\\uff11\\uff13\\uff15\\u865f"}', '017019', 'quanjia', 'zh-tw', 1000),
(9047, 6156, '5911-6156', 1, '新莊八德店', '{"number":"017256","shop":"\\u65b0\\u838a\\u516b\\u5fb7\\u5e97","phone":"0222014759","address":"\\u516b\\u5fb7\\u8857\\uff11\\uff15\\u5df7\\uff12\\u865f\\uff0c\\uff11\\uff17\\u865f"}', '017256', 'quanjia', 'zh-tw', 1000),
(9048, 6156, '5911-6156', 1, '新莊昌平店', '{"number":"016436","shop":"\\u65b0\\u838a\\u660c\\u5e73\\u5e97","phone":"0229906374","address":"\\u660c\\u5e73\\u8857\\uff15\\uff10\\u865f"}', '016436', 'quanjia', 'zh-tw', 1000),
(9049, 6156, '5911-6156', 1, '新莊頭前店', '{"number":"016776","shop":"\\u65b0\\u838a\\u982d\\u524d\\u5e97","phone":"0285217886","address":"\\u660c\\u5e73\\u91cc\\u601d\\u6e90\\u8def\\uff15\\uff19\\uff15\\u865f\\u4e00\\u6a13"}', '016776', 'quanjia', 'zh-tw', 1000),
(9050, 6156, '5911-6156', 1, '新莊金豐店', '{"number":"015960","shop":"\\u65b0\\u838a\\u91d1\\u8c50\\u5e97","phone":"0222069828","address":"\\u8c50\\u5e74\\u8857\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '015960', 'quanjia', 'zh-tw', 1000),
(9051, 6156, '5911-6156', 1, '新莊福基店', '{"number":"012152","shop":"\\u65b0\\u838a\\u798f\\u57fa\\u5e97","phone":"0285211601","address":"\\u798f\\u57fa\\u91cc\\u5316\\u6210\\u8def\\uff18\\uff11\\uff12\\u865f"}', '012152', 'quanjia', 'zh-tw', 1000),
(9052, 6156, '5911-6156', 1, '新莊新福義店', '{"number":"014457","shop":"\\u65b0\\u838a\\u65b0\\u798f\\u7fa9\\u5e97","phone":"0229964281","address":"\\u798f\\u58fd\\u8857\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '014457', 'quanjia', 'zh-tw', 1000),
(9053, 6156, '5911-6156', 1, '新莊仁義店', '{"number":"015961","shop":"\\u65b0\\u838a\\u4ec1\\u7fa9\\u5e97","phone":"0229962848","address":"\\u798f\\u58fd\\u8857\\uff13\\uff18\\u865f\\uff11\\uff26"}', '015961', 'quanjia', 'zh-tw', 1000),
(9054, 6156, '5911-6156', 1, '新莊福祿店', '{"number":"018907","shop":"\\u65b0\\u838a\\u798f\\u797f\\u5e97","phone":"0289938193","address":"\\u798f\\u58fd\\u8857\\uff18\\uff11\\u865f\\uff11\\u6a13"}', '018907', 'quanjia', 'zh-tw', 1000),
(9055, 6156, '5911-6156', 1, '新莊新工店', '{"number":"018745","shop":"\\u65b0\\u838a\\u65b0\\u5de5\\u5e97","phone":"0222989786","address":"\\u798f\\u8208\\u91cc\\u4e94\\u5de5\\u4e8c\\u8def\\uff18\\uff11\\u865f\\u4e00\\u6a13"}', '018745', 'quanjia', 'zh-tw', 1000),
(9056, 6156, '5911-6156', 1, '新莊福樂店', '{"number":"015827","shop":"\\u65b0\\u838a\\u798f\\u6a02\\u5e97","phone":"0289923468","address":"\\u798f\\u6a02\\u8857\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '015827', 'quanjia', 'zh-tw', 1000),
(9057, 6156, '5911-6156', 1, '新莊金富店', '{"number":"018757","shop":"\\u65b0\\u838a\\u91d1\\u5bcc\\u5e97","phone":"0222023655","address":"\\u5bcc\\u570b\\u8def\\uff11\\uff17\\uff16\\u5df7\\uff17\\u865f\\uff11\\u6a13"}', '018757', 'quanjia', 'zh-tw', 1000),
(9058, 6156, '5911-6156', 1, '新莊明中店', '{"number":"011756","shop":"\\u65b0\\u838a\\u660e\\u4e2d\\u5e97","phone":"0229937198","address":"\\u6046\\u5b89\\u91cc\\u660e\\u4e2d\\u8857\\uff14\\uff15\\u865f\\u4e4b\\uff12\\u4e00\\u6a13"}', '011756', 'quanjia', 'zh-tw', 1000),
(9059, 6156, '5911-6156', 1, '新莊新建明店', '{"number":"018306","shop":"\\u65b0\\u838a\\u65b0\\u5efa\\u660e\\u5e97","phone":"0222048981","address":"\\u5f8c\\u6e2f\\u4e00\\u8def\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '018306', 'quanjia', 'zh-tw', 1000),
(9060, 6156, '5911-6156', 1, '新莊新市店', '{"number":"014920","shop":"\\u65b0\\u838a\\u65b0\\u5e02\\u5e97","phone":"0285212417","address":"\\u5316\\u6210\\u8def\\uff14\\uff13\\uff11\\u5df7\\uff17\\uff16\\u865f"}', '014920', 'quanjia', 'zh-tw', 1000),
(9061, 6156, '5911-6156', 1, '新莊福成店', '{"number":"014648","shop":"\\u65b0\\u838a\\u798f\\u6210\\u5e97","phone":"0229948672","address":"\\u5316\\u6210\\u8def\\uff15\\uff15\\uff12\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '014648', 'quanjia', 'zh-tw', 1000),
(9062, 6156, '5911-6156', 1, '新莊樹成店', '{"number":"017370","shop":"\\u65b0\\u838a\\u6a39\\u6210\\u5e97","phone":"0285214163","address":"\\u5316\\u6210\\u8def\\uff17\\uff13\\uff18\\u865f"}', '017370', 'quanjia', 'zh-tw', 1000),
(9063, 6156, '5911-6156', 1, '新莊建興店', '{"number":"016179","shop":"\\u65b0\\u838a\\u5efa\\u8208\\u5e97","phone":"0222015482","address":"\\u5efa\\u5b89\\u8857\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '016179', 'quanjia', 'zh-tw', 1000),
(9064, 6156, '5911-6156', 1, '新莊建安店', '{"number":"011562","shop":"\\u65b0\\u838a\\u5efa\\u5b89\\u5e97","phone":"0222044299","address":"\\u5efa\\u5b89\\u8857\\uff14\\uff12\\u865f"}', '011562', 'quanjia', 'zh-tw', 1000),
(9065, 6156, '5911-6156', 1, '新莊學輔店', '{"number":"014145","shop":"\\u65b0\\u838a\\u5b78\\u8f14\\u5e97","phone":"0229018239","address":"\\u5efa\\u570b\\u4e00\\u8def\\uff12\\u865f"}', '014145', 'quanjia', 'zh-tw', 1000),
(9066, 6156, '5911-6156', 1, '新莊建國店', '{"number":"015298","shop":"\\u65b0\\u838a\\u5efa\\u570b\\u5e97","phone":"0229081905","address":"\\u5efa\\u570b\\u4e00\\u8def\\uff14\\uff19\\u865f\\uff11\\u6a13\\u53f3\\u534a"}', '015298', 'quanjia', 'zh-tw', 1000),
(9067, 6156, '5911-6156', 1, '新莊新園寧店', '{"number":"012608","shop":"\\u65b0\\u838a\\u65b0\\u5712\\u5be7\\u5e97","phone":"0229949325","address":"\\u5efa\\u8208\\u8857\\uff11\\uff10\\uff11\\u865f"}', '012608', 'quanjia', 'zh-tw', 1000),
(9068, 6156, '5911-6156', 1, '新莊建中店', '{"number":"014580","shop":"\\u65b0\\u838a\\u5efa\\u4e2d\\u5e97","phone":"0222779137","address":"\\u5efa\\u4e2d\\u8857\\uff11\\uff11\\uff18\\u865f\\u3001\\uff11\\uff12\\uff10\\u865f\\u3001\\uff11\\uff12\\uff12\\u865f"}', '014580', 'quanjia', 'zh-tw', 1000),
(9069, 6156, '5911-6156', 1, '新莊景德店', '{"number":"014156","shop":"\\u65b0\\u838a\\u666f\\u5fb7\\u5e97","phone":"0222064530","address":"\\u666f\\u5fb7\\u8def\\uff13\\uff18\\uff12\\u865f"}', '014156', 'quanjia', 'zh-tw', 1000),
(9070, 6156, '5911-6156', 1, '新莊立信店', '{"number":"017020","shop":"\\u65b0\\u838a\\u7acb\\u4fe1\\u5e97","phone":"0229982115","address":"\\u7acb\\u4fe1\\u4e00\\u8857\\uff11\\uff12\\u865f"}', '017020', 'quanjia', 'zh-tw', 1000),
(9071, 6156, '5911-6156', 1, '新莊正龍店', '{"number":"018135","shop":"\\u65b0\\u838a\\u6b63\\u9f8d\\u5e97","phone":"0229046684","address":"\\u9f8d\\u5b89\\u8def\\uff19\\u865f\\uff11\\u6a13"}', '018135', 'quanjia', 'zh-tw', 1000),
(9072, 6156, '5911-6156', 1, '新莊富安店', '{"number":"017995","shop":"\\u65b0\\u838a\\u5bcc\\u5b89\\u5e97","phone":"0222046753","address":"\\u6c11\\u5b89\\u8def\\uff12\\uff18\\uff15\\u4e4b\\uff11\\u865f"}', '017995', 'quanjia', 'zh-tw', 1000),
(9073, 6156, '5911-6156', 1, '新莊民和店', '{"number":"018600","shop":"\\u65b0\\u838a\\u6c11\\u548c\\u5e97","phone":"0222049299","address":"\\u6c11\\u5b89\\u897f\\u8def\\uff12\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '018600', 'quanjia', 'zh-tw', 1000),
(9074, 6156, '5911-6156', 1, '新莊民本店', '{"number":"012111","shop":"\\u65b0\\u838a\\u6c11\\u672c\\u5e97","phone":"0222032338","address":"\\u6c11\\u672c\\u8857\\uff12\\uff13\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '012111', 'quanjia', 'zh-tw', 1000),
(9075, 6156, '5911-6156', 1, '新莊瓊泰店', '{"number":"018345","shop":"\\u65b0\\u838a\\u74ca\\u6cf0\\u5e97","phone":"0222049577","address":"\\u74ca\\u6cf0\\u8def\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '018345', 'quanjia', 'zh-tw', 1000),
(9076, 6156, '5911-6156', 1, '新莊城市店', '{"number":"018508","shop":"\\u65b0\\u838a\\u57ce\\u5e02\\u5e97","phone":"0222046595","address":"\\u6a39\\u65b0\\u8def\\uff12\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '018508', 'quanjia', 'zh-tw', 1000),
(9077, 6156, '5911-6156', 1, '新莊祥鳳店', '{"number":"016518","shop":"\\u65b0\\u838a\\u7965\\u9cf3\\u5e97","phone":"0229022674","address":"\\u96d9\\u9cf3\\u8def\\uff11\\uff10\\uff16\\uff0d\\uff11\\u865f"}', '016518', 'quanjia', 'zh-tw', 1000),
(9078, 6156, '5911-6156', 1, '新莊三鳳店', '{"number":"016802","shop":"\\u65b0\\u838a\\u4e09\\u9cf3\\u5e97","phone":"0229080840","address":"\\u96d9\\u9cf3\\u8def\\uff11\\uff13\\uff10\\u865f"}', '016802', 'quanjia', 'zh-tw', 1000),
(9079, 6156, '5911-6156', 1, '新莊北醫店', '{"number":"012848","shop":"\\u65b0\\u838a\\u5317\\u91ab\\u5e97","phone":"0229944981","address":"\\u601d\\u6e90\\u8def\\uff11\\uff12\\uff17\\u865f"}', '012848', 'quanjia', 'zh-tw', 1000),
(9080, 6156, '5911-6156', 1, '新莊維新店', '{"number":"017683","shop":"\\u65b0\\u838a\\u7dad\\u65b0\\u5e97","phone":"0222041652","address":"\\u56db\\u7dad\\u8def\\uff11\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '017683', 'quanjia', 'zh-tw', 1000),
(9081, 6156, '5911-6156', 1, '新莊德祐店', '{"number":"017910","shop":"\\u65b0\\u838a\\u5fb7\\u7950\\u5e97","phone":"0222083680","address":"\\u56db\\u7dad\\u8def\\uff11\\uff15\\uff10\\u5df7\\uff19\\u865f\\uff11\\u6a13"}', '017910', 'quanjia', 'zh-tw', 1000),
(9082, 6156, '5911-6156', 1, '新莊新雙鳳店', '{"number":"014082","shop":"\\u65b0\\u838a\\u65b0\\u96d9\\u9cf3\\u5e97","phone":"0229011246","address":"\\u5929\\u7965\\u8857\\uff12\\u865f"}', '014082', 'quanjia', 'zh-tw', 1000),
(9083, 6156, '5911-6156', 1, '新莊天美店', '{"number":"013499","shop":"\\u65b0\\u838a\\u5929\\u7f8e\\u5e97","phone":"0229030732","address":"\\u5929\\u7965\\u8857\\uff14\\uff12\\u865f\\uff11\\u6a13"}', '013499', 'quanjia', 'zh-tw', 1000),
(9084, 6156, '5911-6156', 1, '新莊萬安店', '{"number":"013410","shop":"\\u65b0\\u838a\\u842c\\u5b89\\u5e97","phone":"0222037583","address":"\\u842c\\u5b89\\u8857\\uff18\\uff10\\u865f"}', '013410', 'quanjia', 'zh-tw', 1000),
(9085, 6156, '5911-6156', 1, '新莊盛寧店', '{"number":"013693","shop":"\\u65b0\\u838a\\u76db\\u5be7\\u5e97","phone":"0222030264","address":"\\u897f\\u76db\\u8857\\uff11\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '013693', 'quanjia', 'zh-tw', 1000),
(9086, 6156, '5911-6156', 1, '新莊興盛店', '{"number":"018231","shop":"\\u65b0\\u838a\\u8208\\u76db\\u5e97","phone":"0222047033","address":"\\u897f\\u76db\\u8857\\uff12\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '018231', 'quanjia', 'zh-tw', 1000),
(9087, 6156, '5911-6156', 1, '新莊盛華店', '{"number":"015641","shop":"\\u65b0\\u838a\\u76db\\u83ef\\u5e97","phone":"0222046755","address":"\\u897f\\u76db\\u8857\\uff13\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '015641', 'quanjia', 'zh-tw', 1000),
(9088, 6156, '5911-6156', 1, '新莊天成店', '{"number":"013365","shop":"\\u65b0\\u838a\\u5929\\u6210\\u5e97","phone":"0229018545","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e03\\u6bb5\\uff12\\uff11\\uff19\\u865f"}', '013365', 'quanjia', 'zh-tw', 1000),
(9089, 6156, '5911-6156', 1, '新莊城邦店', '{"number":"017645","shop":"\\u65b0\\u838a\\u57ce\\u90a6\\u5e97","phone":"0285216513","address":"\\u65b0\\u5317\\u5927\\u9053\\u4e09\\u6bb5\\uff17\\u865f\\uff11\\u6a13"}', '017645', 'quanjia', 'zh-tw', 1000),
(9090, 6156, '5911-6156', 1, '新莊通樹店', '{"number":"018641","shop":"\\u65b0\\u838a\\u901a\\u6a39\\u5e97","phone":"0222043156","address":"\\u65b0\\u6a39\\u8def\\uff12\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '018641', 'quanjia', 'zh-tw', 1000),
(9091, 6156, '5911-6156', 1, '新莊新樹店', '{"number":"013771","shop":"\\u65b0\\u838a\\u65b0\\u6a39\\u5e97","phone":"0222075970","address":"\\u65b0\\u6a39\\u8def\\uff16\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '013771', 'quanjia', 'zh-tw', 1000),
(9092, 6156, '5911-6156', 1, '新莊新泰店', '{"number":"017968","shop":"\\u65b0\\u838a\\u65b0\\u6cf0\\u5e97","phone":"0229972384","address":"\\u65b0\\u6cf0\\u8def\\uff11\\uff14\\uff16\\u865f"}', '017968', 'quanjia', 'zh-tw', 1000),
(9093, 6156, '5911-6156', 1, '新莊新立店', '{"number":"013951","shop":"\\u65b0\\u838a\\u65b0\\u7acb\\u5e97","phone":"0229922460","address":"\\u65b0\\u6cf0\\u8def\\uff12\\uff12\\uff15\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '013951', 'quanjia', 'zh-tw', 1000),
(9094, 6156, '5911-6156', 1, '新莊金泰店', '{"number":"014948","shop":"\\u65b0\\u838a\\u91d1\\u6cf0\\u5e97","phone":"0229902069","address":"\\u65b0\\u6cf0\\u8def\\uff13\\uff10\\uff15\\u5df7\\uff11\\u865f\\uff11\\u6a13"}', '014948', 'quanjia', 'zh-tw', 1000),
(9095, 6156, '5911-6156', 1, '新莊泰豐店', '{"number":"017043","shop":"\\u65b0\\u838a\\u6cf0\\u8c50\\u5e97","phone":"0222026118","address":"\\u65b0\\u6cf0\\u8def\\uff13\\u5df7\\uff11\\u865f"}', '017043', 'quanjia', 'zh-tw', 1000),
(9096, 6156, '5911-6156', 1, '新莊武廟店', '{"number":"018182","shop":"\\u65b0\\u838a\\u6b66\\u5edf\\u5e97","phone":"0229975613","address":"\\u65b0\\u838a\\u8def\\uff14\\uff13\\uff15\\u865f\\uff0c\\uff14\\uff13\\uff15\\u865f\\u4e4b\\uff11"}', '018182', 'quanjia', 'zh-tw', 1000),
(9097, 6156, '5911-6156', 1, '新莊海山店', '{"number":"016586","shop":"\\u65b0\\u838a\\u6d77\\u5c71\\u5e97","phone":"0222042064","address":"\\u65b0\\u838a\\u8def\\uff17\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '016586', 'quanjia', 'zh-tw', 1000),
(9098, 6156, '5911-6156', 1, '新莊昌盛店', '{"number":"016226","shop":"\\u65b0\\u838a\\u660c\\u76db\\u5e97","phone":"0222764464","address":"\\u5e78\\u798f\\u91cc\\u660c\\u76db\\u8857\\uff16\\uff17\\u865f\\u4e00\\u6a13"}', '016226', 'quanjia', 'zh-tw', 1000),
(9099, 6156, '5911-6156', 1, '新莊裕民店', '{"number":"014809","shop":"\\u65b0\\u838a\\u88d5\\u6c11\\u5e97","phone":"0229017969","address":"\\u88d5\\u6c11\\u8857\\uff19\\uff17\\u865f\\uff11\\u6a13"}', '014809', 'quanjia', 'zh-tw', 1000),
(9100, 6156, '5911-6156', 1, '新莊中港店', '{"number":"016775","shop":"\\u65b0\\u838a\\u4e2d\\u6e2f\\u5e97","phone":"0229944832","address":"\\u4e2d\\u6e2f\\u8def\\uff11\\uff12\\uff16\\u865f"}', '016775', 'quanjia', 'zh-tw', 1000),
(9101, 6156, '5911-6156', 1, '新莊中美店', '{"number":"011855","shop":"\\u65b0\\u838a\\u4e2d\\u7f8e\\u5e97","phone":"0222796927","address":"\\u4e2d\\u6e2f\\u8def\\uff14\\uff11\\uff13\\uff06\\uff14\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '011855', 'quanjia', 'zh-tw', 1000),
(9102, 6156, '5911-6156', 1, '新莊新和港店', '{"number":"018419","shop":"\\u65b0\\u838a\\u65b0\\u548c\\u6e2f\\u5e97","phone":"0229938945","address":"\\u4e2d\\u6e2f\\u4e00\\u8857\\uff11\\uff14\\uff13\\u865f"}', '018419', 'quanjia', 'zh-tw', 1000),
(9103, 6156, '5911-6156', 1, '新莊中環店', '{"number":"016268","shop":"\\u65b0\\u838a\\u4e2d\\u74b0\\u5e97","phone":"0229906924","address":"\\u4e2d\\u548c\\u8857\\uff11\\uff15\\uff15\\u5df7\\uff12\\u865f\\uff11\\u6a13\\uff0b\\uff12\\u6a13\\u90e8\\u5206"}', '016268', 'quanjia', 'zh-tw', 1000),
(9104, 6156, '5911-6156', 1, '新莊和運店', '{"number":"017219","shop":"\\u65b0\\u838a\\u548c\\u904b\\u5e97","phone":"0229907549","address":"\\u4e2d\\u548c\\u8857\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '017219', 'quanjia', 'zh-tw', 1000),
(9105, 6156, '5911-6156', 1, '新莊首富店', '{"number":"016500","shop":"\\u65b0\\u838a\\u9996\\u5bcc\\u5e97","phone":"0229902685","address":"\\u4e2d\\u83ef\\u91cc\\u4e2d\\u83ef\\u8def\\u4e8c\\u6bb5\\uff15\\u865f"}', '016500', 'quanjia', 'zh-tw', 1000),
(9106, 6156, '5911-6156', 1, '新莊華寧店', '{"number":"013363","shop":"\\u65b0\\u838a\\u83ef\\u5be7\\u5e97","phone":"0229946014","address":"\\u4e2d\\u83ef\\u8def\\uff11\\u6bb5\\uff18\\u865f\\uff11\\u6a13"}', '013363', 'quanjia', 'zh-tw', 1000),
(9107, 6156, '5911-6156', 1, '新莊新幸福店', '{"number":"016711","shop":"\\u65b0\\u838a\\u65b0\\u5e78\\u798f\\u5e97","phone":"0229969520","address":"\\u4e2d\\u5e73\\u8def\\uff11\\uff18\\uff14\\u5df7\\uff11\\uff10\\u5f04\\uff17\\u865f\\uff11\\u6a13"}', '016711', 'quanjia', 'zh-tw', 1000),
(9108, 6156, '5911-6156', 1, '新莊狀元店', '{"number":"018153","shop":"\\u65b0\\u838a\\u72c0\\u5143\\u5e97","phone":"0229984996","address":"\\u4e2d\\u5e73\\u8def\\uff12\\uff16\\uff18\\u865f"}', '018153', 'quanjia', 'zh-tw', 1000),
(9109, 6156, '5911-6156', 1, '新莊中平店', '{"number":"015167","shop":"\\u65b0\\u838a\\u4e2d\\u5e73\\u5e97","phone":"0229976597","address":"\\u4e2d\\u5e73\\u8def\\uff12\\uff19\\uff14\\u865f"}', '015167', 'quanjia', 'zh-tw', 1000),
(9110, 6156, '5911-6156', 1, '新莊中永店', '{"number":"018327","shop":"\\u65b0\\u838a\\u4e2d\\u6c38\\u5e97","phone":"0289920165","address":"\\u4e2d\\u5e73\\u8def\\uff16\\uff16\\u865f"}', '018327', 'quanjia', 'zh-tw', 1000),
(9111, 6156, '5911-6156', 1, '新莊中榮店', '{"number":"012508","shop":"\\u65b0\\u838a\\u4e2d\\u69ae\\u5e97","phone":"0229983442","address":"\\u4e2d\\u69ae\\u8857\\uff18\\uff14\\u865f"}', '012508', 'quanjia', 'zh-tw', 1000),
(9112, 6156, '5911-6156', 1, '新莊新中信店', '{"number":"011872","shop":"\\u65b0\\u838a\\u65b0\\u4e2d\\u4fe1\\u5e97","phone":"0289927949","address":"\\u4e2d\\u4fe1\\u8857\\uff14\\uff11\\u865f\\uff11\\u6a13"}', '011872', 'quanjia', 'zh-tw', 1000),
(9113, 6156, '5911-6156', 1, '新莊副都店', '{"number":"018199","shop":"\\u65b0\\u838a\\u526f\\u90fd\\u5e97","phone":"0285218124","address":"\\u4e2d\\u592e\\u8def\\uff14\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '018199', 'quanjia', 'zh-tw', 1000),
(9114, 6156, '5911-6156', 1, '新莊福前店', '{"number":"018786","shop":"\\u65b0\\u838a\\u798f\\u524d\\u5e97","phone":"0285218649","address":"\\u4e2d\\u539f\\u6771\\u8def\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '018786', 'quanjia', 'zh-tw', 1000),
(9115, 6156, '5911-6156', 1, '新莊中原店', '{"number":"012008","shop":"\\u65b0\\u838a\\u4e2d\\u539f\\u5e97","phone":"0289920047","address":"\\u4e2d\\u539f\\u8def\\uff12\\uff19\\uff17\\u865f"}', '012008', 'quanjia', 'zh-tw', 1000),
(9116, 6156, '5911-6156', 1, '新莊福壽店', '{"number":"017720","shop":"\\u65b0\\u838a\\u798f\\u58fd\\u5e97","phone":"0229908643","address":"\\u4e2d\\u539f\\u8def\\uff14\\uff15\\u865f"}', '017720', 'quanjia', 'zh-tw', 1000),
(9117, 6156, '5911-6156', 1, '新莊公所店', '{"number":"016362","shop":"\\u65b0\\u838a\\u516c\\u6240\\u5e97","phone":"0229924230","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff15\\uff15\\u865f\\uff11\\u6a13\\uff0b\\uff12\\u6a13"}', '016362', 'quanjia', 'zh-tw', 1000),
(9118, 6156, '5911-6156', 1, '新莊福海店', '{"number":"018788","shop":"\\u65b0\\u838a\\u798f\\u6d77\\u5e97","phone":"0222038885","address":"\\u4e2d\\u6b63\\u8def\\uff14\\uff10\\uff11\\u865f"}', '018788', 'quanjia', 'zh-tw', 1000),
(9119, 6156, '5911-6156', 1, '新莊輔園店', '{"number":"017778","shop":"\\u65b0\\u838a\\u8f14\\u5712\\u5e97","phone":"0229040262","address":"\\u4e2d\\u6b63\\u8def\\uff15\\uff11\\uff10\\u865f"}', '017778', 'quanjia', 'zh-tw', 1000),
(9120, 6156, '5911-6156', 1, '新莊龍鳳店', '{"number":"012190","shop":"\\u65b0\\u838a\\u9f8d\\u9cf3\\u5e97","phone":"0229017635","address":"\\u4e2d\\u6b63\\u8def\\uff17\\uff12\\uff19\\u865f"}', '012190', 'quanjia', 'zh-tw', 1000),
(9121, 6156, '5911-6156', 1, '新莊安和店', '{"number":"015095","shop":"\\u65b0\\u838a\\u5b89\\u548c\\u5e97","phone":"0229036055","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff12\\uff19\\u5df7\\uff12\\uff12\\u5f04\\uff11\\u865f"}', '015095', 'quanjia', 'zh-tw', 1000),
(9122, 6156, '5911-6156', 1, '新莊迴龍店', '{"number":"015762","shop":"\\u65b0\\u838a\\u8ff4\\u9f8d\\u5e97","phone":"0229011240","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff19\\uff15\\uff0d\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '015762', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(9123, 6156, '5911-6156', 1, '新莊新建店', '{"number":"016519","shop":"\\u65b0\\u838a\\u65b0\\u5efa\\u5e97","phone":"0229013769","address":"\\u4e2d\\u6b63\\u8def\\u65b0\\u5efa\\u5df7\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '016519', 'quanjia', 'zh-tw', 1000),
(9124, 6156, '5911-6156', 1, '新莊超級店', '{"number":"017372","shop":"\\u65b0\\u838a\\u8d85\\u7d1a\\u5e97","phone":"0222045567","address":"\\u838a\\u5d11\\u8def\\uff12\\uff15\\u865f\\uff11\\u6a13"}', '017372', 'quanjia', 'zh-tw', 1000),
(9125, 6156, '5911-6156', 1, '新莊自強店', '{"number":"011946","shop":"\\u65b0\\u838a\\u81ea\\u5f37\\u5e97","phone":"0289916578","address":"\\u81ea\\u5f37\\u8857\\uff12\\u865f"}', '011946', 'quanjia', 'zh-tw', 1000),
(9126, 6156, '5911-6156', 1, '新莊自成店', '{"number":"013388","shop":"\\u65b0\\u838a\\u81ea\\u6210\\u5e97","phone":"0229949824","address":"\\u81ea\\u4fe1\\u8857\\uff12\\u865f\\uff11\\u6a13"}', '013388', 'quanjia', 'zh-tw', 1000),
(9127, 6157, '5911-6157', 1, '鶯歌尖峰店', '{"number":"017792","shop":"\\u9daf\\u6b4c\\u5c16\\u5cf0\\u5e97","phone":"0286774110","address":"\\u5c16\\u5c71\\u8def\\uff11\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '017792', 'quanjia', 'zh-tw', 1000),
(9128, 6157, '5911-6157', 1, '鶯歌國慶店', '{"number":"014002","shop":"\\u9daf\\u6b4c\\u570b\\u6176\\u5e97","phone":"0226776756","address":"\\u5efa\\u570b\\u8def\\uff11\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '014002', 'quanjia', 'zh-tw', 1000),
(9129, 6157, '5911-6157', 1, '鶯歌站前店', '{"number":"013655","shop":"\\u9daf\\u6b4c\\u7ad9\\u524d\\u5e97","phone":"0286774875","address":"\\u5efa\\u570b\\u8def\\uff15\\uff13\\u4e4b\\uff15\\u865f\\u3001\\u3001\\uff15\\uff13\\u4e4b\\uff16\\u865f\\uff11\\u6a13"}', '013655', 'quanjia', 'zh-tw', 1000),
(9130, 6157, '5911-6157', 1, '鶯歌新南雅店', '{"number":"017829","shop":"\\u9daf\\u6b4c\\u65b0\\u5357\\u96c5\\u5e97","phone":"0226704972","address":"\\u5357\\u96c5\\u8def\\uff14\\uff14\\uff12\\u865f"}', '017829', 'quanjia', 'zh-tw', 1000),
(9131, 6157, '5911-6157', 1, '鶯歌鶯桃店', '{"number":"016155","shop":"\\u9daf\\u6b4c\\u9daf\\u6843\\u5e97","phone":"0226706210","address":"\\u9daf\\u6843\\u8def\\uff14\\uff15\\u865f\\uff11\\u6a13"}', '016155', 'quanjia', 'zh-tw', 1000),
(9132, 6157, '5911-6157', 1, '鶯歌永明店', '{"number":"017458","shop":"\\u9daf\\u6b4c\\u6c38\\u660e\\u5e97","phone":"0226703617","address":"\\u6c38\\u660e\\u8857\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '017458', 'quanjia', 'zh-tw', 1000),
(9133, 6157, '5911-6157', 1, '鶯歌行政店', '{"number":"015010","shop":"\\u9daf\\u6b4c\\u884c\\u653f\\u5e97","phone":"0226781963","address":"\\u4e2d\\u6b63\\u4e00\\u8def\\uff11\\uff15\\uff14\\u865f"}', '015010', 'quanjia', 'zh-tw', 1000),
(9134, 6157, '5911-6157', 1, '鶯歌正鶯店', '{"number":"018648","shop":"\\u9daf\\u6b4c\\u6b63\\u9daf\\u5e97","phone":"0286782074","address":"\\u4e2d\\u6b63\\u4e00\\u8def\\uff13\\uff17\\uff11\\u865f"}', '018648', 'quanjia', 'zh-tw', 1000),
(9135, 6158, '5911-6158', 1, '永和仁保店', '{"number":"017697","shop":"\\u6c38\\u548c\\u4ec1\\u4fdd\\u5e97","phone":"0229285824","address":"\\u4fdd\\u798f\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '017697', 'quanjia', 'zh-tw', 1000),
(9136, 6158, '5911-6158', 1, '永和樂華店', '{"number":"016051","shop":"\\u6c38\\u548c\\u6a02\\u83ef\\u5e97","phone":"0229264823","address":"\\u4fdd\\u5e73\\u8def\\uff11\\uff18\\u5df7\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '016051', 'quanjia', 'zh-tw', 1000),
(9137, 6158, '5911-6158', 1, '永和羅鄰店', '{"number":"013578","shop":"\\u6c38\\u548c\\u7f85\\u9130\\u5e97","phone":"0229293596","address":"\\u4fdd\\u5e73\\u8def\\uff12\\uff16\\uff18\\u5df7\\uff12\\uff15\\u865f\\uff11\\u6a13"}', '013578', 'quanjia', 'zh-tw', 1000),
(9138, 6158, '5911-6158', 1, '永和田單店', '{"number":"015822","shop":"\\u6c38\\u548c\\u7530\\u55ae\\u5e97","phone":"0229432844","address":"\\u6210\\u529f\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '015822', 'quanjia', 'zh-tw', 1000),
(9139, 6158, '5911-6158', 1, '永和秀成店', '{"number":"012475","shop":"\\u6c38\\u548c\\u79c0\\u6210\\u5e97","phone":"0229215822","address":"\\u6210\\u529f\\u8def\\u4e00\\u6bb5\\uff11\\uff13\\uff17\\uff0c\\uff11\\uff13\\uff19\\u865f"}', '012475', 'quanjia', 'zh-tw', 1000),
(9140, 6158, '5911-6158', 1, '永和新樂新店', '{"number":"016198","shop":"\\u6c38\\u548c\\u65b0\\u6a02\\u65b0\\u5e97","phone":"0286607125","address":"\\u5927\\u65b0\\u8857\\uff13\\u865f\\uff11\\u6a13"}', '016198', 'quanjia', 'zh-tw', 1000),
(9141, 6158, '5911-6158', 1, '永和得和店', '{"number":"014466","shop":"\\u6c38\\u548c\\u5f97\\u548c\\u5e97","phone":"0229416037","address":"\\u5f97\\u548c\\u8def\\uff13\\uff17\\uff12\\u865f"}', '014466', 'quanjia', 'zh-tw', 1000),
(9142, 6158, '5911-6158', 1, '永和得元店', '{"number":"017152","shop":"\\u6c38\\u548c\\u5f97\\u5143\\u5e97","phone":"0229265391","address":"\\u5f97\\u548c\\u8def\\uff13\\uff17\\uff13\\u5df7\\uff12\\uff19\\u865f"}', '017152', 'quanjia', 'zh-tw', 1000),
(9143, 6158, '5911-6158', 1, '永和新廷店', '{"number":"018482","shop":"\\u6c38\\u548c\\u65b0\\u5ef7\\u5e97","phone":"0229203971","address":"\\u798f\\u548c\\u8def\\uff13\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '018482', 'quanjia', 'zh-tw', 1000),
(9144, 6158, '5911-6158', 1, '永和新富店', '{"number":"018883","shop":"\\u6c38\\u548c\\u65b0\\u5bcc\\u5e97","phone":"0289215154","address":"\\u798f\\u548c\\u8def\\uff15\\uff17\\u5df7\\uff11\\uff14\\u5f04\\uff12\\u865f\\uff11\\u6a13"}', '018883', 'quanjia', 'zh-tw', 1000),
(9145, 6158, '5911-6158', 1, '永和頂溪店', '{"number":"015790","shop":"\\u6c38\\u548c\\u9802\\u6eaa\\u5e97","phone":"0229262511","address":"\\u5fa9\\u8208\\u8857\\uff13\\u865f"}', '015790', 'quanjia', 'zh-tw', 1000),
(9146, 6158, '5911-6158', 1, '永和國和店', '{"number":"016708","shop":"\\u6c38\\u548c\\u570b\\u548c\\u5e97","phone":"0229281175","address":"\\u570b\\u4e2d\\u8def\\uff18\\uff16\\u5df7\\uff12\\u865f"}', '016708', 'quanjia', 'zh-tw', 1000),
(9147, 6158, '5911-6158', 1, '永和環東店', '{"number":"015635","shop":"\\u6c38\\u548c\\u74b0\\u6771\\u5e97","phone":"0289278437","address":"\\u74b0\\u6cb3\\u6771\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\uff12\\u865f\\uff0c\\uff11\\uff12\\uff14\\u865f"}', '015635', 'quanjia', 'zh-tw', 1000),
(9148, 6158, '5911-6158', 1, '永和環河店', '{"number":"013435","shop":"\\u6c38\\u548c\\u74b0\\u6cb3\\u5e97","phone":"0232339160","address":"\\u74b0\\u6cb3\\u897f\\u8def\\u4e8c\\u6bb5\\uff12\\uff11\\uff19\\u865f\\uff0c\\uff12\\uff12\\uff11\\u865f"}', '013435', 'quanjia', 'zh-tw', 1000),
(9149, 6158, '5911-6158', 1, '永和水悅店', '{"number":"017055","shop":"\\u6c38\\u548c\\u6c34\\u6085\\u5e97","phone":"0229267011","address":"\\u74b0\\u6cb3\\u897f\\u8def\\u4e00\\u6bb5\\uff18\\uff13\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '017055', 'quanjia', 'zh-tw', 1000),
(9150, 6158, '5911-6158', 1, '永和騎士店', '{"number":"011177","shop":"\\u6c38\\u548c\\u9a0e\\u58eb\\u5e97","phone":"0289433594","address":"\\u6c11\\u6b0a\\u8def\\uff15\\uff13\\u865f\\uff11\\u6a13"}', '011177', 'quanjia', 'zh-tw', 1000),
(9151, 6158, '5911-6158', 1, '永和教室店', '{"number":"015942","shop":"\\u6c38\\u548c\\u6559\\u5ba4\\u5e97","phone":"0289418262","address":"\\u6c11\\u751f\\u8def\\uff16\\uff15\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '015942', 'quanjia', 'zh-tw', 1000),
(9152, 6158, '5911-6158', 1, '永和民有店', '{"number":"017795","shop":"\\u6c38\\u548c\\u6c11\\u6709\\u5e97","phone":"0289434344","address":"\\u6c11\\u6709\\u8857\\uff17\\uff13\\u865f\\uff11\\u6a13"}', '017795', 'quanjia', 'zh-tw', 1000),
(9153, 6158, '5911-6158', 1, '永和國艷店', '{"number":"018262","shop":"\\u6c38\\u548c\\u570b\\u8277\\u5e97","phone":"0229232783","address":"\\u6c11\\u6a02\\u8857\\uff13\\uff19\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '018262', 'quanjia', 'zh-tw', 1000),
(9154, 6158, '5911-6158', 1, '永和新仁愛店', '{"number":"015290","shop":"\\u6c38\\u548c\\u65b0\\u4ec1\\u611b\\u5e97","phone":"0286609734","address":"\\u4ec1\\u611b\\u8def\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '015290', 'quanjia', 'zh-tw', 1000),
(9155, 6158, '5911-6158', 1, '永和仁和店', '{"number":"016796","shop":"\\u6c38\\u548c\\u4ec1\\u548c\\u5e97","phone":"0232330262","address":"\\u4ec1\\u611b\\u8def\\uff13\\uff13\\u865f"}', '016796', 'quanjia', 'zh-tw', 1000),
(9156, 6158, '5911-6158', 1, '永和新仁店', '{"number":"017056","shop":"\\u6c38\\u548c\\u65b0\\u4ec1\\u5e97","phone":"0286602630","address":"\\u4ec1\\u611b\\u8def\\uff13\\uff15\\uff12\\u5df7\\uff19\\uff14\\u865f\\u3001\\uff19\\uff16\\u865f"}', '017056', 'quanjia', 'zh-tw', 1000),
(9157, 6158, '5911-6158', 1, '永和維源店', '{"number":"013832","shop":"\\u6c38\\u548c\\u7dad\\u6e90\\u5e97","phone":"0289230231","address":"\\u6c34\\u6e90\\u8857\\uff13\\uff19\\u5df7\\uff12\\u865f"}', '013832', 'quanjia', 'zh-tw', 1000),
(9158, 6158, '5911-6158', 1, '永和文化店', '{"number":"013671","shop":"\\u6c38\\u548c\\u6587\\u5316\\u5e97","phone":"0286604492","address":"\\u6587\\u5316\\u8def\\uff11\\uff18\\uff0c\\uff12\\uff10\\uff0c\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '013671', 'quanjia', 'zh-tw', 1000),
(9159, 6158, '5911-6158', 1, '永和復興店', '{"number":"013716","shop":"\\u6c38\\u548c\\u5fa9\\u8208\\u5e97","phone":"0229254364","address":"\\u79c0\\u6717\\u8def\\u4e00\\u6bb5\\uff11\\uff18\\uff16\\u865f\\uff11\\uff26"}', '013716', 'quanjia', 'zh-tw', 1000),
(9160, 6158, '5911-6158', 1, '永和秀和店', '{"number":"017102","shop":"\\u6c38\\u548c\\u79c0\\u548c\\u5e97","phone":"0229280903","address":"\\u79c0\\u6717\\u8def\\u4e00\\u6bb5\\uff17\\uff16\\u3001\\uff17\\uff18\\u865f"}', '017102', 'quanjia', 'zh-tw', 1000),
(9161, 6158, '5911-6158', 1, '永和永復店', '{"number":"013650","shop":"\\u6c38\\u548c\\u6c38\\u5fa9\\u5e97","phone":"0229286095","address":"\\u6c38\\u548c\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '013650', 'quanjia', 'zh-tw', 1000),
(9162, 6158, '5911-6158', 1, '永和永福店', '{"number":"017534","shop":"\\u6c38\\u548c\\u6c38\\u798f\\u5e97","phone":"0229234354","address":"\\u6c38\\u548c\\u8def\\u4e00\\u6bb5\\uff19\\uff13\\u865f"}', '017534', 'quanjia', 'zh-tw', 1000),
(9163, 6158, '5911-6158', 1, '永和永亨店', '{"number":"018717","shop":"\\u6c38\\u548c\\u6c38\\u4ea8\\u5e97","phone":"0229208853","address":"\\u6c38\\u4ea8\\u8def\\uff16\\uff12\\u865f\\u3001\\uff16\\uff14\\u865f\\u3001\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '018717', 'quanjia', 'zh-tw', 1000),
(9164, 6158, '5911-6158', 1, '永和永平店', '{"number":"015633","shop":"\\u6c38\\u548c\\u6c38\\u5e73\\u5e97","phone":"0286603548","address":"\\u6c38\\u5e73\\u8def\\uff12\\uff13\\uff12\\u865f"}', '015633', 'quanjia', 'zh-tw', 1000),
(9165, 6158, '5911-6158', 1, '永和保平店', '{"number":"014237","shop":"\\u6c38\\u548c\\u4fdd\\u5e73\\u5e97","phone":"0289231532","address":"\\u6c38\\u8c9e\\u8def\\uff13\\uff15\\uff14\\u865f\\uff0c\\uff13\\uff15\\uff16\\u865f"}', '014237', 'quanjia', 'zh-tw', 1000),
(9166, 6158, '5911-6158', 1, '永和保安店', '{"number":"010855","shop":"\\u6c38\\u548c\\u4fdd\\u5b89\\u5e97","phone":"0229207792","address":"\\u6c38\\u8c9e\\u8def\\uff13\\uff18\\uff17\\u865f"}', '010855', 'quanjia', 'zh-tw', 1000),
(9167, 6158, '5911-6158', 1, '永和鼎豐店', '{"number":"014877","shop":"\\u6c38\\u548c\\u9f0e\\u8c50\\u5e97","phone":"0229200709","address":"\\u4e2d\\u8208\\u8857\\uff17\\u865f\\uff11\\u6a13"}', '014877', 'quanjia', 'zh-tw', 1000),
(9168, 6158, '5911-6158', 1, '永和耕莘店', '{"number":"011651","shop":"\\u6c38\\u548c\\u8015\\u8398\\u5e97","phone":"0229240539","address":"\\u4e2d\\u8208\\u8857\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '011651', 'quanjia', 'zh-tw', 1000),
(9169, 6158, '5911-6158', 1, '永和正新店', '{"number":"016358","shop":"\\u6c38\\u548c\\u6b63\\u65b0\\u5e97","phone":"0229464214","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '016358', 'quanjia', 'zh-tw', 1000),
(9170, 6158, '5911-6158', 1, '永和正得店', '{"number":"016282","shop":"\\u6c38\\u548c\\u6b63\\u5f97\\u5e97","phone":"0229200317","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff14\\uff12\\u865f\\u4e00\\u6a13"}', '016282', 'quanjia', 'zh-tw', 1000),
(9171, 6158, '5911-6158', 1, '永和大福店', '{"number":"014886","shop":"\\u6c38\\u548c\\u5927\\u798f\\u5e97","phone":"0229254322","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff10\\uff18\\uff0e\\uff16\\uff11\\uff10\\uff0e\\uff16\\uff11\\uff10\\u4e4b\\uff11\\u865f"}', '014886', 'quanjia', 'zh-tw', 1000),
(9172, 6158, '5911-6158', 1, '永和御林店', '{"number":"017405","shop":"\\u6c38\\u548c\\u5fa1\\u6797\\u5e97","phone":"0289250327","address":"\\u7af9\\u6797\\u8def\\uff12\\uff11\\uff13\\u5df7\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '017405', 'quanjia', 'zh-tw', 1000),
(9173, 6158, '5911-6158', 1, '永和永林店', '{"number":"016658","shop":"\\u6c38\\u548c\\u6c38\\u6797\\u5e97","phone":"0289274417","address":"\\u7af9\\u6797\\u8def\\uff13\\uff17\\u865f"}', '016658', 'quanjia', 'zh-tw', 1000),
(9174, 6159, '5911-6159', 1, '中和安樂店', '{"number":"016201","shop":"\\u4e2d\\u548c\\u5b89\\u6a02\\u5e97","phone":"0229400326","address":"\\u5b89\\u6a02\\u8def\\uff18\\uff11\\u865f"}', '016201', 'quanjia', 'zh-tw', 1000),
(9175, 6159, '5911-6159', 1, '中和保健店', '{"number":"016747","shop":"\\u4e2d\\u548c\\u4fdd\\u5065\\u5e97","phone":"0229444222","address":"\\u4fdd\\u5065\\u8def\\uff11\\uff17\\u865f"}', '016747', 'quanjia', 'zh-tw', 1000),
(9176, 6159, '5911-6159', 1, '中和水源店', '{"number":"013672","shop":"\\u4e2d\\u548c\\u6c34\\u6e90\\u5e97","phone":"0282459519","address":"\\u4fdd\\u5e73\\u8def\\uff13\\uff12\\uff10\\u865f\\u3001\\uff13\\uff12\\uff12\\u865f"}', '013672', 'quanjia', 'zh-tw', 1000),
(9177, 6159, '5911-6159', 1, '中和仁勇店', '{"number":"017751","shop":"\\u4e2d\\u548c\\u4ec1\\u52c7\\u5e97","phone":"0229400962","address":"\\u5927\\u52c7\\u8857\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '017751', 'quanjia', 'zh-tw', 1000),
(9178, 6159, '5911-6159', 1, '中和德穗店', '{"number":"017271","shop":"\\u4e2d\\u548c\\u5fb7\\u7a57\\u5e97","phone":"0289526580","address":"\\u5fb7\\u5149\\u8def\\uff12\\uff14\\uff0e\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '017271', 'quanjia', 'zh-tw', 1000),
(9179, 6159, '5911-6159', 1, '中和福祥店', '{"number":"016231","shop":"\\u4e2d\\u548c\\u798f\\u7965\\u5e97","phone":"0222428093","address":"\\u798f\\u7965\\u8def\\uff13\\uff10\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '016231', 'quanjia', 'zh-tw', 1000),
(9180, 6159, '5911-6159', 1, '中和中興店', '{"number":"018743","shop":"\\u4e2d\\u548c\\u4e2d\\u8208\\u5e97","phone":"0282423542","address":"\\u5fa9\\u8208\\u91cc\\u4e2d\\u8208\\u8857\\uff11\\uff11\\uff11\\u865f\\uff0c\\uff11\\uff11\\uff13\\u865f"}', '018743', 'quanjia', 'zh-tw', 1000),
(9181, 6159, '5911-6159', 1, '中和南中店', '{"number":"017966","shop":"\\u4e2d\\u548c\\u5357\\u4e2d\\u5e97","phone":"0222464585","address":"\\u5ee3\\u798f\\u8def\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '017966', 'quanjia', 'zh-tw', 1000),
(9182, 6159, '5911-6159', 1, '中和興國店', '{"number":"015266","shop":"\\u4e2d\\u548c\\u8208\\u570b\\u5e97","phone":"0229635114","address":"\\u570b\\u5149\\u8857\\uff11\\uff10\\uff14\\u865f\\uff11\\u6a13"}', '015266', 'quanjia', 'zh-tw', 1000),
(9183, 6159, '5911-6159', 1, '中和平興店', '{"number":"014308","shop":"\\u4e2d\\u548c\\u5e73\\u8208\\u5e97","phone":"0229431824","address":"\\u548c\\u5e73\\u8857\\uff12\\uff10\\u865f"}', '014308', 'quanjia', 'zh-tw', 1000),
(9184, 6159, '5911-6159', 1, '中和和平店', '{"number":"017990","shop":"\\u4e2d\\u548c\\u548c\\u5e73\\u5e97","phone":"0229444304","address":"\\u548c\\u5e73\\u8857\\uff15\\uff16\\u865f\\uff11\\u6a13\\uff1b\\uff15\\uff14\\u5df7\\uff11\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '017990', 'quanjia', 'zh-tw', 1000),
(9185, 6159, '5911-6159', 1, '中和華福店', '{"number":"017156","shop":"\\u4e2d\\u548c\\u83ef\\u798f\\u5e97","phone":"0229506983","address":"\\u83ef\\u9806\\u8857\\uff11\\uff11\\uff17\\u865f\\uff0c\\uff11\\uff11\\uff19\\u865f"}', '017156', 'quanjia', 'zh-tw', 1000),
(9186, 6159, '5911-6159', 1, '中和華順店', '{"number":"018110","shop":"\\u4e2d\\u548c\\u83ef\\u9806\\u5e97","phone":"0229542123","address":"\\u83ef\\u9806\\u8857\\uff15\\uff19\\u865f\\uff11\\u6a13"}', '018110', 'quanjia', 'zh-tw', 1000),
(9187, 6159, '5911-6159', 1, '中和華隆店', '{"number":"016749","shop":"\\u4e2d\\u548c\\u83ef\\u9686\\u5e97","phone":"0229414221","address":"\\u83ef\\u65b0\\u8857\\uff11\\uff10\\uff19\\u5df7\\uff11\\uff0d\\uff13\\u865f"}', '016749', 'quanjia', 'zh-tw', 1000),
(9188, 6159, '5911-6159', 1, '中和華夏店', '{"number":"018840","shop":"\\u4e2d\\u548c\\u83ef\\u590f\\u5e97","phone":"0229479070","address":"\\u83ef\\u65b0\\u8857\\uff12\\uff10\\uff12\\u865f\\uff0c\\uff12\\uff10\\uff14\\u865f"}', '018840', 'quanjia', 'zh-tw', 1000),
(9189, 6159, '5911-6159', 1, '中和華樹店', '{"number":"018256","shop":"\\u4e2d\\u548c\\u83ef\\u6a39\\u5e97","phone":"0229493985","address":"\\u83ef\\u65b0\\u8857\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '018256', 'quanjia', 'zh-tw', 1000),
(9190, 6159, '5911-6159', 1, '中和佳和店', '{"number":"013708","shop":"\\u4e2d\\u548c\\u4f73\\u548c\\u5e97","phone":"0222450773","address":"\\u4f73\\u548c\\u91cc\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff12\\u865f\\u3001\\uff11\\uff13\\uff14\\u865f\\uff11\\u6a13"}', '013708', 'quanjia', 'zh-tw', 1000),
(9191, 6159, '5911-6159', 1, '中和建新店', '{"number":"014773","shop":"\\u4e2d\\u548c\\u5efa\\u65b0\\u5e97","phone":"0282263686","address":"\\u5efa\\u516b\\u8def\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '014773', 'quanjia', 'zh-tw', 1000),
(9192, 6159, '5911-6159', 1, '中和和連店', '{"number":"014995","shop":"\\u4e2d\\u548c\\u548c\\u9023\\u5e97","phone":"0282457861","address":"\\u5efa\\u548c\\u91cc\\u9023\\u57ce\\u8def\\uff12\\uff16\\uff15\\u5df7\\uff11\\u865f\\u4e00\\u6a13"}', '014995', 'quanjia', 'zh-tw', 1000),
(9193, 6159, '5911-6159', 1, '中和圓順店', '{"number":"018773","shop":"\\u4e2d\\u548c\\u5713\\u9806\\u5e97","phone":"0222289923","address":"\\u5efa\\u4e00\\u8def\\uff11\\uff14\\uff11\\u865f"}', '018773', 'quanjia', 'zh-tw', 1000),
(9194, 6159, '5911-6159', 1, '中和遠建店', '{"number":"012607","shop":"\\u4e2d\\u548c\\u9060\\u5efa\\u5e97","phone":"0282272991","address":"\\u5efa\\u4e00\\u8def\\uff11\\uff17\\uff16\\u865f\\uff11\\u6a13"}', '012607', 'quanjia', 'zh-tw', 1000),
(9195, 6159, '5911-6159', 1, '中和錦福店', '{"number":"014485","shop":"\\u4e2d\\u548c\\u9326\\u798f\\u5e97","phone":"0282453548","address":"\\u9326\\u548c\\u8def\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '014485', 'quanjia', 'zh-tw', 1000),
(9196, 6159, '5911-6159', 1, '中和錦中店', '{"number":"016750","shop":"\\u4e2d\\u548c\\u9326\\u4e2d\\u5e97","phone":"0222458753","address":"\\u9326\\u4e2d\\u91cc\\u9326\\u548c\\u8def\\uff13\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '016750', 'quanjia', 'zh-tw', 1000),
(9197, 6159, '5911-6159', 1, '中和捷勝店', '{"number":"018388","shop":"\\u4e2d\\u548c\\u6377\\u52dd\\u5e97","phone":"0222426396","address":"\\u666f\\u5b89\\u8def\\uff11\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '018388', 'quanjia', 'zh-tw', 1000),
(9198, 6159, '5911-6159', 1, '中和景欣店', '{"number":"016077","shop":"\\u4e2d\\u548c\\u666f\\u6b23\\u5e97","phone":"0229439032","address":"\\u666f\\u672c\\u91cc\\u666f\\u65b0\\u8857\\uff13\\uff18\\uff15\\u865f\\uff0c\\uff13\\uff18\\uff15\\u865f\\u4e4b\\uff11"}', '016077', 'quanjia', 'zh-tw', 1000),
(9199, 6159, '5911-6159', 1, '中和朕新店', '{"number":"013652","shop":"\\u4e2d\\u548c\\u6715\\u65b0\\u5e97","phone":"0229426294","address":"\\u666f\\u5fb7\\u8857\\uff11\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '013652', 'quanjia', 'zh-tw', 1000),
(9200, 6159, '5911-6159', 1, '中和摩天店', '{"number":"014013","shop":"\\u4e2d\\u548c\\u6469\\u5929\\u5e97","phone":"0289423447","address":"\\u666f\\u5e73\\u8def\\uff11\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '014013', 'quanjia', 'zh-tw', 1000),
(9201, 6159, '5911-6159', 1, '中和景會店', '{"number":"011919","shop":"\\u4e2d\\u548c\\u666f\\u6703\\u5e97","phone":"0222424705","address":"\\u666f\\u5e73\\u8def\\uff14\\uff13\\uff13\\u865f\\uff11\\u6a13"}', '011919', 'quanjia', 'zh-tw', 1000),
(9202, 6159, '5911-6159', 1, '中和景平店', '{"number":"016267","shop":"\\u4e2d\\u548c\\u666f\\u5e73\\u5e97","phone":"0289422184","address":"\\u666f\\u5e73\\u8def\\uff14\\uff17\\uff18\\u865f"}', '016267', 'quanjia', 'zh-tw', 1000),
(9203, 6159, '5911-6159', 1, '中和勝平店', '{"number":"014993","shop":"\\u4e2d\\u548c\\u52dd\\u5e73\\u5e97","phone":"0222474417","address":"\\u666f\\u5e73\\u8def\\uff15\\uff11\\uff17\\u3001\\uff15\\uff11\\uff19\\u865f\\uff11\\u6a13"}', '014993', 'quanjia', 'zh-tw', 1000),
(9204, 6159, '5911-6159', 1, '中和福真店', '{"number":"012957","shop":"\\u4e2d\\u548c\\u798f\\u771f\\u5e97","phone":"0222469262","address":"\\u666f\\u5e73\\u8def\\uff17\\uff10\\uff11\\u3001\\uff17\\uff10\\uff11\\u4e4b\\uff11\\u865f\\uff12\\u6a13"}', '012957', 'quanjia', 'zh-tw', 1000),
(9205, 6159, '5911-6159', 1, '中和福順店', '{"number":"012395","shop":"\\u4e2d\\u548c\\u798f\\u9806\\u5e97","phone":"0282454113","address":"\\u666f\\u5e73\\u8def\\uff17\\uff10\\uff18\\u865f"}', '012395', 'quanjia', 'zh-tw', 1000),
(9206, 6159, '5911-6159', 1, '中和景秀店', '{"number":"011938","shop":"\\u4e2d\\u548c\\u666f\\u79c0\\u5e97","phone":"0286680018","address":"\\u666f\\u5e73\\u8def\\uff17\\uff11\\u2014\\uff12\\u865f"}', '011938', 'quanjia', 'zh-tw', 1000),
(9207, 6159, '5911-6159', 1, '中和景明店', '{"number":"015781","shop":"\\u4e2d\\u548c\\u666f\\u660e\\u5e97","phone":"0229466803","address":"\\u666f\\u65b0\\u8857\\uff12\\uff11\\uff12\\u865f\\uff11\\u6a13"}', '015781', 'quanjia', 'zh-tw', 1000),
(9208, 6159, '5911-6159', 1, '中和新平店', '{"number":"017894","shop":"\\u4e2d\\u548c\\u65b0\\u5e73\\u5e97","phone":"0289411655","address":"\\u666f\\u65b0\\u8857\\uff12\\uff16\\uff15\\u3001\\uff12\\uff16\\uff17\\u865f"}', '017894', 'quanjia', 'zh-tw', 1000),
(9209, 6159, '5911-6159', 1, '中和雙捷店', '{"number":"017923","shop":"\\u4e2d\\u548c\\u96d9\\u6377\\u5e97","phone":"0289417765","address":"\\u666f\\u65b0\\u8857\\uff14\\uff16\\uff18\\u865f"}', '017923', 'quanjia', 'zh-tw', 1000),
(9210, 6159, '5911-6159', 1, '中和自強店', '{"number":"018303","shop":"\\u4e2d\\u548c\\u81ea\\u5f37\\u5e97","phone":"0232346883","address":"\\u8392\\u5149\\u8def\\uff11\\uff13\\uff11\\u865f"}', '018303', 'quanjia', 'zh-tw', 1000),
(9211, 6159, '5911-6159', 1, '中和莒城店', '{"number":"012956","shop":"\\u4e2d\\u548c\\u8392\\u57ce\\u5e97","phone":"0222230924","address":"\\u8392\\u5149\\u8def\\uff11\\uff18\\uff11\\u865f"}', '012956', 'quanjia', 'zh-tw', 1000),
(9212, 6159, '5911-6159', 1, '中和建業店', '{"number":"017603","shop":"\\u4e2d\\u548c\\u5efa\\u696d\\u5e97","phone":"0222224223","address":"\\u7acb\\u5fb7\\u8857\\uff11\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '017603', 'quanjia', 'zh-tw', 1000),
(9213, 6159, '5911-6159', 1, '中和秀山店', '{"number":"017577","shop":"\\u4e2d\\u548c\\u79c0\\u5c71\\u5e97","phone":"0289421005","address":"\\u7acb\\u4eba\\u8857\\uff16\\uff15\\u865f\\uff0c\\uff16\\uff17\\u865f"}', '017577', 'quanjia', 'zh-tw', 1000),
(9214, 6159, '5911-6159', 1, '中和連勝店', '{"number":"017865","shop":"\\u4e2d\\u548c\\u9023\\u52dd\\u5e97","phone":"0222490286","address":"\\u9023\\u57ce\\u8def\\uff12\\uff13\\uff11\\u865f\\uff11\\u6a13\\u53ca\\uff12\\u6a13"}', '017865', 'quanjia', 'zh-tw', 1000),
(9215, 6159, '5911-6159', 1, '中和世紀店', '{"number":"016359","shop":"\\u4e2d\\u548c\\u4e16\\u7d00\\u5e97","phone":"0282278716","address":"\\u9023\\u57ce\\u8def\\uff12\\uff16\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '016359', 'quanjia', 'zh-tw', 1000),
(9216, 6159, '5911-6159', 1, '中和連福店', '{"number":"015919","shop":"\\u4e2d\\u548c\\u9023\\u798f\\u5e97","phone":"0232347896","address":"\\u9023\\u57ce\\u8def\\uff13\\uff19\\uff11\\u865f\\uff0c\\uff13\\uff19\\uff13\\u865f"}', '015919', 'quanjia', 'zh-tw', 1000),
(9217, 6159, '5911-6159', 1, '中和新后店', '{"number":"014166","shop":"\\u4e2d\\u548c\\u65b0\\u540e\\u5e97","phone":"0222216706","address":"\\u9023\\u57ce\\u8def\\uff14\\uff16\\uff19\\u5df7\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '014166', 'quanjia', 'zh-tw', 1000),
(9218, 6159, '5911-6159', 1, '中和連新店', '{"number":"015225","shop":"\\u4e2d\\u548c\\u9023\\u65b0\\u5e97","phone":"0232346707","address":"\\u9023\\u57ce\\u8def\\uff15\\uff12\\uff11\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '015225', 'quanjia', 'zh-tw', 1000),
(9219, 6159, '5911-6159', 1, '中和安勝店', '{"number":"016841","shop":"\\u4e2d\\u548c\\u5b89\\u52dd\\u5e97","phone":"0222430244","address":"\\u9023\\u52dd\\u8857\\uff15\\uff19\\u865f"}', '016841', 'quanjia', 'zh-tw', 1000),
(9220, 6159, '5911-6159', 1, '中和國院店', '{"number":"016872","shop":"\\u4e2d\\u548c\\u570b\\u9662\\u5e97","phone":"0222213432","address":"\\u6c11\\u5b89\\u8857\\uff15\\uff11\\u865f\\uff11\\u6a13"}', '016872', 'quanjia', 'zh-tw', 1000),
(9221, 6159, '5911-6159', 1, '中和嘉穗店', '{"number":"013129","shop":"\\u4e2d\\u548c\\u5609\\u7a57\\u5e97","phone":"0222221242","address":"\\u6c11\\u5229\\u8857\\uff19\\uff11\\u865f\\uff11\\u6a13"}', '013129', 'quanjia', 'zh-tw', 1000),
(9222, 6159, '5911-6159', 1, '中和光明店', '{"number":"015921","shop":"\\u4e2d\\u548c\\u5149\\u660e\\u5e97","phone":"0289535241","address":"\\u6c11\\u751f\\u8857\\uff18\\uff15\\u5df7\\uff12\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '015921', 'quanjia', 'zh-tw', 1000),
(9223, 6159, '5911-6159', 1, '中和勝華店', '{"number":"016490","shop":"\\u4e2d\\u548c\\u52dd\\u83ef\\u5e97","phone":"0222425933","address":"\\u5357\\u83ef\\u8def\\uff16\\uff17\\u865f\\u58f9\\u6a13"}', '016490', 'quanjia', 'zh-tw', 1000),
(9224, 6159, '5911-6159', 1, '中和南勢角店', '{"number":"011531","shop":"\\u4e2d\\u548c\\u5357\\u52e2\\u89d2\\u5e97","phone":"0289412772","address":"\\u5357\\u5c71\\u8def\\uff13\\uff19\\uff19\\u5df7\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '011531', 'quanjia', 'zh-tw', 1000),
(9225, 6159, '5911-6159', 1, '中和廣場店', '{"number":"015062","shop":"\\u4e2d\\u548c\\u5ee3\\u5834\\u5e97","phone":"0282278301","address":"\\u5e73\\u6cb3\\u91cc\\u4e2d\\u6b63\\u8def\\uff17\\uff11\\uff12\\u865f\\u4e00\\u6a13"}', '015062', 'quanjia', 'zh-tw', 1000),
(9226, 6159, '5911-6159', 1, '中和橋安店', '{"number":"009159","shop":"\\u4e2d\\u548c\\u6a4b\\u5b89\\u5e97","phone":"0222424182","address":"\\u6a4b\\u548c\\u8def\\uff11\\uff12\\uff10\\u865f"}', '009159', 'quanjia', 'zh-tw', 1000),
(9227, 6159, '5911-6159', 1, '中和橋和店', '{"number":"016530","shop":"\\u4e2d\\u548c\\u6a4b\\u548c\\u5e97","phone":"0222445415","address":"\\u6a4b\\u548c\\u8def\\uff11\\uff15\\uff12\\u865f\\uff0c\\uff11\\uff15\\uff16\\u865f"}', '016530', 'quanjia', 'zh-tw', 1000),
(9228, 6159, '5911-6159', 1, '中和仁義店', '{"number":"018938","shop":"\\u4e2d\\u548c\\u4ec1\\u7fa9\\u5e97","phone":"0229484666","address":"\\u4ec1\\u611b\\u8857\\uff13\\uff16\\u865f"}', '018938', 'quanjia', 'zh-tw', 1000),
(9229, 6159, '5911-6159', 1, '中和漢陽店', '{"number":"017341","shop":"\\u4e2d\\u548c\\u6f22\\u967d\\u5e97","phone":"0222230343","address":"\\u745e\\u7a57\\u91cc\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff17\\uff12\\u865f\\uff11\\u6a13"}', '017341', 'quanjia', 'zh-tw', 1000),
(9230, 6159, '5911-6159', 1, '中和民德店', '{"number":"018302","shop":"\\u4e2d\\u548c\\u6c11\\u5fb7\\u5e97","phone":"0229640401","address":"\\u58fd\\u5fb7\\u91cc\\u58fd\\u5fb7\\u8857\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '018302', 'quanjia', 'zh-tw', 1000),
(9231, 6159, '5911-6159', 1, '中和新維店', '{"number":"014598","shop":"\\u4e2d\\u548c\\u65b0\\u7dad\\u5e97","phone":"0289411871","address":"\\u56db\\u7dad\\u8857\\uff13\\uff17\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '014598', 'quanjia', 'zh-tw', 1000),
(9232, 6159, '5911-6159', 1, '中和萊陽店', '{"number":"013001","shop":"\\u4e2d\\u548c\\u840a\\u967d\\u5e97","phone":"0282456393","address":"\\u74e6\\u55c2\\u91cc\\u5149\\u83ef\\u8857\\uff11\\u865f\\uff13\\u865f\\u4e00\\u6a13"}', '013001', 'quanjia', 'zh-tw', 1000),
(9233, 6159, '5911-6159', 1, '中和新生店', '{"number":"017310","shop":"\\u4e2d\\u548c\\u65b0\\u751f\\u5e97","phone":"0232342883","address":"\\u65b0\\u751f\\u8857\\uff11\\uff13\\uff12\\u865f"}', '017310', 'quanjia', 'zh-tw', 1000),
(9234, 6159, '5911-6159', 1, '中和新正店', '{"number":"017906","shop":"\\u4e2d\\u548c\\u65b0\\u6b63\\u5e97","phone":"0222263432","address":"\\u65b0\\u751f\\u8857\\uff11\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '017906', 'quanjia', 'zh-tw', 1000),
(9235, 6159, '5911-6159', 1, '中和新中穗店', '{"number":"017101","shop":"\\u4e2d\\u548c\\u65b0\\u4e2d\\u7a57\\u5e97","phone":"0222253237","address":"\\u65b0\\u751f\\u8857\\uff18\\u865f\\uff11\\u6a13"}', '017101', 'quanjia', 'zh-tw', 1000),
(9236, 6159, '5911-6159', 1, '中和烘爐店', '{"number":"017717","shop":"\\u4e2d\\u548c\\u70d8\\u7210\\u5e97","phone":"0229468782","address":"\\u8208\\u5357\\u8def\\uff12\\u6bb5\\uff11\\uff12\\uff10\\u865f\\uff11\\u6a13"}', '017717', 'quanjia', 'zh-tw', 1000),
(9237, 6159, '5911-6159', 1, '中和新興店', '{"number":"018905","shop":"\\u4e2d\\u548c\\u65b0\\u8208\\u5e97","phone":"0229427198","address":"\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff16\\u865f"}', '018905', 'quanjia', 'zh-tw', 1000),
(9238, 6159, '5911-6159', 1, '中和南興店', '{"number":"018318","shop":"\\u4e2d\\u548c\\u5357\\u8208\\u5e97","phone":"0229420466","address":"\\u8208\\u5357\\u8def\\u4e8c\\u6bb5\\uff15\\u865f"}', '018318', 'quanjia', 'zh-tw', 1000),
(9239, 6159, '5911-6159', 1, '中和新秀店', '{"number":"012255","shop":"\\u4e2d\\u548c\\u65b0\\u79c0\\u5e97","phone":"0229426524","address":"\\u79c0\\u6717\\u8def\\u4e09\\u6bb5\\uff14\\uff14\\u865f\\uff11\\u6a13"}', '012255', 'quanjia', 'zh-tw', 1000),
(9240, 6159, '5911-6159', 1, '中和福美店', '{"number":"011460","shop":"\\u4e2d\\u548c\\u798f\\u7f8e\\u5e97","phone":"0222435180","address":"\\u6c38\\u548c\\u8def\\uff17\\uff14\\u865f\\uff11\\u6a13"}', '011460', 'quanjia', 'zh-tw', 1000),
(9241, 6159, '5911-6159', 1, '中和永貞店', '{"number":"016605","shop":"\\u4e2d\\u548c\\u6c38\\u8c9e\\u5e97","phone":"0229288350","address":"\\u6c38\\u8c9e\\u8def\\uff12\\uff14\\uff14\\u865f"}', '016605', 'quanjia', 'zh-tw', 1000),
(9242, 6159, '5911-6159', 1, '中和新慶店', '{"number":"016753","shop":"\\u4e2d\\u548c\\u65b0\\u6176\\u5e97","phone":"0282217342","address":"\\u54e1\\u5c71\\u8def\\uff11\\uff13\\uff17\\u865f\\uff11\\u6a13"}', '016753', 'quanjia', 'zh-tw', 1000),
(9243, 6159, '5911-6159', 1, '中和員山店', '{"number":"015632","shop":"\\u4e2d\\u548c\\u54e1\\u5c71\\u5e97","phone":"0222267296","address":"\\u54e1\\u5c71\\u8def\\uff13\\uff12\\uff15\\u4e4b\\uff14\\u865f\\u3001\\u4e4b\\uff15\\u865f\\uff11\\u6a13"}', '015632', 'quanjia', 'zh-tw', 1000),
(9244, 6159, '5911-6159', 1, '中和員慶店', '{"number":"016681","shop":"\\u4e2d\\u548c\\u54e1\\u6176\\u5e97","phone":"0222236924","address":"\\u54e1\\u5c71\\u8def\\uff17\\uff13\\u865f\\u4e00\\u6a13"}', '016681', 'quanjia', 'zh-tw', 1000),
(9245, 6159, '5911-6159', 1, '中和安邦店', '{"number":"013339","shop":"\\u4e2d\\u548c\\u5b89\\u90a6\\u5e97","phone":"0222460866","address":"\\u5713\\u901a\\u8def\\uff11\\uff16\\uff19\\u865f"}', '013339', 'quanjia', 'zh-tw', 1000),
(9246, 6159, '5911-6159', 1, '中和圓峰店', '{"number":"016458","shop":"\\u4e2d\\u548c\\u5713\\u5cf0\\u5e97","phone":"0222433191","address":"\\u5713\\u901a\\u8def\\uff12\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '016458', 'quanjia', 'zh-tw', 1000),
(9247, 6159, '5911-6159', 1, '中和圓通店', '{"number":"018586","shop":"\\u4e2d\\u548c\\u5713\\u901a\\u5e97","phone":"0222454902","address":"\\u5713\\u901a\\u8def\\uff13\\uff10\\uff17\\u4e4b\\uff15\\u865f"}', '018586', 'quanjia', 'zh-tw', 1000),
(9248, 6159, '5911-6159', 1, '中和凌雲店', '{"number":"017209","shop":"\\u4e2d\\u548c\\u51cc\\u96f2\\u5e97","phone":"0222427725","address":"\\u5713\\u901a\\u8def\\uff13\\uff16\\uff17\\u5df7\\uff12\\u865f"}', '017209', 'quanjia', 'zh-tw', 1000),
(9249, 6159, '5911-6159', 1, '中和錦順店', '{"number":"014503","shop":"\\u4e2d\\u548c\\u9326\\u9806\\u5e97","phone":"0222426992","address":"\\u5713\\u901a\\u8def\\uff13\\uff19\\uff15\\u865f\\uff11\\u6a13"}', '014503', 'quanjia', 'zh-tw', 1000),
(9250, 6159, '5911-6159', 1, '中和中安店', '{"number":"016316","shop":"\\u4e2d\\u548c\\u4e2d\\u5b89\\u5e97","phone":"0229256006","address":"\\u4e2d\\u5b89\\u8857\\uff11\\uff19\\uff12\\u865f"}', '016316', 'quanjia', 'zh-tw', 1000),
(9251, 6159, '5911-6159', 1, '中和中鼎店', '{"number":"015370","shop":"\\u4e2d\\u548c\\u4e2d\\u9f0e\\u5e97","phone":"0229294187","address":"\\u4e2d\\u5b89\\u91cc\\u4e2d\\u5b89\\u8857\\uff18\\uff10\\u865f\\u4e00\\u6a13"}', '015370', 'quanjia', 'zh-tw', 1000),
(9252, 6159, '5911-6159', 1, '中和新漳和店', '{"number":"017932","shop":"\\u4e2d\\u548c\\u65b0\\u6f33\\u548c\\u5e97","phone":"0222463806","address":"\\u4e2d\\u548c\\u8def\\uff12\\uff14\\u865f\\uff11\\u6a13"}', '017932', 'quanjia', 'zh-tw', 1000),
(9253, 6159, '5911-6159', 1, '中和名揚店', '{"number":"017597","shop":"\\u4e2d\\u548c\\u540d\\u63da\\u5e97","phone":"0229266847","address":"\\u4e2d\\u548c\\u8def\\uff13\\uff10\\uff10\\u865f\\uff11\\u6a13"}', '017597', 'quanjia', 'zh-tw', 1000),
(9254, 6159, '5911-6159', 1, '中和中和店', '{"number":"015820","shop":"\\u4e2d\\u548c\\u4e2d\\u548c\\u5e97","phone":"0232338551","address":"\\u4e2d\\u548c\\u8def\\uff14\\uff18\\uff10\\u865f\\uff11\\uff26"}', '015820', 'quanjia', 'zh-tw', 1000),
(9255, 6159, '5911-6159', 1, '中和元氣店', '{"number":"016076","shop":"\\u4e2d\\u548c\\u5143\\u6c23\\u5e97","phone":"0222256901","address":"\\u4e2d\\u5c71\\u8def\\uff13\\u6bb5\\uff13\\uff19\\u865f\\uff12\\u6a13"}', '016076', 'quanjia', 'zh-tw', 1000),
(9256, 6159, '5911-6159', 1, '中和勝鴻店', '{"number":"012373","shop":"\\u4e2d\\u548c\\u52dd\\u9d3b\\u5e97","phone":"0282451477","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\u5df7\\uff14\\uff15\\u5f04\\uff11\\u865f\\uff11\\u6a13"}', '012373', 'quanjia', 'zh-tw', 1000),
(9257, 6159, '5911-6159', 1, '中和中業店', '{"number":"017744","shop":"\\u4e2d\\u548c\\u4e2d\\u696d\\u5e97","phone":"0232343384","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff13\\uff18\\uff13\\uff06\\uff13\\uff18\\uff15\\u865f\\uff11\\u6a13"}', '017744', 'quanjia', 'zh-tw', 1000),
(9258, 6159, '5911-6159', 1, '中和中環店', '{"number":"014683","shop":"\\u4e2d\\u548c\\u4e2d\\u74b0\\u5e97","phone":"0222267465","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff11\\uff11\\u865f\\uff11\\u6a13"}', '014683', 'quanjia', 'zh-tw', 1000),
(9259, 6159, '5911-6159', 1, '中和環球店', '{"number":"016030","shop":"\\u4e2d\\u548c\\u74b0\\u7403\\u5e97","phone":"0232349461","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff12\\uff10\\u4e4b\\uff11\\uff11\\u865f"}', '016030', 'quanjia', 'zh-tw', 1000),
(9260, 6159, '5911-6159', 1, '中和環中店', '{"number":"013862","shop":"\\u4e2d\\u548c\\u74b0\\u4e2d\\u5e97","phone":"0222214528","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff12\\uff12\\u865f\\u5730\\u4e0b\\u4e8c\\u6a13"}', '013862', 'quanjia', 'zh-tw', 1000),
(9261, 6159, '5911-6159', 1, '中和中漢店', '{"number":"016420","shop":"\\u4e2d\\u548c\\u4e2d\\u6f22\\u5e97","phone":"0222239355","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff11\\uff14\\uff16\\uff0d\\uff12\\u865f"}', '016420', 'quanjia', 'zh-tw', 1000),
(9262, 6159, '5911-6159', 1, '中和巴黎店', '{"number":"014516","shop":"\\u4e2d\\u548c\\u5df4\\u9ece\\u5e97","phone":"0222407145","address":"\\u4e2d\\u8208\\u8857\\uff12\\uff13\\uff15\\u5df7\\uff11\\u865f"}', '014516', 'quanjia', 'zh-tw', 1000),
(9263, 6159, '5911-6159', 1, '中和金原店', '{"number":"017210","shop":"\\u4e2d\\u548c\\u91d1\\u539f\\u5e97","phone":"0282211769","address":"\\u4e2d\\u539f\\u8857\\uff11\\uff12\\uff16\\u865f\\uff11\\u6a13"}', '017210', 'quanjia', 'zh-tw', 1000),
(9264, 6159, '5911-6159', 1, '中和德民店', '{"number":"015975","shop":"\\u4e2d\\u548c\\u5fb7\\u6c11\\u5e97","phone":"0222214027","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff11\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '015975', 'quanjia', 'zh-tw', 1000),
(9265, 6159, '5911-6159', 1, '中和和興店', '{"number":"017188","shop":"\\u4e2d\\u548c\\u548c\\u8208\\u5e97","phone":"0222446249","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff11\\u865f\\uff0c\\uff11\\uff13\\u865f"}', '017188', 'quanjia', 'zh-tw', 1000),
(9266, 6159, '5911-6159', 1, '中和鎮順店', '{"number":"015821","shop":"\\u4e2d\\u548c\\u93ae\\u9806\\u5e97","phone":"0222427811","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff16\\uff17\\u5df7\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '015821', 'quanjia', 'zh-tw', 1000),
(9267, 6159, '5911-6159', 1, '中和力行店', '{"number":"017455","shop":"\\u4e2d\\u548c\\u529b\\u884c\\u5e97","phone":"0222435392","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff14\\uff12\\u865f"}', '017455', 'quanjia', 'zh-tw', 1000),
(9268, 6159, '5911-6159', 1, '中和福朋店', '{"number":"014505","shop":"\\u4e2d\\u548c\\u798f\\u670b\\u5e97","phone":"0222286315","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff13\\uff13\\u865f"}', '014505', 'quanjia', 'zh-tw', 1000),
(9269, 6159, '5911-6159', 1, '中和國華店', '{"number":"018937","shop":"\\u4e2d\\u548c\\u570b\\u83ef\\u5e97","phone":"0232343009","address":"\\u4e2d\\u6b63\\u8def\\uff18\\uff16\\uff18\\uff0d\\uff11\\u865f"}', '018937', 'quanjia', 'zh-tw', 1000),
(9270, 6159, '5911-6159', 1, '中和新忠店', '{"number":"013906","shop":"\\u4e2d\\u548c\\u65b0\\u5fe0\\u5e97","phone":"0229425376","address":"\\u5fe0\\u5b5d\\u8857\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '013906', 'quanjia', 'zh-tw', 1000),
(9271, 6159, '5911-6159', 1, '中和智山店', '{"number":"018163","shop":"\\u4e2d\\u548c\\u667a\\u5c71\\u5e97","phone":"0289422563","address":"\\u81ea\\u7acb\\u8def\\uff13\\uff18\\u3001\\uff13\\uff18\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018163', 'quanjia', 'zh-tw', 1000),
(9272, 6160, '5912-6160', 1, '新竹新民店', '{"number":"015209","shop":"\\u65b0\\u7af9\\u65b0\\u6c11\\u5e97","phone":"035241565","address":"\\u5317\\u5927\\u8def\\uff12\\uff15\\uff12\\u865f"}', '015209', 'quanjia', 'zh-tw', 1000),
(9273, 6160, '5912-6160', 1, '新竹漁港店', '{"number":"017437","shop":"\\u65b0\\u7af9\\u6f01\\u6e2f\\u5e97","phone":"035364060","address":"\\u6771\\u5927\\u8def\\u56db\\u6bb5\\uff12\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '017437', 'quanjia', 'zh-tw', 1000),
(9274, 6160, '5912-6160', 1, '新竹光華店', '{"number":"017230","shop":"\\u65b0\\u7af9\\u5149\\u83ef\\u5e97","phone":"035427691","address":"\\u5149\\u83ef\\u5317\\u8857\\uff16\\uff13\\u865f"}', '017230', 'quanjia', 'zh-tw', 1000),
(9275, 6160, '5912-6160', 1, '新竹光田店', '{"number":"017836","shop":"\\u65b0\\u7af9\\u5149\\u7530\\u5e97","phone":"035312245","address":"\\u5149\\u7530\\u91cc\\u6c34\\u7530\\u8857\\uff11\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '017836', 'quanjia', 'zh-tw', 1000),
(9276, 6160, '5912-6160', 1, '新竹金竹店', '{"number":"013053","shop":"\\u65b0\\u7af9\\u91d1\\u7af9\\u5e97","phone":"035327930","address":"\\u91d1\\u7af9\\u8def\\uff11\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '013053', 'quanjia', 'zh-tw', 1000),
(9277, 6160, '5912-6160', 1, '新竹台大醫店', '{"number":"018526","shop":"\\u65b0\\u7af9\\u53f0\\u5927\\u91ab\\u5e97","phone":"035330922","address":"\\u7d93\\u570b\\u8def\\uff11\\u6bb5\\uff14\\uff14\\uff12\\u5df7\\uff12\\uff15\\u865f"}', '018526', 'quanjia', 'zh-tw', 1000),
(9278, 6160, '5912-6160', 1, '新竹國光店', '{"number":"017193","shop":"\\u65b0\\u7af9\\u570b\\u5149\\u5e97","phone":"035334587","address":"\\u7d93\\u570b\\u8def\\uff12\\u6bb5\\uff11\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '017193', 'quanjia', 'zh-tw', 1000),
(9279, 6160, '5912-6160', 1, '新竹客進店', '{"number":"015829","shop":"\\u65b0\\u7af9\\u5ba2\\u9032\\u5e97","phone":"035250228","address":"\\u7d93\\u570b\\u8def\\u4e8c\\u6bb5\\uff15\\uff14\\uff19\\u865f"}', '015829', 'quanjia', 'zh-tw', 1000),
(9280, 6160, '5912-6160', 1, '新竹經城店', '{"number":"018130","shop":"\\u65b0\\u7af9\\u7d93\\u57ce\\u5e97","phone":"035344679","address":"\\u7d93\\u570b\\u8def\\u4e00\\u6bb5\\uff13\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '018130', 'quanjia', 'zh-tw', 1000),
(9281, 6160, '5912-6160', 1, '新竹中山店', '{"number":"015051","shop":"\\u65b0\\u7af9\\u4e2d\\u5c71\\u5e97","phone":"035268570","address":"\\u56db\\u7dad\\u8def\\uff19\\uff11\\u865f"}', '015051', 'quanjia', 'zh-tw', 1000),
(9282, 6160, '5912-6160', 1, '新竹新美店', '{"number":"018384","shop":"\\u65b0\\u7af9\\u65b0\\u7f8e\\u5e97","phone":"035421870","address":"\\u7530\\u7f8e\\u4e09\\u8857\\uff14\\uff17\\u865f"}', '018384', 'quanjia', 'zh-tw', 1000),
(9283, 6160, '5912-6160', 1, '新竹荷蘭村店', '{"number":"016447","shop":"\\u65b0\\u7af9\\u8377\\u862d\\u6751\\u5e97","phone":"035451966","address":"\\u6b66\\u9675\\u8def\\uff11\\uff17\\uff15\\u5df7\\uff12\\u865f\\uff11\\u6a13"}', '016447', 'quanjia', 'zh-tw', 1000),
(9284, 6160, '5912-6160', 1, '新竹新武陵店', '{"number":"017010","shop":"\\u65b0\\u7af9\\u65b0\\u6b66\\u9675\\u5e97","phone":"035426961","address":"\\u6b66\\u9675\\u8def\\uff12\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '017010', 'quanjia', 'zh-tw', 1000),
(9285, 6160, '5912-6160', 1, '新竹鐵道店', '{"number":"017068","shop":"\\u65b0\\u7af9\\u9435\\u9053\\u5e97","phone":"035339257","address":"\\u6b66\\u9675\\u8def\\uff12\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '017068', 'quanjia', 'zh-tw', 1000),
(9286, 6160, '5912-6160', 1, '新竹天群店', '{"number":"018795","shop":"\\u65b0\\u7af9\\u5929\\u7fa4\\u5e97","phone":"035322090","address":"\\u6b66\\u9675\\u8def\\uff13\\uff16\\uff0d\\uff11\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018795', 'quanjia', 'zh-tw', 1000),
(9287, 6160, '5912-6160', 1, '新竹武東店', '{"number":"015928","shop":"\\u65b0\\u7af9\\u6b66\\u6771\\u5e97","phone":"035409154","address":"\\u6b66\\u9675\\u8def\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '015928', 'quanjia', 'zh-tw', 1000),
(9288, 6160, '5912-6160', 1, '新竹西大店', '{"number":"015130","shop":"\\u65b0\\u7af9\\u897f\\u5927\\u5e97","phone":"035258280","address":"\\u897f\\u5927\\u8def\\uff14\\uff10\\uff12\\uff0e\\uff14\\uff10\\uff14\\u865f\\uff11\\u6a13"}', '015130', 'quanjia', 'zh-tw', 1000),
(9289, 6160, '5912-6160', 1, '新竹大富店', '{"number":"018056","shop":"\\u65b0\\u7af9\\u5927\\u5bcc\\u5e97","phone":"035240080","address":"\\u897f\\u5927\\u8def\\uff15\\uff12\\uff17\\u865f"}', '018056', 'quanjia', 'zh-tw', 1000),
(9290, 6160, '5912-6160', 1, '新竹大竹店', '{"number":"015598","shop":"\\u65b0\\u7af9\\u5927\\u7af9\\u5e97","phone":"035326698","address":"\\u897f\\u5927\\u8def\\uff18\\uff14\\uff18\\u865f"}', '015598', 'quanjia', 'zh-tw', 1000),
(9291, 6160, '5912-6160', 1, '新竹遠百店', '{"number":"018836","shop":"\\u65b0\\u7af9\\u9060\\u767e\\u5e97","phone":"035213733","address":"\\u897f\\u9580\\u8857\\uff11\\uff10\\uff11\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018836', 'quanjia', 'zh-tw', 1000),
(9292, 6160, '5912-6160', 1, '新竹師專店', '{"number":"018463","shop":"\\u65b0\\u7af9\\u5e2b\\u5c08\\u5e97","phone":"035245011","address":"\\u897f\\u9580\\u8857\\uff12\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '018463', 'quanjia', 'zh-tw', 1000),
(9293, 6160, '5912-6160', 1, '新竹金鵬店', '{"number":"014108","shop":"\\u65b0\\u7af9\\u91d1\\u9d6c\\u5e97","phone":"035229126","address":"\\u5ef6\\u5e73\\u8def\\u4e00\\u6bb5\\uff13\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '014108', 'quanjia', 'zh-tw', 1000),
(9294, 6160, '5912-6160', 1, '新竹廟口店', '{"number":"015072","shop":"\\u65b0\\u7af9\\u5edf\\u53e3\\u5e97","phone":"035244817","address":"\\u4e2d\\u5c71\\u8def\\uff19\\uff10\\u865f"}', '015072', 'quanjia', 'zh-tw', 1000),
(9295, 6160, '5912-6160', 1, '新竹水田店', '{"number":"015778","shop":"\\u65b0\\u7af9\\u6c34\\u7530\\u5e97","phone":"035222149","address":"\\u4e2d\\u6b63\\u8def\\uff12\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '015778', 'quanjia', 'zh-tw', 1000),
(9296, 6161, '5912-6161', 1, '新竹寶山店', '{"number":"014310","shop":"\\u65b0\\u7af9\\u5bf6\\u5c71\\u5e97","phone":"035779007","address":"\\u5bf6\\u5c71\\u8def\\uff14\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '014310', 'quanjia', 'zh-tw', 1000),
(9297, 6161, '5912-6161', 1, '新竹大同店', '{"number":"013835","shop":"\\u65b0\\u7af9\\u5927\\u540c\\u5e97","phone":"035277520","address":"\\u6210\\u529f\\u91cc\\u5927\\u540c\\u8def\\uff11\\uff16\\u865f\\uff11\\uff18\\u865f\\u4e00\\u6a13"}', '013835', 'quanjia', 'zh-tw', 1000),
(9298, 6161, '5912-6161', 1, '交大新研三店', '{"number":"017946","shop":"\\u4ea4\\u5927\\u65b0\\u7814\\u4e09\\u5e97","phone":"035160155","address":"\\u5927\\u5b78\\u8def\\uff11\\uff10\\uff10\\uff11\\u865f\\u7814\\u4e09\\u820d"}', '017946', 'quanjia', 'zh-tw', 1000),
(9299, 6161, '5912-6161', 1, '新竹翠峰店', '{"number":"015210","shop":"\\u65b0\\u7af9\\u7fe0\\u5cf0\\u5e97","phone":"036667396","address":"\\u9ad8\\u5cf0\\u91cc\\u9ad8\\u7fe0\\u8def\\uff13\\uff17\\uff15\\u865f"}', '015210', 'quanjia', 'zh-tw', 1000),
(9300, 6161, '5912-6161', 1, '新竹科館店', '{"number":"013052","shop":"\\u65b0\\u7af9\\u79d1\\u9928\\u5e97","phone":"035678869","address":"\\u5de5\\u696d\\u6771\\u4e8c\\u8def\\uff11\\u865f\\uff11\\u6a13"}', '013052', 'quanjia', 'zh-tw', 1000),
(9301, 6161, '5912-6161', 1, '新竹建美店', '{"number":"016448","shop":"\\u65b0\\u7af9\\u5efa\\u7f8e\\u5e97","phone":"035165610","address":"\\u516c\\u9053\\u4e94\\u8def\\u4e8c\\u6bb5\\uff12\\uff17\\uff11\\u865f\\uff11\\u6a13"}', '016448', 'quanjia', 'zh-tw', 1000),
(9302, 6161, '5912-6161', 1, '新竹德安店', '{"number":"017439","shop":"\\u65b0\\u7af9\\u5fb7\\u5b89\\u5e97","phone":"035711545","address":"\\u516c\\u9053\\u4e94\\u8def\\u4e8c\\u6bb5\\uff18\\uff19\\u865f\\uff11\\u6a13"}', '017439', 'quanjia', 'zh-tw', 1000),
(9303, 6161, '5912-6161', 1, '新竹關新店', '{"number":"015831","shop":"\\u65b0\\u7af9\\u95dc\\u65b0\\u5e97","phone":"035679359","address":"\\u95dc\\u65b0\\u6771\\u8def\\uff13\\uff15\\uff10\\u865f\\uff11\\u6a13"}', '015831', 'quanjia', 'zh-tw', 1000),
(9304, 6161, '5912-6161', 1, '新竹水木店', '{"number":"017242","shop":"\\u65b0\\u7af9\\u6c34\\u6728\\u5e97","phone":"035735178","address":"\\u5149\\u5fa9\\u8def\\uff12\\u6bb5\\uff11\\uff10\\uff11\\u865f\\u6c34\\u6728\\u9910\\u5ef3\\uff11\\u6a13"}', '017242', 'quanjia', 'zh-tw', 1000),
(9305, 6161, '5912-6161', 1, '新竹新龍安店', '{"number":"017890","shop":"\\u65b0\\u7af9\\u65b0\\u9f8d\\u5b89\\u5e97","phone":"036687149","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\uff15\\uff12\\uff15\\u5df7\\uff11\\uff13\\u865f\\uff11\\u6a13"}', '017890', 'quanjia', 'zh-tw', 1000),
(9306, 6161, '5912-6161', 1, '新竹科學店', '{"number":"016235","shop":"\\u65b0\\u7af9\\u79d1\\u5b78\\u5e97","phone":"035794048","address":"\\u5149\\u5fa9\\u8def\\u4e00\\u6bb5\\uff16\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '016235', 'quanjia', 'zh-tw', 1000),
(9307, 6161, '5912-6161', 1, '新竹交大店', '{"number":"017757","shop":"\\u65b0\\u7af9\\u4ea4\\u5927\\u5e97","phone":"035739817","address":"\\u5149\\u660e\\u91cc\\u5927\\u5b78\\u8def\\uff11\\uff10\\uff10\\uff11\\u4e4b\\uff12\\u865f\\u4e00\\u6a13"}', '017757', 'quanjia', 'zh-tw', 1000),
(9308, 6161, '5912-6161', 1, '新竹新興店', '{"number":"018011","shop":"\\u65b0\\u7af9\\u65b0\\u8208\\u5e97","phone":"035629557","address":"\\u5149\\u93ae\\u91cc\\u5357\\u5927\\u8def\\uff15\\uff17\\uff17\\u865f\\u4e00\\u6a13"}', '018011', 'quanjia', 'zh-tw', 1000),
(9309, 6161, '5912-6161', 1, '新竹公學店', '{"number":"016330","shop":"\\u65b0\\u7af9\\u516c\\u5b78\\u5e97","phone":"035748909","address":"\\u5efa\\u529f\\u4e00\\u8def\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '016330', 'quanjia', 'zh-tw', 1000),
(9310, 6161, '5912-6161', 1, '新竹建源店', '{"number":"015251","shop":"\\u65b0\\u7af9\\u5efa\\u6e90\\u5e97","phone":"035748788","address":"\\u5efa\\u4e2d\\u4e00\\u8def\\uff16\\uff10\\u865f\\uff11\\u6a13"}', '015251', 'quanjia', 'zh-tw', 1000),
(9311, 6161, '5912-6161', 1, '新竹金科店', '{"number":"017261","shop":"\\u65b0\\u7af9\\u91d1\\u79d1\\u5e97","phone":"035770176","address":"\\u91d1\\u5c71\\u8857\\uff11\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '017261', 'quanjia', 'zh-tw', 1000),
(9312, 6161, '5912-6161', 1, '新竹十一街店', '{"number":"018651","shop":"\\u65b0\\u7af9\\u5341\\u4e00\\u8857\\u5e97","phone":"035799553","address":"\\u91d1\\u5c71\\u8857\\uff16\\uff13\\u865f\\uff11\\u6a13\\u90e8\\u4efd"}', '018651', 'quanjia', 'zh-tw', 1000),
(9313, 6161, '5912-6161', 1, '新竹金元寶店', '{"number":"015596","shop":"\\u65b0\\u7af9\\u91d1\\u5143\\u5bf6\\u5e97","phone":"035794484","address":"\\u91d1\\u5c71\\u4e5d\\u8857\\uff16\\uff18\\u865f\\uff11\\u6a13"}', '015596', 'quanjia', 'zh-tw', 1000),
(9314, 6161, '5912-6161', 1, '新竹竹科店', '{"number":"013181","shop":"\\u65b0\\u7af9\\u7af9\\u79d1\\u5e97","phone":"035770320","address":"\\u79d1\\u5b78\\u5de5\\u696d\\u5712\\u5340\\u7af9\\u6751\\u4e03\\u8def\\uff17\\u865f\\uff11\\u6a13"}', '013181', 'quanjia', 'zh-tw', 1000),
(9315, 6161, '5912-6161', 1, '新竹旺宏店', '{"number":"012254","shop":"\\u65b0\\u7af9\\u65fa\\u5b8f\\u5e97","phone":"035631811","address":"\\u79d1\\u5b78\\u5712\\u5340\\u529b\\u884c\\u8def\\uff11\\uff16\\u865f"}', '012254', 'quanjia', 'zh-tw', 1000),
(9316, 6161, '5912-6161', 1, '新竹晶電店', '{"number":"017707","shop":"\\u65b0\\u7af9\\u6676\\u96fb\\u5e97","phone":"035797849","address":"\\u79d1\\u5b78\\u5712\\u5340\\u529b\\u884c\\u8def\\uff12\\uff11\\u865f\\uff13\\u6a13"}', '017707', 'quanjia', 'zh-tw', 1000),
(9317, 6161, '5912-6161', 1, '新竹新民治店', '{"number":"015155","shop":"\\u65b0\\u7af9\\u65b0\\u6c11\\u6cbb\\u5e97","phone":"036687741","address":"\\u79d1\\u5712\\u91cc\\uff18\\u9130\\u79d1\\u5b78\\u5712\\u8def\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '015155', 'quanjia', 'zh-tw', 1000),
(9318, 6161, '5912-6161', 1, '新竹旺宏三店', '{"number":"018845","shop":"\\u65b0\\u7af9\\u65fa\\u5b8f\\u4e09\\u5e97","phone":"035771386","address":"\\u529b\\u884c\\u8def\\uff11\\uff19\\u865f\\uff11\\u6a13\\uff08\\u65b0\\u7af9\\u79d1\\u5b78\\u5712\\u5340\\uff09"}', '018845', 'quanjia', 'zh-tw', 1000),
(9319, 6161, '5912-6161', 1, '新竹新日光店', '{"number":"016531","shop":"\\u65b0\\u7af9\\u65b0\\u65e5\\u5149\\u5e97","phone":"035794586","address":"\\u529b\\u884c\\u4e09\\u8def\\uff17\\u865f\\uff11\\u6a13\\uff08\\u79d1\\u5b78\\u5712\\u5340\\uff09"}', '016531', 'quanjia', 'zh-tw', 1000),
(9320, 6161, '5912-6161', 1, '新竹頎邦二店', '{"number":"016756","shop":"\\u65b0\\u7af9\\u980e\\u90a6\\u4e8c\\u5e97","phone":"035678788","address":"\\u529b\\u884c\\u4e94\\u8def\\uff13\\u865f\\uff12\\u6a13\\uff08\\u65b0\\u7af9\\u79d1\\u5b78\\u5712\\u5340\\uff09"}', '016756', 'quanjia', 'zh-tw', 1000),
(9321, 6161, '5912-6161', 1, '新竹元太店', '{"number":"014827","shop":"\\u65b0\\u7af9\\u5143\\u592a\\u5e97","phone":"035779271","address":"\\u529b\\u884c\\u4e00\\u8def\\uff13\\u865f\\uff22\\uff11\\u54e1\\u5de5\\u9910\\u5ef3"}', '014827', 'quanjia', 'zh-tw', 1000),
(9322, 6161, '5912-6161', 1, '新竹慈雲店', '{"number":"018012","shop":"\\u65b0\\u7af9\\u6148\\u96f2\\u5e97","phone":"035771028","address":"\\u7acb\\u9d6c\\u8def\\uff11\\uff10\\uff11\\u865f"}', '018012', 'quanjia', 'zh-tw', 1000),
(9323, 6161, '5912-6161', 1, '新竹龍山店', '{"number":"015830","shop":"\\u65b0\\u7af9\\u9f8d\\u5c71\\u5e97","phone":"036687058","address":"\\u9f8d\\u5c71\\u6771\\u8def\\uff12\\uff12\\uff18\\u865f\\uff11\\u6a13"}', '015830', 'quanjia', 'zh-tw', 1000),
(9324, 6161, '5912-6161', 1, '新竹綠光店', '{"number":"016367","shop":"\\u65b0\\u7af9\\u7da0\\u5149\\u5e97","phone":"035717181","address":"\\u7da0\\u6c34\\u8def\\uff16\\uff13\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '016367', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(9325, 6161, '5912-6161', 1, '新竹民樂店', '{"number":"017191","shop":"\\u65b0\\u7af9\\u6c11\\u6a02\\u5e97","phone":"035359133","address":"\\u6c11\\u751f\\u8def\\uff12\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '017191', 'quanjia', 'zh-tw', 1000),
(9326, 6161, '5912-6161', 1, '新竹五福店', '{"number":"014935","shop":"\\u65b0\\u7af9\\u4e94\\u798f\\u5e97","phone":"035292709","address":"\\u660e\\u6e56\\u8def\\uff11\\uff12\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '014935', 'quanjia', 'zh-tw', 1000),
(9327, 6161, '5912-6161', 1, '新竹向陽店', '{"number":"016806","shop":"\\u65b0\\u7af9\\u5411\\u967d\\u5e97","phone":"035208093","address":"\\u660e\\u6e56\\u8def\\uff16\\uff14\\uff16\\u865f"}', '016806', 'quanjia', 'zh-tw', 1000),
(9328, 6161, '5912-6161', 1, '新竹得美店', '{"number":"017960","shop":"\\u65b0\\u7af9\\u5f97\\u7f8e\\u5e97","phone":"035610687","address":"\\u5357\\u5927\\u8def\\uff12\\uff15\\uff16\\u865f\\uff11\\u6a13"}', '017960', 'quanjia', 'zh-tw', 1000),
(9329, 6161, '5912-6161', 1, '新竹東大店', '{"number":"014018","shop":"\\u65b0\\u7af9\\u6771\\u5927\\u5e97","phone":"035619916","address":"\\u5357\\u5927\\u8def\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '014018', 'quanjia', 'zh-tw', 1000),
(9330, 6161, '5912-6161', 1, '新竹民族店', '{"number":"016807","shop":"\\u65b0\\u7af9\\u6c11\\u65cf\\u5e97","phone":"035330300","address":"\\u4e09\\u6c11\\u91cc\\u6c11\\u65cf\\u8def\\uff11\\uff13\\uff19\\u865f\\u4e00\\u6a13"}', '016807', 'quanjia', 'zh-tw', 1000),
(9331, 6161, '5912-6161', 1, '新竹食品店', '{"number":"016055","shop":"\\u65b0\\u7af9\\u98df\\u54c1\\u5e97","phone":"035753302","address":"\\u98df\\u54c1\\u8def\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '016055', 'quanjia', 'zh-tw', 1000),
(9332, 6161, '5912-6161', 1, '新竹鐵支店', '{"number":"012583","shop":"\\u65b0\\u7af9\\u9435\\u652f\\u5e97","phone":"035347461","address":"\\u9435\\u9053\\u8def\\u4e00\\u6bb5\\uff12\\uff18\\u5df7\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '012583', 'quanjia', 'zh-tw', 1000),
(9333, 6161, '5912-6161', 1, '新竹品明店', '{"number":"017192","shop":"\\u65b0\\u7af9\\u54c1\\u660e\\u5e97","phone":"035625101","address":"\\u65b0\\u5149\\u91cc\\u98df\\u54c1\\u8def\\uff14\\uff10\\uff16\\u865f\\uff11\\u6a13"}', '017192', 'quanjia', 'zh-tw', 1000),
(9334, 6161, '5912-6161', 1, '新竹新莊店', '{"number":"015963","shop":"\\u65b0\\u7af9\\u65b0\\u838a\\u5e97","phone":"035794795","address":"\\u65b0\\u838a\\u8857\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '015963', 'quanjia', 'zh-tw', 1000),
(9335, 6161, '5912-6161', 1, '新竹瑞昱二店', '{"number":"014791","shop":"\\u65b0\\u7af9\\u745e\\u6631\\u4e8c\\u5e97","phone":"035679706","address":"\\u5712\\u5340\\u4e8c\\u8def\\uff19\\u865f\\uff11\\u6a13"}', '014791', 'quanjia', 'zh-tw', 1000),
(9336, 6161, '5912-6161', 1, '新竹頎邦店', '{"number":"016597","shop":"\\u65b0\\u7af9\\u980e\\u90a6\\u5e97","phone":"036687601","address":"\\u5c55\\u696d\\u4e00\\u8def\\uff11\\uff10\\u865f\\uff19\\u6a13\\ufe5d\\u65b0\\u7af9\\u79d1\\u5b78\\u5712\\u5340\\ufe5e"}', '016597', 'quanjia', 'zh-tw', 1000),
(9337, 6161, '5912-6161', 1, '新竹師苑店', '{"number":"018640","shop":"\\u65b0\\u7af9\\u5e2b\\u82d1\\u5e97","phone":"035618432","address":"\\u632f\\u8208\\u91cc\\u5357\\u5927\\u8def\\uff16\\uff13\\uff16\\u865f\\uff0c\\uff16\\uff13\\uff18\\u865f\\u4e00\\u6a13"}', '018640', 'quanjia', 'zh-tw', 1000),
(9338, 6161, '5912-6161', 1, '新竹金高店', '{"number":"018738","shop":"\\u65b0\\u7af9\\u91d1\\u9ad8\\u5e97","phone":"035425585","address":"\\u4e2d\\u83ef\\u8def\\uff12\\u6bb5\\uff11\\u865f"}', '018738', 'quanjia', 'zh-tw', 1000),
(9339, 6161, '5912-6161', 1, '新竹新四維店', '{"number":"018190","shop":"\\u65b0\\u7af9\\u65b0\\u56db\\u7dad\\u5e97","phone":"035247191","address":"\\u4e2d\\u83ef\\u8def\\u4e09\\u6bb5\\uff18\\u865f\\uff11\\u3001\\uff12\\u6a13"}', '018190', 'quanjia', 'zh-tw', 1000),
(9340, 6161, '5912-6161', 1, '新竹經華店', '{"number":"016036","shop":"\\u65b0\\u7af9\\u7d93\\u83ef\\u5e97","phone":"035341261","address":"\\u4e2d\\u83ef\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff11\\u865f"}', '016036', 'quanjia', 'zh-tw', 1000),
(9341, 6161, '5912-6161', 1, '新竹巨城店', '{"number":"015680","shop":"\\u65b0\\u7af9\\u5de8\\u57ce\\u5e97","phone":"035319068","address":"\\u4e2d\\u592e\\u8def\\uff12\\uff12\\uff19\\u865f\\uff22\\uff11"}', '015680', 'quanjia', 'zh-tw', 1000),
(9342, 6161, '5912-6161', 1, '新竹金站店', '{"number":"017278","shop":"\\u65b0\\u7af9\\u91d1\\u7ad9\\u5e97","phone":"035281022","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff10\\uff10\\u865f\\u5730\\u4e0b\\u5ba4\\u3001\\uff11\\uff0d\\uff12\\u6a13"}', '017278', 'quanjia', 'zh-tw', 1000),
(9343, 6161, '5912-6161', 1, '新竹竹蓮店', '{"number":"016037","shop":"\\u65b0\\u7af9\\u7af9\\u84ee\\u5e97","phone":"035620023","address":"\\u7af9\\u84ee\\u8857\\uff11\\uff10\\uff14\\u865f\\uff11\\u6a13"}', '016037', 'quanjia', 'zh-tw', 1000),
(9344, 6162, '5912-6162', 1, '新竹庄頭店', '{"number":"014005","shop":"\\u65b0\\u7af9\\u5e84\\u982d\\u5e97","phone":"035400020","address":"\\u5927\\u5e84\\u8def\\uff11\\uff17\\u865f"}', '014005', 'quanjia', 'zh-tw', 1000),
(9345, 6162, '5912-6162', 1, '新竹內湖店', '{"number":"014131","shop":"\\u65b0\\u7af9\\u5167\\u6e56\\u5e97","phone":"035377351","address":"\\u5167\\u6e56\\u8def\\uff13\\uff19\\u865f"}', '014131', 'quanjia', 'zh-tw', 1000),
(9346, 6162, '5912-6162', 1, '新竹東埔店', '{"number":"016366","shop":"\\u65b0\\u7af9\\u6771\\u57d4\\u5e97","phone":"035401779","address":"\\u725b\\u57d4\\u6771\\u8def\\uff11\\uff19\\uff16\\u865f\\uff11\\u6a13"}', '016366', 'quanjia', 'zh-tw', 1000),
(9347, 6162, '5912-6162', 1, '新竹華夏店', '{"number":"014507","shop":"\\u65b0\\u7af9\\u83ef\\u590f\\u5e97","phone":"035398160","address":"\\u57d4\\u524d\\u8def\\uff14\\uff19\\u865f"}', '014507', 'quanjia', 'zh-tw', 1000),
(9348, 6162, '5912-6162', 1, '新竹中華店', '{"number":"016596","shop":"\\u65b0\\u7af9\\u4e2d\\u83ef\\u5e97","phone":"035183072","address":"\\u4e94\\u798f\\u8def\\u4e8c\\u6bb5\\uff17\\uff17\\uff16\\u3001\\uff17\\uff17\\uff18\\u865f"}', '016596', 'quanjia', 'zh-tw', 1000),
(9349, 6162, '5912-6162', 1, '新竹濱海店', '{"number":"018358","shop":"\\u65b0\\u7af9\\u6ff1\\u6d77\\u5e97","phone":"035400409","address":"\\u897f\\u6ff1\\u8def\\u4e8c\\u6bb5\\uff16\\uff10\\uff11\\u865f"}', '018358', 'quanjia', 'zh-tw', 1000),
(9350, 6162, '5912-6162', 1, '新竹大庄店', '{"number":"016851","shop":"\\u65b0\\u7af9\\u5927\\u5e84\\u5e97","phone":"035402252","address":"\\u9999\\u5317\\u8def\\uff18\\uff16\\u865f\\uff11\\u6a13"}', '016851', 'quanjia', 'zh-tw', 1000),
(9351, 6162, '5912-6162', 1, '新竹玄奘店', '{"number":"016480","shop":"\\u65b0\\u7af9\\u7384\\u5958\\u5e97","phone":"035403055","address":"\\u7384\\u5958\\u8def\\uff14\\uff18\\u865f\\uff11\\u6a13"}', '016480', 'quanjia', 'zh-tw', 1000),
(9352, 6162, '5912-6162', 1, '新竹延平店', '{"number":"014813","shop":"\\u65b0\\u7af9\\u5ef6\\u5e73\\u5e97","phone":"035380450","address":"\\u5ef6\\u5e73\\u8def\\u4e8c\\u6bb5\\uff17\\uff12\\uff17\\u5df7\\uff11\\u865f"}', '014813', 'quanjia', 'zh-tw', 1000),
(9353, 6162, '5912-6162', 1, '新竹元村店', '{"number":"011845","shop":"\\u65b0\\u7af9\\u5143\\u6751\\u5e97","phone":"035303904","address":"\\u5143\\u57f9\\u8857\\uff11\\uff19\\uff17\\uff06\\uff11\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '011845', 'quanjia', 'zh-tw', 1000),
(9354, 6162, '5912-6162', 1, '新竹學園店', '{"number":"014720","shop":"\\u65b0\\u7af9\\u5b78\\u5712\\u5e97","phone":"035397422","address":"\\u5143\\u57f9\\u8857\\uff13\\uff16\\uff15\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '014720', 'quanjia', 'zh-tw', 1000),
(9355, 6162, '5912-6162', 1, '新竹台玻店', '{"number":"016828","shop":"\\u65b0\\u7af9\\u53f0\\u73bb\\u5e97","phone":"035384820","address":"\\u4e2d\\u83ef\\u8def\\uff14\\u6bb5\\uff14\\uff17\\uff10\\u865f"}', '016828', 'quanjia', 'zh-tw', 1000),
(9356, 6162, '5912-6162', 1, '新竹中隘店', '{"number":"016139","shop":"\\u65b0\\u7af9\\u4e2d\\u9698\\u5e97","phone":"035181480","address":"\\u4e2d\\u83ef\\u8def\\u516d\\u6bb5\\uff16\\uff16\\uff17\\u865f\\u3001\\uff16\\uff16\\uff19\\u865f\\uff11\\u6a13"}', '016139', 'quanjia', 'zh-tw', 1000),
(9357, 6162, '5912-6162', 1, '新竹香山店', '{"number":"016328","shop":"\\u65b0\\u7af9\\u9999\\u5c71\\u5e97","phone":"035378583","address":"\\u4e2d\\u83ef\\u8def\\u4e94\\u6bb5\\uff16\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '016328', 'quanjia', 'zh-tw', 1000),
(9358, 6162, '5912-6162', 1, '新竹頂福店', '{"number":"018609","shop":"\\u65b0\\u7af9\\u9802\\u798f\\u5e97","phone":"035398942","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff14\\uff10\\u865f\\uff11\\u6a13"}', '018609', 'quanjia', 'zh-tw', 1000),
(9359, 6162, '5912-6162', 1, '新竹金福店', '{"number":"016492","shop":"\\u65b0\\u7af9\\u91d1\\u798f\\u5e97","phone":"035303020","address":"\\u4e2d\\u5c71\\u8def\\uff16\\uff14\\uff10\\u5df7\\uff11\\uff17\\uff10\\u865f\\uff11\\u6a13"}', '016492', 'quanjia', 'zh-tw', 1000),
(9360, 6163, '5913-6163', 1, '峨眉台三線店', '{"number":"017987","shop":"\\u5ce8\\u7709\\u53f0\\u4e09\\u7dda\\u5e97","phone":"035800107","address":"\\u77f3\\u4e95\\u6751\\u77f3\\u4e95\\uff12\\uff17\\uff0d\\uff11\\uff17\\u865f"}', '017987', 'quanjia', 'zh-tw', 1000),
(9361, 6164, '5913-6164', 1, '關西正義店', '{"number":"018884","shop":"\\u95dc\\u897f\\u6b63\\u7fa9\\u5e97","phone":"035870347","address":"\\u6b63\\u7fa9\\u8def\\uff12\\uff15\\uff14\\u865f\\uff0c\\uff12\\uff15\\uff16\\u865f"}', '018884', 'quanjia', 'zh-tw', 1000),
(9362, 6164, '5913-6164', 1, '關西宏義店', '{"number":"015992","shop":"\\u95dc\\u897f\\u5b8f\\u7fa9\\u5e97","phone":"035170455","address":"\\u6b63\\u7fa9\\u8def\\uff12\\uff17\\u865f\\uff11\\u6a13"}', '015992', 'quanjia', 'zh-tw', 1000),
(9363, 6165, '5913-6165', 1, '橫山致豐店', '{"number":"016494","shop":"\\u6a6b\\u5c71\\u81f4\\u8c50\\u5e97","phone":"035931649","address":"\\u5927\\u809a\\u6751\\uff11\\uff12\\u9130\\u4e2d\\u8c50\\u8def\\u4e8c\\u6bb5\\uff11\\uff11\\uff12\\uff0d\\uff12\\u865f"}', '016494', 'quanjia', 'zh-tw', 1000),
(9364, 6165, '5913-6165', 1, '新竹橫山店', '{"number":"017779","shop":"\\u65b0\\u7af9\\u6a6b\\u5c71\\u5e97","phone":"035933001","address":"\\u6a6b\\u5c71\\u6751\\uff14\\u9130\\u4e2d\\u8c50\\u8def\\u4e00\\u6bb5\\uff12\\uff16\\uff12\\u865f"}', '017779', 'quanjia', 'zh-tw', 1000),
(9365, 6166, '5913-6166', 1, '湖口成功店', '{"number":"017262","shop":"\\u6e56\\u53e3\\u6210\\u529f\\u5e97","phone":"035900098","address":"\\u6210\\u529f\\u8def\\uff11\\uff12\\uff18\\u865f"}', '017262', 'quanjia', 'zh-tw', 1000),
(9366, 6166, '5913-6166', 1, '湖口大功店', '{"number":"017756","shop":"\\u6e56\\u53e3\\u5927\\u529f\\u5e97","phone":"035901520","address":"\\u6210\\u529f\\u8def\\uff17\\uff16\\uff0d\\uff11\\u865f"}', '017756', 'quanjia', 'zh-tw', 1000),
(9367, 6166, '5913-6166', 1, '湖口仁和店', '{"number":"015170","shop":"\\u6e56\\u53e3\\u4ec1\\u548c\\u5e97","phone":"035971288","address":"\\u9cf3\\u51f0\\u6751\\u4ec1\\u548c\\u8def\\uff14\\uff15\\u865f"}', '015170', 'quanjia', 'zh-tw', 1000),
(9368, 6166, '5913-6166', 1, '湖口新工業店', '{"number":"018869","shop":"\\u6e56\\u53e3\\u65b0\\u5de5\\u696d\\u5e97","phone":"035977127","address":"\\u5de5\\u696d\\u4e00\\u8def\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '018869', 'quanjia', 'zh-tw', 1000),
(9369, 6166, '5913-6166', 1, '湖口新安宅店', '{"number":"012487","shop":"\\u6e56\\u53e3\\u65b0\\u5b89\\u5b85\\u5e97","phone":"035972923","address":"\\u5149\\u5fa9\\u6771\\u8def\\uff11\\uff13\\uff13\\u865f"}', '012487', 'quanjia', 'zh-tw', 1000),
(9370, 6166, '5913-6166', 1, '湖口頎邦店', '{"number":"016415","shop":"\\u6e56\\u53e3\\u980e\\u90a6\\u5e97","phone":"036960342","address":"\\u5149\\u5fa9\\u8def\\uff11\\uff12\\u865f\\uff15\\u6a13"}', '016415', 'quanjia', 'zh-tw', 1000),
(9371, 6166, '5913-6166', 1, '湖口千禧店', '{"number":"013820","shop":"\\u6e56\\u53e3\\u5343\\u79a7\\u5e97","phone":"035696076","address":"\\u5343\\u79a7\\u8def\\uff11\\u865f\\uff11\\u6a13"}', '013820', 'quanjia', 'zh-tw', 1000),
(9372, 6166, '5913-6166', 1, '湖口文和店', '{"number":"015172","shop":"\\u6e56\\u53e3\\u6587\\u548c\\u5e97","phone":"035976181","address":"\\u4ec1\\u548c\\u8def\\uff11\\uff17\\uff18\\u865f\\uff11\\uff18\\uff10\\u865f"}', '015172', 'quanjia', 'zh-tw', 1000),
(9373, 6166, '5913-6166', 1, '湖口達仁店', '{"number":"017159","shop":"\\u6e56\\u53e3\\u9054\\u4ec1\\u5e97","phone":"035977610","address":"\\u4ec1\\u6a02\\u8def\\uff11\\uff11\\uff18\\u865f"}', '017159', 'quanjia', 'zh-tw', 1000),
(9374, 6166, '5913-6166', 1, '湖口吉勝店', '{"number":"018131","shop":"\\u6e56\\u53e3\\u5409\\u52dd\\u5e97","phone":"035977531","address":"\\u52dd\\u5229\\u6751\\u52dd\\u5229\\u8def\\u4e8c\\u6bb5\\uff11\\u865f\\uff11\\u6a13"}', '018131', 'quanjia', 'zh-tw', 1000),
(9375, 6166, '5913-6166', 1, '湖口文化店', '{"number":"016715","shop":"\\u6e56\\u53e3\\u6587\\u5316\\u5e97","phone":"035978323","address":"\\u6587\\u5316\\u8def\\uff13\\uff12\\u865f"}', '016715', 'quanjia', 'zh-tw', 1000),
(9376, 6166, '5913-6166', 1, '湖口中大店', '{"number":"015236","shop":"\\u6e56\\u53e3\\u4e2d\\u5927\\u5e97","phone":"036991002","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff15\\uff13\\uff10\\u865f"}', '015236', 'quanjia', 'zh-tw', 1000),
(9377, 6167, '5913-6167', 1, '新豐大興店', '{"number":"018668","shop":"\\u65b0\\u8c50\\u5927\\u8208\\u5e97","phone":"035574059","address":"\\u5efa\\u8208\\u8def\\u4e8c\\u6bb5\\uff14\\uff19\\uff16\\u865f\\uff11\\u6a13"}', '018668', 'quanjia', 'zh-tw', 1000),
(9378, 6167, '5913-6167', 1, '新豐建興店', '{"number":"016507","shop":"\\u65b0\\u8c50\\u5efa\\u8208\\u5e97","phone":"035574185","address":"\\u5efa\\u8208\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\u865f"}', '016507', 'quanjia', 'zh-tw', 1000),
(9379, 6167, '5913-6167', 1, '新豐福德店', '{"number":"018761","shop":"\\u65b0\\u8c50\\u798f\\u5fb7\\u5e97","phone":"035593060","address":"\\u5eb7\\u6a02\\u8def\\uff11\\u6bb5\\uff14\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '018761', 'quanjia', 'zh-tw', 1000),
(9380, 6167, '5913-6167', 1, '新豐尚仁店', '{"number":"018237","shop":"\\u65b0\\u8c50\\u5c1a\\u4ec1\\u5e97","phone":"035579285","address":"\\u5c1a\\u4ec1\\u8857\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '018237', 'quanjia', 'zh-tw', 1000),
(9381, 6167, '5913-6167', 1, '新豐松柏店', '{"number":"017640","shop":"\\u65b0\\u8c50\\u677e\\u67cf\\u5e97","phone":"035577802","address":"\\u677e\\u67cf\\u8857\\uff11\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '017640', 'quanjia', 'zh-tw', 1000),
(9382, 6167, '5913-6167', 1, '新豐泰安店', '{"number":"017758","shop":"\\u65b0\\u8c50\\u6cf0\\u5b89\\u5e97","phone":"035575691","address":"\\u6cf0\\u5b89\\u8857\\uff17\\uff15\\u865f\\uff11\\u6a13"}', '017758', 'quanjia', 'zh-tw', 1000),
(9383, 6167, '5913-6167', 1, '新豐松林店', '{"number":"016479","shop":"\\u65b0\\u8c50\\u677e\\u6797\\u5e97","phone":"035575748","address":"\\u65b0\\u8208\\u8def\\uff11\\uff11\\uff11\\u865f"}', '016479', 'quanjia', 'zh-tw', 1000),
(9384, 6167, '5913-6167', 1, '新豐火車頭店', '{"number":"018816","shop":"\\u65b0\\u8c50\\u706b\\u8eca\\u982d\\u5e97","phone":"035571960","address":"\\u65b0\\u8208\\u8def\\uff12\\uff10\\uff12\\u865f\\uff12\\u6a13"}', '018816', 'quanjia', 'zh-tw', 1000),
(9385, 6167, '5913-6167', 1, '新豐福比店', '{"number":"018654","shop":"\\u65b0\\u8c50\\u798f\\u6bd4\\u5e97","phone":"035595316","address":"\\u65b0\\u8208\\u8def\\uff17\\uff16\\uff13\\u865f"}', '018654', 'quanjia', 'zh-tw', 1000),
(9386, 6167, '5913-6167', 1, '新豐宏達店', '{"number":"015373","shop":"\\u65b0\\u8c50\\u5b8f\\u9054\\u5e97","phone":"035578834","address":"\\u65b0\\u8208\\u8def\\uff18\\uff10\\u865f\\uff11\\u6a13"}', '015373', 'quanjia', 'zh-tw', 1000),
(9387, 6167, '5913-6167', 1, '新豐新庄店', '{"number":"018363","shop":"\\u65b0\\u8c50\\u65b0\\u5e84\\u5e97","phone":"035575060","address":"\\u65b0\\u5e84\\u8def\\uff11\\uff13\\uff13\\u865f"}', '018363', 'quanjia', 'zh-tw', 1000),
(9388, 6167, '5913-6167', 1, '新豐欣興店', '{"number":"016545","shop":"\\u65b0\\u8c50\\u6b23\\u8208\\u5e97","phone":"036992808","address":"\\u4e2d\\u5d19\\u6751\\u4e2d\\u5d19\\uff12\\uff19\\uff10\\u865f\\uff11\\u6a13"}', '016545', 'quanjia', 'zh-tw', 1000),
(9389, 6168, '5913-6168', 1, '新埔新文山店', '{"number":"018357","shop":"\\u65b0\\u57d4\\u65b0\\u6587\\u5c71\\u5e97","phone":"035880071","address":"\\u6587\\u5c71\\u8def\\u7281\\u982d\\u5c71\\u6bb5\\uff18\\uff16\\uff15\\u865f\\uff11\\u6a13"}', '018357', 'quanjia', 'zh-tw', 1000),
(9390, 6168, '5913-6168', 1, '新埔長茂店', '{"number":"017815","shop":"\\u65b0\\u57d4\\u9577\\u8302\\u5e97","phone":"035885547","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '017815', 'quanjia', 'zh-tw', 1000),
(9391, 6168, '5913-6168', 1, '新埔埔德店', '{"number":"017436","shop":"\\u65b0\\u57d4\\u57d4\\u5fb7\\u5e97","phone":"035880669","address":"\\u4e2d\\u6b63\\u8def\\uff16\\uff12\\uff19\\u865f\\uff11\\u6a13"}', '017436', 'quanjia', 'zh-tw', 1000),
(9392, 6169, '5913-6169', 1, '芎林富林店', '{"number":"017067","shop":"\\u828e\\u6797\\u5bcc\\u6797\\u5e97","phone":"036671033","address":"\\u5bcc\\u6797\\u8def\\u4e09\\u6bb5\\uff19\\uff14\\u865f\\uff11\\u6a13"}', '017067', 'quanjia', 'zh-tw', 1000),
(9393, 6169, '5913-6169', 1, '芎林五龍店', '{"number":"018269","shop":"\\u828e\\u6797\\u4e94\\u9f8d\\u5e97","phone":"035931858","address":"\\u4e94\\u548c\\u8857\\uff11\\uff12\\uff16\\u865f"}', '018269', 'quanjia', 'zh-tw', 1000),
(9394, 6170, '5913-6170', 1, '竹北湧億店', '{"number":"017745","shop":"\\u7af9\\u5317\\u6e67\\u5104\\u5e97","phone":"035552800","address":"\\u535a\\u611b\\u8857\\uff12\\uff17\\uff13\\u865f"}', '017745', 'quanjia', 'zh-tw', 1000),
(9395, 6170, '5913-6170', 1, '竹北新竹愛店', '{"number":"016233","shop":"\\u7af9\\u5317\\u65b0\\u7af9\\u611b\\u5e97","phone":"035527543","address":"\\u535a\\u611b\\u8857\\uff14\\uff12\\uff12\\u865f\\u4e00\\u6a13"}', '016233', 'quanjia', 'zh-tw', 1000),
(9396, 6170, '5913-6170', 1, '竹北台元店', '{"number":"015673","shop":"\\u7af9\\u5317\\u53f0\\u5143\\u5e97","phone":"035552394","address":"\\u535a\\u611b\\u8857\\uff15\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '015673', 'quanjia', 'zh-tw', 1000),
(9397, 6170, '5913-6170', 1, '竹北台燿店', '{"number":"016356","shop":"\\u7af9\\u5317\\u53f0\\u71ff\\u5e97","phone":"035555018","address":"\\u535a\\u611b\\u8857\\uff18\\uff10\\uff13\\u865f"}', '016356', 'quanjia', 'zh-tw', 1000),
(9398, 6170, '5913-6170', 1, '竹北大漾店', '{"number":"016043","shop":"\\u7af9\\u5317\\u5927\\u6f3e\\u5e97","phone":"035550065","address":"\\u535a\\u611b\\u5357\\u8def\\uff19\\u865f\\uff11\\u6a13"}', '016043', 'quanjia', 'zh-tw', 1000),
(9399, 6170, '5913-6170', 1, '竹北成功店', '{"number":"014963","shop":"\\u7af9\\u5317\\u6210\\u529f\\u5e97","phone":"036682618","address":"\\u6210\\u529f\\u516b\\u8def\\uff11\\uff16\\uff10\\u865f\\u4e00\\u6a13"}', '014963', 'quanjia', 'zh-tw', 1000),
(9400, 6170, '5913-6170', 1, '竹北竹采店', '{"number":"018588","shop":"\\u7af9\\u5317\\u7af9\\u91c7\\u5e97","phone":"035505119","address":"\\u6210\\u529f\\u4e00\\u8857\\uff18\\uff12\\u865f\\uff11\\u6a13\\u5f8c\\u6bb5"}', '018588', 'quanjia', 'zh-tw', 1000),
(9401, 6170, '5913-6170', 1, '竹北宏福店', '{"number":"013774","shop":"\\u7af9\\u5317\\u5b8f\\u798f\\u5e97","phone":"036571083","address":"\\u5149\\u660e\\u4e00\\u8def\\uff12\\uff13\\uff16\\u865f\\uff11\\u6a13"}', '013774', 'quanjia', 'zh-tw', 1000),
(9402, 6170, '5913-6170', 1, '竹北新華興店', '{"number":"018879","shop":"\\u7af9\\u5317\\u65b0\\u83ef\\u8208\\u5e97","phone":"035517240","address":"\\u83ef\\u8208\\u8857\\uff12\\uff18\\uff17\\u865f\\uff11\\u6a13"}', '018879', 'quanjia', 'zh-tw', 1000),
(9403, 6170, '5913-6170', 1, '竹北新溪店', '{"number":"018225","shop":"\\u7af9\\u5317\\u65b0\\u6eaa\\u5e97","phone":"035528420","address":"\\u74b0\\u5317\\u8def\\uff15\\u6bb5\\uff13\\uff19\\uff18\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018225', 'quanjia', 'zh-tw', 1000),
(9404, 6170, '5913-6170', 1, '竹北竹風店', '{"number":"016355","shop":"\\u7af9\\u5317\\u7af9\\u98a8\\u5e97","phone":"035530293","address":"\\u74b0\\u5317\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff13\\u865f"}', '016355', 'quanjia', 'zh-tw', 1000),
(9405, 6170, '5913-6170', 1, '竹北唯美店', '{"number":"018355","shop":"\\u7af9\\u5317\\u552f\\u7f8e\\u5e97","phone":"036683172","address":"\\u5609\\u8c50\\u516d\\u8def\\u4e8c\\u6bb5\\uff11\\uff19\\u865f"}', '018355', 'quanjia', 'zh-tw', 1000),
(9406, 6170, '5913-6170', 1, '竹北時尚店', '{"number":"017642","shop":"\\u7af9\\u5317\\u6642\\u5c1a\\u5e97","phone":"036588915","address":"\\u5609\\u8c50\\u5341\\u4e00\\u8def\\uff11\\u6bb5\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '017642', 'quanjia', 'zh-tw', 1000),
(9407, 6170, '5913-6170', 1, '竹北嘉豐店', '{"number":"018653","shop":"\\u7af9\\u5317\\u5609\\u8c50\\u5e97","phone":"036578910","address":"\\u5609\\u8c50\\u4e94\\u8def\\u4e8c\\u6bb5\\uff17\\uff19\\u865f\\uff11\\u6a13"}', '018653', 'quanjia', 'zh-tw', 1000),
(9408, 6170, '5913-6170', 1, '竹北金十興店', '{"number":"018389","shop":"\\u7af9\\u5317\\u91d1\\u5341\\u8208\\u5e97","phone":"036586446","address":"\\u5609\\u8208\\u8def\\uff14\\uff19\\uff18\\u865f\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018389', 'quanjia', 'zh-tw', 1000),
(9409, 6170, '5913-6170', 1, '竹北科大店', '{"number":"018789","shop":"\\u7af9\\u5317\\u79d1\\u5927\\u5e97","phone":"036571794","address":"\\u79d1\\u5927\\u4e00\\u8def\\uff19\\uff13\\u865f"}', '018789', 'quanjia', 'zh-tw', 1000),
(9410, 6170, '5913-6170', 1, '竹北新竹義店', '{"number":"018331","shop":"\\u7af9\\u5317\\u65b0\\u7af9\\u7fa9\\u5e97","phone":"035528422","address":"\\u4e09\\u6c11\\u8def\\uff18\\uff18\\u865f\\uff11\\u6a13"}', '018331', 'quanjia', 'zh-tw', 1000),
(9411, 6170, '5913-6170', 1, '竹北大悅店', '{"number":"016131","shop":"\\u7af9\\u5317\\u5927\\u6085\\u5e97","phone":"036589350","address":"\\u52dd\\u5229\\u516b\\u8857\\u4e00\\u6bb5\\uff12\\uff12\\uff15\\u865f"}', '016131', 'quanjia', 'zh-tw', 1000),
(9412, 6170, '5913-6170', 1, '竹北嘉興店', '{"number":"013210","shop":"\\u7af9\\u5317\\u5609\\u8208\\u5e97","phone":"036580147","address":"\\u52dd\\u5229\\u4e03\\u8857\\u4e8c\\u6bb5\\uff16\\uff16\\u865f\\uff11\\u6a13"}', '013210', 'quanjia', 'zh-tw', 1000),
(9413, 6170, '5913-6170', 1, '竹北立錡店', '{"number":"017220","shop":"\\u7af9\\u5317\\u7acb\\u9321\\u5e97","phone":"035601125","address":"\\u53f0\\u5143\\u4e00\\u8857\\uff18\\u865f\\uff11\\uff13\\u6a13"}', '017220', 'quanjia', 'zh-tw', 1000),
(9414, 6170, '5913-6170', 1, '竹北泰和店', '{"number":"017229","shop":"\\u7af9\\u5317\\u6cf0\\u548c\\u5e97","phone":"035518451","address":"\\u6cf0\\u548c\\u8def\\uff11\\uff16\\uff19\\u865f"}', '017229', 'quanjia', 'zh-tw', 1000),
(9415, 6170, '5913-6170', 1, '竹北六家店', '{"number":"012247","shop":"\\u7af9\\u5317\\u516d\\u5bb6\\u5e97","phone":"036681742","address":"\\u6587\\u8208\\u8def\\u4e8c\\u6bb5\\uff15\\uff12\\uff19\\u865f\\u5168\\u90e8"}', '012247', 'quanjia', 'zh-tw', 1000),
(9416, 6170, '5913-6170', 1, '竹北縣政店', '{"number":"016158","shop":"\\u7af9\\u5317\\u7e23\\u653f\\u5e97","phone":"035589342","address":"\\u7e23\\u653f\\u4e8c\\u8def\\uff13\\uff19\\uff16\\u865f"}', '016158', 'quanjia', 'zh-tw', 1000),
(9417, 6170, '5913-6170', 1, '竹北新東元店', '{"number":"013084","shop":"\\u7af9\\u5317\\u65b0\\u6771\\u5143\\u5e97","phone":"036573571","address":"\\u7e23\\u653f\\u4e8c\\u8def\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '013084', 'quanjia', 'zh-tw', 1000),
(9418, 6170, '5913-6170', 1, '竹北雙城店', '{"number":"017072","shop":"\\u7af9\\u5317\\u96d9\\u57ce\\u5e97","phone":"036688362","address":"\\u65b0\\u7027\\u4e00\\u8857\\uff11\\u865f"}', '017072', 'quanjia', 'zh-tw', 1000),
(9419, 6170, '5913-6170', 1, '竹北後站店', '{"number":"018677","shop":"\\u7af9\\u5317\\u5f8c\\u7ad9\\u5e97","phone":"035510118","address":"\\u65b0\\u6cf0\\u8def\\uff11\\uff10\\uff18\\uff0d\\uff12\\u865f\\uff11\\u6a13\\uff08\\u914d\\u9001\\u7528\\uff09"}', '018677', 'quanjia', 'zh-tw', 1000),
(9420, 6170, '5913-6170', 1, '竹北中國醫店', '{"number":"018144","shop":"\\u7af9\\u5317\\u4e2d\\u570b\\u91ab\\u5e97","phone":"036571613","address":"\\u8208\\u9686\\u8def\\uff11\\u6bb5\\uff11\\uff19\\uff19\\u865f\\u5730\\u4e0b\\uff11\\u6a13"}', '018144', 'quanjia', 'zh-tw', 1000),
(9421, 6170, '5913-6170', 1, '竹北大河店', '{"number":"018100","shop":"\\u7af9\\u5317\\u5927\\u6cb3\\u5e97","phone":"035531113","address":"\\u4e2d\\u83ef\\u8def\\uff12\\uff0d\\uff15\\uff11\\u865f"}', '018100', 'quanjia', 'zh-tw', 1000),
(9422, 6170, '5913-6170', 1, '竹北中正西店', '{"number":"017158","shop":"\\u7af9\\u5317\\u4e2d\\u6b63\\u897f\\u5e97","phone":"035528316","address":"\\u4e2d\\u6b63\\u897f\\u8def\\uff11\\uff14\\uff19\\u865f\\uff11\\u6a13"}', '017158', 'quanjia', 'zh-tw', 1000),
(9423, 6170, '5913-6170', 1, '竹北宏豐店', '{"number":"016209","shop":"\\u7af9\\u5317\\u5b8f\\u8c50\\u5e97","phone":"035564742","address":"\\u4e2d\\u6b63\\u897f\\u8def\\uff19\\uff19\\uff19\\u865f\\uff11\\u6a13\\u3000"}', '016209', 'quanjia', 'zh-tw', 1000),
(9424, 6170, '5913-6170', 1, '竹北環竹店', '{"number":"018307","shop":"\\u7af9\\u5317\\u74b0\\u7af9\\u5e97","phone":"035534117","address":"\\u7af9\\u5317\\u91cc\\uff19\\u9130\\u4e2d\\u5c71\\u8def\\uff11\\uff17\\uff18\\u865f"}', '018307', 'quanjia', 'zh-tw', 1000),
(9425, 6170, '5913-6170', 1, '竹北俠隱店', '{"number":"018308","shop":"\\u7af9\\u5317\\u4fe0\\u96b1\\u5e97","phone":"036579422","address":"\\u838a\\u656c\\u516d\\u8857\\uff17\\u865f"}', '018308', 'quanjia', 'zh-tw', 1000),
(9426, 6170, '5913-6170', 1, '竹北勝利店', '{"number":"017959","shop":"\\u7af9\\u5317\\u52dd\\u5229\\u5e97","phone":"036673368","address":"\\u838a\\u656c\\u4e03\\u8857\\uff11\\uff12\\uff12\\u865f"}', '017959', 'quanjia', 'zh-tw', 1000),
(9427, 6170, '5913-6170', 1, '竹北自強店', '{"number":"018356","shop":"\\u7af9\\u5317\\u81ea\\u5f37\\u5e97","phone":"035505530","address":"\\u81ea\\u5f37\\u5357\\u8def\\uff15\\uff12\\u865f"}', '018356', 'quanjia', 'zh-tw', 1000),
(9428, 6171, '5913-6171', 1, '竹東北興店', '{"number":"015595","shop":"\\u7af9\\u6771\\u5317\\u8208\\u5e97","phone":"035967896","address":"\\u5317\\u8208\\u8def\\u4e09\\u6bb5\\uff15\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '015595', 'quanjia', 'zh-tw', 1000),
(9429, 6171, '5913-6171', 1, '竹東長春店', '{"number":"013504","shop":"\\u7af9\\u6771\\u9577\\u6625\\u5e97","phone":"035103321","address":"\\u9577\\u6625\\u8def\\u4e09\\u6bb5\\uff11\\uff16\\uff15\\u865f\\u4e00\\u3001\\u4e8c\\u6a13"}', '013504', 'quanjia', 'zh-tw', 1000),
(9430, 6171, '5913-6171', 1, '竹東東寧店', '{"number":"018309","shop":"\\u7af9\\u6771\\u6771\\u5be7\\u5e97","phone":"035940109","address":"\\u6771\\u5be7\\u8def\\u4e09\\u6bb5\\uff11\\uff15\\uff11\\u865f"}', '018309', 'quanjia', 'zh-tw', 1000),
(9431, 6171, '5913-6171', 1, '竹東新商華店', '{"number":"018102","shop":"\\u7af9\\u6771\\u65b0\\u5546\\u83ef\\u5e97","phone":"035100715","address":"\\u6771\\u5be7\\u8def\\u4e09\\u6bb5\\uff14\\uff13\\u865f\\u5168\\u90e8\\u4e00\\u6a13\\u81f3\\u56db\\u6a13"}', '018102', 'quanjia', 'zh-tw', 1000),
(9432, 6171, '5913-6171', 1, '竹東上舜店', '{"number":"016183","shop":"\\u7af9\\u6771\\u4e0a\\u821c\\u5e97","phone":"035832801","address":"\\u5149\\u660e\\u8def\\uff12\\uff16\\uff11\\u865f\\uff0e\\uff12\\uff16\\uff13\\u865f\\uff11\\u6a13"}', '016183', 'quanjia', 'zh-tw', 1000),
(9433, 6171, '5913-6171', 1, '竹東興仁店', '{"number":"013522","shop":"\\u7af9\\u6771\\u8208\\u4ec1\\u5e97","phone":"035947181","address":"\\u4ec1\\u611b\\u8def\\uff14\\uff14\\uff16\\u865f\\uff11\\u6a13"}', '013522', 'quanjia', 'zh-tw', 1000),
(9434, 6171, '5913-6171', 1, '竹東東峰店', '{"number":"016331","shop":"\\u7af9\\u6771\\u6771\\u5cf0\\u5e97","phone":"035103509","address":"\\u54e1\\u5d20\\u91cc\\u6771\\u5cf0\\u8def\\uff11\\uff16\\uff12\\u865f\\uff11\\u6a13"}', '016331', 'quanjia', 'zh-tw', 1000),
(9435, 6171, '5913-6171', 1, '竹東榮總店', '{"number":"018657","shop":"\\u7af9\\u6771\\u69ae\\u7e3d\\u5e97","phone":"035960058","address":"\\u4e2d\\u8c50\\u8def\\uff11\\u6bb5\\uff18\\uff11\\u865f"}', '018657', 'quanjia', 'zh-tw', 1000),
(9436, 6171, '5913-6171', 1, '竹東大林店', '{"number":"013330","shop":"\\u7af9\\u6771\\u5927\\u6797\\u5e97","phone":"035950012","address":"\\u4e2d\\u8c50\\u8def\\u4e09\\u6bb5\\uff16\\u865f\\uff11\\u6a13"}', '013330', 'quanjia', 'zh-tw', 1000),
(9437, 6171, '5913-6171', 1, '竹東大鄉店', '{"number":"016662","shop":"\\u7af9\\u6771\\u5927\\u9109\\u5e97","phone":"035104813","address":"\\u4e2d\\u8c50\\u8def\\u4e09\\u6bb5\\uff19\\uff17\\uff0e\\uff19\\uff19\\u865f\\uff11\\u6a13"}', '016662', 'quanjia', 'zh-tw', 1000),
(9438, 6171, '5913-6171', 1, '竹東鎮金店', '{"number":"013947","shop":"\\u7af9\\u6771\\u93ae\\u91d1\\u5e97","phone":"035111020","address":"\\u4e2d\\u5c71\\u8def\\uff16\\uff17\\u865f\\uff11\\u6a13"}', '013947', 'quanjia', 'zh-tw', 1000),
(9439, 6171, '5913-6171', 1, '竹東新中興店', '{"number":"015099","shop":"\\u7af9\\u6771\\u65b0\\u4e2d\\u8208\\u5e97","phone":"035836522","address":"\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff12\\u865f"}', '015099', 'quanjia', 'zh-tw', 1000),
(9440, 6171, '5913-6171', 1, '竹東工研店', '{"number":"014081","shop":"\\u7af9\\u6771\\u5de5\\u7814\\u5e97","phone":"035834633","address":"\\u4e2d\\u8208\\u8def\\u56db\\u6bb5\\uff11\\uff19\\uff15\\u865f\\uff15\\uff12\\u9928\\uff11\\u6a13"}', '014081', 'quanjia', 'zh-tw', 1000),
(9441, 6171, '5913-6171', 1, '竹東新市店', '{"number":"014870","shop":"\\u7af9\\u6771\\u65b0\\u5e02\\u5e97","phone":"035821272","address":"\\u4e2d\\u592e\\u8def\\uff19\\uff12\\u865f"}', '014870', 'quanjia', 'zh-tw', 1000),
(9442, 6171, '5913-6171', 1, '竹東致東店', '{"number":"018167","shop":"\\u7af9\\u6771\\u81f4\\u6771\\u5e97","phone":"035101897","address":"\\u4e2d\\u6b63\\u8def\\uff11\\u865f"}', '018167', 'quanjia', 'zh-tw', 1000),
(9443, 6172, '5914-6172', 1, '大同南山店', '{"number":"015852","shop":"\\u5927\\u540c\\u5357\\u5c71\\u5e97","phone":"039809056","address":"\\u6cf0\\u96c5\\u8def\\u4e03\\u6bb5\\uff11\\uff13\\uff17\\u865f"}', '015852', 'quanjia', 'zh-tw', 1000),
(9444, 6173, '5914-6173', 1, '冬山群英店', '{"number":"015068","shop":"\\u51ac\\u5c71\\u7fa4\\u82f1\\u5e97","phone":"039583538","address":"\\u51ac\\u5c71\\u8def\\u4e09\\u6bb5\\uff15\\uff19\\uff15\\u865f"}', '015068', 'quanjia', 'zh-tw', 1000),
(9445, 6173, '5914-6173', 1, '宜蘭廣鑫店', '{"number":"011685","shop":"\\u5b9c\\u862d\\u5ee3\\u946b\\u5e97","phone":"039518485","address":"\\u5ee3\\u8208\\u8def\\uff12\\uff16\\uff17\\u865f"}', '011685', 'quanjia', 'zh-tw', 1000),
(9446, 6173, '5914-6173', 1, '宜蘭廣源店', '{"number":"016970","shop":"\\u5b9c\\u862d\\u5ee3\\u6e90\\u5e97","phone":"039517357","address":"\\u5ee3\\u8208\\u8def\\uff14\\uff18\\u865f"}', '016970', 'quanjia', 'zh-tw', 1000),
(9447, 6173, '5914-6173', 1, '冬山義新店', '{"number":"018250","shop":"\\u51ac\\u5c71\\u7fa9\\u65b0\\u5e97","phone":"039587507","address":"\\u7fa9\\u6210\\u8def\\u4e09\\u6bb5\\uff14\\uff10\\uff19\\u865f"}', '018250', 'quanjia', 'zh-tw', 1000),
(9448, 6173, '5914-6173', 1, '冬山義成店', '{"number":"016142","shop":"\\u51ac\\u5c71\\u7fa9\\u6210\\u5e97","phone":"039585625","address":"\\u7fa9\\u6210\\u8def\\u4e09\\u6bb5\\u4e09\\u4e00\\u516d\\u865f\\u4e00\\u6a13"}', '016142', 'quanjia', 'zh-tw', 1000),
(9449, 6173, '5914-6173', 1, '冬山永興店', '{"number":"015067","shop":"\\u51ac\\u5c71\\u6c38\\u8208\\u5e97","phone":"039587433","address":"\\u6c38\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\u865f\\uff11\\u6a13"}', '015067', 'quanjia', 'zh-tw', 1000),
(9450, 6174, '5914-6174', 1, '礁溪健康店', '{"number":"016312","shop":"\\u7901\\u6eaa\\u5065\\u5eb7\\u5e97","phone":"039874587","address":"\\u5065\\u5eb7\\u8def\\uff15\\uff10\\u865f\\uff11\\u6a13\\u4e4b\\uff11"}', '016312', 'quanjia', 'zh-tw', 1000),
(9451, 6174, '5914-6174', 1, '礁溪協天店', '{"number":"017397","shop":"\\u7901\\u6eaa\\u5354\\u5929\\u5e97","phone":"039888097","address":"\\u7901\\u6eaa\\u8def\\u56db\\u6bb5\\uff13\\uff10\\u865f"}', '017397', 'quanjia', 'zh-tw', 1000),
(9452, 6174, '5914-6174', 1, '礁溪精華店', '{"number":"018596","shop":"\\u7901\\u6eaa\\u7cbe\\u83ef\\u5e97","phone":"039888237","address":"\\u7901\\u6eaa\\u8def\\u4e94\\u6bb5\\uff11\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018596', 'quanjia', 'zh-tw', 1000),
(9453, 6174, '5914-6174', 1, '礁溪仁愛店', '{"number":"017270","shop":"\\u7901\\u6eaa\\u4ec1\\u611b\\u5e97","phone":"039872033","address":"\\u4ec1\\u611b\\u8def\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '017270', 'quanjia', 'zh-tw', 1000),
(9454, 6174, '5914-6174', 1, '宜蘭礁溪店', '{"number":"015027","shop":"\\u5b9c\\u862d\\u7901\\u6eaa\\u5e97","phone":"039870468","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff11\\uff14\\uff14\\u865f"}', '015027', 'quanjia', 'zh-tw', 1000),
(9455, 6175, '5914-6175', 1, '羅東新興東店', '{"number":"014107","shop":"\\u7f85\\u6771\\u65b0\\u8208\\u6771\\u5e97","phone":"039545949","address":"\\u7d14\\u7cbe\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff16\\u865f\\u4e00\\u6a13"}', '014107', 'quanjia', 'zh-tw', 1000),
(9456, 6175, '5914-6175', 1, '羅東倉前店', '{"number":"015898","shop":"\\u7f85\\u6771\\u5009\\u524d\\u5e97","phone":"039578240","address":"\\u516c\\u6b63\\u91cc\\u8208\\u6771\\u8def\\uff11\\uff16\\uff11\\u865f\\u4e00\\u6a13"}', '015898', 'quanjia', 'zh-tw', 1000),
(9457, 6175, '5914-6175', 1, '羅東後站店', '{"number":"018895","shop":"\\u7f85\\u6771\\u5f8c\\u7ad9\\u5e97","phone":"039564863","address":"\\u516c\\u6b63\\u8def\\uff12\\u865f"}', '018895', 'quanjia', 'zh-tw', 1000),
(9458, 6175, '5914-6175', 1, '羅東公正店', '{"number":"014626","shop":"\\u7f85\\u6771\\u516c\\u6b63\\u5e97","phone":"039511509","address":"\\u516c\\u6b63\\u8def\\uff15\\uff15\\uff11\\u865f\\uff0e\\uff15\\uff15\\uff13\\u865f\\uff0e\\uff15\\uff15\\uff15\\u865f"}', '014626', 'quanjia', 'zh-tw', 1000),
(9459, 6175, '5914-6175', 1, '羅東站前店', '{"number":"014481","shop":"\\u7f85\\u6771\\u7ad9\\u524d\\u5e97","phone":"039561480","address":"\\u516c\\u6b63\\u8def\\uff16\\uff11\\u865f"}', '014481', 'quanjia', 'zh-tw', 1000),
(9460, 6175, '5914-6175', 1, '羅東天祥店', '{"number":"017109","shop":"\\u7f85\\u6771\\u5929\\u7965\\u5e97","phone":"039534547","address":"\\u5357\\u660c\\u6771\\u8857\\uff13\\uff19\\u865f\\uff11\\u6a13"}', '017109', 'quanjia', 'zh-tw', 1000),
(9461, 6175, '5914-6175', 1, '羅東北城店', '{"number":"017630","shop":"\\u7f85\\u6771\\u5317\\u57ce\\u5e97","phone":"039616687","address":"\\u56db\\u80b2\\u8def\\uff17\\uff11\\u865f"}', '017630', 'quanjia', 'zh-tw', 1000),
(9462, 6175, '5914-6175', 1, '羅東金鼎店', '{"number":"013928","shop":"\\u7f85\\u6771\\u91d1\\u9f0e\\u5e97","phone":"039578277","address":"\\u8208\\u6771\\u8def\\uff18\\u4e4b\\uff11\\u865f\\uff11\\u6a13"}', '013928', 'quanjia', 'zh-tw', 1000),
(9463, 6175, '5914-6175', 1, '羅東南門店', '{"number":"018277","shop":"\\u7f85\\u6771\\u5357\\u9580\\u5e97","phone":"039574266","address":"\\u4e2d\\u6b63\\u8def\\uff11\\u865f"}', '018277', 'quanjia', 'zh-tw', 1000),
(9464, 6175, '5914-6175', 1, '羅東南豪店', '{"number":"011439","shop":"\\u7f85\\u6771\\u5357\\u8c6a\\u5e97","phone":"039578051","address":"\\u4e2d\\u6b63\\u5357\\u8def\\uff11\\uff19\\u865f\\u58f9\\u6a13"}', '011439', 'quanjia', 'zh-tw', 1000),
(9465, 6175, '5914-6175', 1, '羅東復興店', '{"number":"013765","shop":"\\u7f85\\u6771\\u5fa9\\u8208\\u5e97","phone":"039559720","address":"\\u7af9\\u6797\\u91cc\\u5fa9\\u8208\\u8def\\u4e8c\\u6bb5\\uff11\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '013765', 'quanjia', 'zh-tw', 1000),
(9466, 6176, '5914-6176', 1, '宜蘭東澳店', '{"number":"016616","shop":"\\u5b9c\\u862d\\u6771\\u6fb3\\u5e97","phone":"039986229","address":"\\u6771\\u5cb3\\u6751\\u8607\\u82b1\\u8def\\u4e09\\u6bb5\\uff12\\uff10\\uff11\\u865f\\u4e00\\u6a13"}', '016616', 'quanjia', 'zh-tw', 1000),
(9467, 6176, '5914-6176', 1, '宜蘭南澳店', '{"number":"018823","shop":"\\u5b9c\\u862d\\u5357\\u6fb3\\u5e97","phone":"039984452","address":"\\u8607\\u82b1\\u8def\\u4e8c\\u6bb5\\uff13\\uff13\\uff15\\u865f\\u4e00\\u6a13"}', '018823', 'quanjia', 'zh-tw', 1000),
(9468, 6177, '5914-6177', 1, '宜蘭天送埤店', '{"number":"016888","shop":"\\u5b9c\\u862d\\u5929\\u9001\\u57e4\\u5e97","phone":"039894021","address":"\\u4e09\\u661f\\u8def\\u4e03\\u6bb5\\uff13\\uff12\\uff12\\u865f"}', '016888', 'quanjia', 'zh-tw', 1000),
(9469, 6178, '5914-6178', 1, '蘇澳馬賽店', '{"number":"017552","shop":"\\u8607\\u6fb3\\u99ac\\u8cfd\\u5e97","phone":"039909822","address":"\\u5927\\u540c\\u8def\\uff17\\u865f\\uff11\\u6a13"}', '017552', 'quanjia', 'zh-tw', 1000),
(9470, 6178, '5914-6178', 1, '蘇澳聖湖店', '{"number":"018417","shop":"\\u8607\\u6fb3\\u8056\\u6e56\\u5e97","phone":"039954216","address":"\\u8056\\u6e56\\u91cc\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\u865f\\u4e00\\u6a13"}', '018417', 'quanjia', 'zh-tw', 1000),
(9471, 6178, '5914-6178', 1, '蘇澳車頭店', '{"number":"011059","shop":"\\u8607\\u6fb3\\u8eca\\u982d\\u5e97","phone":"039952603","address":"\\u8607\\u5357\\u91cc\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff16\\uff13\\u865f\\u4e00\\u6a13"}', '011059', 'quanjia', 'zh-tw', 1000),
(9472, 6179, '5914-6179', 1, '宜蘭大溪店', '{"number":"016092","shop":"\\u5b9c\\u862d\\u5927\\u6eaa\\u5e97","phone":"039781195","address":"\\u5927\\u6eaa\\u91cc\\u6ff1\\u6d77\\u8def\\u4e94\\u6bb5\\uff14\\uff17\\uff10\\u865f\\uff14\\uff17\\uff12\\u865f"}', '016092', 'quanjia', 'zh-tw', 1000),
(9473, 6179, '5914-6179', 1, '頭城車頭店', '{"number":"017368","shop":"\\u982d\\u57ce\\u8eca\\u982d\\u5e97","phone":"039782455","address":"\\u6c11\\u92d2\\u8def\\uff13\\uff12\\u865f"}', '017368', 'quanjia', 'zh-tw', 1000),
(9474, 6179, '5914-6179', 1, '宜蘭二城店', '{"number":"013576","shop":"\\u5b9c\\u862d\\u4e8c\\u57ce\\u5e97","phone":"039870089","address":"\\u9752\\u96f2\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff18\\u865f\\uff11\\u6a13"}', '013576', 'quanjia', 'zh-tw', 1000),
(9475, 6180, '5914-6180', 1, '宜蘭薪傳店', '{"number":"017312","shop":"\\u5b9c\\u862d\\u85aa\\u50b3\\u5e97","phone":"039601397","address":"\\u50b3\\u85dd\\u8def\\u4e8c\\u6bb5\\uff11\\uff15\\uff16\\u865f\\u4e00\\u6a13\\u53ca\\u505c\\u8eca\\u5834"}', '017312', 'quanjia', 'zh-tw', 1000),
(9476, 6180, '5914-6180', 1, '五結濱海店', '{"number":"017110","shop":"\\u4e94\\u7d50\\u6ff1\\u6d77\\u5e97","phone":"039503632","address":"\\u5b63\\u65b0\\u6751\\u4e94\\u6ff1\\u8def\\u4e8c\\u6bb5\\uff12\\uff13\\uff10\\u865f\\u4e00\\u6a13"}', '017110', 'quanjia', 'zh-tw', 1000),
(9477, 6180, '5914-6180', 1, '五結鑫利成店', '{"number":"014597","shop":"\\u4e94\\u7d50\\u946b\\u5229\\u6210\\u5e97","phone":"039603740","address":"\\u5229\\u6210\\u8def\\u4e00\\u6bb5\\uff15\\uff0d\\uff11\\u865f"}', '014597', 'quanjia', 'zh-tw', 1000),
(9478, 6180, '5914-6180', 1, '五結利澤店', '{"number":"018276","shop":"\\u4e94\\u7d50\\u5229\\u6fa4\\u5e97","phone":"039604483","address":"\\u5229\\u6fa4\\u6751\\u5229\\u6210\\u8def\\u4e8c\\u6bb5\\uff13\\uff19\\uff10\\u865f\\u4e00\\u6a13"}', '018276', 'quanjia', 'zh-tw', 1000),
(9479, 6180, '5914-6180', 1, '五結興盛店', '{"number":"012415","shop":"\\u4e94\\u7d50\\u8208\\u76db\\u5e97","phone":"039553470","address":"\\u4e94\\u7d50\\u8def\\u4e09\\u6bb5\\uff17\\uff15\\uff11\\u865f\\uff11\\uff26"}', '012415', 'quanjia', 'zh-tw', 1000),
(9480, 6180, '5914-6180', 1, '宜蘭五結店', '{"number":"018518","shop":"\\u5b9c\\u862d\\u4e94\\u7d50\\u5e97","phone":"039603371","address":"\\u4e94\\u7d50\\u4e2d\\u8def\\uff11\\uff17\\u3001\\uff11\\uff19\\u865f"}', '018518', 'quanjia', 'zh-tw', 1000),
(9481, 6180, '5914-6180', 1, '五結國道店', '{"number":"017505","shop":"\\u4e94\\u7d50\\u570b\\u9053\\u5e97","phone":"039604824","address":"\\u4e2d\\u8208\\u8def\\u4e00\\u6bb5\\uff11\\uff17\\uff17\\u865f\\uff11\\u6a13"}', '017505', 'quanjia', 'zh-tw', 1000),
(9482, 6181, '5914-6181', 1, '宜蘭東港店', '{"number":"017107","shop":"\\u5b9c\\u862d\\u6771\\u6e2f\\u5e97","phone":"039373859","address":"\\u6148\\u5b89\\u91cc\\u6771\\u6e2f\\u8def\\uff18\\uff14\\u865f\\u3001\\uff18\\uff16\\u865f\\u4e00\\u6a13"}', '017107', 'quanjia', 'zh-tw', 1000),
(9483, 6181, '5914-6181', 1, '宜蘭大福店', '{"number":"011935","shop":"\\u5b9c\\u862d\\u5927\\u798f\\u5e97","phone":"039301476","address":"\\u5927\\u798f\\u8def\\u4e00\\u6bb5\\uff14\\uff13\\u865f\\uff0c\\uff14\\uff15\\u865f"}', '011935', 'quanjia', 'zh-tw', 1000),
(9484, 6181, '5914-6181', 1, '宜蘭凱旋店', '{"number":"017176","shop":"\\u5b9c\\u862d\\u51f1\\u65cb\\u5e97","phone":"039255043","address":"\\u516c\\u5712\\u8def\\uff11\\u865f"}', '017176', 'quanjia', 'zh-tw', 1000),
(9485, 6181, '5914-6181', 1, '宜蘭嵐峰店', '{"number":"016765","shop":"\\u5b9c\\u862d\\u5d50\\u5cf0\\u5e97","phone":"039326479","address":"\\u5d50\\u5cf0\\u8def\\uff11\\u6bb5\\uff11\\uff11\\uff10\\u865f\\uff11\\u6a13"}', '016765', 'quanjia', 'zh-tw', 1000),
(9486, 6181, '5914-6181', 1, '宜蘭民族店', '{"number":"017526","shop":"\\u5b9c\\u862d\\u6c11\\u65cf\\u5e97","phone":"039334306","address":"\\u6c11\\u65cf\\u8def\\uff12\\uff18\\uff11\\u865f\\u4e00\\u6a13"}', '017526', 'quanjia', 'zh-tw', 1000),
(9487, 6181, '5914-6181', 1, '宜蘭進士店', '{"number":"013577","shop":"\\u5b9c\\u862d\\u9032\\u58eb\\u5e97","phone":"039253745","address":"\\u5357\\u6a4b\\u8def\\uff14\\uff12\\uff17\\u865f"}', '013577', 'quanjia', 'zh-tw', 1000),
(9488, 6181, '5914-6181', 1, '宜蘭學府店', '{"number":"015803","shop":"\\u5b9c\\u862d\\u5b78\\u5e9c\\u5e97","phone":"039359495","address":"\\u5973\\u4e2d\\u8def\\u4e09\\u6bb5\\uff12\\uff13\\uff19\\u865f\\u4e00\\u6a13"}', '015803', 'quanjia', 'zh-tw', 1000),
(9489, 6181, '5914-6181', 1, '宜蘭神農店', '{"number":"018305","shop":"\\u5b9c\\u862d\\u795e\\u8fb2\\u5e97","phone":"039313478","address":"\\u795e\\u8fb2\\u8def\\u4e00\\u6bb5\\uff11\\uff10\\uff12\\u865f\\uff1b\\u8fb2\\u6b0a\\u8def\\uff12\\uff15\\uff17\\uff0c\\uff12\\uff15"}', '018305', 'quanjia', 'zh-tw', 1000),
(9490, 6181, '5914-6181', 1, '宜蘭新泰山店', '{"number":"017924","shop":"\\u5b9c\\u862d\\u65b0\\u6cf0\\u5c71\\u5e97","phone":"039313137","address":"\\u6cf0\\u5c71\\u8def\\uff15\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '017924', 'quanjia', 'zh-tw', 1000),
(9491, 6181, '5914-6181', 1, '宜蘭福泰店', '{"number":"017253","shop":"\\u5b9c\\u862d\\u798f\\u6cf0\\u5e97","phone":"039324868","address":"\\u6cf0\\u5c71\\u8def\\uff18\\uff13\\u865f"}', '017253', 'quanjia', 'zh-tw', 1000),
(9492, 6181, '5914-6181', 1, '宜蘭文昌店', '{"number":"015317","shop":"\\u5b9c\\u862d\\u6587\\u660c\\u5e97","phone":"039356428","address":"\\u6587\\u660c\\u8def\\uff11\\uff12\\uff10\\u865f"}', '015317', 'quanjia', 'zh-tw', 1000),
(9493, 6181, '5914-6181', 1, '宜蘭陽大店', '{"number":"016307","shop":"\\u5b9c\\u862d\\u967d\\u5927\\u5e97","phone":"039385194","address":"\\u6821\\u820d\\u8def\\uff11\\uff16\\uff19\\u865f\\uff22\\uff11"}', '016307', 'quanjia', 'zh-tw', 1000),
(9494, 6181, '5914-6181', 1, '宜蘭陽明店', '{"number":"015110","shop":"\\u5b9c\\u862d\\u967d\\u660e\\u5e97","phone":"039324729","address":"\\u65b0\\u6c11\\u8def\\uff11\\uff14\\uff18\\u865f"}', '015110', 'quanjia', 'zh-tw', 1000),
(9495, 6181, '5914-6181', 1, '宜蘭新延平店', '{"number":"018036","shop":"\\u5b9c\\u862d\\u65b0\\u5ef6\\u5e73\\u5e97","phone":"039373446","address":"\\u5ef6\\u5e73\\u8def\\uff13\\uff18\\u4e4b\\uff14\\uff11\\u865f"}', '018036', 'quanjia', 'zh-tw', 1000),
(9496, 6181, '5914-6181', 1, '宜蘭南館店', '{"number":"017252","shop":"\\u5b9c\\u862d\\u5357\\u9928\\u5e97","phone":"039367350","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff12\\uff10\\u3001\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '017252', 'quanjia', 'zh-tw', 1000),
(9497, 6181, '5914-6181', 1, '宜蘭中山店', '{"number":"018152","shop":"\\u5b9c\\u862d\\u4e2d\\u5c71\\u5e97","phone":"039312463","address":"\\u4e2d\\u5c71\\u8def\\u4e09\\u6bb5\\uff12\\uff11\\uff10\\u865f\\u4e00\\u6a13"}', '018152', 'quanjia', 'zh-tw', 1000),
(9498, 6181, '5914-6181', 1, '宜蘭新吳沙店', '{"number":"014691","shop":"\\u5b9c\\u862d\\u65b0\\u5433\\u6c99\\u5e97","phone":"039289296","address":"\\u4e2d\\u5c71\\u8def\\u4e94\\u6bb5\\uff18\\uff11\\u865f\\u4e00\\u6a13"}', '014691', 'quanjia', 'zh-tw', 1000),
(9499, 6181, '5914-6181', 1, '宜蘭縣府店', '{"number":"018047","shop":"\\u5b9c\\u862d\\u7e23\\u5e9c\\u5e97","phone":"039253048","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff13\\uff14\\uff16\\u865f\\u4e00\\u81f3\\u4e8c\\u6a13"}', '018047', 'quanjia', 'zh-tw', 1000),
(9500, 6182, '5914-6182', 1, '宜蘭內城店', '{"number":"012587","shop":"\\u5b9c\\u862d\\u5167\\u57ce\\u5e97","phone":"039230814","address":"\\u5167\\u57ce\\u8def\\uff14\\uff15\\uff15\\u865f\\uff11\\u6a13"}', '012587', 'quanjia', 'zh-tw', 1000),
(9501, 6182, '5914-6182', 1, '宜蘭內員山店', '{"number":"012955","shop":"\\u5b9c\\u862d\\u5167\\u54e1\\u5c71\\u5e97","phone":"039233004","address":"\\u6eab\\u6cc9\\u8def\\uff11\\uff10\\u865f\\u3001\\uff11\\uff10\\u4e4b\\uff11\\u865f"}', '012955', 'quanjia', 'zh-tw', 1000),
(9502, 6182, '5914-6182', 1, '宜蘭員山店', '{"number":"017106","shop":"\\u5b9c\\u862d\\u54e1\\u5c71\\u5e97","phone":"039233360","address":"\\u54e1\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff12\\uff12\\u865f\\uff11\\u6a13"}', '017106', 'quanjia', 'zh-tw', 1000),
(9503, 6183, '5914-6183', 1, '壯圍美功店', '{"number":"014302","shop":"\\u58ef\\u570d\\u7f8e\\u529f\\u5e97","phone":"039309263","address":"\\u7f8e\\u529f\\u8def\\u4e00\\u6bb5\\uff11\\uff16\\uff18\\u865f"}', '014302', 'quanjia', 'zh-tw', 1000),
(9504, 6183, '5914-6183', 1, '壯圍吉祥店', '{"number":"013979","shop":"\\u58ef\\u570d\\u5409\\u7965\\u5e97","phone":"039388144","address":"\\u58ef\\u4e94\\u8def\\uff12\\uff17\\uff18\\u865f\\uff11\\u6a13"}', '013979', 'quanjia', 'zh-tw', 1000),
(9505, 6184, '5915-6184', 1, '褒忠聚寶店', '{"number":"018192","shop":"\\u8912\\u5fe0\\u805a\\u5bf6\\u5e97","phone":"056975735","address":"\\u4e2d\\u6b63\\u8def\\uff11\\uff13\\uff11\\u865f\\uff11\\u6a13"}', '018192', 'quanjia', 'zh-tw', 1000),
(9506, 6185, '5915-6185', 1, '北港豐順店', '{"number":"016397","shop":"\\u5317\\u6e2f\\u8c50\\u9806\\u5e97","phone":"057839941","address":"\\u516c\\u5712\\u8def\\uff17\\uff13\\u865f\\uff11\\uff0e\\uff12\\u6a13"}', '016397', 'quanjia', 'zh-tw', 1000),
(9507, 6185, '5915-6185', 1, '北港文仁店', '{"number":"014333","shop":"\\u5317\\u6e2f\\u6587\\u4ec1\\u5e97","phone":"057820974","address":"\\u83ef\\u52dd\\u91cc\\u5927\\u540c\\u8def\\uff15\\uff15\\uff14\\u4e4b\\uff11\\u865f"}', '014333', 'quanjia', 'zh-tw', 1000),
(9508, 6185, '5915-6185', 1, '北港財神店', '{"number":"015799","shop":"\\u5317\\u6e2f\\u8ca1\\u795e\\u5e97","phone":"057821172","address":"\\u83ef\\u52dd\\u91cc\\u6587\\u4ec1\\u8def\\uff11\\uff14\\uff13\\u865f\\u4e00\\u6a13"}', '015799', 'quanjia', 'zh-tw', 1000),
(9509, 6185, '5915-6185', 1, '北港華勝店', '{"number":"016276","shop":"\\u5317\\u6e2f\\u83ef\\u52dd\\u5e97","phone":"057825091","address":"\\u83ef\\u52dd\\u8def\\uff14\\uff11\\uff16\\u865f\\uff11\\u6a13"}', '016276', 'quanjia', 'zh-tw', 1000),
(9510, 6185, '5915-6185', 1, '北港天后店', '{"number":"017612","shop":"\\u5317\\u6e2f\\u5929\\u540e\\u5e97","phone":"057837465","address":"\\u4e2d\\u5c71\\u8def\\uff19\\uff10\\u865f"}', '017612', 'quanjia', 'zh-tw', 1000),
(9511, 6185, '5915-6185', 1, '北港順風店', '{"number":"017050","shop":"\\u5317\\u6e2f\\u9806\\u98a8\\u5e97","phone":"057836010","address":"\\u4e2d\\u6b63\\u8def\\uff19\\uff15\\u865f\\u4e00\\u6a13\\u3001\\u4e8c\\u6a13"}', '017050', 'quanjia', 'zh-tw', 1000),
(9512, 6186, '5915-6186', 1, '莿桐饒平店', '{"number":"017739","shop":"\\u83bf\\u6850\\u9952\\u5e73\\u5e97","phone":"055712906","address":"\\u56db\\u5408\\u6751\\u540e\\u57d4\\uff11\\uff12\\uff18\\u865f"}', '017739', 'quanjia', 'zh-tw', 1000),
(9513, 6187, '5915-6187', 1, '東勢安康店', '{"number":"018068","shop":"\\u6771\\u52e2\\u5b89\\u5eb7\\u5e97","phone":"056993185","address":"\\u6771\\u5357\\u6751\\u5eb7\\u5b89\\u8def\\uff16\\u865f"}', '018068', 'quanjia', 'zh-tw', 1000),
(9514, 6188, '5915-6188', 1, '斗六保明店', '{"number":"017671","shop":"\\u6597\\u516d\\u4fdd\\u660e\\u5e97","phone":"055370414","address":"\\u4fdd\\u9577\\u8def\\uff15\\uff11\\uff0d\\uff11\\u865f"}', '017671', 'quanjia', 'zh-tw', 1000),
(9515, 6188, '5915-6188', 1, '斗六莊敬店', '{"number":"016463","shop":"\\u6597\\u516d\\u838a\\u656c\\u5e97","phone":"055338296","address":"\\u6210\\u529f\\u91cc\\u6210\\u529f\\u8def\\uff12\\uff18\\uff10\\u865f\\u4e00\\u6a13"}', '016463', 'quanjia', 'zh-tw', 1000),
(9516, 6188, '5915-6188', 1, '斗六榮大店', '{"number":"016809","shop":"\\u6597\\u516d\\u69ae\\u5927\\u5e97","phone":"055360113","address":"\\u5927\\u5b78\\u8def\\u4e00\\u6bb5\\uff14\\uff10\\uff12\\u865f\\uff11\\u6a13"}', '016809', 'quanjia', 'zh-tw', 1000),
(9517, 6188, '5915-6188', 1, '斗六工業店', '{"number":"017655","shop":"\\u6597\\u516d\\u5de5\\u696d\\u5e97","phone":"055575825","address":"\\u6597\\u5de5\\u5341\\u8def\\uff11\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '017655', 'quanjia', 'zh-tw', 1000),
(9518, 6188, '5915-6188', 1, '斗六交流店', '{"number":"018409","shop":"\\u6597\\u516d\\u4ea4\\u6d41\\u5e97","phone":"055572615","address":"\\u69b4\\u4e2d\\u91cc\\u77f3\\u69b4\\u8def\\uff13\\uff16\\uff17\\u865f"}', '018409', 'quanjia', 'zh-tw', 1000),
(9519, 6188, '5915-6188', 1, '斗六龍潭店', '{"number":"015257","shop":"\\u6597\\u516d\\u9f8d\\u6f6d\\u5e97","phone":"055336820","address":"\\u9f8d\\u6f6d\\u5317\\u8def\\uff12\\u865f\\uff11\\u6a13"}', '015257', 'quanjia', 'zh-tw', 1000),
(9520, 6188, '5915-6188', 1, '斗六四維店', '{"number":"017562","shop":"\\u6597\\u516d\\u56db\\u7dad\\u5e97","phone":"055350953","address":"\\u9f8d\\u6f6d\\u91cc\\u56db\\u7dad\\u8def\\uff11\\uff13\\uff12\\u865f\\uff11\\u6a13"}', '017562', 'quanjia', 'zh-tw', 1000),
(9521, 6188, '5915-6188', 1, '斗六重光店', '{"number":"016619","shop":"\\u6597\\u516d\\u91cd\\u5149\\u5e97","phone":"055338946","address":"\\u5357\\u8056\\u8def\\uff17\\uff18\\u5df7\\uff14\\uff17\\u865f\\uff11\\u6a13"}', '016619', 'quanjia', 'zh-tw', 1000),
(9522, 6188, '5915-6188', 1, '斗六西平店', '{"number":"016470","shop":"\\u6597\\u516d\\u897f\\u5e73\\u5e97","phone":"055516477","address":"\\u897f\\u5e73\\u8def\\uff16\\uff17\\uff17\\u865f"}', '016470', 'quanjia', 'zh-tw', 1000),
(9523, 6188, '5915-6188', 1, '斗六竹圍店', '{"number":"015256","shop":"\\u6597\\u516d\\u7af9\\u570d\\u5e97","phone":"055515203","address":"\\u6eaa\\u6d32\\u91cc\\u7af9\\u570d\\u8def\\uff15\\uff11\\u865f\\u4e00\\u6a13"}', '015256', 'quanjia', 'zh-tw', 1000),
(9524, 6188, '5915-6188', 1, '斗六永昌店', '{"number":"017038","shop":"\\u6597\\u516d\\u6c38\\u660c\\u5e97","phone":"055376148","address":"\\u96f2\\u6797\\u8def\\u4e8c\\u6bb5\\uff11\\uff13\\uff15\\u865f\\uff11\\u6a13"}', '017038', 'quanjia', 'zh-tw', 1000),
(9525, 6188, '5915-6188', 1, '斗六久安店', '{"number":"017335","shop":"\\u6597\\u516d\\u4e45\\u5b89\\u5e97","phone":"055222671","address":"\\u96f2\\u6797\\u8def\\u4e09\\u6bb5\\uff14\\uff17\\uff13\\u865f"}', '017335', 'quanjia', 'zh-tw', 1000),
(9526, 6188, '5915-6188', 1, '斗六鎮北店', '{"number":"018193","shop":"\\u6597\\u516d\\u93ae\\u5317\\u5e97","phone":"055331047","address":"\\u93ae\\u5317\\u8def\\uff11\\uff15\\uff12\\u865f\\uff11\\u6a13\\uff0e\\uff12\\u6a13"}', '018193', 'quanjia', 'zh-tw', 1000),
(9527, 6188, '5915-6188', 1, '斗六牛桃灣店', '{"number":"016540","shop":"\\u6597\\u516d\\u725b\\u6843\\u7063\\u5e97","phone":"055512040","address":"\\u93ae\\u5317\\u8def\\uff13\\uff14\\uff19\\uff0d\\uff12\\u865f"}', '016540', 'quanjia', 'zh-tw', 1000),
(9528, 6188, '5915-6188', 1, '斗六明德店', '{"number":"015017","shop":"\\u6597\\u516d\\u660e\\u5fb7\\u5e97","phone":"055339978","address":"\\u93ae\\u5357\\u91cc\\u660e\\u5fb7\\u8def\\uff11\\uff10\\uff13\\u865f\\uff11\\u6a13"}', '015017', 'quanjia', 'zh-tw', 1000);
INSERT INTO `akmall_region` (`id`, `pid`, `level`, `status`, `name`, `info`, `code`, `item`, `lang`, `display_order`) VALUES
(9529, 6188, '5915-6188', 1, '斗六環中店', '{"number":"016372","shop":"\\u6597\\u516d\\u74b0\\u4e2d\\u5e97","phone":"055374847","address":"\\u4e2d\\u83ef\\u8def\\uff12\\uff17\\uff15\\u865f"}', '016372', 'quanjia', 'zh-tw', 1000),
(9530, 6188, '5915-6188', 1, '斗六社口店', '{"number":"016621","shop":"\\u6597\\u516d\\u793e\\u53e3\\u5e97","phone":"055360684","address":"\\u4e2d\\u5c71\\u8def\\uff13\\uff12\\uff11\\u865f\\uff11\\u6a13\\uff12\\u6a13\\u5168\\u90e8"}', '016621', 'quanjia', 'zh-tw', 1000),
(9531, 6188, '5915-6188', 1, '斗六雲大店', '{"number":"013359","shop":"\\u6597\\u516d\\u96f2\\u5927\\u5e97","phone":"055360798","address":"\\u4e2d\\u5c71\\u8def\\uff15\\uff17\\uff13\\u865f"}', '013359', 'quanjia', 'zh-tw', 1000),
(9532, 6188, '5915-6188', 1, '斗六新中興店', '{"number":"017467","shop":"\\u6597\\u516d\\u65b0\\u4e2d\\u8208\\u5e97","phone":"055570421","address":"\\u4e2d\\u8208\\u8def\\uff13\\uff10\\u865f"}', '017467', 'quanjia', 'zh-tw', 1000),
(9533, 6189, '5915-6189', 1, '斗南新陽光店', '{"number":"015476","shop":"\\u6597\\u5357\\u65b0\\u967d\\u5149\\u5e97","phone":"055968582","address":"\\u5927\\u6210\\u8def\\uff16\\uff12\\u865f"}', '015476', 'quanjia', 'zh-tw', 1000),
(9534, 6189, '5915-6189', 1, '斗南光華店', '{"number":"018450","shop":"\\u6597\\u5357\\u5149\\u83ef\\u5e97","phone":"055953576","address":"\\u5149\\u83ef\\u8def\\uff19\\uff16\\u865f"}', '018450', 'quanjia', 'zh-tw', 1000),
(9535, 6189, '5915-6189', 1, '斗南林子店', '{"number":"018439","shop":"\\u6597\\u5357\\u6797\\u5b50\\u5e97","phone":"055974262","address":"\\u6797\\u5b50\\u91cc\\u6797\\u5b50\\uff12\\uff10\\uff11\\u865f"}', '018439', 'quanjia', 'zh-tw', 1000),
(9536, 6189, '5915-6189', 1, '斗南大業店', '{"number":"014443","shop":"\\u6597\\u5357\\u5927\\u696d\\u5e97","phone":"055974872","address":"\\u5c0f\\u6771\\u91cc\\uff15\\u9130\\u5927\\u696d\\u8def\\uff12\\uff14\\uff13\\u865f\\uff11\\u6a13"}', '014443', 'quanjia', 'zh-tw', 1000),
(9537, 6189, '5915-6189', 1, '斗南西岐店', '{"number":"017468","shop":"\\u6597\\u5357\\u897f\\u5c90\\u5e97","phone":"055953351","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff15\\uff11\\uff0d\\uff11\\uff16\\u865f"}', '017468', 'quanjia', 'zh-tw', 1000),
(9538, 6189, '5915-6189', 1, '斗南利台店', '{"number":"018642","shop":"\\u6597\\u5357\\u5229\\u53f0\\u5e97","phone":"055972136","address":"\\u5fe0\\u5b5d\\u8def\\uff12\\uff12\\uff18\\uff0d\\uff12\\u865f"}', '018642', 'quanjia', 'zh-tw', 1000),
(9539, 6190, '5915-6190', 1, '二崙永定店', '{"number":"016566","shop":"\\u4e8c\\u5d19\\u6c38\\u5b9a\\u5e97","phone":"055981816","address":"\\u6c38\\u5b9a\\u6751\\u6c38\\u5b9a\\u8def\\uff14\\uff10\\uff17\\u865f"}', '016566', 'quanjia', 'zh-tw', 1000),
(9540, 6190, '5915-6190', 1, '二崙新崙店', '{"number":"017762","shop":"\\u4e8c\\u5d19\\u65b0\\u5d19\\u5e97","phone":"055989801","address":"\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff15\\u865f"}', '017762', 'quanjia', 'zh-tw', 1000),
(9541, 6191, '5915-6191', 1, '古坑永光店', '{"number":"017379","shop":"\\u53e4\\u5751\\u6c38\\u5149\\u5e97","phone":"055821723","address":"\\u6c38\\u5149\\u6751\\u5149\\u660c\\u8def\\uff11\\uff15\\u5df7\\uff15\\u865f"}', '017379', 'quanjia', 'zh-tw', 1000),
(9542, 6192, '5915-6192', 1, '虎尾虎威店', '{"number":"015283","shop":"\\u864e\\u5c3e\\u864e\\u5a01\\u5e97","phone":"056329484","address":"\\u516b\\u5fb7\\u8857\\uff18\\uff18\\u865f"}', '015283', 'quanjia', 'zh-tw', 1000),
(9543, 6192, '5915-6192', 1, '虎尾立人店', '{"number":"017653","shop":"\\u864e\\u5c3e\\u7acb\\u4eba\\u5e97","phone":"056325725","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff17\\uff17\\u865f\\uff11\\uff06\\uff12\\u6a13"}', '017653', 'quanjia', 'zh-tw', 1000),
(9544, 6192, '5915-6192', 1, '虎尾平和店', '{"number":"016780","shop":"\\u864e\\u5c3e\\u5e73\\u548c\\u5e97","phone":"056324174","address":"\\u5149\\u5fa9\\u8def\\uff11\\uff12\\uff16\\u865f"}', '016780', 'quanjia', 'zh-tw', 1000),
(9545, 6192, '5915-6192', 1, '虎尾新光店', '{"number":"015477","shop":"\\u864e\\u5c3e\\u65b0\\u5149\\u5e97","phone":"056326703","address":"\\u5149\\u660e\\u8def\\uff17\\uff15\\u865f"}', '015477', 'quanjia', 'zh-tw', 1000),
(9546, 6192, '5915-6192', 1, '虎尾文科店', '{"number":"017750","shop":"\\u864e\\u5c3e\\u6587\\u79d1\\u5e97","phone":"056331799","address":"\\u5efa\\u570b\\u91cc\\u6587\\u79d1\\u8def\\uff11\\uff11\\uff15\\uff11\\u865f"}', '017750', 'quanjia', 'zh-tw', 1000),
(9547, 6192, '5915-6192', 1, '虎尾工專店', '{"number":"018289","shop":"\\u864e\\u5c3e\\u5de5\\u5c08\\u5e97","phone":"056364272","address":"\\u7acb\\u5fb7\\u8def\\uff12\\u865f"}', '018289', 'quanjia', 'zh-tw', 1000),
(9548, 6192, '5915-6192', 1, '虎尾新興店', '{"number":"014792","shop":"\\u864e\\u5c3e\\u65b0\\u8208\\u5e97","phone":"056323822","address":"\\u6c11\\u6b0a\\u8def\\uff11\\uff13\\u865f"}', '014792', 'quanjia', 'zh-tw', 1000),
(9549, 6192, '5915-6192', 1, '虎尾霸屯店', '{"number":"017901","shop":"\\u864e\\u5c3e\\u9738\\u5c6f\\u5e97","phone":"056650916","address":"\\u897f\\u5c6f\\u91cc\\u5927\\u5c6f\\uff12\\uff16\\uff16\\u865f"}', '017901', 'quanjia', 'zh-tw', 1000),
(9550, 6192, '5915-6192', 1, '虎尾興南店', '{"number":"015965","shop":"\\u864e\\u5c3e\\u8208\\u5357\\u5e97","phone":"056328374","address":"\\u8208\\u5357\\u91cc\\u8208\\u5357\\uff11\\uff15\\uff18\\u4e4b\\uff11\\uff12\\u865f"}', '015965', 'quanjia', 'zh-tw', 1000),
(9551, 6192, '5915-6192', 1, '虎尾霹靂店', '{"number":"015773","shop":"\\u864e\\u5c3e\\u9739\\u9742\\u5e97","phone":"056223248","address":"\\u4e2d\\u8208\\u8def\\uff18\\uff13\\u865f\\uff11\\u6a13"}', '015773', 'quanjia', 'zh-tw', 1000),
(9552, 6192, '5915-6192', 1, '虎尾新忠孝店', '{"number":"016462","shop":"\\u864e\\u5c3e\\u65b0\\u5fe0\\u5b5d\\u5e97","phone":"056320832","address":"\\u5fe0\\u5b5d\\u8def\\uff14\\uff14\\u865f"}', '016462', 'quanjia', 'zh-tw', 1000),
(9553, 6193, '5915-6193', 1, '口湖下崙店', '{"number":"018660","shop":"\\u53e3\\u6e56\\u4e0b\\u5d19\\u5e97","phone":"057990369","address":"\\u5d19\\u4e2d\\u6751\\u4e2d\\u5c71\\u8def\\uff17\\uff11\\u865f"}', '018660', 'quanjia', 'zh-tw', 1000),
(9554, 6194, '5915-6194', 1, '林內采虹店', '{"number":"018549","shop":"\\u6797\\u5167\\u91c7\\u8679\\u5e97","phone":"055898442","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff10\\u865f\\uff0e\\uff13\\uff12\\u865f"}', '018549', 'quanjia', 'zh-tw', 1000),
(9555, 6195, '5915-6195', 1, '崙背永昌店', '{"number":"017765","shop":"\\u5d19\\u80cc\\u6c38\\u660c\\u5e97","phone":"056967662","address":"\\u5357\\u5149\\u8def\\uff11\\u4e4b\\uff11\\uff10\\u865f"}', '017765', 'quanjia', 'zh-tw', 1000),
(9556, 6196, '5915-6196', 1, '麥寮新和順店', '{"number":"016162","shop":"\\u9ea5\\u5bee\\u65b0\\u548c\\u9806\\u5e97","phone":"056939370","address":"\\u5149\\u5fa9\\u8def\\uff13\\uff14\\u865f"}', '016162', 'quanjia', 'zh-tw', 1000),
(9557, 6196, '5915-6196', 1, '麥寮橋頭店', '{"number":"013924","shop":"\\u9ea5\\u5bee\\u6a4b\\u982d\\u5e97","phone":"056911471","address":"\\u6a4b\\u982d\\u6751\\u6a4b\\u982d\\u8def\\uff13\\uff12\\uff17\\u865f\\u4e00\\u6a13"}', '013924', 'quanjia', 'zh-tw', 1000),
(9558, 6196, '5915-6196', 1, '麥寮新工店', '{"number":"018515","shop":"\\u9ea5\\u5bee\\u65b0\\u5de5\\u5e97","phone":"056916675","address":"\\u4ec1\\u5fb7\\u897f\\u8def\\u4e8c\\u6bb5\\uff15\\uff14\\uff13\\u865f"}', '018515', 'quanjia', 'zh-tw', 1000),
(9559, 6196, '5915-6196', 1, '麥寮德順店', '{"number":"018070","shop":"\\u9ea5\\u5bee\\u5fb7\\u9806\\u5e97","phone":"056914811","address":"\\u65bd\\u539d\\u6751\\u65bd\\u539d\\uff12\\uff13\\uff10\\u865f\\uff11\\u6a13"}', '018070', 'quanjia', 'zh-tw', 1000),
(9560, 6196, '5915-6196', 1, '麥寮長庚店', '{"number":"017504","shop":"\\u9ea5\\u5bee\\u9577\\u5e9a\\u5e97","phone":"056910710","address":"\\u4e2d\\u8208\\u6751\\u5de5\\u696d\\u8def\\uff11\\uff15\\uff10\\uff10\\u865f"}', '017504', 'quanjia', 'zh-tw', 1000),
(9561, 6196, '5915-6196', 1, '麥寮六輕店', '{"number":"013776","shop":"\\u9ea5\\u5bee\\u516d\\u8f15\\u5e97","phone":"056812640","address":"\\u4e2d\\u8208\\u6751\\u53f0\\u5851\\u5de5\\u696d\\u5712\\u5340\\uff11\\u865f"}', '013776', 'quanjia', 'zh-tw', 1000),
(9562, 6196, '5915-6196', 1, '麥寮新泰順店', '{"number":"013030","shop":"\\u9ea5\\u5bee\\u65b0\\u6cf0\\u9806\\u5e97","phone":"056936160","address":"\\u4e2d\\u8208\\u8def\\uff17\\uff16\\uff0d\\uff13\\u865f"}', '013030', 'quanjia', 'zh-tw', 1000),
(9563, 6197, '5915-6197', 1, '雲林水林店', '{"number":"013876","shop":"\\u96f2\\u6797\\u6c34\\u6797\\u5e97","phone":"057850306","address":"\\u65b0\\u8208\\u5357\\u8def\\uff14\\u865f\\uff0c\\uff16\\u865f"}', '013876', 'quanjia', 'zh-tw', 1000),
(9564, 6198, '5915-6198', 1, '雲林崙豐店', '{"number":"017561","shop":"\\u96f2\\u6797\\u5d19\\u8c50\\u5e97","phone":"056902447","address":"\\u6c38\\u8c50\\u6751\\u5d19\\u8c50\\u8def\\uff11\\uff10\\uff18\\u865f\\uff11\\u6a13"}', '017561', 'quanjia', 'zh-tw', 1000),
(9565, 6199, '5915-6199', 1, '土庫建國店', '{"number":"018312","shop":"\\u571f\\u5eab\\u5efa\\u570b\\u5e97","phone":"056628899","address":"\\u5efa\\u570b\\u8def\\uff11\\uff13\\uff17\\u865f"}', '018312', 'quanjia', 'zh-tw', 1000),
(9566, 6200, '5915-6200', 1, '西螺廣福店', '{"number":"012175","shop":"\\u897f\\u87ba\\u5ee3\\u798f\\u5e97","phone":"055875923","address":"\\u5149\\u5fa9\\u897f\\u8def\\uff12\\u865f"}', '012175', 'quanjia', 'zh-tw', 1000),
(9567, 6200, '5915-6200', 1, '西螺平和店', '{"number":"015858","shop":"\\u897f\\u87ba\\u5e73\\u548c\\u5e97","phone":"055875059","address":"\\u5e73\\u548c\\u5357\\u8def\\uff13\\uff19\\uff19\\u865f\\uff11\\uff0d\\uff13\\u6a13"}', '015858', 'quanjia', 'zh-tw', 1000),
(9568, 6200, '5915-6200', 1, '西螺七崁店', '{"number":"016859","shop":"\\u897f\\u87ba\\u4e03\\u5d01\\u5e97","phone":"055878263","address":"\\u5433\\u539d\\u91cc\\u5433\\u539d\\uff17\\uff10\\uff0d\\uff11\\u865f"}', '016859', 'quanjia', 'zh-tw', 1000),
(9569, 6200, '5915-6200', 1, '西螺青果店', '{"number":"017766","shop":"\\u897f\\u87ba\\u9752\\u679c\\u5e97","phone":"055879480","address":"\\u65b0\\u5b89\\u91cc\\u65b0\\u8208\\u8def\\uff15\\uff10\\uff10\\u865f"}', '017766', 'quanjia', 'zh-tw', 1000),
(9570, 6200, '5915-6200', 1, '西螺延平店', '{"number":"018124","shop":"\\u897f\\u87ba\\u5ef6\\u5e73\\u5e97","phone":"055873047","address":"\\u5ef6\\u5e73\\u8def\\uff11\\uff19\\uff11\\u865f"}', '018124', 'quanjia', 'zh-tw', 1000),
(9571, 6201, '5915-6201', 1, '雲林元長店', '{"number":"016056","shop":"\\u96f2\\u6797\\u5143\\u9577\\u5e97","phone":"057888693","address":"\\u9577\\u5357\\u6751\\uff11\\uff13\\u9130\\u4e2d\\u5c71\\u8def\\uff11\\uff11\\uff15\\u865f\\uff11\\u6a13"}', '016056', 'quanjia', 'zh-tw', 1000),
(9572, 6202, '5916-6202', 1, '北斗七星店', '{"number":"017401","shop":"\\u5317\\u6597\\u4e03\\u661f\\u5e97","phone":"048780886","address":"\\u6771\\u5149\\u91cc\\u6597\\u4e2d\\u8def\\uff19\\uff12\\uff11\\u865f"}', '017401', 'quanjia', 'zh-tw', 1000),
(9573, 6202, '5916-6202', 1, '北斗寶斗店', '{"number":"017399","shop":"\\u5317\\u6597\\u5bf6\\u6597\\u5e97","phone":"048872120","address":"\\u6597\\u82d1\\u8def\\u4e00\\u6bb5\\uff11\\uff19\\uff13\\u865f"}', '017399', 'quanjia', 'zh-tw', 1000),
(9574, 6203, '5916-6203', 1, '大城大功店', '{"number":"014533","shop":"\\u5927\\u57ce\\u5927\\u529f\\u5e97","phone":"048944450","address":"\\u5927\\u57ce\\u6751\\u4e2d\\u5e73\\u8def\\uff18\\u865f"}', '014533', 'quanjia', 'zh-tw', 1000),
(9575, 6204, '5916-6204', 1, '大村大溪店', '{"number":"018261","shop":"\\u5927\\u6751\\u5927\\u6eaa\\u5e97","phone":"048520728","address":"\\u5927\\u6eaa\\u8def\\uff11\\uff13\\u865f"}', '018261', 'quanjia', 'zh-tw', 1000),
(9576, 6204, '5916-6204', 1, '大村美港店', '{"number":"015015","shop":"\\u5927\\u6751\\u7f8e\\u6e2f\\u5e97","phone":"048526080","address":"\\u7f8e\\u6e2f\\u8def\\uff15\\uff11\\u865f"}', '015015', 'quanjia', 'zh-tw', 1000),
(9577, 6204, '5916-6204', 1, '大村茄苳店', '{"number":"017611","shop":"\\u5927\\u6751\\u8304\\u82f3\\u5e97","phone":"048521170","address":"\\u8304\\u82f3\\u8def\\u4e8c\\u6bb5\\uff12\\u865f"}', '017611', 'quanjia', 'zh-tw', 1000),
(9578, 6204, '5916-6204', 1, '大村寶村店', '{"number":"018872","shop":"\\u5927\\u6751\\u5bf6\\u6751\\u5e97","phone":"048534456","address":"\\u5c71\\u8173\\u8def\\uff17\\uff15\\uff0d\\uff17\\u865f"}', '018872', 'quanjia', 'zh-tw', 1000),
(9579, 6204, '5916-6204', 1, '大村寶山店', '{"number":"013093","shop":"\\u5927\\u6751\\u5bf6\\u5c71\\u5e97","phone":"048525206","address":"\\u5c71\\u8173\\u8def\\uff19\\uff18\\uff0d\\uff12\\uff10\\u865f"}', '013093', 'quanjia', 'zh-tw', 1000),
(9580, 6204, '5916-6204', 1, '彰化大村店', '{"number":"013822","shop":"\\u5f70\\u5316\\u5927\\u6751\\u5e97","phone":"048539678","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff13\\u865f\\u53ca\\u4e2d\\u6b63\\u897f\\u8def\\uff11\\u865f"}', '013822', 'quanjia', 'zh-tw', 1000),
(9581, 6205, '5916-6205', 1, '二林原斗店', '{"number":"014298","shop":"\\u4e8c\\u6797\\u539f\\u6597\\u5e97","phone":"048901566","address":"\\u6597\\u82d1\\u8def\\u4e8c\\u6bb5\\uff16\\u865f"}', '014298', 'quanjia', 'zh-tw', 1000),
(9582, 6205, '5916-6205', 1, '二林斗苑店', '{"number":"018286","shop":"\\u4e8c\\u6797\\u6597\\u82d1\\u5e97","phone":"048955612","address":"\\u6597\\u82d1\\u8def\\u56db\\u6bb5\\uff12\\uff19\\uff19\\u865f"}', '018286', 'quanjia', 'zh-tw', 1000),
(9583, 6206, '5916-6206', 1, '芳苑王功店', '{"number":"015783","shop":"\\u82b3\\u82d1\\u738b\\u529f\\u5e97","phone":"048932205","address":"\\u82b3\\u6f22\\u8def\\u738b\\u529f\\u6bb5\\uff15\\uff13\\uff15\\u865f"}', '015783', 'quanjia', 'zh-tw', 1000),
(9584, 6206, '5916-6206', 1, '芳苑寶成店', '{"number":"017535","shop":"\\u82b3\\u82d1\\u5bf6\\u6210\\u5e97","phone":"048962501","address":"\\u4e09\\u5408\\u6751\\uff11\\uff14\\u9130\\u6597\\u82d1\\u8def\\u4e09\\u5408\\u6bb5\\uff11\\uff10\\uff10\\u865f"}', '017535', 'quanjia', 'zh-tw', 1000),
(9585, 6207, '5916-6207', 1, '芬園金馬店', '{"number":"016782","shop":"\\u82ac\\u5712\\u91d1\\u99ac\\u5e97","phone":"0492510284","address":"\\u4fe1\\u7fa9\\u8def\\uff15\\u865f"}', '016782', 'quanjia', 'zh-tw', 1000),
(9586, 6208, '5916-6208', 1, '福興番花店', '{"number":"014187","shop":"\\u798f\\u8208\\u756a\\u82b1\\u5e97","phone":"047795343","address":"\\u756a\\u82b1\\u8def\\u4e00\\u6bb5\\uff18\\uff15\\uff13\\u865f"}', '014187', 'quanjia', 'zh-tw', 1000),
(9587, 6208, '5916-6208', 1, '福興福鹿店', '{"number":"013208","shop":"\\u798f\\u8208\\u798f\\u9e7f\\u5e97","phone":"047773653","address":"\\u5fa9\\u8208\\u8def\\uff11\\uff12\\uff10\\u865f"}', '013208', 'quanjia', 'zh-tw', 1000),
(9588, 6208, '5916-6208', 1, '福興福利店', '{"number":"016618","shop":"\\u798f\\u8208\\u798f\\u5229\\u5e97","phone":"047697552","address":"\\u842c\\u8c50\\u6751\\u5f70\\u6c34\\u8def\\uff15\\uff10\\u3001\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '016618', 'quanjia', 'zh-tw', 1000),
(9589, 6208, '5916-6208', 1, '福興福環店', '{"number":"018348","shop":"\\u798f\\u8208\\u798f\\u74b0\\u5e97","phone":"047770440","address":"\\u6cbf\\u6d77\\u8def\\uff14\\u6bb5\\uff13\\uff18\\uff12\\u865f"}', '018348', 'quanjia', 'zh-tw', 1000),
(9590, 6209, '5916-6209', 1, '和美頂美店', '{"number":"011838","shop":"\\u548c\\u7f8e\\u9802\\u7f8e\\u5e97","phone":"047350643","address":"\\u67d1\\u4e95\\u91cc\\u7f8e\\u5bee\\u8def\\u4e8c\\u6bb5\\uff12\\u865f\\uff11\\u6a13"}', '011838', 'quanjia', 'zh-tw', 1000),
(9591, 6209, '5916-6209', 1, '和美八大店', '{"number":"017082","shop":"\\u548c\\u7f8e\\u516b\\u5927\\u5e97","phone":"047563372","address":"\\u9e7f\\u548c\\u8def\\u516d\\u6bb5\\uff13\\uff11\\uff10\\u865f"}', '017082', 'quanjia', 'zh-tw', 1000),
(9592, 6209, '5916-6209', 1, '和美金好雅店', '{"number":"015912","shop":"\\u548c\\u7f8e\\u91d1\\u597d\\u96c5\\u5e97","phone":"047556320","address":"\\u9e7f\\u548c\\u8def\\u4e94\\u6bb5\\uff11\\uff18\\uff18\\u5df7\\uff13\\u865f"}', '015912', 'quanjia', 'zh-tw', 1000),
(9593, 6209, '5916-6209', 1, '和美德美店', '{"number":"018285","shop":"\\u548c\\u7f8e\\u5fb7\\u7f8e\\u5e97","phone":"047556549","address":"\\u7f8e\\u5bee\\u8def\\u4e8c\\u6bb5\\uff15\\uff15\\uff17\\u865f\\uff11\\u6a13"}', '018285', 'quanjia', 'zh-tw', 1000),
(9594, 6209, '5916-6209', 1, '和美家美店', '{"number":"012060","shop":"\\u548c\\u7f8e\\u5bb6\\u7f8e\\u5e97","phone":"047636905","address":"\\u5357\\u4f43\\u91cc\\u5609\\u4f43\\u8def\\uff18\\u865f\\u4e00\\u6a13"}', '012060', 'quanjia', 'zh-tw', 1000),
(9595, 6209, '5916-6209', 1, '和美雙美店', '{"number":"015329","shop":"\\u548c\\u7f8e\\u96d9\\u7f8e\\u5e97","phone":"047366041","address":"\\u7cd6\\u6771\\uff11\\u8857\\uff12\\uff11\\u865f\\u3001\\uff12\\uff13\\u865f\\uff11\\u6a13"}', '015329', 'quanjia', 'zh-tw', 1000),
(9596, 6209, '5916-6209', 1, '和美金美店', '{"number":"013440","shop":"\\u548c\\u7f8e\\u91d1\\u7f8e\\u5e97","phone":"047567100","address":"\\u6708\\u7709\\u91cc\\u548c\\u539d\\u8def\\u4e00\\u6bb5\\u81e8\\uff12\\uff11\\uff16\\u865f"}', '013440', 'quanjia', 'zh-tw', 1000),
(9597, 6209, '5916-6209', 1, '和美永美店', '{"number":"018016","shop":"\\u548c\\u7f8e\\u6c38\\u7f8e\\u5e97","phone":"047359141","address":"\\u5f70\\u65b0\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff13\\u865f"}', '018016', 'quanjia', 'zh-tw', 1000),
(9598, 6210, '5916-6210', 1, '花壇正花店', '{"number":"016292","shop":"\\u82b1\\u58c7\\u6b63\\u82b1\\u5e97","phone":"047867840","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff13\\uff18\\uff10\\u865f"}', '016292', 'quanjia', 'zh-tw', 1000),
(9599, 6210, '5916-6210', 1, '花壇金花店', '{"number":"013498","shop":"\\u82b1\\u58c7\\u91d1\\u82b1\\u5e97","phone":"047860631","address":"\\u4e2d\\u6b63\\u8def\\uff13\\uff15\\uff16\\u865f\\u58f9\\u6a13"}', '013498', 'quanjia', 'zh-tw', 1000),
(9600, 6211, '5916-6211', 1, '鹿港媽祖店', '{"number":"017075","shop":"\\u9e7f\\u6e2f\\u5abd\\u7956\\u5e97","phone":"047782548","address":"\\u5149\\u5fa9\\u8def\\u81e8\\uff18\\uff15\\u865f"}', '017075', 'quanjia', 'zh-tw', 1000),
(9601, 6211, '5916-6211', 1, '鹿港祥園店', '{"number":"018707","shop":"\\u9e7f\\u6e2f\\u7965\\u5712\\u5e97","phone":"047772617","address":"\\u6d77\\u6d74\\u8def\\uff12\\uff10\\uff18\\uff0d\\uff11\\u865f\\uff11\\u6a13"}', '018707', 'quanjia', 'zh-tw', 1000),
(9602, 6211, '5916-6211', 1, '鹿港鹿鼎店', '{"number":"012059","shop":"\\u9e7f\\u6e2f\\u9e7f\\u9f0e\\u5e97","phone":"047712161","address":"\\u9e7f\\u8349\\u8def\\u56db\\u6bb5\\uff14\\uff10\\uff19\\u865f\\u4e00\\u6a13"}', '012059', 'quanjia', 'zh-tw', 1000),
(9603, 6211, '5916-6211', 1, '鹿港富麗店', '{"number":"016628","shop":"\\u9e7f\\u6e2f\\u5bcc\\u9e97\\u5e97","phone":"047787891","address":"\\u9e7f\\u6771\\u8def\\u4e8c\\u6bb5\\uff15\\uff14\\uff11\\u865f"}', '016628', 'quanjia', 'zh-tw', 1000),
(9604, 6211, '5916-6211', 1, '鹿港柑仔店', '{"number":"017237","shop":"\\u9e7f\\u6e2f\\u67d1\\u4ed4\\u5e97","phone":"047719430","address":"\\u9e7f\\u548c\\u8def\\uff13\\u6bb5\\uff14\\uff12\\uff13\\u865f"}', '017237', 'quanjia', 'zh-tw', 1000),
(9605, 6211, '5916-6211', 1, '鹿港金寶店', '{"number":"014399","shop":"\\u9e7f\\u6e2f\\u91d1\\u5bf6\\u5e97","phone":"047720101","address":"\\u9e7f\\u548c\\u8def\\u56db\\u6bb5\\uff11\\uff10\\u865f"}', '014399', 'quanjia', 'zh-tw', 1000),
(9606, 6211, '5916-6211', 1, '鹿港車站店', '{"number":"012081","shop":"\\u9e7f\\u6e2f\\u8eca\\u7ad9\\u5e97","phone":"047740452","address":"\\u6c11\\u6b0a\\u8def\\uff12\\uff10\\uff12\\u865f"}', '012081', 'quanjia', 'zh-tw', 1000),
(9607, 6211, '5916-6211', 1, '鹿港天后店', '{"number":"015282","shop":"\\u9e7f\\u6e2f\\u5929\\u540e\\u5e97","phone":"047754523","address":"\\u7389\\u9806\\u91cc\\u5f8c\\u5bee\\u5df7\\uff19\\uff12\\u865f\\uff11\\u6a13"}', '015282', 'quanjia', 'zh-tw', 1000),
(9608, 6212, '5916-6212', 1, '埤頭大豐店', '{"number":"018706","shop":"\\u57e4\\u982d\\u5927\\u8c50\\u5e97","phone":"048876901","address":"\\u6597\\u82d1\\u6771\\u8def\\uff12\\u4e4b\\uff15\\u865f"}', '018706', 'quanjia', 'zh-tw', 1000),
(9609, 6212, '5916-6212', 1, '埤頭金農店', '{"number":"018379","shop":"\\u57e4\\u982d\\u91d1\\u8fb2\\u5e97","phone":"048924389","address":"\\u5f70\\u6c34\\u8def\\u4e09\\u6bb5\\uff12\\uff16\\uff15\\u865f"}', '018379', 'quanjia', 'zh-tw', 1000),
(9610, 6213, '5916-6213', 1, '埔心永坡店', '{"number":"018347","shop":"\\u57d4\\u5fc3\\u6c38\\u5761\\u5e97","phone":"048280399","address":"\\u6771\\u9580\\u6751\\u4e2d\\u6b63\\u8def\\u4e00\\u6bb5\\u81e8\\uff14\\uff19\\uff17\\u865f"}', '018347', 'quanjia', 'zh-tw', 1000),
(9611, 6213, '5916-6213', 1, '埔心署醫店', '{"number":"016272","shop":"\\u57d4\\u5fc3\\u7f72\\u91ab\\u5e97","phone":"048284693","address":"\\u820a\\u9928\\u6751\\u4e2d\\u8208\\u8def\\uff13\\uff15\\u865f"}', '016272', 'quanjia', 'zh-tw', 1000),
(9612, 6214, '5916-6214', 1, '彰化埔鹽店', '{"number":"018577","shop":"\\u5f70\\u5316\\u57d4\\u9e7d\\u5e97","phone":"048656498","address":"\\u5f70\\u6c34\\u8def\\uff12\\u6bb5\\uff13\\uff11\\u865f"}', '018577', 'quanjia', 'zh-tw', 1000),
(9613, 6215, '5916-6215', 1, '社頭山腳店', '{"number":"016381","shop":"\\u793e\\u982d\\u5c71\\u8173\\u5e97","phone":"048713762","address":"\\u5c71\\u8173\\u8def\\u56db\\u6bb5\\uff11\\uff18\\uff13\\u865f"}', '016381', 'quanjia', 'zh-tw', 1000),
(9614, 6215, '5916-6215', 1, '社頭金蟹店', '{"number":"018169","shop":"\\u793e\\u982d\\u91d1\\u87f9\\u5e97","phone":"048712664","address":"\\u4e2d\\u8208\\u8def\\uff18\\uff12\\u865f"}', '018169', 'quanjia', 'zh-tw', 1000),
(9615, 6216, '5916-6216', 1, '伸港上旺店', '{"number":"018217","shop":"\\u4f38\\u6e2f\\u4e0a\\u65fa\\u5e97","phone":"047987095","address":"\\u5927\\u540c\\u6751\\u4e2d\\u8208\\u8def\\u4e8c\\u6bb5\\uff13\\uff11\\uff17\\u865f\\uff11\\u6a13"}', '018217', 'quanjia', 'zh-tw', 1000),
(9616, 6216, '5916-6216', 1, '伸港雙興店', '{"number":"018513","shop":"\\u4f38\\u6e2f\\u96d9\\u8208\\u5e97","phone":"047987049","address":"\\u4e03\\u5609\\u6751\\u4e2d\\u83ef\\u8def\\uff14\\uff16\\uff13\\u865f\\u4e00\\u6a13"}', '018513', 'quanjia', 'zh-tw', 1000),
(9617, 6216, '5916-6216', 1, '伸港新港店', '{"number":"014452","shop":"\\u4f38\\u6e2f\\u65b0\\u6e2f\\u5e97","phone":"047987553","address":"\\u65b0\\u6e2f\\u8def\\uff13\\uff10\\uff18\\u865f"}', '014452', 'quanjia', 'zh-tw', 1000),
(9618, 6216, '5916-6216', 1, '伸港新全興店', '{"number":"018831","shop":"\\u4f38\\u6e2f\\u65b0\\u5168\\u8208\\u5e97","phone":"047989532","address":"\\u8208\\u5de5\\u8def\\uff17\\uff13\\uff16\\u865f"}', '018831', 'quanjia', 'zh-tw', 1000),
(9619, 6217, '5916-6217', 1, '田尾金園店', '{"number":"017463","shop":"\\u7530\\u5c3e\\u91d1\\u5712\\u5e97","phone":"048837329","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff15\\uff17\\uff17\\u865f"}', '017463', 'quanjia', 'zh-tw', 1000),
(9620, 6218, '5916-6218', 1, '田中金斗店', '{"number":"018785","shop":"\\u7530\\u4e2d\\u91d1\\u6597\\u5e97","phone":"048748349","address":"\\u6597\\u4e2d\\u8def\\u4e00\\u6bb5\\uff12\\uff13\\uff12\\u865f"}', '018785', 'quanjia', 'zh-tw', 1000),
(9621, 6218, '5916-6218', 1, '田中雙田店', '{"number":"015835","shop":"\\u7530\\u4e2d\\u96d9\\u7530\\u5e97","phone":"048744418","address":"\\u6c11\\u65cf\\u8857\\uff12\\u865f\\uff11\\u6a13"}', '015835', 'quanjia', 'zh-tw', 1000),
(9622, 6218, '5916-6218', 1, '田中新生店', '{"number":"015278","shop":"\\u7530\\u4e2d\\u65b0\\u751f\\u5e97","phone":"048748424","address":"\\u54e1\\u96c6\\u8def\\u4e8c\\u6bb5\\uff15\\uff16\\uff16\\u865f"}', '015278', 'quanjia', 'zh-tw', 1000),
(9623, 6218, '5916-6218', 1, '彰化高鐵店', '{"number":"016996","shop":"\\u5f70\\u5316\\u9ad8\\u9435\\u5e97","phone":"047009155","address":"\\u7ad9\\u5340\\u8def\\u4e8c\\u6bb5\\uff19\\uff19\\u865f"}', '016996', 'quanjia', 'zh-tw', 1000),
(9624, 6218, '5916-6218', 1, '田中金田店', '{"number":"018781","shop":"\\u7530\\u4e2d\\u91d1\\u7530\\u5e97","phone":"048747821","address":"\\u4e2d\\u5dde\\u8def\\u4e00\\u6bb5\\uff17\\uff16\\u865f\\u4e00\\u6a13"}', '018781', 'quanjia', 'zh-tw', 1000),
(9625, 6219, '5916-6219', 1, '溪湖大發店', '{"number":"013253","shop":"\\u6eaa\\u6e56\\u5927\\u767c\\u5e97","phone":"048851667","address":"\\u5927\\u767c\\u8def\\uff17\\uff13\\u865f"}', '013253', 'quanjia', 'zh-tw', 1000),
(9626, 6219, '5916-6219', 1, '溪湖雙溪店', '{"number":"003564","shop":"\\u6eaa\\u6e56\\u96d9\\u6eaa\\u5e97","phone":"048851178","address":"\\u5927\\u7af9\\u91cc\\u5f70\\u6c34\\u8def\\u4e8c\\u6bb5\\uff17\\uff14\\uff15\\u865f\\uff11\\u6a13"}', '003564', 'quanjia', 'zh-tw', 1000),
(9627, 6219, '5916-6219', 1, '彰化溪湖店', '{"number":"016008","shop":"\\u5f70\\u5316\\u6eaa\\u6e56\\u5e97","phone":"048817134","address":"\\u5149\\u5e73\\u91cc\\u5927\\u6eaa\\u8def\\u4e8c\\u6bb5\\uff14\\uff10\\uff14\\u865f"}', '016008', 'quanjia', 'zh-tw', 1000),
(9628, 6219, '5916-6219', 1, '溪湖大竹店', '{"number":"018535","shop":"\\u6eaa\\u6e56\\u5927\\u7af9\\u5e97","phone":"048816507","address":"\\u6e56\\u897f\\u91cc\\u897f\\u74b0\\u8def\\uff12\\uff14\\uff13\\u865f\\uff12\\uff14\\uff15\\u865f\\u4e00\\u6a13"}', '018535', 'quanjia', 'zh-tw', 1000),
(9629, 6219, '5916-6219', 1, '溪湖再發店', '{"number":"012739","shop":"\\u6eaa\\u6e56\\u518d\\u767c\\u5e97","phone":"048817290","address":"\\u5d19\\u5b50\\u8173\\u8def\\uff11\\uff12\\uff12\\u865f"}', '012739', 'quanjia', 'zh-tw', 1000),
(9630, 6220, '5916-6220', 1, '溪州明道店', '{"number":"016595","shop":"\\u6eaa\\u5dde\\u660e\\u9053\\u5e97","phone":"048897642","address":"\\u4e2d\\u592e\\u8def\\u4e09\\u6bb5\\uff12\\uff12\\uff15\\u4e4b\\uff16\\u865f\\uff11\\u6a13"}', '016595', 'quanjia', 'zh-tw', 1000),
(9631, 6221, '5916-6221', 1, '彰化線西店', '{"number":"018782","shop":"\\u5f70\\u5316\\u7dda\\u897f\\u5e97","phone":"047589308","address":"\\u7dda\\u897f\\u6751\\u4e2d\\u592e\\u8def\\u4e8c\\u6bb5\\uff14\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '018782', 'quanjia', 'zh-tw', 1000),
(9632, 6222, '5916-6222', 1, '秀水金興店', '{"number":"016255","shop":"\\u79c0\\u6c34\\u91d1\\u8208\\u5e97","phone":"047686346","address":"\\u756a\\u82b1\\u8def\\uff12\\uff19\\uff17\\u865f\\u53f3\\uff11\\uff17"}', '016255', 'quanjia', 'zh-tw', 1000),
(9633, 6222, '5916-6222', 1, '秀水好水店', '{"number":"013742","shop":"\\u79c0\\u6c34\\u597d\\u6c34\\u5e97","phone":"047689103","address":"\\u798f\\u5b89\\u6751\\uff12\\uff12\\u9130\\u5f70\\u6c34\\u8def\\u4e8c\\u6bb5\\uff16\\uff12\\uff18\\u865f"}', '013742', 'quanjia', 'zh-tw', 1000),
(9634, 6223, '5916-6223', 1, '永靖頂旺店', '{"number":"017870","shop":"\\u6c38\\u9756\\u9802\\u65fa\\u5e97","phone":"048232751","address":"\\u6c38\\u798f\\u8def\\u4e00\\u6bb5\\uff11\\uff15\\uff17\\u865f\\uff11\\u6a13\\u3002\\uff12\\u6a13"}', '017870', 'quanjia', 'zh-tw', 1000),
(9635, 6223, '5916-6223', 1, '永靖金火店', '{"number":"018258","shop":"\\u6c38\\u9756\\u91d1\\u706b\\u5e97","phone":"048234128","address":"\\u6c38\\u8208\\u8def\\uff13\\u6bb5\\u81e8\\uff15\\uff10\\u865f"}', '018258', 'quanjia', 'zh-tw', 1000),
(9636, 6223, '5916-6223', 1, '永靖永安店', '{"number":"018468","shop":"\\u6c38\\u9756\\u6c38\\u5b89\\u5e97","phone":"048231800","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff18\\uff16\\uff19\\u865f"}', '018468', 'quanjia', 'zh-tw', 1000),
(9637, 6224, '5916-6224', 1, '員林大仁店', '{"number":"017069","shop":"\\u54e1\\u6797\\u5927\\u4ec1\\u5e97","phone":"048392979","address":"\\u5927\\u540c\\u8def\\u4e8c\\u6bb5\\uff11\\uff17\\uff19\\u865f"}', '017069', 'quanjia', 'zh-tw', 1000),
(9638, 6224, '5916-6224', 1, '員林金三橋店', '{"number":"014315","shop":"\\u54e1\\u6797\\u91d1\\u4e09\\u6a4b\\u5e97","phone":"048334544","address":"\\u6d6e\\u5733\\u8def\\u4e8c\\u6bb5\\uff11\\uff16\\uff18\\u865f"}', '014315', 'quanjia', 'zh-tw', 1000),
(9639, 6224, '5916-6224', 1, '員林學友店', '{"number":"017633","shop":"\\u54e1\\u6797\\u5b78\\u53cb\\u5e97","phone":"048371411","address":"\\u975c\\u4fee\\u8def\\uff17\\uff14\\u2014\\uff11\\uff12\\u865f"}', '017633', 'quanjia', 'zh-tw', 1000),
(9640, 6224, '5916-6224', 1, '員林金牌店', '{"number":"017146","shop":"\\u54e1\\u6797\\u91d1\\u724c\\u5e97","phone":"048336323","address":"\\u5357\\u660c\\u8def\\uff11\\uff13\\uff15\\u865f"}', '017146', 'quanjia', 'zh-tw', 1000),
(9641, 6224, '5916-6224', 1, '員林榮城店', '{"number":"017496","shop":"\\u54e1\\u6797\\u69ae\\u57ce\\u5e97","phone":"048339424","address":"\\u5357\\u5e73\\u8857\\uff11\\uff18\\uff18\\u865f"}', '017496', 'quanjia', 'zh-tw', 1000),
(9642, 6224, '5916-6224', 1, '員林車頭店', '{"number":"011798","shop":"\\u54e1\\u6797\\u8eca\\u982d\\u5e97","phone":"048396162","address":"\\u5357\\u5e73\\u91cc\\uff12\\uff18\\u9130\\u975c\\u4fee\\u8def\\uff15\\uff12\\uff0d\\uff11\\u865f"}', '011798', 'quanjia', 'zh-tw', 1000),
(9643, 6224, '5916-6224', 1, '員林正新店', '{"number":"012271","shop":"\\u54e1\\u6797\\u6b63\\u65b0\\u5e97","phone":"048360774","address":"\\u4e09\\u6c11\\u6771\\u8857\\uff13\\uff15\\uff10\\u865f"}', '012271', 'quanjia', 'zh-tw', 1000),
(9644, 6224, '5916-6224', 1, '員林新員農店', '{"number":"016997","shop":"\\u54e1\\u6797\\u65b0\\u54e1\\u8fb2\\u5e97","phone":"048331925","address":"\\u4e09\\u689d\\u91cc\\u54e1\\u6c34\\u8def\\u4e8c\\u6bb5\\uff13\\uff12\\uff10\\u865f"}', '016997', 'quanjia', 'zh-tw', 1000),
(9645, 6224, '5916-6224', 1, '員林新員山店', '{"number":"016887","shop":"\\u54e1\\u6797\\u65b0\\u54e1\\u5c71\\u5e97","phone":"048367235","address":"\\u5c71\\u8173\\u8def\\uff13\\u6bb5\\u81e8\\uff12\\uff16\\uff19\\u865f"}', '016887', 'quanjia', 'zh-tw', 1000),
(9646, 6224, '5916-6224', 1, '員林金萬年店', '{"number":"014520","shop":"\\u54e1\\u6797\\u91d1\\u842c\\u5e74\\u5e97","phone":"048333271","address":"\\u842c\\u5e74\\u5df7\\uff15\\uff11\\u4e4b\\uff11\\uff10\\u865f"}', '014520', 'quanjia', 'zh-tw', 1000),
(9647, 6224, '5916-6224', 1, '員林新育英店', '{"number":"017738","shop":"\\u54e1\\u6797\\u65b0\\u80b2\\u82f1\\u5e97","phone":"048334117","address":"\\u80b2\\u82f1\\u8def\\uff11\\uff10\\uff16\\u865f"}', '017738', 'quanjia', 'zh-tw', 1000),
(9648, 6224, '5916-6224', 1, '員林富城店', '{"number":"017513","shop":"\\u54e1\\u6797\\u5bcc\\u57ce\\u5e97","phone":"048334347","address":"\\u80b2\\u82f1\\u8def\\uff12\\uff14\\u865f"}', '017513', 'quanjia', 'zh-tw', 1000),
(9649, 6224, '5916-6224', 1, '員林黎明店', '{"number":"014000","shop":"\\u54e1\\u6797\\u9ece\\u660e\\u5e97","phone":"048338536","address":"\\u54e1\\u5927\\u8def\\u4e00\\u6bb5\\uff17\\uff15\\u865f"}', '014000', 'quanjia', 'zh-tw', 1000),
(9650, 6224, '5916-6224', 1, '員林安迪店', '{"number":"013609","shop":"\\u54e1\\u6797\\u5b89\\u8fea\\u5e97","phone":"048336605","address":"\\u54e1\\u96c6\\u8def\\u4e8c\\u6bb5\\uff18\\uff12\\u865f"}', '013609', 'quanjia', 'zh-tw', 1000),
(9651, 6224, '5916-6224', 1, '員林僑信店', '{"number":"016271","shop":"\\u54e1\\u6797\\u50d1\\u4fe1\\u5e97","phone":"048396842","address":"\\u4e2d\\u5c71\\u8def\\u4e8c\\u6bb5\\uff12\\uff18\\uff11\\u865f\\uff11\\u6a13\\u53ca\\u5730\\u4e0b\\u5ba4"}', '016271', 'quanjia', 'zh-tw', 1000),
(9652, 6225, '5916-6225', 1, '彰化新彰基店', '{"number":"018065","shop":"\\u5f70\\u5316\\u65b0\\u5f70\\u57fa\\u5e97","phone":"047287141","address":"\\u535a\\u611b\\u8857\\uff11\\uff10\\uff11\\u865f\\uff11\\u6a13"}', '018065', 'quanjia', 'zh-tw', 1000),
(9653, 6225, '5916-6225', 1, '彰化樂活店', '{"number":"018337","shop":"\\u5f70\\u5316\\u6a02\\u6d3b\\u5e97","phone":"047285748","address":"\\u6210\\u529f\\u8def\\uff18\\uff15\\u865f\\uff11\\u6a13\\u3001\\uff12\\u6a13"}', '018337', 'quanjia', 'zh-tw', 1000),
(9654, 6225, '5916-6225', 1, '彰化八卦山店', '{"number":"015497","shop":"\\u5f70\\u5316\\u516b\\u5366\\u5c71\\u5e97","phone":"047270402","address":"\\u516c\\u5712\\u8def\\u4e00\\u6bb5\\uff14\\uff16\\u865f"}', '015497', 'quanjia', 'zh-tw', 1000),
(9655, 6225, '5916-6225', 1, '彰化建國店', '{"number":"015327","shop":"\\u5f70\\u5316\\u5efa\\u570b\\u5e97","phone":"047112631","address":"\\u4ecb\\u58fd\\u5317\\u8def\\uff11\\u865f\\uff0e\\u7f8e\\u80b2\\u9928\\uff11\\u6a13"}', '015327', 'quanjia', 'zh-tw', 1000),
(9656, 6225, '5916-6225', 1, '彰化再安店', '{"number":"017515","shop":"\\u5f70\\u5316\\u518d\\u5b89\\u5e97","phone":"047114746","address":"\\u4ecb\\u58fd\\u5357\\u8def\\uff11\\uff16\\u865f\\u3001\\uff11\\uff18\\u865f\\uff11\\u6a13"}', '017515', 'quanjia', 'zh-tw', 1000),
(9657, 6225, '5916-6225', 1, '彰化金師店', '{"number":"018681","shop":"\\u5f70\\u5316\\u91d1\\u5e2b\\u5e97","phone":"047289817","address":"\\u9032\\u5fb7\\u8def\\uff12\\uff17\\u865f\\u58f9\\u6a13"}', '018681', 'quanjia', 'zh-tw', 1000),
(9658, 6225, '5916-6225', 1, '彰化林森店', '{"number":"013662","shop":"\\u5f70\\u5316\\u6797\\u68ee\\u5e97","phone":"047638790","address":"\\u6797\\u68ee\\u8def\\uff11\\uff19\\uff17\\uff0c\\uff11\\uff19\\uff19\\uff0c\\uff12\\uff10\\uff11\\u865f"}', '013662', 'quanjia', 'zh-tw', 1000),
(9659, 6225, '5916-6225', 1, '彰化金平店', '{"number":"016857","shop":"\\u5f70\\u5316\\u91d1\\u5e73\\u5e97","phone":"047616972","address":"\\u5d19\\u5e73\\u5317\\u8def\\uff11\\uff10\\uff18\\u865f"}', '016857', 'quanjia', 'zh-tw', 1000),
(9660, 6225, '5916-6225', 1, '彰化新再旺店', '{"number":"017083","shop":"\\u5f70\\u5316\\u65b0\\u518d\\u65fa\\u5e97","phone":"047289800","address":"\\u6c11\\u65cf\\u8def\\uff14\\uff13\\uff19\\u865f"}', '017083', 'quanjia', 'zh-tw', 1000),
(9661, 6225, '5916-6225', 1, '彰化再興店', '{"number":"018061","shop":"\\u5f70\\u5316\\u518d\\u8208\\u5e97","phone":"047201278","address":"\\u5357\\u90ed\\u8def\\u4e00\\u6bb5\\uff11\\uff19\\uff11\\u5df7\\uff11\\uff16\\u865f"}', '018061', 'quanjia', 'zh-tw', 1000),
(9662, 6225, '5916-6225', 1, '新秀傳店', '{"number":"018138","shop":"\\u65b0\\u79c0\\u50b3\\u5e97","phone":"047119667","address":"\\u5357\\u5e73\\u8857\\uff16\\uff11\\u5df7\\uff15\\uff11\\u865f"}', '018138', 'quanjia', 'zh-tw', 1000),
(9663, 6225, '5916-6225', 1, '彰化鐵皮店', '{"number":"017388","shop":"\\u5f70\\u5316\\u9435\\u76ae\\u5e97","phone":"047511950","address":"\\u5e73\\u548c\\u5341\\u56db\\u8857\\uff16\\uff17\\u865f"}', '017388', 'quanjia', 'zh-tw', 1000),
(9664, 6225, '5916-6225', 1, '彰化新三民店', '{"number":"017516","shop":"\\u5f70\\u5316\\u65b0\\u4e09\\u6c11\\u5e97","phone":"047280542","address":"\\u4e09\\u6c11\\u8def\\uff12\\uff17\\uff10\\u865f"}', '017516', 'quanjia', 'zh-tw', 1000),
(9665, 6225, '5916-6225', 1, '彰化山中美店', '{"number":"017472","shop":"\\u5f70\\u5316\\u5c71\\u4e2d\\u7f8e\\u5e97","phone":"047387141","address":"\\u5c71\\u4e2d\\u8857\\uff19\\uff16\\u865f"}', '017472', 'quanjia', 'zh-tw', 1000),
(9666, 6225, '5916-6225', 1, '彰化順風店', '{"number":"018066","shop":"\\u5f70\\u5316\\u9806\\u98a8\\u5e97","phone":"047289313","address":"\\u5be6\\u8e10\\u8def\\uff14\\uff18\\u865f"}', '018066', 'quanjia', 'zh-tw', 1000),
(9667, 6225, '5916-6225', 1, '彰化新天祥店', '{"number":"016936","shop":"\\u5f70\\u5316\\u65b0\\u5929\\u7965\\u5e97","phone":"047627152","address":"\\u56db\\u7dad\\u8def\\uff16\\uff19\\u5df7\\uff12\\u865f"}', '016936', 'quanjia', 'zh-tw', 1000),
(9668, 6225, '5916-6225', 1, '彰化金泰店', '{"number":"016641","shop":"\\u5f70\\u5316\\u91d1\\u6cf0\\u5e97","phone":"047227346","address":"\\u6cf0\\u548c\\u8def\\uff11\\u6bb5\\uff11\\uff18\\uff12\\u865f\\uff11\\u6a13"}', '016641', 'quanjia', 'zh-tw', 1000),
(9669, 6225, '5916-6225', 1, '彰化線東店', '{"number":"016273","shop":"\\u5f70\\u5316\\u7dda\\u6771\\u5e97","phone":"047635121","address":"\\u7dda\\u6771\\u8def\\u4e00\\u6bb5\\uff15\\uff16\\uff17\\u865f"}', '016273', 'quanjia', 'zh-tw', 1000),
(9670, 6225, '5916-6225', 1, '彰化彰興店', '{"number":"017443","shop":"\\u5f70\\u5316\\u5f70\\u8208\\u5e97","phone":"047114730","address":"\\u5ef6\\u5e73\\u8def\\uff15\\u865f"}', '017443', 'quanjia', 'zh-tw', 1000),
(9671, 6225, '5916-6225', 1, '彰化金馬店', '{"number":"012561","shop":"\\u5f70\\u5316\\u91d1\\u99ac\\u5e97","phone":"047624805","address":"\\u5f70\\u99ac\\u8def\\uff12\\uff14\\uff16\\u4e4b\\uff11\\u865f"}', '012561', 'quanjia', 'zh-tw', 1000),
(9672, 6225, '5916-6225', 1, '彰化金馬金店', '{"number":"018227","shop":"\\u5f70\\u5316\\u91d1\\u99ac\\u91d1\\u5e97","phone":"047350522","address":"\\u5f70\\u7f8e\\u8def\\uff11\\u6bb5\\u81e8\\uff12\\uff18\\uff12\\u865f"}', '018227', 'quanjia', 'zh-tw', 1000),
(9673, 6225, '5916-6225', 1, '彰化香山店', '{"number":"016291","shop":"\\u5f70\\u5316\\u9999\\u5c71\\u5e97","phone":"047384385","address":"\\u5f70\\u5357\\u8def\\u4e8c\\u6bb5\\uff13\\uff15\\uff12\\u865f\\uff11\\u6a13"}', '016291', 'quanjia', 'zh-tw', 1000),
(9674, 6225, '5916-6225', 1, '彰化彰南店', '{"number":"012031","shop":"\\u5f70\\u5316\\u5f70\\u5357\\u5e97","phone":"047374666","address":"\\u5f70\\u5357\\u8def\\u4e09\\u6bb5\\uff13\\uff10\\uff12\\u865f\\u3001\\uff13\\uff10\\uff14\\u865f"}', '012031', 'quanjia', 'zh-tw', 1000),
(9675, 6225, '5916-6225', 1, '彰化大通店', '{"number":"015150","shop":"\\u5f70\\u5316\\u5927\\u901a\\u5e97","phone":"047511811","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff11\\uff11\\uff17\\u4e4b\\uff13\\u865f\\uff11\\uff26"}', '015150', 'quanjia', 'zh-tw', 1000),
(9676, 6225, '5916-6225', 1, '彰化漢銘店', '{"number":"011968","shop":"\\u5f70\\u5316\\u6f22\\u9298\\u5e97","phone":"047138069","address":"\\u4e2d\\u5c71\\u8def\\u4e00\\u6bb5\\uff13\\uff16\\uff16\\u865f"}', '011968', 'quanjia', 'zh-tw', 1000),
(9677, 6225, '5916-6225', 1, '彰化建台店', '{"number":"015388","shop":"\\u5f70\\u5316\\u5efa\\u53f0\\u5e97","phone":"047113410","address":"\\u4e2d\\u8208\\u8def\\uff11\\uff10\\uff13\\uff0d\\uff18\\u865f\\uff11\\u6a13"}', '015388', 'quanjia', 'zh-tw', 1000),
(9678, 6225, '5916-6225', 1, '彰化自強店', '{"number":"018399","shop":"\\u5f70\\u5316\\u81ea\\u5f37\\u5e97","phone":"047278997","address":"\\u5fe0\\u6b0a\\u91cc\\u81ea\\u5f37\\u5357\\u8def\\uff16\\uff11\\u865f\\u4e00\\u6a13"}', '018399', 'quanjia', 'zh-tw', 1000);